ETH Price: $2,505.55 (-0.77%)

Token

MandelBlocks (MBNFT)
 

Overview

Max Total Supply

214 MBNFT

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mandelblox.eth
Balance
4 MBNFT
0x5DaCf1cE88a5Acd042A3c22c9B15982927428191
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
MandelBlocks

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-30
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

library MerkleProof {
  
  function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf,
        uint index
    ) public pure returns (bool) {
        bytes32 hash = leaf;

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

            if (index % 2 == 0) {
                hash = keccak256(abi.encodePacked(hash, proofElement));
            } else {
                hash = keccak256(abi.encodePacked(proofElement, hash));
            }

            index = index / 2;
        }

        return hash == root;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

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

/**
 * @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;


    string public _baseURI;
    /**
     * @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 base = baseURI();
        string memory baseExtension = ".json";
        return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString(), baseExtension)) : "";
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 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();
    }
}

contract MandelBlocks is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint public constant _TOTALSUPPLY = 723;
    uint256 public price = 100000000000000000; // 0.1 ETH
    bool public isPaused = true;
    bool public presale = true;
    bytes32 public merkleRoot = 0x8624f822240d7ff24b3ff4afbd1cde1a86f0d720921cb0d7e471f7700c8df1c7;

    mapping(address => bool) blacklistuser;

    constructor(string memory baseURI) ERC721("MandelBlocks", "MBNFT") {
        setBaseURI(baseURI);
    }

    function mint(address _to, uint256 quantity, bytes32[] memory _merkleProof, uint index) public payable isSaleOpen {
        require(isPaused == false, "Sale is not active at the moment");
        require(_to != address(0), "Mint to the zero address");
        uint256 maxquantity = 2;
        if (presale == true) {
            maxquantity = 1;
            require(blacklistuser[msg.sender] == false, "Already Minted User");
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, merkleRoot, leaf, index), "Invalid proof");
        }

        require(quantity <= maxquantity, "Exceed max quantity");

        uint256 tokenId = totalSupply();

        require(price * quantity <= msg.value, "Wrong amount sent");
        for (uint256 i = 0; i < quantity; i++) {
            tokenId++;
            _safeMint(_to, tokenId);
            if (presale == true) {
                blacklistuser[msg.sender] = true;
            }
        }
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }

    function flipPauseStatus() public onlyOwner {
        isPaused = !isPaused;
    }

    function flipPresaleStatus() public onlyOwner {
        presale = !presale;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }

    function setWhitelistUser(bytes32 merkleRootHash) public onlyOwner {
        merkleRoot = merkleRootHash;
    }

    function getWhitelistUser() public view returns (bytes32) {
        return merkleRoot;
    }

    function mintByOwner(address _to, uint256 quantity) public onlyOwner{
        require(isPaused == false, "Sale is not active at the moment");
        require(_to != address(0), "Mint to the zero address");

        uint256 tokenId = totalSupply();
        for (uint256 i = 0; i < quantity; i++) {
            tokenId++;
            _safeMint(_to, tokenId);
        }
    }

    function setBlackList(address user) public onlyOwner {
        blacklistuser[user] = true;
    }

    function removeBlackList(address user) public onlyOwner {
        blacklistuser[user] = false;
    }

    function isBlackList(address user) public view returns (bool) {
        return blacklistuser[user];
    }

    modifier isSaleOpen{
        require(totalSupply() < _TOTALSUPPLY, "Mint wourd exceed totalSupply");
        _;
    }

    function tokensOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 count = balanceOf(_owner);
        uint256[] memory result = new uint256[](count);
        for (uint256 index = 0; index < count; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_TOTALSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistUser","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"address","name":"user","type":"address"}],"name":"isBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","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":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRootHash","type":"bytes32"}],"name":"setWhitelistUser","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

608060405267016345785d8a0000600c556001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055507f8624f822240d7ff24b3ff4afbd1cde1a86f0d720921cb0d7e471f7700c8df1c760001b600e553480156200007a57600080fd5b506040516200540b3803806200540b8339818101604052810190620000a0919062000408565b6040518060400160405280600c81526020017f4d616e64656c426c6f636b7300000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d424e4654000000000000000000000000000000000000000000000000000000815250816000908051906020019062000124929190620002e6565b5080600190805190602001906200013d929190620002e6565b5050506000620001526200020960201b60201c565b905080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000202816200021160201b60201c565b50620005f3565b600033905090565b620002216200020960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000247620002bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000297906200048f565b60405180910390fd5b8060069080519060200190620002b8929190620002e6565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f4906200055f565b90600052602060002090601f01602090048101928262000318576000855562000364565b82601f106200033357805160ff191683800117855562000364565b8280016001018555821562000364579182015b828111156200036357825182559160200191906001019062000346565b5b50905062000373919062000377565b5090565b5b808211156200039257600081600090555060010162000378565b5090565b6000620003ad620003a784620004e5565b620004b1565b905082815260208101848484011115620003c657600080fd5b620003d384828562000529565b509392505050565b600082601f830112620003ed57600080fd5b8151620003ff84826020860162000396565b91505092915050565b6000602082840312156200041b57600080fd5b600082015167ffffffffffffffff8111156200043657600080fd5b6200044484828501620003db565b91505092915050565b60006200045c60208362000518565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620004aa816200044d565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620004db57620004da620005c4565b5b8060405250919050565b600067ffffffffffffffff821115620005035762000502620005c4565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620005495780820151818401526020810190506200052c565b8381111562000559576000848401525b50505050565b600060028204905060018216806200057857607f821691505b602082108114156200058f576200058e62000595565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614e0880620006036000396000f3fe6080604052600436106102255760003560e01c80637270024111610123578063b36d6919116100ab578063e4997dc51161006f578063e4997dc5146107f8578063e985e9c514610821578063f2fde38b1461085e578063fa62884c14610887578063fdea8e0b1461089e57610225565b8063b36d6919146106ff578063b88d4fde1461073c578063c87b56dd14610765578063c908bebd146107a2578063db4568e2146107cd57610225565b806391b7f5ed116100f257806391b7f5ed1461062c57806395d89b4114610655578063a035b1fe14610680578063a22cb465146106ab578063b187bd26146106d457610225565b80637270024114610570578063743976a0146105995780638462151c146105c45780638da5cb5b1461060157610225565b80632eb4a7ab116101b15780634f6ccce7116101755780634f6ccce71461047957806355f804b3146104b65780636352211e146104df57806370a082311461051c578063715018a61461055957610225565b80632eb4a7ab146103a85780632f745c59146103d35780633542aee2146104105780633ccfd60b1461043957806342842e0e1461045057610225565b8063081812fc116101f8578063081812fc146102d7578063095ea7b3146103145780631725051f1461033d57806318160ddd1461035457806323b872dd1461037f57610225565b80630182a1111461022a57806301ffc9a71461024657806302071a6d1461028357806306fdde03146102ac575b600080fd5b610244600480360381019061023f91906137bf565b6108c9565b005b34801561025257600080fd5b5061026d6004803603810190610268919061388c565b610ce1565b60405161027a91906144db565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190613863565b610d5b565b005b3480156102b857600080fd5b506102c1610de1565b6040516102ce9190614511565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061391f565b610e73565b60405161030b9190614406565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190613783565b610ef8565b005b34801561034957600080fd5b50610352611010565b005b34801561036057600080fd5b506103696110b8565b6040516103769190614853565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a1919061367d565b6110c5565b005b3480156103b457600080fd5b506103bd611125565b6040516103ca91906144f6565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190613783565b61112b565b6040516104079190614853565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613783565b6111d0565b005b34801561044557600080fd5b5061044e61135a565b005b34801561045c57600080fd5b506104776004803603810190610472919061367d565b611425565b005b34801561048557600080fd5b506104a0600480360381019061049b919061391f565b611445565b6040516104ad9190614853565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d891906138de565b6114dc565b005b3480156104eb57600080fd5b506105066004803603810190610501919061391f565b611572565b6040516105139190614406565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190613618565b611624565b6040516105509190614853565b60405180910390f35b34801561056557600080fd5b5061056e6116dc565b005b34801561057c57600080fd5b5061059760048036038101906105929190613618565b6117e1565b005b3480156105a557600080fd5b506105ae6118b8565b6040516105bb9190614511565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613618565b611946565b6040516105f891906144b9565b60405180910390f35b34801561060d57600080fd5b50610616611a40565b6040516106239190614406565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e919061391f565b611a6a565b005b34801561066157600080fd5b5061066a611af0565b6040516106779190614511565b60405180910390f35b34801561068c57600080fd5b50610695611b82565b6040516106a29190614853565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190613747565b611b88565b005b3480156106e057600080fd5b506106e9611d09565b6040516106f691906144db565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190613618565b611d1c565b60405161073391906144db565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e91906136cc565b611d72565b005b34801561077157600080fd5b5061078c6004803603810190610787919061391f565b611dd4565b6040516107999190614511565b60405180910390f35b3480156107ae57600080fd5b506107b7611eb8565b6040516107c491906144f6565b60405180910390f35b3480156107d957600080fd5b506107e2611ec2565b6040516107ef9190614853565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190613618565b611ec8565b005b34801561082d57600080fd5b5061084860048036038101906108439190613641565b611f9f565b60405161085591906144db565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190613618565b612033565b005b34801561089357600080fd5b5061089c61212b565b005b3480156108aa57600080fd5b506108b36121d3565b6040516108c091906144db565b60405180910390f35b6102d36108d46110b8565b10610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b90614533565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151461096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190614833565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190614813565b60405180910390fd5b60006002905060011515600d60019054906101000a900460ff1615151415610b8e576001905060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a906145f3565b60405180910390fd5b600033604051602001610aa691906143ba565b6040516020818303038152906040528051906020012090507327daee1806c259d88265c5ce3304fa330a1e3dc56321fb335c85600e5484876040518563ffffffff1660e01b8152600401610afd949392919061446d565b60206040518083038186803b158015610b1557600080fd5b505af4158015610b29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4d919061383a565b610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b83906147f3565b60405180910390fd5b505b80841115610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890614553565b60405180910390fd5b6000610bdb6110b8565b90503485600c54610bec9190614a67565b1115610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490614773565b60405180910390fd5b60005b85811015610cd8578180610c4390614be7565b925050610c5087836121e6565b60011515600d60019054906101000a900460ff1615151415610cc5576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8080610cd090614be7565b915050610c30565b50505050505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d545750610d5382612204565b5b9050919050565b610d636122e6565b73ffffffffffffffffffffffffffffffffffffffff16610d81611a40565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90614713565b60405180910390fd5b80600e8190555050565b606060008054610df090614bb5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90614bb5565b8015610e695780601f10610e3e57610100808354040283529160200191610e69565b820191906000526020600020905b815481529060010190602001808311610e4c57829003601f168201915b5050505050905090565b6000610e7e826122ee565b610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb4906146f3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f0382611572565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90614793565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f936122e6565b73ffffffffffffffffffffffffffffffffffffffff161480610fc25750610fc181610fbc6122e6565b611f9f565b5b611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890614673565b60405180910390fd5b61100b838361235a565b505050565b6110186122e6565b73ffffffffffffffffffffffffffffffffffffffff16611036611a40565b73ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390614713565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600980549050905090565b6110d66110d06122e6565b82612413565b611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c906147b3565b60405180910390fd5b6111208383836124f1565b505050565b600e5481565b600061113683611624565b8210611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90614573565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111d86122e6565b73ffffffffffffffffffffffffffffffffffffffff166111f6611a40565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390614713565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614833565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990614813565b60405180910390fd5b600061131c6110b8565b905060005b8281101561135457818061133490614be7565b92505061134184836121e6565b808061134c90614be7565b915050611321565b50505050565b6113626122e6565b73ffffffffffffffffffffffffffffffffffffffff16611380611a40565b73ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90614713565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611421573d6000803e3d6000fd5b5050565b61144083838360405180602001604052806000815250611d72565b505050565b600061144f6110b8565b8210611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906147d3565b60405180910390fd5b600982815481106114ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6114e46122e6565b73ffffffffffffffffffffffffffffffffffffffff16611502611a40565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90614713565b60405180910390fd5b806006908051906020019061156e92919061337c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906146b3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90614693565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116e46122e6565b73ffffffffffffffffffffffffffffffffffffffff16611702611a40565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614713565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36117df600061274d565b565b6117e96122e6565b73ffffffffffffffffffffffffffffffffffffffff16611807611a40565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614713565b60405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600680546118c590614bb5565b80601f01602080910402602001604051908101604052809291908181526020018280546118f190614bb5565b801561193e5780601f106119135761010080835404028352916020019161193e565b820191906000526020600020905b81548152906001019060200180831161192157829003601f168201915b505050505081565b6060600061195383611624565b905060008167ffffffffffffffff811115611997577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119c55781602001602082028036833780820191505090505b50905060005b82811015611a35576119dd858261112b565b828281518110611a16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611a2d90614be7565b9150506119cb565b508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a726122e6565b73ffffffffffffffffffffffffffffffffffffffff16611a90611a40565b73ffffffffffffffffffffffffffffffffffffffff1614611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90614713565b60405180910390fd5b80600c8190555050565b606060018054611aff90614bb5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2b90614bb5565b8015611b785780601f10611b4d57610100808354040283529160200191611b78565b820191906000526020600020905b815481529060010190602001808311611b5b57829003601f168201915b5050505050905090565b600c5481565b611b906122e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf590614633565b60405180910390fd5b8060056000611c0b6122e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb86122e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cfd91906144db565b60405180910390a35050565b600d60009054906101000a900460ff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d83611d7d6122e6565b83612413565b611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906147b3565b60405180910390fd5b611dce84848484612813565b50505050565b6060611ddf826122ee565b611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614753565b60405180910390fd5b6000611e2861286f565b905060006040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525090506000825111611e825760405180602001604052806000815250611eaf565b81611e8c85612901565b82604051602001611e9f939291906143d5565b6040516020818303038152906040525b92505050919050565b6000600e54905090565b6102d381565b611ed06122e6565b73ffffffffffffffffffffffffffffffffffffffff16611eee611a40565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90614713565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61203b6122e6565b73ffffffffffffffffffffffffffffffffffffffff16612059611a40565b73ffffffffffffffffffffffffffffffffffffffff16146120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a690614713565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561211f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612116906145b3565b60405180910390fd5b6121288161274d565b50565b6121336122e6565b73ffffffffffffffffffffffffffffffffffffffff16612151611a40565b73ffffffffffffffffffffffffffffffffffffffff16146121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90614713565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff1681565b612200828260405180602001604052806000815250612aae565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122df57506122de82612b09565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123cd83611572565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061241e826122ee565b61245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490614653565b60405180910390fd5b600061246883611572565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124d757508373ffffffffffffffffffffffffffffffffffffffff166124bf84610e73565b73ffffffffffffffffffffffffffffffffffffffff16145b806124e857506124e78185611f9f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661251182611572565b73ffffffffffffffffffffffffffffffffffffffff1614612567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255e90614733565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce90614613565b60405180910390fd5b6125e2838383612b73565b6125ed60008261235a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461263d9190614ac1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461269491906149e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61281e8484846124f1565b61282a84848484612c87565b612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614593565b60405180910390fd5b50505050565b60606006805461287e90614bb5565b80601f01602080910402602001604051908101604052809291908181526020018280546128aa90614bb5565b80156128f75780601f106128cc576101008083540402835291602001916128f7565b820191906000526020600020905b8154815290600101906020018083116128da57829003601f168201915b5050505050905090565b60606000821415612949576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aa9565b600082905060005b6000821461297b57808061296490614be7565b915050600a826129749190614a36565b9150612951565b60008167ffffffffffffffff8111156129bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129ef5781602001600182028036833780820191505090505b5090505b60008514612aa257600182612a089190614ac1565b9150600a85612a179190614c54565b6030612a2391906149e0565b60f81b818381518110612a5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a9b9190614a36565b94506129f3565b8093505050505b919050565b612ab88383612e1e565b612ac56000848484612c87565b612b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afb90614593565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b7e838383612fec565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc157612bbc81612ff1565b612c00565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bff57612bfe838261303a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c4357612c3e816131a7565b612c82565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c8157612c8082826132ea565b5b5b505050565b6000612ca88473ffffffffffffffffffffffffffffffffffffffff16613369565b15612e11578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cd16122e6565b8786866040518563ffffffff1660e01b8152600401612cf39493929190614421565b602060405180830381600087803b158015612d0d57600080fd5b505af1925050508015612d3e57506040513d601f19601f82011682018060405250810190612d3b91906138b5565b60015b612dc1573d8060008114612d6e576040519150601f19603f3d011682016040523d82523d6000602084013e612d73565b606091505b50600081511415612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db090614593565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e16565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e85906146d3565b60405180910390fd5b612e97816122ee565b15612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece906145d3565b60405180910390fd5b612ee360008383612b73565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3391906149e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161304784611624565b6130519190614ac1565b9050600060086000848152602001908152602001600020549050818114613136576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506131bb9190614ac1565b90506000600a6000848152602001908152602001600020549050600060098381548110613211577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613259577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806132ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132f583611624565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461338890614bb5565b90600052602060002090601f0160209004810192826133aa57600085556133f1565b82601f106133c357805160ff19168380011785556133f1565b828001600101855582156133f1579182015b828111156133f05782518255916020019190600101906133d5565b5b5090506133fe9190613402565b5090565b5b8082111561341b576000816000905550600101613403565b5090565b600061343261342d8461489f565b61486e565b9050808382526020820190508285602086028201111561345157600080fd5b60005b8581101561348157816134678882613570565b845260208401935060208301925050600181019050613454565b5050509392505050565b600061349e613499846148cb565b61486e565b9050828152602081018484840111156134b657600080fd5b6134c1848285614b73565b509392505050565b60006134dc6134d7846148fb565b61486e565b9050828152602081018484840111156134f457600080fd5b6134ff848285614b73565b509392505050565b60008135905061351681614d5f565b92915050565b600082601f83011261352d57600080fd5b813561353d84826020860161341f565b91505092915050565b60008135905061355581614d76565b92915050565b60008151905061356a81614d76565b92915050565b60008135905061357f81614d8d565b92915050565b60008135905061359481614da4565b92915050565b6000815190506135a981614da4565b92915050565b600082601f8301126135c057600080fd5b81356135d084826020860161348b565b91505092915050565b600082601f8301126135ea57600080fd5b81356135fa8482602086016134c9565b91505092915050565b60008135905061361281614dbb565b92915050565b60006020828403121561362a57600080fd5b600061363884828501613507565b91505092915050565b6000806040838503121561365457600080fd5b600061366285828601613507565b925050602061367385828601613507565b9150509250929050565b60008060006060848603121561369257600080fd5b60006136a086828701613507565b93505060206136b186828701613507565b92505060406136c286828701613603565b9150509250925092565b600080600080608085870312156136e257600080fd5b60006136f087828801613507565b945050602061370187828801613507565b935050604061371287828801613603565b925050606085013567ffffffffffffffff81111561372f57600080fd5b61373b878288016135af565b91505092959194509250565b6000806040838503121561375a57600080fd5b600061376885828601613507565b925050602061377985828601613546565b9150509250929050565b6000806040838503121561379657600080fd5b60006137a485828601613507565b92505060206137b585828601613603565b9150509250929050565b600080600080608085870312156137d557600080fd5b60006137e387828801613507565b94505060206137f487828801613603565b935050604085013567ffffffffffffffff81111561381157600080fd5b61381d8782880161351c565b925050606061382e87828801613603565b91505092959194509250565b60006020828403121561384c57600080fd5b600061385a8482850161355b565b91505092915050565b60006020828403121561387557600080fd5b600061388384828501613570565b91505092915050565b60006020828403121561389e57600080fd5b60006138ac84828501613585565b91505092915050565b6000602082840312156138c757600080fd5b60006138d58482850161359a565b91505092915050565b6000602082840312156138f057600080fd5b600082013567ffffffffffffffff81111561390a57600080fd5b613916848285016135d9565b91505092915050565b60006020828403121561393157600080fd5b600061393f84828501613603565b91505092915050565b60006139548383613a87565b60208301905092915050565b600061396c838361438d565b60208301905092915050565b61398181614af5565b82525050565b61399861399382614af5565b614c30565b82525050565b60006139a98261494b565b6139b38185614991565b93506139be8361492b565b8060005b838110156139ef5781516139d68882613948565b97506139e183614977565b9250506001810190506139c2565b5085935050505092915050565b6000613a0782614956565b613a1181856149a2565b9350613a1c8361493b565b8060005b83811015613a4d578151613a348882613960565b9750613a3f83614984565b925050600181019050613a20565b5085935050505092915050565b613a6381614b07565b82525050565b613a7281614b13565b82525050565b613a8181614b13565b82525050565b613a9081614b13565b82525050565b6000613aa182614961565b613aab81856149b3565b9350613abb818560208601614b82565b613ac481614d41565b840191505092915050565b6000613ada8261496c565b613ae481856149c4565b9350613af4818560208601614b82565b613afd81614d41565b840191505092915050565b6000613b138261496c565b613b1d81856149d5565b9350613b2d818560208601614b82565b80840191505092915050565b6000613b46601d836149c4565b91507f4d696e7420776f7572642065786365656420746f74616c537570706c790000006000830152602082019050919050565b6000613b866013836149c4565b91507f457863656564206d6178207175616e74697479000000000000000000000000006000830152602082019050919050565b6000613bc6602b836149c4565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613c2c6032836149c4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c926026836149c4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf8601c836149c4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613d386013836149c4565b91507f416c7265616479204d696e7465642055736572000000000000000000000000006000830152602082019050919050565b6000613d786024836149c4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dde6019836149c4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613e1e602c836149c4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e846038836149c4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613eea602a836149c4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f506029836149c4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fb66020836149c4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613ff6602c836149c4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061405c6020836149c4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061409c6029836149c4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614102602f836149c4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141686011836149c4565b91507f57726f6e6720616d6f756e742073656e740000000000000000000000000000006000830152602082019050919050565b60006141a86021836149c4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061420e6031836149c4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614274602c836149c4565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006142da600d836149c4565b91507f496e76616c69642070726f6f66000000000000000000000000000000000000006000830152602082019050919050565b600061431a6018836149c4565b91507f4d696e7420746f20746865207a65726f206164647265737300000000000000006000830152602082019050919050565b600061435a6020836149c4565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b61439681614b69565b82525050565b6143a581614b69565b82525050565b6143b481614b69565b82525050565b60006143c68284613987565b60148201915081905092915050565b60006143e18286613b08565b91506143ed8285613b08565b91506143f98284613b08565b9150819050949350505050565b600060208201905061441b6000830184613978565b92915050565b60006080820190506144366000830187613978565b6144436020830186613978565b614450604083018561439c565b81810360608301526144628184613a96565b905095945050505050565b60006080820190508181036000830152614487818761399e565b90506144966020830186613a78565b6144a36040830185613a78565b6144b060608301846143ab565b95945050505050565b600060208201905081810360008301526144d381846139fc565b905092915050565b60006020820190506144f06000830184613a5a565b92915050565b600060208201905061450b6000830184613a69565b92915050565b6000602082019050818103600083015261452b8184613acf565b905092915050565b6000602082019050818103600083015261454c81613b39565b9050919050565b6000602082019050818103600083015261456c81613b79565b9050919050565b6000602082019050818103600083015261458c81613bb9565b9050919050565b600060208201905081810360008301526145ac81613c1f565b9050919050565b600060208201905081810360008301526145cc81613c85565b9050919050565b600060208201905081810360008301526145ec81613ceb565b9050919050565b6000602082019050818103600083015261460c81613d2b565b9050919050565b6000602082019050818103600083015261462c81613d6b565b9050919050565b6000602082019050818103600083015261464c81613dd1565b9050919050565b6000602082019050818103600083015261466c81613e11565b9050919050565b6000602082019050818103600083015261468c81613e77565b9050919050565b600060208201905081810360008301526146ac81613edd565b9050919050565b600060208201905081810360008301526146cc81613f43565b9050919050565b600060208201905081810360008301526146ec81613fa9565b9050919050565b6000602082019050818103600083015261470c81613fe9565b9050919050565b6000602082019050818103600083015261472c8161404f565b9050919050565b6000602082019050818103600083015261474c8161408f565b9050919050565b6000602082019050818103600083015261476c816140f5565b9050919050565b6000602082019050818103600083015261478c8161415b565b9050919050565b600060208201905081810360008301526147ac8161419b565b9050919050565b600060208201905081810360008301526147cc81614201565b9050919050565b600060208201905081810360008301526147ec81614267565b9050919050565b6000602082019050818103600083015261480c816142cd565b9050919050565b6000602082019050818103600083015261482c8161430d565b9050919050565b6000602082019050818103600083015261484c8161434d565b9050919050565b6000602082019050614868600083018461439c565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561489557614894614d12565b5b8060405250919050565b600067ffffffffffffffff8211156148ba576148b9614d12565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156148e6576148e5614d12565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561491657614915614d12565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149eb82614b69565b91506149f683614b69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a2b57614a2a614c85565b5b828201905092915050565b6000614a4182614b69565b9150614a4c83614b69565b925082614a5c57614a5b614cb4565b5b828204905092915050565b6000614a7282614b69565b9150614a7d83614b69565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ab657614ab5614c85565b5b828202905092915050565b6000614acc82614b69565b9150614ad783614b69565b925082821015614aea57614ae9614c85565b5b828203905092915050565b6000614b0082614b49565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ba0578082015181840152602081019050614b85565b83811115614baf576000848401525b50505050565b60006002820490506001821680614bcd57607f821691505b60208210811415614be157614be0614ce3565b5b50919050565b6000614bf282614b69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c2557614c24614c85565b5b600182019050919050565b6000614c3b82614c42565b9050919050565b6000614c4d82614d52565b9050919050565b6000614c5f82614b69565b9150614c6a83614b69565b925082614c7a57614c79614cb4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b614d6881614af5565b8114614d7357600080fd5b50565b614d7f81614b07565b8114614d8a57600080fd5b50565b614d9681614b13565b8114614da157600080fd5b50565b614dad81614b1d565b8114614db857600080fd5b50565b614dc481614b69565b8114614dcf57600080fd5b5056fea264697066735822122097bfbeab1dfbd556a6a322ef3169f6798accff29d850c0a47fc911d7a127564564736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d543854656d4c436475664761666f7159386135743156364a51463346653244387244356d4d614d77516f334c2f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637270024111610123578063b36d6919116100ab578063e4997dc51161006f578063e4997dc5146107f8578063e985e9c514610821578063f2fde38b1461085e578063fa62884c14610887578063fdea8e0b1461089e57610225565b8063b36d6919146106ff578063b88d4fde1461073c578063c87b56dd14610765578063c908bebd146107a2578063db4568e2146107cd57610225565b806391b7f5ed116100f257806391b7f5ed1461062c57806395d89b4114610655578063a035b1fe14610680578063a22cb465146106ab578063b187bd26146106d457610225565b80637270024114610570578063743976a0146105995780638462151c146105c45780638da5cb5b1461060157610225565b80632eb4a7ab116101b15780634f6ccce7116101755780634f6ccce71461047957806355f804b3146104b65780636352211e146104df57806370a082311461051c578063715018a61461055957610225565b80632eb4a7ab146103a85780632f745c59146103d35780633542aee2146104105780633ccfd60b1461043957806342842e0e1461045057610225565b8063081812fc116101f8578063081812fc146102d7578063095ea7b3146103145780631725051f1461033d57806318160ddd1461035457806323b872dd1461037f57610225565b80630182a1111461022a57806301ffc9a71461024657806302071a6d1461028357806306fdde03146102ac575b600080fd5b610244600480360381019061023f91906137bf565b6108c9565b005b34801561025257600080fd5b5061026d6004803603810190610268919061388c565b610ce1565b60405161027a91906144db565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190613863565b610d5b565b005b3480156102b857600080fd5b506102c1610de1565b6040516102ce9190614511565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061391f565b610e73565b60405161030b9190614406565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190613783565b610ef8565b005b34801561034957600080fd5b50610352611010565b005b34801561036057600080fd5b506103696110b8565b6040516103769190614853565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a1919061367d565b6110c5565b005b3480156103b457600080fd5b506103bd611125565b6040516103ca91906144f6565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190613783565b61112b565b6040516104079190614853565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613783565b6111d0565b005b34801561044557600080fd5b5061044e61135a565b005b34801561045c57600080fd5b506104776004803603810190610472919061367d565b611425565b005b34801561048557600080fd5b506104a0600480360381019061049b919061391f565b611445565b6040516104ad9190614853565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d891906138de565b6114dc565b005b3480156104eb57600080fd5b506105066004803603810190610501919061391f565b611572565b6040516105139190614406565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190613618565b611624565b6040516105509190614853565b60405180910390f35b34801561056557600080fd5b5061056e6116dc565b005b34801561057c57600080fd5b5061059760048036038101906105929190613618565b6117e1565b005b3480156105a557600080fd5b506105ae6118b8565b6040516105bb9190614511565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613618565b611946565b6040516105f891906144b9565b60405180910390f35b34801561060d57600080fd5b50610616611a40565b6040516106239190614406565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e919061391f565b611a6a565b005b34801561066157600080fd5b5061066a611af0565b6040516106779190614511565b60405180910390f35b34801561068c57600080fd5b50610695611b82565b6040516106a29190614853565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190613747565b611b88565b005b3480156106e057600080fd5b506106e9611d09565b6040516106f691906144db565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190613618565b611d1c565b60405161073391906144db565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e91906136cc565b611d72565b005b34801561077157600080fd5b5061078c6004803603810190610787919061391f565b611dd4565b6040516107999190614511565b60405180910390f35b3480156107ae57600080fd5b506107b7611eb8565b6040516107c491906144f6565b60405180910390f35b3480156107d957600080fd5b506107e2611ec2565b6040516107ef9190614853565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190613618565b611ec8565b005b34801561082d57600080fd5b5061084860048036038101906108439190613641565b611f9f565b60405161085591906144db565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190613618565b612033565b005b34801561089357600080fd5b5061089c61212b565b005b3480156108aa57600080fd5b506108b36121d3565b6040516108c091906144db565b60405180910390f35b6102d36108d46110b8565b10610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b90614533565b60405180910390fd5b60001515600d60009054906101000a900460ff1615151461096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190614833565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d190614813565b60405180910390fd5b60006002905060011515600d60019054906101000a900460ff1615151415610b8e576001905060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a906145f3565b60405180910390fd5b600033604051602001610aa691906143ba565b6040516020818303038152906040528051906020012090507327daee1806c259d88265c5ce3304fa330a1e3dc56321fb335c85600e5484876040518563ffffffff1660e01b8152600401610afd949392919061446d565b60206040518083038186803b158015610b1557600080fd5b505af4158015610b29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4d919061383a565b610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b83906147f3565b60405180910390fd5b505b80841115610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890614553565b60405180910390fd5b6000610bdb6110b8565b90503485600c54610bec9190614a67565b1115610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490614773565b60405180910390fd5b60005b85811015610cd8578180610c4390614be7565b925050610c5087836121e6565b60011515600d60019054906101000a900460ff1615151415610cc5576001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8080610cd090614be7565b915050610c30565b50505050505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d545750610d5382612204565b5b9050919050565b610d636122e6565b73ffffffffffffffffffffffffffffffffffffffff16610d81611a40565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90614713565b60405180910390fd5b80600e8190555050565b606060008054610df090614bb5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1c90614bb5565b8015610e695780601f10610e3e57610100808354040283529160200191610e69565b820191906000526020600020905b815481529060010190602001808311610e4c57829003601f168201915b5050505050905090565b6000610e7e826122ee565b610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb4906146f3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f0382611572565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90614793565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f936122e6565b73ffffffffffffffffffffffffffffffffffffffff161480610fc25750610fc181610fbc6122e6565b611f9f565b5b611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890614673565b60405180910390fd5b61100b838361235a565b505050565b6110186122e6565b73ffffffffffffffffffffffffffffffffffffffff16611036611a40565b73ffffffffffffffffffffffffffffffffffffffff161461108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390614713565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600980549050905090565b6110d66110d06122e6565b82612413565b611115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110c906147b3565b60405180910390fd5b6111208383836124f1565b505050565b600e5481565b600061113683611624565b8210611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90614573565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111d86122e6565b73ffffffffffffffffffffffffffffffffffffffff166111f6611a40565b73ffffffffffffffffffffffffffffffffffffffff161461124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390614713565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614833565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990614813565b60405180910390fd5b600061131c6110b8565b905060005b8281101561135457818061133490614be7565b92505061134184836121e6565b808061134c90614be7565b915050611321565b50505050565b6113626122e6565b73ffffffffffffffffffffffffffffffffffffffff16611380611a40565b73ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90614713565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611421573d6000803e3d6000fd5b5050565b61144083838360405180602001604052806000815250611d72565b505050565b600061144f6110b8565b8210611490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611487906147d3565b60405180910390fd5b600982815481106114ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6114e46122e6565b73ffffffffffffffffffffffffffffffffffffffff16611502611a40565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90614713565b60405180910390fd5b806006908051906020019061156e92919061337c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906146b3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90614693565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116e46122e6565b73ffffffffffffffffffffffffffffffffffffffff16611702611a40565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614713565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36117df600061274d565b565b6117e96122e6565b73ffffffffffffffffffffffffffffffffffffffff16611807611a40565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490614713565b60405180910390fd5b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600680546118c590614bb5565b80601f01602080910402602001604051908101604052809291908181526020018280546118f190614bb5565b801561193e5780601f106119135761010080835404028352916020019161193e565b820191906000526020600020905b81548152906001019060200180831161192157829003601f168201915b505050505081565b6060600061195383611624565b905060008167ffffffffffffffff811115611997577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156119c55781602001602082028036833780820191505090505b50905060005b82811015611a35576119dd858261112b565b828281518110611a16577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611a2d90614be7565b9150506119cb565b508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a726122e6565b73ffffffffffffffffffffffffffffffffffffffff16611a90611a40565b73ffffffffffffffffffffffffffffffffffffffff1614611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90614713565b60405180910390fd5b80600c8190555050565b606060018054611aff90614bb5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2b90614bb5565b8015611b785780601f10611b4d57610100808354040283529160200191611b78565b820191906000526020600020905b815481529060010190602001808311611b5b57829003601f168201915b5050505050905090565b600c5481565b611b906122e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf590614633565b60405180910390fd5b8060056000611c0b6122e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb86122e6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cfd91906144db565b60405180910390a35050565b600d60009054906101000a900460ff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d83611d7d6122e6565b83612413565b611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906147b3565b60405180910390fd5b611dce84848484612813565b50505050565b6060611ddf826122ee565b611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590614753565b60405180910390fd5b6000611e2861286f565b905060006040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525090506000825111611e825760405180602001604052806000815250611eaf565b81611e8c85612901565b82604051602001611e9f939291906143d5565b6040516020818303038152906040525b92505050919050565b6000600e54905090565b6102d381565b611ed06122e6565b73ffffffffffffffffffffffffffffffffffffffff16611eee611a40565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90614713565b60405180910390fd5b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61203b6122e6565b73ffffffffffffffffffffffffffffffffffffffff16612059611a40565b73ffffffffffffffffffffffffffffffffffffffff16146120af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a690614713565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561211f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612116906145b3565b60405180910390fd5b6121288161274d565b50565b6121336122e6565b73ffffffffffffffffffffffffffffffffffffffff16612151611a40565b73ffffffffffffffffffffffffffffffffffffffff16146121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90614713565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60019054906101000a900460ff1681565b612200828260405180602001604052806000815250612aae565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122df57506122de82612b09565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123cd83611572565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061241e826122ee565b61245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490614653565b60405180910390fd5b600061246883611572565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124d757508373ffffffffffffffffffffffffffffffffffffffff166124bf84610e73565b73ffffffffffffffffffffffffffffffffffffffff16145b806124e857506124e78185611f9f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661251182611572565b73ffffffffffffffffffffffffffffffffffffffff1614612567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255e90614733565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce90614613565b60405180910390fd5b6125e2838383612b73565b6125ed60008261235a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461263d9190614ac1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461269491906149e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61281e8484846124f1565b61282a84848484612c87565b612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614593565b60405180910390fd5b50505050565b60606006805461287e90614bb5565b80601f01602080910402602001604051908101604052809291908181526020018280546128aa90614bb5565b80156128f75780601f106128cc576101008083540402835291602001916128f7565b820191906000526020600020905b8154815290600101906020018083116128da57829003601f168201915b5050505050905090565b60606000821415612949576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aa9565b600082905060005b6000821461297b57808061296490614be7565b915050600a826129749190614a36565b9150612951565b60008167ffffffffffffffff8111156129bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129ef5781602001600182028036833780820191505090505b5090505b60008514612aa257600182612a089190614ac1565b9150600a85612a179190614c54565b6030612a2391906149e0565b60f81b818381518110612a5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a9b9190614a36565b94506129f3565b8093505050505b919050565b612ab88383612e1e565b612ac56000848484612c87565b612b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afb90614593565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b7e838383612fec565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bc157612bbc81612ff1565b612c00565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bff57612bfe838261303a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c4357612c3e816131a7565b612c82565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c8157612c8082826132ea565b5b5b505050565b6000612ca88473ffffffffffffffffffffffffffffffffffffffff16613369565b15612e11578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cd16122e6565b8786866040518563ffffffff1660e01b8152600401612cf39493929190614421565b602060405180830381600087803b158015612d0d57600080fd5b505af1925050508015612d3e57506040513d601f19601f82011682018060405250810190612d3b91906138b5565b60015b612dc1573d8060008114612d6e576040519150601f19603f3d011682016040523d82523d6000602084013e612d73565b606091505b50600081511415612db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db090614593565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e16565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e85906146d3565b60405180910390fd5b612e97816122ee565b15612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece906145d3565b60405180910390fd5b612ee360008383612b73565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3391906149e0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161304784611624565b6130519190614ac1565b9050600060086000848152602001908152602001600020549050818114613136576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506131bb9190614ac1565b90506000600a6000848152602001908152602001600020549050600060098381548110613211577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613259577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806132ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132f583611624565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461338890614bb5565b90600052602060002090601f0160209004810192826133aa57600085556133f1565b82601f106133c357805160ff19168380011785556133f1565b828001600101855582156133f1579182015b828111156133f05782518255916020019190600101906133d5565b5b5090506133fe9190613402565b5090565b5b8082111561341b576000816000905550600101613403565b5090565b600061343261342d8461489f565b61486e565b9050808382526020820190508285602086028201111561345157600080fd5b60005b8581101561348157816134678882613570565b845260208401935060208301925050600181019050613454565b5050509392505050565b600061349e613499846148cb565b61486e565b9050828152602081018484840111156134b657600080fd5b6134c1848285614b73565b509392505050565b60006134dc6134d7846148fb565b61486e565b9050828152602081018484840111156134f457600080fd5b6134ff848285614b73565b509392505050565b60008135905061351681614d5f565b92915050565b600082601f83011261352d57600080fd5b813561353d84826020860161341f565b91505092915050565b60008135905061355581614d76565b92915050565b60008151905061356a81614d76565b92915050565b60008135905061357f81614d8d565b92915050565b60008135905061359481614da4565b92915050565b6000815190506135a981614da4565b92915050565b600082601f8301126135c057600080fd5b81356135d084826020860161348b565b91505092915050565b600082601f8301126135ea57600080fd5b81356135fa8482602086016134c9565b91505092915050565b60008135905061361281614dbb565b92915050565b60006020828403121561362a57600080fd5b600061363884828501613507565b91505092915050565b6000806040838503121561365457600080fd5b600061366285828601613507565b925050602061367385828601613507565b9150509250929050565b60008060006060848603121561369257600080fd5b60006136a086828701613507565b93505060206136b186828701613507565b92505060406136c286828701613603565b9150509250925092565b600080600080608085870312156136e257600080fd5b60006136f087828801613507565b945050602061370187828801613507565b935050604061371287828801613603565b925050606085013567ffffffffffffffff81111561372f57600080fd5b61373b878288016135af565b91505092959194509250565b6000806040838503121561375a57600080fd5b600061376885828601613507565b925050602061377985828601613546565b9150509250929050565b6000806040838503121561379657600080fd5b60006137a485828601613507565b92505060206137b585828601613603565b9150509250929050565b600080600080608085870312156137d557600080fd5b60006137e387828801613507565b94505060206137f487828801613603565b935050604085013567ffffffffffffffff81111561381157600080fd5b61381d8782880161351c565b925050606061382e87828801613603565b91505092959194509250565b60006020828403121561384c57600080fd5b600061385a8482850161355b565b91505092915050565b60006020828403121561387557600080fd5b600061388384828501613570565b91505092915050565b60006020828403121561389e57600080fd5b60006138ac84828501613585565b91505092915050565b6000602082840312156138c757600080fd5b60006138d58482850161359a565b91505092915050565b6000602082840312156138f057600080fd5b600082013567ffffffffffffffff81111561390a57600080fd5b613916848285016135d9565b91505092915050565b60006020828403121561393157600080fd5b600061393f84828501613603565b91505092915050565b60006139548383613a87565b60208301905092915050565b600061396c838361438d565b60208301905092915050565b61398181614af5565b82525050565b61399861399382614af5565b614c30565b82525050565b60006139a98261494b565b6139b38185614991565b93506139be8361492b565b8060005b838110156139ef5781516139d68882613948565b97506139e183614977565b9250506001810190506139c2565b5085935050505092915050565b6000613a0782614956565b613a1181856149a2565b9350613a1c8361493b565b8060005b83811015613a4d578151613a348882613960565b9750613a3f83614984565b925050600181019050613a20565b5085935050505092915050565b613a6381614b07565b82525050565b613a7281614b13565b82525050565b613a8181614b13565b82525050565b613a9081614b13565b82525050565b6000613aa182614961565b613aab81856149b3565b9350613abb818560208601614b82565b613ac481614d41565b840191505092915050565b6000613ada8261496c565b613ae481856149c4565b9350613af4818560208601614b82565b613afd81614d41565b840191505092915050565b6000613b138261496c565b613b1d81856149d5565b9350613b2d818560208601614b82565b80840191505092915050565b6000613b46601d836149c4565b91507f4d696e7420776f7572642065786365656420746f74616c537570706c790000006000830152602082019050919050565b6000613b866013836149c4565b91507f457863656564206d6178207175616e74697479000000000000000000000000006000830152602082019050919050565b6000613bc6602b836149c4565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613c2c6032836149c4565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613c926026836149c4565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cf8601c836149c4565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613d386013836149c4565b91507f416c7265616479204d696e7465642055736572000000000000000000000000006000830152602082019050919050565b6000613d786024836149c4565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dde6019836149c4565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613e1e602c836149c4565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613e846038836149c4565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613eea602a836149c4565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f506029836149c4565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fb66020836149c4565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613ff6602c836149c4565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061405c6020836149c4565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061409c6029836149c4565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614102602f836149c4565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006141686011836149c4565b91507f57726f6e6720616d6f756e742073656e740000000000000000000000000000006000830152602082019050919050565b60006141a86021836149c4565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061420e6031836149c4565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614274602c836149c4565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b60006142da600d836149c4565b91507f496e76616c69642070726f6f66000000000000000000000000000000000000006000830152602082019050919050565b600061431a6018836149c4565b91507f4d696e7420746f20746865207a65726f206164647265737300000000000000006000830152602082019050919050565b600061435a6020836149c4565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b61439681614b69565b82525050565b6143a581614b69565b82525050565b6143b481614b69565b82525050565b60006143c68284613987565b60148201915081905092915050565b60006143e18286613b08565b91506143ed8285613b08565b91506143f98284613b08565b9150819050949350505050565b600060208201905061441b6000830184613978565b92915050565b60006080820190506144366000830187613978565b6144436020830186613978565b614450604083018561439c565b81810360608301526144628184613a96565b905095945050505050565b60006080820190508181036000830152614487818761399e565b90506144966020830186613a78565b6144a36040830185613a78565b6144b060608301846143ab565b95945050505050565b600060208201905081810360008301526144d381846139fc565b905092915050565b60006020820190506144f06000830184613a5a565b92915050565b600060208201905061450b6000830184613a69565b92915050565b6000602082019050818103600083015261452b8184613acf565b905092915050565b6000602082019050818103600083015261454c81613b39565b9050919050565b6000602082019050818103600083015261456c81613b79565b9050919050565b6000602082019050818103600083015261458c81613bb9565b9050919050565b600060208201905081810360008301526145ac81613c1f565b9050919050565b600060208201905081810360008301526145cc81613c85565b9050919050565b600060208201905081810360008301526145ec81613ceb565b9050919050565b6000602082019050818103600083015261460c81613d2b565b9050919050565b6000602082019050818103600083015261462c81613d6b565b9050919050565b6000602082019050818103600083015261464c81613dd1565b9050919050565b6000602082019050818103600083015261466c81613e11565b9050919050565b6000602082019050818103600083015261468c81613e77565b9050919050565b600060208201905081810360008301526146ac81613edd565b9050919050565b600060208201905081810360008301526146cc81613f43565b9050919050565b600060208201905081810360008301526146ec81613fa9565b9050919050565b6000602082019050818103600083015261470c81613fe9565b9050919050565b6000602082019050818103600083015261472c8161404f565b9050919050565b6000602082019050818103600083015261474c8161408f565b9050919050565b6000602082019050818103600083015261476c816140f5565b9050919050565b6000602082019050818103600083015261478c8161415b565b9050919050565b600060208201905081810360008301526147ac8161419b565b9050919050565b600060208201905081810360008301526147cc81614201565b9050919050565b600060208201905081810360008301526147ec81614267565b9050919050565b6000602082019050818103600083015261480c816142cd565b9050919050565b6000602082019050818103600083015261482c8161430d565b9050919050565b6000602082019050818103600083015261484c8161434d565b9050919050565b6000602082019050614868600083018461439c565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561489557614894614d12565b5b8060405250919050565b600067ffffffffffffffff8211156148ba576148b9614d12565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156148e6576148e5614d12565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561491657614915614d12565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149eb82614b69565b91506149f683614b69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a2b57614a2a614c85565b5b828201905092915050565b6000614a4182614b69565b9150614a4c83614b69565b925082614a5c57614a5b614cb4565b5b828204905092915050565b6000614a7282614b69565b9150614a7d83614b69565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ab657614ab5614c85565b5b828202905092915050565b6000614acc82614b69565b9150614ad783614b69565b925082821015614aea57614ae9614c85565b5b828203905092915050565b6000614b0082614b49565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ba0578082015181840152602081019050614b85565b83811115614baf576000848401525b50505050565b60006002820490506001821680614bcd57607f821691505b60208210811415614be157614be0614ce3565b5b50919050565b6000614bf282614b69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c2557614c24614c85565b5b600182019050919050565b6000614c3b82614c42565b9050919050565b6000614c4d82614d52565b9050919050565b6000614c5f82614b69565b9150614c6a83614b69565b925082614c7a57614c79614cb4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b614d6881614af5565b8114614d7357600080fd5b50565b614d7f81614b07565b8114614d8a57600080fd5b50565b614d9681614b13565b8114614da157600080fd5b50565b614dad81614b1d565b8114614db857600080fd5b50565b614dc481614b69565b8114614dcf57600080fd5b5056fea264697066735822122097bfbeab1dfbd556a6a322ef3169f6798accff29d850c0a47fc911d7a127564564736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d543854656d4c436475664761666f7159386135743156364a51463346653244387244356d4d614d77516f334c2f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmT8TemLCdufGafoqY8a5t1V6JQF3Fe2D8rD5mMaMwQo3L/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d543854656d4c436475
Arg [3] : 664761666f7159386135743156364a51463346653244387244356d4d614d7751
Arg [4] : 6f334c2f00000000000000000000000000000000000000000000000000000000


Libraries Used


Deployed Bytecode Sourcemap

49507:3585:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50100:1024;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43359:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51519:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31305:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32922:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32445:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51328:83;;;;;;;;;;;;;:::i;:::-;;43999:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33812:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49837:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43667:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51742:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52949:140;;;;;;;;;;;;;:::i;:::-;;34222:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44189:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51132:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30999:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30729:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28417:150;;;;;;;;;;;;;:::i;:::-;;52131:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30027:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52590:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27766:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51419:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31474:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49711:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33215:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49770:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52347:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34478:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31649:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51640:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49665:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52237:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33581:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28722:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51237:83;;;;;;;;;;;;;:::i;:::-;;49804:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50100:1024;49701:3;52500:13;:11;:13::i;:::-;:28;52492:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;50245:5:::1;50233:17;;:8;;;;;;;;;;;:17;;;50225:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50321:1;50306:17;;:3;:17;;;;50298:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50363:19;50385:1;50363:23;;50412:4;50401:15;;:7;;;;;;;;;;;:15;;;50397:311;;;50447:1;50433:15;;50500:5;50471:34;;:13;:25;50485:10;50471:25;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;50463:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50544:12;50586:10;50569:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;50559:39;;;;;;50544:54;;50621:11;:18;50640:12;50654:10;;50666:4;50672:5;50621:57;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50613:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;50397:311;;50740:11;50728:8;:23;;50720:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50788:15;50806:13;:11;:13::i;:::-;50788:31;;50860:9;50848:8;50840:5;;:16;;;;:::i;:::-;:29;;50832:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;50907:9;50902:215;50926:8;50922:1;:12;50902:215;;;50956:9;;;;;:::i;:::-;;;;50980:23;50990:3;50995:7;50980:9;:23::i;:::-;51033:4;51022:15;;:7;;;;;;;;;;;:15;;;51018:88;;;51086:4;51058:13;:25;51072:10;51058:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;51018:88;50936:3;;;;;:::i;:::-;;;;50902:215;;;;52573:1;;50100:1024:::0;;;;:::o;43359:224::-;43461:4;43500:35;43485:50;;;:11;:50;;;;:90;;;;43539:36;43563:11;43539:23;:36::i;:::-;43485:90;43478:97;;43359:224;;;:::o;51519:113::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51610:14:::1;51597:10;:27;;;;51519:113:::0;:::o;31305:100::-;31359:13;31392:5;31385:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31305:100;:::o;32922:221::-;32998:7;33026:16;33034:7;33026;:16::i;:::-;33018:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33111:15;:24;33127:7;33111:24;;;;;;;;;;;;;;;;;;;;;33104:31;;32922:221;;;:::o;32445:411::-;32526:13;32542:23;32557:7;32542:14;:23::i;:::-;32526:39;;32590:5;32584:11;;:2;:11;;;;32576:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32684:5;32668:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32693:37;32710:5;32717:12;:10;:12::i;:::-;32693:16;:37::i;:::-;32668:62;32646:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32827:21;32836:2;32840:7;32827:8;:21::i;:::-;32445:411;;;:::o;51328:83::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51396:7:::1;;;;;;;;;;;51395:8;51385:7;;:18;;;;;;;;;;;;;;;;;;51328:83::o:0;43999:113::-;44060:7;44087:10;:17;;;;44080:24;;43999:113;:::o;33812:339::-;34007:41;34026:12;:10;:12::i;:::-;34040:7;34007:18;:41::i;:::-;33999:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34115:28;34125:4;34131:2;34135:7;34115:9;:28::i;:::-;33812:339;;;:::o;49837:94::-;;;;:::o;43667:256::-;43764:7;43800:23;43817:5;43800:16;:23::i;:::-;43792:5;:31;43784:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43889:12;:19;43902:5;43889:19;;;;;;;;;;;;;;;:26;43909:5;43889:26;;;;;;;;;;;;43882:33;;43667:256;;;;:::o;51742:381::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51841:5:::1;51829:17;;:8;;;;;;;;;;;:17;;;51821:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51917:1;51902:17;;:3;:17;;;;51894:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;51961:15;51979:13;:11;:13::i;:::-;51961:31;;52008:9;52003:113;52027:8;52023:1;:12;52003:113;;;52057:9;;;;;:::i;:::-;;;;52081:23;52091:3;52096:7;52081:9;:23::i;:::-;52037:3;;;;;:::i;:::-;;;;52003:113;;;;28057:1;51742:381:::0;;:::o;52949:140::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52997:12:::1;53012:21;52997:36;;53052:10;53044:28;;:37;53073:7;53044:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;28057:1;52949:140::o:0;34222:185::-;34360:39;34377:4;34383:2;34387:7;34360:39;;;;;;;;;;;;:16;:39::i;:::-;34222:185;;;:::o;44189:233::-;44264:7;44300:30;:28;:30::i;:::-;44292:5;:38;44284:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44397:10;44408:5;44397:17;;;;;;;;;;;;;;;;;;;;;;;;44390:24;;44189:233;;;:::o;51132:97::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51214:7:::1;51203:8;:18;;;;;;;;;;;;:::i;:::-;;51132:97:::0;:::o;30999:239::-;31071:7;31091:13;31107:7;:16;31115:7;31107:16;;;;;;;;;;;;;;;;;;;;;31091:32;;31159:1;31142:19;;:5;:19;;;;31134:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31225:5;31218:12;;;30999:239;;;:::o;30729:208::-;30801:7;30846:1;30829:19;;:5;:19;;;;30821:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30913:9;:16;30923:5;30913:16;;;;;;;;;;;;;;;;30906:23;;30729:208;;;:::o;28417:150::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28524:1:::1;28487:40;;28508:6;;;;;;;;;;;28487:40;;;;;;;;;;;;28538:21;28556:1;28538:9;:21::i;:::-;28417:150::o:0;52131:98::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52217:4:::1;52195:13;:19;52209:4;52195:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;52131:98:::0;:::o;30027:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52590:351::-;52650:16;52684:13;52700:17;52710:6;52700:9;:17::i;:::-;52684:33;;52728:23;52768:5;52754:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52728:46;;52790:13;52785:125;52817:5;52809;:13;52785:125;;;52864:34;52884:6;52892:5;52864:19;:34::i;:::-;52848:6;52855:5;52848:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;52824:7;;;;;:::i;:::-;;;;52785:125;;;;52927:6;52920:13;;;;52590:351;;;:::o;27766:87::-;27812:7;27839:6;;;;;;;;;;;27832:13;;27766:87;:::o;51419:92::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51494:9:::1;51486:5;:17;;;;51419:92:::0;:::o;31474:104::-;31530:13;31563:7;31556:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31474:104;:::o;49711:41::-;;;;:::o;33215:295::-;33330:12;:10;:12::i;:::-;33318:24;;:8;:24;;;;33310:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33430:8;33385:18;:32;33404:12;:10;:12::i;:::-;33385:32;;;;;;;;;;;;;;;:42;33418:8;33385:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33483:8;33454:48;;33469:12;:10;:12::i;:::-;33454:48;;;33493:8;33454:48;;;;;;:::i;:::-;;;;;;;;33215:295;;:::o;49770:27::-;;;;;;;;;;;;;:::o;52347:107::-;52403:4;52427:13;:19;52441:4;52427:19;;;;;;;;;;;;;;;;;;;;;;;;;52420:26;;52347:107;;;:::o;34478:328::-;34653:41;34672:12;:10;:12::i;:::-;34686:7;34653:18;:41::i;:::-;34645:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34759:39;34773:4;34779:2;34783:7;34792:5;34759:13;:39::i;:::-;34478:328;;;;:::o;31649:387::-;31722:13;31756:16;31764:7;31756;:16::i;:::-;31748:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31837:18;31858:9;:7;:9::i;:::-;31837:30;;31878:27;:37;;;;;;;;;;;;;;;;;;;31954:1;31939:4;31933:18;:22;:95;;;;;;;;;;;;;;;;;31982:4;31988:18;:7;:16;:18::i;:::-;32008:13;31965:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31933:95;31926:102;;;;31649:387;;;:::o;51640:94::-;51689:7;51716:10;;51709:17;;51640:94;:::o;49665:39::-;49701:3;49665:39;:::o;52237:102::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52326:5:::1;52304:13;:19;52318:4;52304:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;52237:102:::0;:::o;33581:164::-;33678:4;33702:18;:25;33721:5;33702:25;;;;;;;;;;;;;;;:35;33728:8;33702:35;;;;;;;;;;;;;;;;;;;;;;;;;33695:42;;33581:164;;;;:::o;28722:192::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28831:1:::1;28811:22;;:8;:22;;;;28803:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28887:19;28897:8;28887:9;:19::i;:::-;28722:192:::0;:::o;51237:83::-;27997:12;:10;:12::i;:::-;27986:23;;:7;:5;:7::i;:::-;:23;;;27978:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51304:8:::1;;;;;;;;;;;51303:9;51292:8;;:20;;;;;;;;;;;;;;;;;;51237:83::o:0;49804:26::-;;;;;;;;;;;;;:::o;37300:110::-;37376:26;37386:2;37390:7;37376:26;;;;;;;;;;;;:9;:26::i;:::-;37300:110;;:::o;30360:305::-;30462:4;30514:25;30499:40;;;:11;:40;;;;:105;;;;30571:33;30556:48;;;:11;:48;;;;30499:105;:158;;;;30621:36;30645:11;30621:23;:36::i;:::-;30499:158;30479:178;;30360:305;;;:::o;26544:98::-;26597:7;26624:10;26617:17;;26544:98;:::o;36316:127::-;36381:4;36433:1;36405:30;;:7;:16;36413:7;36405:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36398:37;;36316:127;;;:::o;40298:174::-;40400:2;40373:15;:24;40389:7;40373:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40456:7;40452:2;40418:46;;40427:23;40442:7;40427:14;:23::i;:::-;40418:46;;;;;;;;;;;;40298:174;;:::o;36610:348::-;36703:4;36728:16;36736:7;36728;:16::i;:::-;36720:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36804:13;36820:23;36835:7;36820:14;:23::i;:::-;36804:39;;36873:5;36862:16;;:7;:16;;;:51;;;;36906:7;36882:31;;:20;36894:7;36882:11;:20::i;:::-;:31;;;36862:51;:87;;;;36917:32;36934:5;36941:7;36917:16;:32::i;:::-;36862:87;36854:96;;;36610:348;;;;:::o;39602:578::-;39761:4;39734:31;;:23;39749:7;39734:14;:23::i;:::-;:31;;;39726:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39844:1;39830:16;;:2;:16;;;;39822:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39900:39;39921:4;39927:2;39931:7;39900:20;:39::i;:::-;40004:29;40021:1;40025:7;40004:8;:29::i;:::-;40065:1;40046:9;:15;40056:4;40046:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40094:1;40077:9;:13;40087:2;40077:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40125:2;40106:7;:16;40114:7;40106:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40164:7;40160:2;40145:27;;40154:4;40145:27;;;;;;;;;;;;39602:578;;;:::o;28922:173::-;28978:16;28997:6;;;;;;;;;;;28978:25;;29023:8;29014:6;;:17;;;;;;;;;;;;;;;;;;29078:8;29047:40;;29068:8;29047:40;;;;;;;;;;;;28922:173;;:::o;35688:315::-;35845:28;35855:4;35861:2;35865:7;35845:9;:28::i;:::-;35892:48;35915:4;35921:2;35925:7;35934:5;35892:22;:48::i;:::-;35884:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35688:315;;;;:::o;32284:99::-;32334:13;32367:8;32360:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32284:99;:::o;7154:723::-;7210:13;7440:1;7431:5;:10;7427:53;;;7458:10;;;;;;;;;;;;;;;;;;;;;7427:53;7490:12;7505:5;7490:20;;7521:14;7546:78;7561:1;7553:4;:9;7546:78;;7579:8;;;;;:::i;:::-;;;;7610:2;7602:10;;;;;:::i;:::-;;;7546:78;;;7634:19;7666:6;7656:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7634:39;;7684:154;7700:1;7691:5;:10;7684:154;;7728:1;7718:11;;;;;:::i;:::-;;;7795:2;7787:5;:10;;;;:::i;:::-;7774:2;:24;;;;:::i;:::-;7761:39;;7744:6;7751;7744:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;7824:2;7815:11;;;;;:::i;:::-;;;7684:154;;;7862:6;7848:21;;;;;7154:723;;;;:::o;37637:321::-;37767:18;37773:2;37777:7;37767:5;:18::i;:::-;37818:54;37849:1;37853:2;37857:7;37866:5;37818:22;:54::i;:::-;37796:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37637:321;;;:::o;19638:157::-;19723:4;19762:25;19747:40;;;:11;:40;;;;19740:47;;19638:157;;;:::o;45035:589::-;45179:45;45206:4;45212:2;45216:7;45179:26;:45::i;:::-;45257:1;45241:18;;:4;:18;;;45237:187;;;45276:40;45308:7;45276:31;:40::i;:::-;45237:187;;;45346:2;45338:10;;:4;:10;;;45334:90;;45365:47;45398:4;45404:7;45365:32;:47::i;:::-;45334:90;45237:187;45452:1;45438:16;;:2;:16;;;45434:183;;;45471:45;45508:7;45471:36;:45::i;:::-;45434:183;;;45544:4;45538:10;;:2;:10;;;45534:83;;45565:40;45593:2;45597:7;45565:27;:40::i;:::-;45534:83;45434:183;45035:589;;;:::o;41037:803::-;41192:4;41213:15;:2;:13;;;:15::i;:::-;41209:624;;;41265:2;41249:36;;;41286:12;:10;:12::i;:::-;41300:4;41306:7;41315:5;41249:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41245:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41512:1;41495:6;:13;:18;41491:272;;;41538:60;;;;;;;;;;:::i;:::-;;;;;;;;41491:272;41713:6;41707:13;41698:6;41694:2;41690:15;41683:38;41245:533;41382:45;;;41372:55;;;:6;:55;;;;41365:62;;;;;41209:624;41817:4;41810:11;;41037:803;;;;;;;:::o;38294:382::-;38388:1;38374:16;;:2;:16;;;;38366:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38447:16;38455:7;38447;:16::i;:::-;38446:17;38438:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38509:45;38538:1;38542:2;38546:7;38509:20;:45::i;:::-;38584:1;38567:9;:13;38577:2;38567:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38615:2;38596:7;:16;38604:7;38596:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38660:7;38656:2;38635:33;;38652:1;38635:33;;;;;;;;;;;;38294:382;;:::o;42412:126::-;;;;:::o;46347:164::-;46451:10;:17;;;;46424:15;:24;46440:7;46424:24;;;;;;;;;;;:44;;;;46479:10;46495:7;46479:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46347:164;:::o;47138:988::-;47404:22;47454:1;47429:22;47446:4;47429:16;:22::i;:::-;:26;;;;:::i;:::-;47404:51;;47466:18;47487:17;:26;47505:7;47487:26;;;;;;;;;;;;47466:47;;47634:14;47620:10;:28;47616:328;;47665:19;47687:12;:18;47700:4;47687:18;;;;;;;;;;;;;;;:34;47706:14;47687:34;;;;;;;;;;;;47665:56;;47771:11;47738:12;:18;47751:4;47738:18;;;;;;;;;;;;;;;:30;47757:10;47738:30;;;;;;;;;;;:44;;;;47888:10;47855:17;:30;47873:11;47855:30;;;;;;;;;;;:43;;;;47616:328;;48040:17;:26;48058:7;48040:26;;;;;;;;;;;48033:33;;;48084:12;:18;48097:4;48084:18;;;;;;;;;;;;;;;:34;48103:14;48084:34;;;;;;;;;;;48077:41;;;47138:988;;;;:::o;48421:1079::-;48674:22;48719:1;48699:10;:17;;;;:21;;;;:::i;:::-;48674:46;;48731:18;48752:15;:24;48768:7;48752:24;;;;;;;;;;;;48731:45;;49103:19;49125:10;49136:14;49125:26;;;;;;;;;;;;;;;;;;;;;;;;49103:48;;49189:11;49164:10;49175;49164:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;49300:10;49269:15;:28;49285:11;49269:28;;;;;;;;;;;:41;;;;49441:15;:24;49457:7;49441:24;;;;;;;;;;;49434:31;;;49476:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48421:1079;;;;:::o;45925:221::-;46010:14;46027:20;46044:2;46027:16;:20::i;:::-;46010:37;;46085:7;46058:12;:16;46071:2;46058:16;;;;;;;;;;;;;;;:24;46075:6;46058:24;;;;;;;;;;;:34;;;;46132:6;46103:17;:26;46121:7;46103:26;;;;;;;;;;;:35;;;;45925:221;;;:::o;9594:387::-;9654:4;9862:12;9929:7;9917:20;9909:28;;9972:1;9965:4;:8;9958:15;;;9594:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2045:6;2039:13;2030:22;;2061:30;2085:5;2061:30;:::i;:::-;2020:77;;;;:::o;2103:139::-;;2187:6;2174:20;2165:29;;2203:33;2230:5;2203:33;:::i;:::-;2155:87;;;;:::o;2248:137::-;;2331:6;2318:20;2309:29;;2347:32;2373:5;2347:32;:::i;:::-;2299:86;;;;:::o;2391:141::-;;2478:6;2472:13;2463:22;;2494:32;2520:5;2494:32;:::i;:::-;2453:79;;;;:::o;2551:271::-;;2655:3;2648:4;2640:6;2636:17;2632:27;2622:2;;2673:1;2670;2663:12;2622:2;2713:6;2700:20;2738:78;2812:3;2804:6;2797:4;2789:6;2785:17;2738:78;:::i;:::-;2729:87;;2612:210;;;;;:::o;2842:273::-;;2947:3;2940:4;2932:6;2928:17;2924:27;2914:2;;2965:1;2962;2955:12;2914:2;3005:6;2992:20;3030:79;3105:3;3097:6;3090:4;3082:6;3078:17;3030:79;:::i;:::-;3021:88;;2904:211;;;;;:::o;3121:139::-;;3205:6;3192:20;3183:29;;3221:33;3248:5;3221:33;:::i;:::-;3173:87;;;;:::o;3266:262::-;;3374:2;3362:9;3353:7;3349:23;3345:32;3342:2;;;3390:1;3387;3380:12;3342:2;3433:1;3458:53;3503:7;3494:6;3483:9;3479:22;3458:53;:::i;:::-;3448:63;;3404:117;3332:196;;;;:::o;3534:407::-;;;3659:2;3647:9;3638:7;3634:23;3630:32;3627:2;;;3675:1;3672;3665:12;3627:2;3718:1;3743:53;3788:7;3779:6;3768:9;3764:22;3743:53;:::i;:::-;3733:63;;3689:117;3845:2;3871:53;3916:7;3907:6;3896:9;3892:22;3871:53;:::i;:::-;3861:63;;3816:118;3617:324;;;;;:::o;3947:552::-;;;;4089:2;4077:9;4068:7;4064:23;4060:32;4057:2;;;4105:1;4102;4095:12;4057:2;4148:1;4173:53;4218:7;4209:6;4198:9;4194:22;4173:53;:::i;:::-;4163:63;;4119:117;4275:2;4301:53;4346:7;4337:6;4326:9;4322:22;4301:53;:::i;:::-;4291:63;;4246:118;4403:2;4429:53;4474:7;4465:6;4454:9;4450:22;4429:53;:::i;:::-;4419:63;;4374:118;4047:452;;;;;:::o;4505:809::-;;;;;4673:3;4661:9;4652:7;4648:23;4644:33;4641:2;;;4690:1;4687;4680:12;4641:2;4733:1;4758:53;4803:7;4794:6;4783:9;4779:22;4758:53;:::i;:::-;4748:63;;4704:117;4860:2;4886:53;4931:7;4922:6;4911:9;4907:22;4886:53;:::i;:::-;4876:63;;4831:118;4988:2;5014:53;5059:7;5050:6;5039:9;5035:22;5014:53;:::i;:::-;5004:63;;4959:118;5144:2;5133:9;5129:18;5116:32;5175:18;5167:6;5164:30;5161:2;;;5207:1;5204;5197:12;5161:2;5235:62;5289:7;5280:6;5269:9;5265:22;5235:62;:::i;:::-;5225:72;;5087:220;4631:683;;;;;;;:::o;5320:401::-;;;5442:2;5430:9;5421:7;5417:23;5413:32;5410:2;;;5458:1;5455;5448:12;5410:2;5501:1;5526:53;5571:7;5562:6;5551:9;5547:22;5526:53;:::i;:::-;5516:63;;5472:117;5628:2;5654:50;5696:7;5687:6;5676:9;5672:22;5654:50;:::i;:::-;5644:60;;5599:115;5400:321;;;;;:::o;5727:407::-;;;5852:2;5840:9;5831:7;5827:23;5823:32;5820:2;;;5868:1;5865;5858:12;5820:2;5911:1;5936:53;5981:7;5972:6;5961:9;5957:22;5936:53;:::i;:::-;5926:63;;5882:117;6038:2;6064:53;6109:7;6100:6;6089:9;6085:22;6064:53;:::i;:::-;6054:63;;6009:118;5810:324;;;;;:::o;6140:841::-;;;;;6324:3;6312:9;6303:7;6299:23;6295:33;6292:2;;;6341:1;6338;6331:12;6292:2;6384:1;6409:53;6454:7;6445:6;6434:9;6430:22;6409:53;:::i;:::-;6399:63;;6355:117;6511:2;6537:53;6582:7;6573:6;6562:9;6558:22;6537:53;:::i;:::-;6527:63;;6482:118;6667:2;6656:9;6652:18;6639:32;6698:18;6690:6;6687:30;6684:2;;;6730:1;6727;6720:12;6684:2;6758:78;6828:7;6819:6;6808:9;6804:22;6758:78;:::i;:::-;6748:88;;6610:236;6885:2;6911:53;6956:7;6947:6;6936:9;6932:22;6911:53;:::i;:::-;6901:63;;6856:118;6282:699;;;;;;;:::o;6987:278::-;;7103:2;7091:9;7082:7;7078:23;7074:32;7071:2;;;7119:1;7116;7109:12;7071:2;7162:1;7187:61;7240:7;7231:6;7220:9;7216:22;7187:61;:::i;:::-;7177:71;;7133:125;7061:204;;;;:::o;7271:262::-;;7379:2;7367:9;7358:7;7354:23;7350:32;7347:2;;;7395:1;7392;7385:12;7347:2;7438:1;7463:53;7508:7;7499:6;7488:9;7484:22;7463:53;:::i;:::-;7453:63;;7409:117;7337:196;;;;:::o;7539:260::-;;7646:2;7634:9;7625:7;7621:23;7617:32;7614:2;;;7662:1;7659;7652:12;7614:2;7705:1;7730:52;7774:7;7765:6;7754:9;7750:22;7730:52;:::i;:::-;7720:62;;7676:116;7604:195;;;;:::o;7805:282::-;;7923:2;7911:9;7902:7;7898:23;7894:32;7891:2;;;7939:1;7936;7929:12;7891:2;7982:1;8007:63;8062:7;8053:6;8042:9;8038:22;8007:63;:::i;:::-;7997:73;;7953:127;7881:206;;;;:::o;8093:375::-;;8211:2;8199:9;8190:7;8186:23;8182:32;8179:2;;;8227:1;8224;8217:12;8179:2;8298:1;8287:9;8283:17;8270:31;8328:18;8320:6;8317:30;8314:2;;;8360:1;8357;8350:12;8314:2;8388:63;8443:7;8434:6;8423:9;8419:22;8388:63;:::i;:::-;8378:73;;8241:220;8169:299;;;;:::o;8474:262::-;;8582:2;8570:9;8561:7;8557:23;8553:32;8550:2;;;8598:1;8595;8588:12;8550:2;8641:1;8666:53;8711:7;8702:6;8691:9;8687:22;8666:53;:::i;:::-;8656:63;;8612:117;8540:196;;;;:::o;8742:195::-;;8840:54;8890:3;8882:6;8840:54;:::i;:::-;8926:4;8921:3;8917:14;8903:28;;8830:107;;;;:::o;8943:179::-;;9033:46;9075:3;9067:6;9033:46;:::i;:::-;9111:4;9106:3;9102:14;9088:28;;9023:99;;;;:::o;9128:118::-;9215:24;9233:5;9215:24;:::i;:::-;9210:3;9203:37;9193:53;;:::o;9252:157::-;9357:45;9377:24;9395:5;9377:24;:::i;:::-;9357:45;:::i;:::-;9352:3;9345:58;9335:74;;:::o;9445:756::-;;9601:54;9649:5;9601:54;:::i;:::-;9671:94;9758:6;9753:3;9671:94;:::i;:::-;9664:101;;9789:56;9839:5;9789:56;:::i;:::-;9868:7;9899:1;9884:292;9909:6;9906:1;9903:13;9884:292;;;9985:6;9979:13;10012:71;10079:3;10064:13;10012:71;:::i;:::-;10005:78;;10106:60;10159:6;10106:60;:::i;:::-;10096:70;;9944:232;9931:1;9928;9924:9;9919:14;;9884:292;;;9888:14;10192:3;10185:10;;9577:624;;;;;;;:::o;10237:732::-;;10385:54;10433:5;10385:54;:::i;:::-;10455:86;10534:6;10529:3;10455:86;:::i;:::-;10448:93;;10565:56;10615:5;10565:56;:::i;:::-;10644:7;10675:1;10660:284;10685:6;10682:1;10679:13;10660:284;;;10761:6;10755:13;10788:63;10847:3;10832:13;10788:63;:::i;:::-;10781:70;;10874:60;10927:6;10874:60;:::i;:::-;10864:70;;10720:224;10707:1;10704;10700:9;10695:14;;10660:284;;;10664:14;10960:3;10953:10;;10361:608;;;;;;;:::o;10975:109::-;11056:21;11071:5;11056:21;:::i;:::-;11051:3;11044:34;11034:50;;:::o;11090:118::-;11177:24;11195:5;11177:24;:::i;:::-;11172:3;11165:37;11155:53;;:::o;11214:126::-;11309:24;11327:5;11309:24;:::i;:::-;11304:3;11297:37;11287:53;;:::o;11346:116::-;11431:24;11449:5;11431:24;:::i;:::-;11426:3;11419:37;11409:53;;:::o;11468:360::-;;11582:38;11614:5;11582:38;:::i;:::-;11636:70;11699:6;11694:3;11636:70;:::i;:::-;11629:77;;11715:52;11760:6;11755:3;11748:4;11741:5;11737:16;11715:52;:::i;:::-;11792:29;11814:6;11792:29;:::i;:::-;11787:3;11783:39;11776:46;;11558:270;;;;;:::o;11834:364::-;;11950:39;11983:5;11950:39;:::i;:::-;12005:71;12069:6;12064:3;12005:71;:::i;:::-;11998:78;;12085:52;12130:6;12125:3;12118:4;12111:5;12107:16;12085:52;:::i;:::-;12162:29;12184:6;12162:29;:::i;:::-;12157:3;12153:39;12146:46;;11926:272;;;;;:::o;12204:377::-;;12338:39;12371:5;12338:39;:::i;:::-;12393:89;12475:6;12470:3;12393:89;:::i;:::-;12386:96;;12491:52;12536:6;12531:3;12524:4;12517:5;12513:16;12491:52;:::i;:::-;12568:6;12563:3;12559:16;12552:23;;12314:267;;;;;:::o;12587:327::-;;12750:67;12814:2;12809:3;12750:67;:::i;:::-;12743:74;;12847:31;12843:1;12838:3;12834:11;12827:52;12905:2;12900:3;12896:12;12889:19;;12733:181;;;:::o;12920:317::-;;13083:67;13147:2;13142:3;13083:67;:::i;:::-;13076:74;;13180:21;13176:1;13171:3;13167:11;13160:42;13228:2;13223:3;13219:12;13212:19;;13066:171;;;:::o;13243:375::-;;13406:67;13470:2;13465:3;13406:67;:::i;:::-;13399:74;;13503:34;13499:1;13494:3;13490:11;13483:55;13569:13;13564:2;13559:3;13555:12;13548:35;13609:2;13604:3;13600:12;13593:19;;13389:229;;;:::o;13624:382::-;;13787:67;13851:2;13846:3;13787:67;:::i;:::-;13780:74;;13884:34;13880:1;13875:3;13871:11;13864:55;13950:20;13945:2;13940:3;13936:12;13929:42;13997:2;13992:3;13988:12;13981:19;;13770:236;;;:::o;14012:370::-;;14175:67;14239:2;14234:3;14175:67;:::i;:::-;14168:74;;14272:34;14268:1;14263:3;14259:11;14252:55;14338:8;14333:2;14328:3;14324:12;14317:30;14373:2;14368:3;14364:12;14357:19;;14158:224;;;:::o;14388:326::-;;14551:67;14615:2;14610:3;14551:67;:::i;:::-;14544:74;;14648:30;14644:1;14639:3;14635:11;14628:51;14705:2;14700:3;14696:12;14689:19;;14534:180;;;:::o;14720:317::-;;14883:67;14947:2;14942:3;14883:67;:::i;:::-;14876:74;;14980:21;14976:1;14971:3;14967:11;14960:42;15028:2;15023:3;15019:12;15012:19;;14866:171;;;:::o;15043:368::-;;15206:67;15270:2;15265:3;15206:67;:::i;:::-;15199:74;;15303:34;15299:1;15294:3;15290:11;15283:55;15369:6;15364:2;15359:3;15355:12;15348:28;15402:2;15397:3;15393:12;15386:19;;15189:222;;;:::o;15417:323::-;;15580:67;15644:2;15639:3;15580:67;:::i;:::-;15573:74;;15677:27;15673:1;15668:3;15664:11;15657:48;15731:2;15726:3;15722:12;15715:19;;15563:177;;;:::o;15746:376::-;;15909:67;15973:2;15968:3;15909:67;:::i;:::-;15902:74;;16006:34;16002:1;15997:3;15993:11;15986:55;16072:14;16067:2;16062:3;16058:12;16051:36;16113:2;16108:3;16104:12;16097:19;;15892:230;;;:::o;16128:388::-;;16291:67;16355:2;16350:3;16291:67;:::i;:::-;16284:74;;16388:34;16384:1;16379:3;16375:11;16368:55;16454:26;16449:2;16444:3;16440:12;16433:48;16507:2;16502:3;16498:12;16491:19;;16274:242;;;:::o;16522:374::-;;16685:67;16749:2;16744:3;16685:67;:::i;:::-;16678:74;;16782:34;16778:1;16773:3;16769:11;16762:55;16848:12;16843:2;16838:3;16834:12;16827:34;16887:2;16882:3;16878:12;16871:19;;16668:228;;;:::o;16902:373::-;;17065:67;17129:2;17124:3;17065:67;:::i;:::-;17058:74;;17162:34;17158:1;17153:3;17149:11;17142:55;17228:11;17223:2;17218:3;17214:12;17207:33;17266:2;17261:3;17257:12;17250:19;;17048:227;;;:::o;17281:330::-;;17444:67;17508:2;17503:3;17444:67;:::i;:::-;17437:74;;17541:34;17537:1;17532:3;17528:11;17521:55;17602:2;17597:3;17593:12;17586:19;;17427:184;;;:::o;17617:376::-;;17780:67;17844:2;17839:3;17780:67;:::i;:::-;17773:74;;17877:34;17873:1;17868:3;17864:11;17857:55;17943:14;17938:2;17933:3;17929:12;17922:36;17984:2;17979:3;17975:12;17968:19;;17763:230;;;:::o;17999:330::-;;18162:67;18226:2;18221:3;18162:67;:::i;:::-;18155:74;;18259:34;18255:1;18250:3;18246:11;18239:55;18320:2;18315:3;18311:12;18304:19;;18145:184;;;:::o;18335:373::-;;18498:67;18562:2;18557:3;18498:67;:::i;:::-;18491:74;;18595:34;18591:1;18586:3;18582:11;18575:55;18661:11;18656:2;18651:3;18647:12;18640:33;18699:2;18694:3;18690:12;18683:19;;18481:227;;;:::o;18714:379::-;;18877:67;18941:2;18936:3;18877:67;:::i;:::-;18870:74;;18974:34;18970:1;18965:3;18961:11;18954:55;19040:17;19035:2;19030:3;19026:12;19019:39;19084:2;19079:3;19075:12;19068:19;;18860:233;;;:::o;19099:315::-;;19262:67;19326:2;19321:3;19262:67;:::i;:::-;19255:74;;19359:19;19355:1;19350:3;19346:11;19339:40;19405:2;19400:3;19396:12;19389:19;;19245:169;;;:::o;19420:365::-;;19583:67;19647:2;19642:3;19583:67;:::i;:::-;19576:74;;19680:34;19676:1;19671:3;19667:11;19660:55;19746:3;19741:2;19736:3;19732:12;19725:25;19776:2;19771:3;19767:12;19760:19;;19566:219;;;:::o;19791:381::-;;19954:67;20018:2;20013:3;19954:67;:::i;:::-;19947:74;;20051:34;20047:1;20042:3;20038:11;20031:55;20117:19;20112:2;20107:3;20103:12;20096:41;20163:2;20158:3;20154:12;20147:19;;19937:235;;;:::o;20178:376::-;;20341:67;20405:2;20400:3;20341:67;:::i;:::-;20334:74;;20438:34;20434:1;20429:3;20425:11;20418:55;20504:14;20499:2;20494:3;20490:12;20483:36;20545:2;20540:3;20536:12;20529:19;;20324:230;;;:::o;20560:311::-;;20723:67;20787:2;20782:3;20723:67;:::i;:::-;20716:74;;20820:15;20816:1;20811:3;20807:11;20800:36;20862:2;20857:3;20853:12;20846:19;;20706:165;;;:::o;20877:322::-;;21040:67;21104:2;21099:3;21040:67;:::i;:::-;21033:74;;21137:26;21133:1;21128:3;21124:11;21117:47;21190:2;21185:3;21181:12;21174:19;;21023:176;;;:::o;21205:330::-;;21368:67;21432:2;21427:3;21368:67;:::i;:::-;21361:74;;21465:34;21461:1;21456:3;21452:11;21445:55;21526:2;21521:3;21517:12;21510:19;;21351:184;;;:::o;21541:108::-;21618:24;21636:5;21618:24;:::i;:::-;21613:3;21606:37;21596:53;;:::o;21655:118::-;21742:24;21760:5;21742:24;:::i;:::-;21737:3;21730:37;21720:53;;:::o;21779:126::-;21874:24;21892:5;21874:24;:::i;:::-;21869:3;21862:37;21852:53;;:::o;21911:256::-;;22038:75;22109:3;22100:6;22038:75;:::i;:::-;22138:2;22133:3;22129:12;22122:19;;22158:3;22151:10;;22027:140;;;;:::o;22173:595::-;;22423:95;22514:3;22505:6;22423:95;:::i;:::-;22416:102;;22535:95;22626:3;22617:6;22535:95;:::i;:::-;22528:102;;22647:95;22738:3;22729:6;22647:95;:::i;:::-;22640:102;;22759:3;22752:10;;22405:363;;;;;;:::o;22774:222::-;;22905:2;22894:9;22890:18;22882:26;;22918:71;22986:1;22975:9;22971:17;22962:6;22918:71;:::i;:::-;22872:124;;;;:::o;23002:640::-;;23235:3;23224:9;23220:19;23212:27;;23249:71;23317:1;23306:9;23302:17;23293:6;23249:71;:::i;:::-;23330:72;23398:2;23387:9;23383:18;23374:6;23330:72;:::i;:::-;23412;23480:2;23469:9;23465:18;23456:6;23412:72;:::i;:::-;23531:9;23525:4;23521:20;23516:2;23505:9;23501:18;23494:48;23559:76;23630:4;23621:6;23559:76;:::i;:::-;23551:84;;23202:440;;;;;;;:::o;23648:744::-;;23921:3;23910:9;23906:19;23898:27;;23971:9;23965:4;23961:20;23957:1;23946:9;23942:17;23935:47;23999:116;24110:4;24101:6;23999:116;:::i;:::-;23991:124;;24125:80;24201:2;24190:9;24186:18;24177:6;24125:80;:::i;:::-;24215;24291:2;24280:9;24276:18;24267:6;24215:80;:::i;:::-;24305;24381:2;24370:9;24366:18;24357:6;24305:80;:::i;:::-;23888:504;;;;;;;:::o;24398:373::-;;24579:2;24568:9;24564:18;24556:26;;24628:9;24622:4;24618:20;24614:1;24603:9;24599:17;24592:47;24656:108;24759:4;24750:6;24656:108;:::i;:::-;24648:116;;24546:225;;;;:::o;24777:210::-;;24902:2;24891:9;24887:18;24879:26;;24915:65;24977:1;24966:9;24962:17;24953:6;24915:65;:::i;:::-;24869:118;;;;:::o;24993:222::-;;25124:2;25113:9;25109:18;25101:26;;25137:71;25205:1;25194:9;25190:17;25181:6;25137:71;:::i;:::-;25091:124;;;;:::o;25221:313::-;;25372:2;25361:9;25357:18;25349:26;;25421:9;25415:4;25411:20;25407:1;25396:9;25392:17;25385:47;25449:78;25522:4;25513:6;25449:78;:::i;:::-;25441:86;;25339:195;;;;:::o;25540:419::-;;25744:2;25733:9;25729:18;25721:26;;25793:9;25787:4;25783:20;25779:1;25768:9;25764:17;25757:47;25821:131;25947:4;25821:131;:::i;:::-;25813:139;;25711:248;;;:::o;25965:419::-;;26169:2;26158:9;26154:18;26146:26;;26218:9;26212:4;26208:20;26204:1;26193:9;26189:17;26182:47;26246:131;26372:4;26246:131;:::i;:::-;26238:139;;26136:248;;;:::o;26390:419::-;;26594:2;26583:9;26579:18;26571:26;;26643:9;26637:4;26633:20;26629:1;26618:9;26614:17;26607:47;26671:131;26797:4;26671:131;:::i;:::-;26663:139;;26561:248;;;:::o;26815:419::-;;27019:2;27008:9;27004:18;26996:26;;27068:9;27062:4;27058:20;27054:1;27043:9;27039:17;27032:47;27096:131;27222:4;27096:131;:::i;:::-;27088:139;;26986:248;;;:::o;27240:419::-;;27444:2;27433:9;27429:18;27421:26;;27493:9;27487:4;27483:20;27479:1;27468:9;27464:17;27457:47;27521:131;27647:4;27521:131;:::i;:::-;27513:139;;27411:248;;;:::o;27665:419::-;;27869:2;27858:9;27854:18;27846:26;;27918:9;27912:4;27908:20;27904:1;27893:9;27889:17;27882:47;27946:131;28072:4;27946:131;:::i;:::-;27938:139;;27836:248;;;:::o;28090:419::-;;28294:2;28283:9;28279:18;28271:26;;28343:9;28337:4;28333:20;28329:1;28318:9;28314:17;28307:47;28371:131;28497:4;28371:131;:::i;:::-;28363:139;;28261:248;;;:::o;28515:419::-;;28719:2;28708:9;28704:18;28696:26;;28768:9;28762:4;28758:20;28754:1;28743:9;28739:17;28732:47;28796:131;28922:4;28796:131;:::i;:::-;28788:139;;28686:248;;;:::o;28940:419::-;;29144:2;29133:9;29129:18;29121:26;;29193:9;29187:4;29183:20;29179:1;29168:9;29164:17;29157:47;29221:131;29347:4;29221:131;:::i;:::-;29213:139;;29111:248;;;:::o;29365:419::-;;29569:2;29558:9;29554:18;29546:26;;29618:9;29612:4;29608:20;29604:1;29593:9;29589:17;29582:47;29646:131;29772:4;29646:131;:::i;:::-;29638:139;;29536:248;;;:::o;29790:419::-;;29994:2;29983:9;29979:18;29971:26;;30043:9;30037:4;30033:20;30029:1;30018:9;30014:17;30007:47;30071:131;30197:4;30071:131;:::i;:::-;30063:139;;29961:248;;;:::o;30215:419::-;;30419:2;30408:9;30404:18;30396:26;;30468:9;30462:4;30458:20;30454:1;30443:9;30439:17;30432:47;30496:131;30622:4;30496:131;:::i;:::-;30488:139;;30386:248;;;:::o;30640:419::-;;30844:2;30833:9;30829:18;30821:26;;30893:9;30887:4;30883:20;30879:1;30868:9;30864:17;30857:47;30921:131;31047:4;30921:131;:::i;:::-;30913:139;;30811:248;;;:::o;31065:419::-;;31269:2;31258:9;31254:18;31246:26;;31318:9;31312:4;31308:20;31304:1;31293:9;31289:17;31282:47;31346:131;31472:4;31346:131;:::i;:::-;31338:139;;31236:248;;;:::o;31490:419::-;;31694:2;31683:9;31679:18;31671:26;;31743:9;31737:4;31733:20;31729:1;31718:9;31714:17;31707:47;31771:131;31897:4;31771:131;:::i;:::-;31763:139;;31661:248;;;:::o;31915:419::-;;32119:2;32108:9;32104:18;32096:26;;32168:9;32162:4;32158:20;32154:1;32143:9;32139:17;32132:47;32196:131;32322:4;32196:131;:::i;:::-;32188:139;;32086:248;;;:::o;32340:419::-;;32544:2;32533:9;32529:18;32521:26;;32593:9;32587:4;32583:20;32579:1;32568:9;32564:17;32557:47;32621:131;32747:4;32621:131;:::i;:::-;32613:139;;32511:248;;;:::o;32765:419::-;;32969:2;32958:9;32954:18;32946:26;;33018:9;33012:4;33008:20;33004:1;32993:9;32989:17;32982:47;33046:131;33172:4;33046:131;:::i;:::-;33038:139;;32936:248;;;:::o;33190:419::-;;33394:2;33383:9;33379:18;33371:26;;33443:9;33437:4;33433:20;33429:1;33418:9;33414:17;33407:47;33471:131;33597:4;33471:131;:::i;:::-;33463:139;;33361:248;;;:::o;33615:419::-;;33819:2;33808:9;33804:18;33796:26;;33868:9;33862:4;33858:20;33854:1;33843:9;33839:17;33832:47;33896:131;34022:4;33896:131;:::i;:::-;33888:139;;33786:248;;;:::o;34040:419::-;;34244:2;34233:9;34229:18;34221:26;;34293:9;34287:4;34283:20;34279:1;34268:9;34264:17;34257:47;34321:131;34447:4;34321:131;:::i;:::-;34313:139;;34211:248;;;:::o;34465:419::-;;34669:2;34658:9;34654:18;34646:26;;34718:9;34712:4;34708:20;34704:1;34693:9;34689:17;34682:47;34746:131;34872:4;34746:131;:::i;:::-;34738:139;;34636:248;;;:::o;34890:419::-;;35094:2;35083:9;35079:18;35071:26;;35143:9;35137:4;35133:20;35129:1;35118:9;35114:17;35107:47;35171:131;35297:4;35171:131;:::i;:::-;35163:139;;35061:248;;;:::o;35315:419::-;;35519:2;35508:9;35504:18;35496:26;;35568:9;35562:4;35558:20;35554:1;35543:9;35539:17;35532:47;35596:131;35722:4;35596:131;:::i;:::-;35588:139;;35486:248;;;:::o;35740:419::-;;35944:2;35933:9;35929:18;35921:26;;35993:9;35987:4;35983:20;35979:1;35968:9;35964:17;35957:47;36021:131;36147:4;36021:131;:::i;:::-;36013:139;;35911:248;;;:::o;36165:222::-;;36296:2;36285:9;36281:18;36273:26;;36309:71;36377:1;36366:9;36362:17;36353:6;36309:71;:::i;:::-;36263:124;;;;:::o;36393:283::-;;36459:2;36453:9;36443:19;;36501:4;36493:6;36489:17;36608:6;36596:10;36593:22;36572:18;36560:10;36557:34;36554:62;36551:2;;;36619:18;;:::i;:::-;36551:2;36659:10;36655:2;36648:22;36433:243;;;;:::o;36682:311::-;;36849:18;36841:6;36838:30;36835:2;;;36871:18;;:::i;:::-;36835:2;36921:4;36913:6;36909:17;36901:25;;36981:4;36975;36971:15;36963:23;;36764:229;;;:::o;36999:331::-;;37150:18;37142:6;37139:30;37136:2;;;37172:18;;:::i;:::-;37136:2;37257:4;37253:9;37246:4;37238:6;37234:17;37230:33;37222:41;;37318:4;37312;37308:15;37300:23;;37065:265;;;:::o;37336:332::-;;37488:18;37480:6;37477:30;37474:2;;;37510:18;;:::i;:::-;37474:2;37595:4;37591:9;37584:4;37576:6;37572:17;37568:33;37560:41;;37656:4;37650;37646:15;37638:23;;37403:265;;;:::o;37674:132::-;;37764:3;37756:11;;37794:4;37789:3;37785:14;37777:22;;37746:60;;;:::o;37812:132::-;;37902:3;37894:11;;37932:4;37927:3;37923:14;37915:22;;37884:60;;;:::o;37950:114::-;;38051:5;38045:12;38035:22;;38024:40;;;:::o;38070:114::-;;38171:5;38165:12;38155:22;;38144:40;;;:::o;38190:98::-;;38275:5;38269:12;38259:22;;38248:40;;;:::o;38294:99::-;;38380:5;38374:12;38364:22;;38353:40;;;:::o;38399:113::-;;38501:4;38496:3;38492:14;38484:22;;38474:38;;;:::o;38518:113::-;;38620:4;38615:3;38611:14;38603:22;;38593:38;;;:::o;38637:192::-;;38778:6;38773:3;38766:19;38818:4;38813:3;38809:14;38794:29;;38756:73;;;;:::o;38835:184::-;;38968:6;38963:3;38956:19;39008:4;39003:3;38999:14;38984:29;;38946:73;;;;:::o;39025:168::-;;39142:6;39137:3;39130:19;39182:4;39177:3;39173:14;39158:29;;39120:73;;;;:::o;39199:169::-;;39317:6;39312:3;39305:19;39357:4;39352:3;39348:14;39333:29;;39295:73;;;;:::o;39374:148::-;;39513:3;39498:18;;39488:34;;;;:::o;39528:305::-;;39587:20;39605:1;39587:20;:::i;:::-;39582:25;;39621:20;39639:1;39621:20;:::i;:::-;39616:25;;39775:1;39707:66;39703:74;39700:1;39697:81;39694:2;;;39781:18;;:::i;:::-;39694:2;39825:1;39822;39818:9;39811:16;;39572:261;;;;:::o;39839:185::-;;39896:20;39914:1;39896:20;:::i;:::-;39891:25;;39930:20;39948:1;39930:20;:::i;:::-;39925:25;;39969:1;39959:2;;39974:18;;:::i;:::-;39959:2;40016:1;40013;40009:9;40004:14;;39881:143;;;;:::o;40030:348::-;;40093:20;40111:1;40093:20;:::i;:::-;40088:25;;40127:20;40145:1;40127:20;:::i;:::-;40122:25;;40315:1;40247:66;40243:74;40240:1;40237:81;40232:1;40225:9;40218:17;40214:105;40211:2;;;40322:18;;:::i;:::-;40211:2;40370:1;40367;40363:9;40352:20;;40078:300;;;;:::o;40384:191::-;;40444:20;40462:1;40444:20;:::i;:::-;40439:25;;40478:20;40496:1;40478:20;:::i;:::-;40473:25;;40517:1;40514;40511:8;40508:2;;;40522:18;;:::i;:::-;40508:2;40567:1;40564;40560:9;40552:17;;40429:146;;;;:::o;40581:96::-;;40647:24;40665:5;40647:24;:::i;:::-;40636:35;;40626:51;;;:::o;40683:90::-;;40760:5;40753:13;40746:21;40735:32;;40725:48;;;:::o;40779:77::-;;40845:5;40834:16;;40824:32;;;:::o;40862:149::-;;40938:66;40931:5;40927:78;40916:89;;40906:105;;;:::o;41017:126::-;;41094:42;41087:5;41083:54;41072:65;;41062:81;;;:::o;41149:77::-;;41215:5;41204:16;;41194:32;;;:::o;41232:154::-;41316:6;41311:3;41306;41293:30;41378:1;41369:6;41364:3;41360:16;41353:27;41283:103;;;:::o;41392:307::-;41460:1;41470:113;41484:6;41481:1;41478:13;41470:113;;;41569:1;41564:3;41560:11;41554:18;41550:1;41545:3;41541:11;41534:39;41506:2;41503:1;41499:10;41494:15;;41470:113;;;41601:6;41598:1;41595:13;41592:2;;;41681:1;41672:6;41667:3;41663:16;41656:27;41592:2;41441:258;;;;:::o;41705:320::-;;41786:1;41780:4;41776:12;41766:22;;41833:1;41827:4;41823:12;41854:18;41844:2;;41910:4;41902:6;41898:17;41888:27;;41844:2;41972;41964:6;41961:14;41941:18;41938:38;41935:2;;;41991:18;;:::i;:::-;41935:2;41756:269;;;;:::o;42031:233::-;;42093:24;42111:5;42093:24;:::i;:::-;42084:33;;42139:66;42132:5;42129:77;42126:2;;;42209:18;;:::i;:::-;42126:2;42256:1;42249:5;42245:13;42238:20;;42074:190;;;:::o;42270:100::-;;42338:26;42358:5;42338:26;:::i;:::-;42327:37;;42317:53;;;:::o;42376:94::-;;42444:20;42458:5;42444:20;:::i;:::-;42433:31;;42423:47;;;:::o;42476:176::-;;42525:20;42543:1;42525:20;:::i;:::-;42520:25;;42559:20;42577:1;42559:20;:::i;:::-;42554:25;;42598:1;42588:2;;42603:18;;:::i;:::-;42588:2;42644:1;42641;42637:9;42632:14;;42510:142;;;;:::o;42658:180::-;42706:77;42703:1;42696:88;42803:4;42800:1;42793:15;42827:4;42824:1;42817:15;42844:180;42892:77;42889:1;42882:88;42989:4;42986:1;42979:15;43013:4;43010:1;43003:15;43030:180;43078:77;43075:1;43068:88;43175:4;43172:1;43165:15;43199:4;43196:1;43189:15;43216:180;43264:77;43261:1;43254:88;43361:4;43358:1;43351:15;43385:4;43382:1;43375:15;43402:102;;43494:2;43490:7;43485:2;43478:5;43474:14;43470:28;43460:38;;43450:54;;;:::o;43510:94::-;;43591:5;43587:2;43583:14;43562:35;;43552:52;;;:::o;43610:122::-;43683:24;43701:5;43683:24;:::i;:::-;43676:5;43673:35;43663:2;;43722:1;43719;43712:12;43663:2;43653:79;:::o;43738:116::-;43808:21;43823:5;43808:21;:::i;:::-;43801:5;43798:32;43788:2;;43844:1;43841;43834:12;43788:2;43778:76;:::o;43860:122::-;43933:24;43951:5;43933:24;:::i;:::-;43926:5;43923:35;43913:2;;43972:1;43969;43962:12;43913:2;43903:79;:::o;43988:120::-;44060:23;44077:5;44060:23;:::i;:::-;44053:5;44050:34;44040:2;;44098:1;44095;44088:12;44040:2;44030:78;:::o;44114:122::-;44187:24;44205:5;44187:24;:::i;:::-;44180:5;44177:35;44167:2;;44226:1;44223;44216:12;44167:2;44157:79;:::o

Swarm Source

ipfs://97bfbeab1dfbd556a6a322ef3169f6798accff29d850c0a47fc911d7a1275645
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.