ETH Price: $2,480.72 (-8.03%)

Token

MelloFello (MF)
 

Overview

Max Total Supply

604 MF

Holders

22

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MF
0xab48de856930c018238c226d166feaed3541ec7d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MelloFellos

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-14
*/

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol

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

pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

// File: contracts/MelloFellos.sol

pragma solidity >=0.7.0 <0.9.0;

contract MelloFellos is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;
    uint256 public cost = 0.00079 ether;
    uint256 public maxSupply = 5000;
    uint256 public maxMintAmountPerTx = 5;
    uint256 public nftPerAdressLimit = 50;
    uint256 public airDropPerAdressLimit = 2;
    bool public paused = true;
    bool public revealed = false;
    bool public onlyWhitelisted = false;

    address[] public whitelistedAddresses;
    mapping(address => uint256) public addressMintedBalance;

    constructor() ERC721("MelloFello", "MF") {
        setHiddenMetadataUri(
            "ipfs://QmNik8Us5gCnqgcUx9URgTS9AMCw2FuRzHKWuGcibDawcv/hidden.json"
        );
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            supply.current() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(
            ownerMintedCount + _mintAmount <= nftPerAdressLimit,
            "Over Wallet Limit"
        );
        _;
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(!paused, "The contract is paused!");
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");

        if (msg.sender != owner()) {
            if (onlyWhitelisted == true) {
                require(isWhitelisted(msg.sender), "User is not whitelisted");
            }
        }
        _mintLoop(msg.sender, _mintAmount);
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _mintLoop(_receiver, _mintAmount);
    }

    function mintForAddressCompany(uint256 _mintAmount, address _receiver)
        public
        onlyOwner
    {
        _mintLoop(_receiver, _mintAmount);
    }

    function isWhitelisted(address _user) public view returns (bool) {
        for (uint256 i = 0; i < whitelistedAddresses.length; i++) {
            if (whitelistedAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return hiddenMetadataUri;
        }

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

    function awardItem(address tokenHolder) public onlyOwner returns (bool) {
        _mintLoop(tokenHolder, airDropPerAdressLimit);
        return true;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAdressLimit = _limit;
    }

    function setairdropPerAddressLimit(uint256 _limit) public onlyOwner {
        airDropPerAdressLimit = _limit;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setOnlyWhitelisted(bool _state) public onlyOwner {
        onlyWhitelisted = _state;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public onlyOwner {
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
        // =============================================================================
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }

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

    function whitelistUsers(address[] calldata _users) public onlyOwner {
        delete whitelistedAddresses;
        whitelistedAddresses = _users;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airDropPerAdressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"awardItem","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddressCompany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAdressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setairdropPerAddressLimit","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b9291906200038c565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000799291906200038c565b506602ce80355f6000600b55611388600c556005600d556032600e556002600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff021916908315150217905550348015620000f857600080fd5b506040518060400160405280600a81526020017f4d656c6c6f46656c6c6f000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d4600000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200017d9291906200038c565b508060019080519060200190620001969291906200038c565b505050620001b9620001ad620001e960201b60201c565b620001f160201b60201c565b620001e3604051806080016040528060418152602001620052e160419139620002b760201b60201c565b62000524565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c7620001e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ed6200036260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000346576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033d9062000463565b60405180910390fd5b80600a90805190602001906200035e9291906200038c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200039a9062000496565b90600052602060002090601f016020900481019282620003be57600085556200040a565b82601f10620003d957805160ff19168380011785556200040a565b828001600101855582156200040a579182015b8281111562000409578251825591602001919060010190620003ec565b5b5090506200041991906200041d565b5090565b5b80821115620004385760008160009055506001016200041e565b5090565b60006200044b60208362000485565b91506200045882620004fb565b602082019050919050565b600060208201905081810360008301526200047e816200043c565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004af57607f821691505b60208210811415620004c657620004c5620004cc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614dad80620005346000396000f3fe6080604052600436106102935760003560e01c806370a082311161015a578063b88d4fde116100c1578063e0a808531161007a578063e0a80853146109f3578063e985e9c514610a1c578063edec5f2714610a59578063efbd73f414610a82578063f2fb212014610aab578063f2fde38b14610ae857610293565b8063b88d4fde146108d3578063ba4e5c49146108fc578063c87b56dd14610939578063d0eb26b014610976578063d16c89b11461099f578063d5abeb01146109c857610293565b806395d89b411161011357806395d89b41146107e45780639c70b5121461080f578063a0712d681461083a578063a22cb46514610856578063a45ba8e71461087f578063b071401b146108aa57610293565b806370a08231146106e8578063715018a6146107255780637ec4a6591461073c5780638bfae83b146107655780638da5cb5b1461078e57806394354fd0146107b957610293565b80633c952764116101fe5780634fdd43cb116101b75780634fdd43cb146105d657806351830227146105ff5780635503a0e81461062a5780635c975abb1461065557806362b99ad4146106805780636352211e146106ab57610293565b80633c952764146104dc5780633ccfd60b14610505578063424c414d1461051c57806342842e0e14610547578063438b63001461057057806344a0d68a146105ad57610293565b806316c38b3c1161025057806316c38b3c146103ba57806318160ddd146103e357806318cae2691461040e578063207b94db1461044b57806323b872dd146104765780633af32abf1461049f57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d57806313faede61461036657806316ba10e014610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba91906138f5565b610b11565b6040516102cc9190613fcd565b60405180910390f35b3480156102e157600080fd5b506102ea610bf3565b6040516102f79190613fe8565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613998565b610c85565b6040516103349190613f44565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f919061383b565b610d0a565b005b34801561037257600080fd5b5061037b610e22565b60405161038891906142ca565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b3919061394f565b610e28565b005b3480156103c657600080fd5b506103e160048036038101906103dc91906138c8565b610ebe565b005b3480156103ef57600080fd5b506103f8610f57565b60405161040591906142ca565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906136b8565b610f68565b60405161044291906142ca565b60405180910390f35b34801561045757600080fd5b50610460610f80565b60405161046d91906142ca565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613725565b610f86565b005b3480156104ab57600080fd5b506104c660048036038101906104c191906136b8565b610fe6565b6040516104d39190613fcd565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906138c8565b611095565b005b34801561051157600080fd5b5061051a61112e565b005b34801561052857600080fd5b5061053161122a565b60405161053e91906142ca565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613725565b611230565b005b34801561057c57600080fd5b50610597600480360381019061059291906136b8565b611250565b6040516105a49190613fab565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613998565b61135b565b005b3480156105e257600080fd5b506105fd60048036038101906105f8919061394f565b6113e1565b005b34801561060b57600080fd5b50610614611477565b6040516106219190613fcd565b60405180910390f35b34801561063657600080fd5b5061063f61148a565b60405161064c9190613fe8565b60405180910390f35b34801561066157600080fd5b5061066a611518565b6040516106779190613fcd565b60405180910390f35b34801561068c57600080fd5b5061069561152b565b6040516106a29190613fe8565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190613998565b6115b9565b6040516106df9190613f44565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906136b8565b61166b565b60405161071c91906142ca565b60405180910390f35b34801561073157600080fd5b5061073a611723565b005b34801561074857600080fd5b50610763600480360381019061075e919061394f565b6117ab565b005b34801561077157600080fd5b5061078c60048036038101906107879190613998565b611841565b005b34801561079a57600080fd5b506107a36118c7565b6040516107b09190613f44565b60405180910390f35b3480156107c557600080fd5b506107ce6118f1565b6040516107db91906142ca565b60405180910390f35b3480156107f057600080fd5b506107f96118f7565b6040516108069190613fe8565b60405180910390f35b34801561081b57600080fd5b50610824611989565b6040516108319190613fcd565b60405180910390f35b610854600480360381019061084f9190613998565b61199c565b005b34801561086257600080fd5b5061087d600480360381019061087891906137fb565b611c2a565b005b34801561088b57600080fd5b50610894611c40565b6040516108a19190613fe8565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc9190613998565b611cce565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190613778565b611d54565b005b34801561090857600080fd5b50610923600480360381019061091e9190613998565b611db6565b6040516109309190613f44565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190613998565b611df5565b60405161096d9190613fe8565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613998565b611f4e565b005b3480156109ab57600080fd5b506109c660048036038101906109c191906139c5565b611fd4565b005b3480156109d457600080fd5b506109dd61205e565b6040516109ea91906142ca565b60405180910390f35b3480156109ff57600080fd5b50610a1a6004803603810190610a1591906138c8565b612064565b005b348015610a2857600080fd5b50610a436004803603810190610a3e91906136e5565b6120fd565b604051610a509190613fcd565b60405180910390f35b348015610a6557600080fd5b50610a806004803603810190610a7b919061387b565b612191565b005b348015610a8e57600080fd5b50610aa96004803603810190610aa491906139c5565b612231565b005b348015610ab757600080fd5b50610ad26004803603810190610acd91906136b8565b6123fc565b604051610adf9190613fcd565b60405180910390f35b348015610af457600080fd5b50610b0f6004803603810190610b0a91906136b8565b61248f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bdc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bec5750610beb82612587565b5b9050919050565b606060008054610c02906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2e906145d3565b8015610c7b5780601f10610c5057610100808354040283529160200191610c7b565b820191906000526020600020905b815481529060010190602001808311610c5e57829003601f168201915b5050505050905090565b6000610c90826125f1565b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906141aa565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d15826115b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d9061424a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610da561265d565b73ffffffffffffffffffffffffffffffffffffffff161480610dd45750610dd381610dce61265d565b6120fd565b5b610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061412a565b60405180910390fd5b610e1d8383612665565b505050565b600b5481565b610e3061265d565b73ffffffffffffffffffffffffffffffffffffffff16610e4e6118c7565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906141ca565b60405180910390fd5b8060099080519060200190610eba9291906133b5565b5050565b610ec661265d565b73ffffffffffffffffffffffffffffffffffffffff16610ee46118c7565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f31906141ca565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610f63600761271e565b905090565b60126020528060005260406000206000915090505481565b600e5481565b610f97610f9161265d565b8261272c565b610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd9061428a565b60405180910390fd5b610fe183838361280a565b505050565b600080600090505b60118054905081101561108a578273ffffffffffffffffffffffffffffffffffffffff16601182815481106110265761102561473d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611077576001915050611090565b808061108290614636565b915050610fee565b50600090505b919050565b61109d61265d565b73ffffffffffffffffffffffffffffffffffffffff166110bb6118c7565b73ffffffffffffffffffffffffffffffffffffffff1614611111576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611108906141ca565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b61113661265d565b73ffffffffffffffffffffffffffffffffffffffff166111546118c7565b73ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a1906141ca565b60405180910390fd5b60006111b46118c7565b73ffffffffffffffffffffffffffffffffffffffff16476040516111d790613f2f565b60006040518083038185875af1925050503d8060008114611214576040519150601f19603f3d011682016040523d82523d6000602084013e611219565b606091505b505090508061122757600080fd5b50565b600f5481565b61124b83838360405180602001604052806000815250611d54565b505050565b6060600061125d8361166b565b905060008167ffffffffffffffff81111561127b5761127a61476c565b5b6040519080825280602002602001820160405280156112a95781602001602082028036833780820191505090505b50905060006001905060005b83811080156112c65750600c548211155b1561134f5760006112d6836115b9565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133b57828483815181106113205761131f61473d565b5b602002602001018181525050818061133790614636565b9250505b828061134690614636565b935050506112b5565b82945050505050919050565b61136361265d565b73ffffffffffffffffffffffffffffffffffffffff166113816118c7565b73ffffffffffffffffffffffffffffffffffffffff16146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce906141ca565b60405180910390fd5b80600b8190555050565b6113e961265d565b73ffffffffffffffffffffffffffffffffffffffff166114076118c7565b73ffffffffffffffffffffffffffffffffffffffff161461145d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611454906141ca565b60405180910390fd5b80600a90805190602001906114739291906133b5565b5050565b601060019054906101000a900460ff1681565b60098054611497906145d3565b80601f01602080910402602001604051908101604052809291908181526020018280546114c3906145d3565b80156115105780601f106114e557610100808354040283529160200191611510565b820191906000526020600020905b8154815290600101906020018083116114f357829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b60088054611538906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611564906145d3565b80156115b15780601f10611586576101008083540402835291602001916115b1565b820191906000526020600020905b81548152906001019060200180831161159457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611662576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116599061416a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d39061414a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61172b61265d565b73ffffffffffffffffffffffffffffffffffffffff166117496118c7565b73ffffffffffffffffffffffffffffffffffffffff161461179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906141ca565b60405180910390fd5b6117a96000612a71565b565b6117b361265d565b73ffffffffffffffffffffffffffffffffffffffff166117d16118c7565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906141ca565b60405180910390fd5b806008908051906020019061183d9291906133b5565b5050565b61184961265d565b73ffffffffffffffffffffffffffffffffffffffff166118676118c7565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906141ca565b60405180910390fd5b80600f8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060018054611906906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611932906145d3565b801561197f5780601f106119545761010080835404028352916020019161197f565b820191906000526020600020905b81548152906001019060200180831161196257829003601f168201915b5050505050905090565b601060029054906101000a900460ff1681565b806000811180156119af5750600d548111155b6119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e59061408a565b60405180910390fd5b600c54816119fc600761271e565b611a069190614408565b1115611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e9061426a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611a9a9190614408565b1115611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad29061420a565b60405180910390fd5b601060009054906101000a900460ff1615611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b22906141ea565b60405180910390fd5b82600b54611b39919061448f565b341015611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b72906142aa565b60405180910390fd5b611b836118c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c1b5760011515601060029054906101000a900460ff1615151415611c1a57611bda33610fe6565b611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c109061410a565b60405180910390fd5b5b5b611c253384612b37565b505050565b611c3c611c3561265d565b8383612bcc565b5050565b600a8054611c4d906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611c79906145d3565b8015611cc65780601f10611c9b57610100808354040283529160200191611cc6565b820191906000526020600020905b815481529060010190602001808311611ca957829003601f168201915b505050505081565b611cd661265d565b73ffffffffffffffffffffffffffffffffffffffff16611cf46118c7565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d41906141ca565b60405180910390fd5b80600d8190555050565b611d65611d5f61265d565b8361272c565b611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b9061428a565b60405180910390fd5b611db084848484612d39565b50505050565b60118181548110611dc657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611e00826125f1565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e369061422a565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611eed57600a8054611e68906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e94906145d3565b8015611ee15780601f10611eb657610100808354040283529160200191611ee1565b820191906000526020600020905b815481529060010190602001808311611ec457829003601f168201915b50505050509050611f49565b6000611ef7612d95565b90506000815111611f175760405180602001604052806000815250611f45565b80611f2184612e27565b6009604051602001611f3593929190613efe565b6040516020818303038152906040525b9150505b919050565b611f5661265d565b73ffffffffffffffffffffffffffffffffffffffff16611f746118c7565b73ffffffffffffffffffffffffffffffffffffffff1614611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc1906141ca565b60405180910390fd5b80600e8190555050565b611fdc61265d565b73ffffffffffffffffffffffffffffffffffffffff16611ffa6118c7565b73ffffffffffffffffffffffffffffffffffffffff1614612050576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612047906141ca565b60405180910390fd5b61205a8183612b37565b5050565b600c5481565b61206c61265d565b73ffffffffffffffffffffffffffffffffffffffff1661208a6118c7565b73ffffffffffffffffffffffffffffffffffffffff16146120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d7906141ca565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61219961265d565b73ffffffffffffffffffffffffffffffffffffffff166121b76118c7565b73ffffffffffffffffffffffffffffffffffffffff161461220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906141ca565b60405180910390fd5b6011600061221b919061343b565b81816011919061222c92919061345c565b505050565b816000811180156122445750600d548111155b612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a9061408a565b60405180910390fd5b600c5481612291600761271e565b61229b9190614408565b11156122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d39061426a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e54828261232f9190614408565b1115612370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123679061420a565b60405180910390fd5b61237861265d565b73ffffffffffffffffffffffffffffffffffffffff166123966118c7565b73ffffffffffffffffffffffffffffffffffffffff16146123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e3906141ca565b60405180910390fd5b6123f68385612b37565b50505050565b600061240661265d565b73ffffffffffffffffffffffffffffffffffffffff166124246118c7565b73ffffffffffffffffffffffffffffffffffffffff161461247a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612471906141ca565b60405180910390fd5b61248682600f54612b37565b60019050919050565b61249761265d565b73ffffffffffffffffffffffffffffffffffffffff166124b56118c7565b73ffffffffffffffffffffffffffffffffffffffff161461250b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612502906141ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561257b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125729061402a565b60405180910390fd5b61258481612a71565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126d8836115b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612737826125f1565b612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d906140ea565b60405180910390fd5b6000612781836115b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127f057508373ffffffffffffffffffffffffffffffffffffffff166127d884610c85565b73ffffffffffffffffffffffffffffffffffffffff16145b80612801575061280081856120fd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661282a826115b9565b73ffffffffffffffffffffffffffffffffffffffff1614612880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128779061404a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e7906140aa565b60405180910390fd5b6128fb838383612f88565b612906600082612665565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461295691906144e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ad9190614408565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a6c838383612f8d565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612bc757601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612b9290614636565b9190505550612ba16007612f92565b612bb483612baf600761271e565b612fa8565b8080612bbf90614636565b915050612b3a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c32906140ca565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d2c9190613fcd565b60405180910390a3505050565b612d4484848461280a565b612d5084848484612fc6565b612d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d869061400a565b60405180910390fd5b50505050565b606060088054612da4906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd0906145d3565b8015612e1d5780601f10612df257610100808354040283529160200191612e1d565b820191906000526020600020905b815481529060010190602001808311612e0057829003601f168201915b5050505050905090565b60606000821415612e6f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f83565b600082905060005b60008214612ea1578080612e8a90614636565b915050600a82612e9a919061445e565b9150612e77565b60008167ffffffffffffffff811115612ebd57612ebc61476c565b5b6040519080825280601f01601f191660200182016040528015612eef5781602001600182028036833780820191505090505b5090505b60008514612f7c57600182612f0891906144e9565b9150600a85612f17919061467f565b6030612f239190614408565b60f81b818381518110612f3957612f3861473d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f75919061445e565b9450612ef3565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612fc282826040518060200160405280600081525061315d565b5050565b6000612fe78473ffffffffffffffffffffffffffffffffffffffff166131b8565b15613150578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261301061265d565b8786866040518563ffffffff1660e01b81526004016130329493929190613f5f565b602060405180830381600087803b15801561304c57600080fd5b505af192505050801561307d57506040513d601f19601f8201168201806040525081019061307a9190613922565b60015b613100573d80600081146130ad576040519150601f19603f3d011682016040523d82523d6000602084013e6130b2565b606091505b506000815114156130f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ef9061400a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613155565b600190505b949350505050565b61316783836131db565b6131746000848484612fc6565b6131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa9061400a565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561324b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132429061418a565b60405180910390fd5b613254816125f1565b15613294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328b9061406a565b60405180910390fd5b6132a060008383612f88565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132f09190614408565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133b160008383612f8d565b5050565b8280546133c1906145d3565b90600052602060002090601f0160209004810192826133e3576000855561342a565b82601f106133fc57805160ff191683800117855561342a565b8280016001018555821561342a579182015b8281111561342957825182559160200191906001019061340e565b5b50905061343791906134fc565b5090565b508054600082559060005260206000209081019061345991906134fc565b50565b8280548282559060005260206000209081019282156134eb579160200282015b828111156134ea57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061347c565b5b5090506134f891906134fc565b5090565b5b808211156135155760008160009055506001016134fd565b5090565b600061352c6135278461430a565b6142e5565b905082815260208101848484011115613548576135476147aa565b5b613553848285614591565b509392505050565b600061356e6135698461433b565b6142e5565b90508281526020810184848401111561358a576135896147aa565b5b613595848285614591565b509392505050565b6000813590506135ac81614d1b565b92915050565b60008083601f8401126135c8576135c76147a0565b5b8235905067ffffffffffffffff8111156135e5576135e461479b565b5b602083019150836020820283011115613601576136006147a5565b5b9250929050565b60008135905061361781614d32565b92915050565b60008135905061362c81614d49565b92915050565b60008151905061364181614d49565b92915050565b600082601f83011261365c5761365b6147a0565b5b813561366c848260208601613519565b91505092915050565b600082601f83011261368a576136896147a0565b5b813561369a84826020860161355b565b91505092915050565b6000813590506136b281614d60565b92915050565b6000602082840312156136ce576136cd6147b4565b5b60006136dc8482850161359d565b91505092915050565b600080604083850312156136fc576136fb6147b4565b5b600061370a8582860161359d565b925050602061371b8582860161359d565b9150509250929050565b60008060006060848603121561373e5761373d6147b4565b5b600061374c8682870161359d565b935050602061375d8682870161359d565b925050604061376e868287016136a3565b9150509250925092565b60008060008060808587031215613792576137916147b4565b5b60006137a08782880161359d565b94505060206137b18782880161359d565b93505060406137c2878288016136a3565b925050606085013567ffffffffffffffff8111156137e3576137e26147af565b5b6137ef87828801613647565b91505092959194509250565b60008060408385031215613812576138116147b4565b5b60006138208582860161359d565b925050602061383185828601613608565b9150509250929050565b60008060408385031215613852576138516147b4565b5b60006138608582860161359d565b9250506020613871858286016136a3565b9150509250929050565b60008060208385031215613892576138916147b4565b5b600083013567ffffffffffffffff8111156138b0576138af6147af565b5b6138bc858286016135b2565b92509250509250929050565b6000602082840312156138de576138dd6147b4565b5b60006138ec84828501613608565b91505092915050565b60006020828403121561390b5761390a6147b4565b5b60006139198482850161361d565b91505092915050565b600060208284031215613938576139376147b4565b5b600061394684828501613632565b91505092915050565b600060208284031215613965576139646147b4565b5b600082013567ffffffffffffffff811115613983576139826147af565b5b61398f84828501613675565b91505092915050565b6000602082840312156139ae576139ad6147b4565b5b60006139bc848285016136a3565b91505092915050565b600080604083850312156139dc576139db6147b4565b5b60006139ea858286016136a3565b92505060206139fb8582860161359d565b9150509250929050565b6000613a118383613ee0565b60208301905092915050565b613a268161451d565b82525050565b6000613a3782614391565b613a4181856143bf565b9350613a4c8361436c565b8060005b83811015613a7d578151613a648882613a05565b9750613a6f836143b2565b925050600181019050613a50565b5085935050505092915050565b613a938161452f565b82525050565b6000613aa48261439c565b613aae81856143d0565b9350613abe8185602086016145a0565b613ac7816147b9565b840191505092915050565b6000613add826143a7565b613ae781856143ec565b9350613af78185602086016145a0565b613b00816147b9565b840191505092915050565b6000613b16826143a7565b613b2081856143fd565b9350613b308185602086016145a0565b80840191505092915050565b60008154613b49816145d3565b613b5381866143fd565b94506001821660008114613b6e5760018114613b7f57613bb2565b60ff19831686528186019350613bb2565b613b888561437c565b60005b83811015613baa57815481890152600182019150602081019050613b8b565b838801955050505b50505092915050565b6000613bc86032836143ec565b9150613bd3826147ca565b604082019050919050565b6000613beb6026836143ec565b9150613bf682614819565b604082019050919050565b6000613c0e6025836143ec565b9150613c1982614868565b604082019050919050565b6000613c31601c836143ec565b9150613c3c826148b7565b602082019050919050565b6000613c546014836143ec565b9150613c5f826148e0565b602082019050919050565b6000613c776024836143ec565b9150613c8282614909565b604082019050919050565b6000613c9a6019836143ec565b9150613ca582614958565b602082019050919050565b6000613cbd602c836143ec565b9150613cc882614981565b604082019050919050565b6000613ce06017836143ec565b9150613ceb826149d0565b602082019050919050565b6000613d036038836143ec565b9150613d0e826149f9565b604082019050919050565b6000613d26602a836143ec565b9150613d3182614a48565b604082019050919050565b6000613d496029836143ec565b9150613d5482614a97565b604082019050919050565b6000613d6c6020836143ec565b9150613d7782614ae6565b602082019050919050565b6000613d8f602c836143ec565b9150613d9a82614b0f565b604082019050919050565b6000613db26020836143ec565b9150613dbd82614b5e565b602082019050919050565b6000613dd56017836143ec565b9150613de082614b87565b602082019050919050565b6000613df86011836143ec565b9150613e0382614bb0565b602082019050919050565b6000613e1b602f836143ec565b9150613e2682614bd9565b604082019050919050565b6000613e3e6021836143ec565b9150613e4982614c28565b604082019050919050565b6000613e616000836143e1565b9150613e6c82614c77565b600082019050919050565b6000613e846014836143ec565b9150613e8f82614c7a565b602082019050919050565b6000613ea76031836143ec565b9150613eb282614ca3565b604082019050919050565b6000613eca6013836143ec565b9150613ed582614cf2565b602082019050919050565b613ee981614587565b82525050565b613ef881614587565b82525050565b6000613f0a8286613b0b565b9150613f168285613b0b565b9150613f228284613b3c565b9150819050949350505050565b6000613f3a82613e54565b9150819050919050565b6000602082019050613f596000830184613a1d565b92915050565b6000608082019050613f746000830187613a1d565b613f816020830186613a1d565b613f8e6040830185613eef565b8181036060830152613fa08184613a99565b905095945050505050565b60006020820190508181036000830152613fc58184613a2c565b905092915050565b6000602082019050613fe26000830184613a8a565b92915050565b600060208201905081810360008301526140028184613ad2565b905092915050565b6000602082019050818103600083015261402381613bbb565b9050919050565b6000602082019050818103600083015261404381613bde565b9050919050565b6000602082019050818103600083015261406381613c01565b9050919050565b6000602082019050818103600083015261408381613c24565b9050919050565b600060208201905081810360008301526140a381613c47565b9050919050565b600060208201905081810360008301526140c381613c6a565b9050919050565b600060208201905081810360008301526140e381613c8d565b9050919050565b6000602082019050818103600083015261410381613cb0565b9050919050565b6000602082019050818103600083015261412381613cd3565b9050919050565b6000602082019050818103600083015261414381613cf6565b9050919050565b6000602082019050818103600083015261416381613d19565b9050919050565b6000602082019050818103600083015261418381613d3c565b9050919050565b600060208201905081810360008301526141a381613d5f565b9050919050565b600060208201905081810360008301526141c381613d82565b9050919050565b600060208201905081810360008301526141e381613da5565b9050919050565b6000602082019050818103600083015261420381613dc8565b9050919050565b6000602082019050818103600083015261422381613deb565b9050919050565b6000602082019050818103600083015261424381613e0e565b9050919050565b6000602082019050818103600083015261426381613e31565b9050919050565b6000602082019050818103600083015261428381613e77565b9050919050565b600060208201905081810360008301526142a381613e9a565b9050919050565b600060208201905081810360008301526142c381613ebd565b9050919050565b60006020820190506142df6000830184613eef565b92915050565b60006142ef614300565b90506142fb8282614605565b919050565b6000604051905090565b600067ffffffffffffffff8211156143255761432461476c565b5b61432e826147b9565b9050602081019050919050565b600067ffffffffffffffff8211156143565761435561476c565b5b61435f826147b9565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061441382614587565b915061441e83614587565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614453576144526146b0565b5b828201905092915050565b600061446982614587565b915061447483614587565b925082614484576144836146df565b5b828204905092915050565b600061449a82614587565b91506144a583614587565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144de576144dd6146b0565b5b828202905092915050565b60006144f482614587565b91506144ff83614587565b925082821015614512576145116146b0565b5b828203905092915050565b600061452882614567565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145be5780820151818401526020810190506145a3565b838111156145cd576000848401525b50505050565b600060028204905060018216806145eb57607f821691505b602082108114156145ff576145fe61470e565b5b50919050565b61460e826147b9565b810181811067ffffffffffffffff8211171561462d5761462c61476c565b5b80604052505050565b600061464182614587565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614674576146736146b0565b5b600182019050919050565b600061468a82614587565b915061469583614587565b9250826146a5576146a46146df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f55736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4f7665722057616c6c6574204c696d6974000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b614d248161451d565b8114614d2f57600080fd5b50565b614d3b8161452f565b8114614d4657600080fd5b50565b614d528161453b565b8114614d5d57600080fd5b50565b614d6981614587565b8114614d7457600080fd5b5056fea2646970667358221220826e86cf40cc6b61e8299b348b14139b5a77689cdbd25f987a4dae3e73bc5df364736f6c63430008070033697066733a2f2f516d4e696b3855733567436e716763557839555267545339414d4377324675527a484b57754763696244617763762f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102935760003560e01c806370a082311161015a578063b88d4fde116100c1578063e0a808531161007a578063e0a80853146109f3578063e985e9c514610a1c578063edec5f2714610a59578063efbd73f414610a82578063f2fb212014610aab578063f2fde38b14610ae857610293565b8063b88d4fde146108d3578063ba4e5c49146108fc578063c87b56dd14610939578063d0eb26b014610976578063d16c89b11461099f578063d5abeb01146109c857610293565b806395d89b411161011357806395d89b41146107e45780639c70b5121461080f578063a0712d681461083a578063a22cb46514610856578063a45ba8e71461087f578063b071401b146108aa57610293565b806370a08231146106e8578063715018a6146107255780637ec4a6591461073c5780638bfae83b146107655780638da5cb5b1461078e57806394354fd0146107b957610293565b80633c952764116101fe5780634fdd43cb116101b75780634fdd43cb146105d657806351830227146105ff5780635503a0e81461062a5780635c975abb1461065557806362b99ad4146106805780636352211e146106ab57610293565b80633c952764146104dc5780633ccfd60b14610505578063424c414d1461051c57806342842e0e14610547578063438b63001461057057806344a0d68a146105ad57610293565b806316c38b3c1161025057806316c38b3c146103ba57806318160ddd146103e357806318cae2691461040e578063207b94db1461044b57806323b872dd146104765780633af32abf1461049f57610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d57806313faede61461036657806316ba10e014610391575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba91906138f5565b610b11565b6040516102cc9190613fcd565b60405180910390f35b3480156102e157600080fd5b506102ea610bf3565b6040516102f79190613fe8565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613998565b610c85565b6040516103349190613f44565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f919061383b565b610d0a565b005b34801561037257600080fd5b5061037b610e22565b60405161038891906142ca565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b3919061394f565b610e28565b005b3480156103c657600080fd5b506103e160048036038101906103dc91906138c8565b610ebe565b005b3480156103ef57600080fd5b506103f8610f57565b60405161040591906142ca565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906136b8565b610f68565b60405161044291906142ca565b60405180910390f35b34801561045757600080fd5b50610460610f80565b60405161046d91906142ca565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613725565b610f86565b005b3480156104ab57600080fd5b506104c660048036038101906104c191906136b8565b610fe6565b6040516104d39190613fcd565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906138c8565b611095565b005b34801561051157600080fd5b5061051a61112e565b005b34801561052857600080fd5b5061053161122a565b60405161053e91906142ca565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613725565b611230565b005b34801561057c57600080fd5b50610597600480360381019061059291906136b8565b611250565b6040516105a49190613fab565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613998565b61135b565b005b3480156105e257600080fd5b506105fd60048036038101906105f8919061394f565b6113e1565b005b34801561060b57600080fd5b50610614611477565b6040516106219190613fcd565b60405180910390f35b34801561063657600080fd5b5061063f61148a565b60405161064c9190613fe8565b60405180910390f35b34801561066157600080fd5b5061066a611518565b6040516106779190613fcd565b60405180910390f35b34801561068c57600080fd5b5061069561152b565b6040516106a29190613fe8565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190613998565b6115b9565b6040516106df9190613f44565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906136b8565b61166b565b60405161071c91906142ca565b60405180910390f35b34801561073157600080fd5b5061073a611723565b005b34801561074857600080fd5b50610763600480360381019061075e919061394f565b6117ab565b005b34801561077157600080fd5b5061078c60048036038101906107879190613998565b611841565b005b34801561079a57600080fd5b506107a36118c7565b6040516107b09190613f44565b60405180910390f35b3480156107c557600080fd5b506107ce6118f1565b6040516107db91906142ca565b60405180910390f35b3480156107f057600080fd5b506107f96118f7565b6040516108069190613fe8565b60405180910390f35b34801561081b57600080fd5b50610824611989565b6040516108319190613fcd565b60405180910390f35b610854600480360381019061084f9190613998565b61199c565b005b34801561086257600080fd5b5061087d600480360381019061087891906137fb565b611c2a565b005b34801561088b57600080fd5b50610894611c40565b6040516108a19190613fe8565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc9190613998565b611cce565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190613778565b611d54565b005b34801561090857600080fd5b50610923600480360381019061091e9190613998565b611db6565b6040516109309190613f44565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190613998565b611df5565b60405161096d9190613fe8565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613998565b611f4e565b005b3480156109ab57600080fd5b506109c660048036038101906109c191906139c5565b611fd4565b005b3480156109d457600080fd5b506109dd61205e565b6040516109ea91906142ca565b60405180910390f35b3480156109ff57600080fd5b50610a1a6004803603810190610a1591906138c8565b612064565b005b348015610a2857600080fd5b50610a436004803603810190610a3e91906136e5565b6120fd565b604051610a509190613fcd565b60405180910390f35b348015610a6557600080fd5b50610a806004803603810190610a7b919061387b565b612191565b005b348015610a8e57600080fd5b50610aa96004803603810190610aa491906139c5565b612231565b005b348015610ab757600080fd5b50610ad26004803603810190610acd91906136b8565b6123fc565b604051610adf9190613fcd565b60405180910390f35b348015610af457600080fd5b50610b0f6004803603810190610b0a91906136b8565b61248f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bdc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bec5750610beb82612587565b5b9050919050565b606060008054610c02906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2e906145d3565b8015610c7b5780601f10610c5057610100808354040283529160200191610c7b565b820191906000526020600020905b815481529060010190602001808311610c5e57829003601f168201915b5050505050905090565b6000610c90826125f1565b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc6906141aa565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d15826115b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d9061424a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610da561265d565b73ffffffffffffffffffffffffffffffffffffffff161480610dd45750610dd381610dce61265d565b6120fd565b5b610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061412a565b60405180910390fd5b610e1d8383612665565b505050565b600b5481565b610e3061265d565b73ffffffffffffffffffffffffffffffffffffffff16610e4e6118c7565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906141ca565b60405180910390fd5b8060099080519060200190610eba9291906133b5565b5050565b610ec661265d565b73ffffffffffffffffffffffffffffffffffffffff16610ee46118c7565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f31906141ca565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610f63600761271e565b905090565b60126020528060005260406000206000915090505481565b600e5481565b610f97610f9161265d565b8261272c565b610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd9061428a565b60405180910390fd5b610fe183838361280a565b505050565b600080600090505b60118054905081101561108a578273ffffffffffffffffffffffffffffffffffffffff16601182815481106110265761102561473d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611077576001915050611090565b808061108290614636565b915050610fee565b50600090505b919050565b61109d61265d565b73ffffffffffffffffffffffffffffffffffffffff166110bb6118c7565b73ffffffffffffffffffffffffffffffffffffffff1614611111576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611108906141ca565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b61113661265d565b73ffffffffffffffffffffffffffffffffffffffff166111546118c7565b73ffffffffffffffffffffffffffffffffffffffff16146111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a1906141ca565b60405180910390fd5b60006111b46118c7565b73ffffffffffffffffffffffffffffffffffffffff16476040516111d790613f2f565b60006040518083038185875af1925050503d8060008114611214576040519150601f19603f3d011682016040523d82523d6000602084013e611219565b606091505b505090508061122757600080fd5b50565b600f5481565b61124b83838360405180602001604052806000815250611d54565b505050565b6060600061125d8361166b565b905060008167ffffffffffffffff81111561127b5761127a61476c565b5b6040519080825280602002602001820160405280156112a95781602001602082028036833780820191505090505b50905060006001905060005b83811080156112c65750600c548211155b1561134f5760006112d6836115b9565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133b57828483815181106113205761131f61473d565b5b602002602001018181525050818061133790614636565b9250505b828061134690614636565b935050506112b5565b82945050505050919050565b61136361265d565b73ffffffffffffffffffffffffffffffffffffffff166113816118c7565b73ffffffffffffffffffffffffffffffffffffffff16146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce906141ca565b60405180910390fd5b80600b8190555050565b6113e961265d565b73ffffffffffffffffffffffffffffffffffffffff166114076118c7565b73ffffffffffffffffffffffffffffffffffffffff161461145d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611454906141ca565b60405180910390fd5b80600a90805190602001906114739291906133b5565b5050565b601060019054906101000a900460ff1681565b60098054611497906145d3565b80601f01602080910402602001604051908101604052809291908181526020018280546114c3906145d3565b80156115105780601f106114e557610100808354040283529160200191611510565b820191906000526020600020905b8154815290600101906020018083116114f357829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b60088054611538906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611564906145d3565b80156115b15780601f10611586576101008083540402835291602001916115b1565b820191906000526020600020905b81548152906001019060200180831161159457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611662576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116599061416a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d39061414a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61172b61265d565b73ffffffffffffffffffffffffffffffffffffffff166117496118c7565b73ffffffffffffffffffffffffffffffffffffffff161461179f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611796906141ca565b60405180910390fd5b6117a96000612a71565b565b6117b361265d565b73ffffffffffffffffffffffffffffffffffffffff166117d16118c7565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906141ca565b60405180910390fd5b806008908051906020019061183d9291906133b5565b5050565b61184961265d565b73ffffffffffffffffffffffffffffffffffffffff166118676118c7565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906141ca565b60405180910390fd5b80600f8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b606060018054611906906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611932906145d3565b801561197f5780601f106119545761010080835404028352916020019161197f565b820191906000526020600020905b81548152906001019060200180831161196257829003601f168201915b5050505050905090565b601060029054906101000a900460ff1681565b806000811180156119af5750600d548111155b6119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e59061408a565b60405180910390fd5b600c54816119fc600761271e565b611a069190614408565b1115611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e9061426a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548282611a9a9190614408565b1115611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad29061420a565b60405180910390fd5b601060009054906101000a900460ff1615611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b22906141ea565b60405180910390fd5b82600b54611b39919061448f565b341015611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b72906142aa565b60405180910390fd5b611b836118c7565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c1b5760011515601060029054906101000a900460ff1615151415611c1a57611bda33610fe6565b611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c109061410a565b60405180910390fd5b5b5b611c253384612b37565b505050565b611c3c611c3561265d565b8383612bcc565b5050565b600a8054611c4d906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611c79906145d3565b8015611cc65780601f10611c9b57610100808354040283529160200191611cc6565b820191906000526020600020905b815481529060010190602001808311611ca957829003601f168201915b505050505081565b611cd661265d565b73ffffffffffffffffffffffffffffffffffffffff16611cf46118c7565b73ffffffffffffffffffffffffffffffffffffffff1614611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d41906141ca565b60405180910390fd5b80600d8190555050565b611d65611d5f61265d565b8361272c565b611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b9061428a565b60405180910390fd5b611db084848484612d39565b50505050565b60118181548110611dc657600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611e00826125f1565b611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e369061422a565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611eed57600a8054611e68906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611e94906145d3565b8015611ee15780601f10611eb657610100808354040283529160200191611ee1565b820191906000526020600020905b815481529060010190602001808311611ec457829003601f168201915b50505050509050611f49565b6000611ef7612d95565b90506000815111611f175760405180602001604052806000815250611f45565b80611f2184612e27565b6009604051602001611f3593929190613efe565b6040516020818303038152906040525b9150505b919050565b611f5661265d565b73ffffffffffffffffffffffffffffffffffffffff16611f746118c7565b73ffffffffffffffffffffffffffffffffffffffff1614611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc1906141ca565b60405180910390fd5b80600e8190555050565b611fdc61265d565b73ffffffffffffffffffffffffffffffffffffffff16611ffa6118c7565b73ffffffffffffffffffffffffffffffffffffffff1614612050576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612047906141ca565b60405180910390fd5b61205a8183612b37565b5050565b600c5481565b61206c61265d565b73ffffffffffffffffffffffffffffffffffffffff1661208a6118c7565b73ffffffffffffffffffffffffffffffffffffffff16146120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d7906141ca565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61219961265d565b73ffffffffffffffffffffffffffffffffffffffff166121b76118c7565b73ffffffffffffffffffffffffffffffffffffffff161461220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906141ca565b60405180910390fd5b6011600061221b919061343b565b81816011919061222c92919061345c565b505050565b816000811180156122445750600d548111155b612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a9061408a565b60405180910390fd5b600c5481612291600761271e565b61229b9190614408565b11156122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d39061426a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e54828261232f9190614408565b1115612370576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123679061420a565b60405180910390fd5b61237861265d565b73ffffffffffffffffffffffffffffffffffffffff166123966118c7565b73ffffffffffffffffffffffffffffffffffffffff16146123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e3906141ca565b60405180910390fd5b6123f68385612b37565b50505050565b600061240661265d565b73ffffffffffffffffffffffffffffffffffffffff166124246118c7565b73ffffffffffffffffffffffffffffffffffffffff161461247a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612471906141ca565b60405180910390fd5b61248682600f54612b37565b60019050919050565b61249761265d565b73ffffffffffffffffffffffffffffffffffffffff166124b56118c7565b73ffffffffffffffffffffffffffffffffffffffff161461250b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612502906141ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561257b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125729061402a565b60405180910390fd5b61258481612a71565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126d8836115b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612737826125f1565b612776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276d906140ea565b60405180910390fd5b6000612781836115b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127f057508373ffffffffffffffffffffffffffffffffffffffff166127d884610c85565b73ffffffffffffffffffffffffffffffffffffffff16145b80612801575061280081856120fd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661282a826115b9565b73ffffffffffffffffffffffffffffffffffffffff1614612880576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128779061404a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e7906140aa565b60405180910390fd5b6128fb838383612f88565b612906600082612665565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461295691906144e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ad9190614408565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a6c838383612f8d565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612bc757601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612b9290614636565b9190505550612ba16007612f92565b612bb483612baf600761271e565b612fa8565b8080612bbf90614636565b915050612b3a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c32906140ca565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d2c9190613fcd565b60405180910390a3505050565b612d4484848461280a565b612d5084848484612fc6565b612d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d869061400a565b60405180910390fd5b50505050565b606060088054612da4906145d3565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd0906145d3565b8015612e1d5780601f10612df257610100808354040283529160200191612e1d565b820191906000526020600020905b815481529060010190602001808311612e0057829003601f168201915b5050505050905090565b60606000821415612e6f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f83565b600082905060005b60008214612ea1578080612e8a90614636565b915050600a82612e9a919061445e565b9150612e77565b60008167ffffffffffffffff811115612ebd57612ebc61476c565b5b6040519080825280601f01601f191660200182016040528015612eef5781602001600182028036833780820191505090505b5090505b60008514612f7c57600182612f0891906144e9565b9150600a85612f17919061467f565b6030612f239190614408565b60f81b818381518110612f3957612f3861473d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f75919061445e565b9450612ef3565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612fc282826040518060200160405280600081525061315d565b5050565b6000612fe78473ffffffffffffffffffffffffffffffffffffffff166131b8565b15613150578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261301061265d565b8786866040518563ffffffff1660e01b81526004016130329493929190613f5f565b602060405180830381600087803b15801561304c57600080fd5b505af192505050801561307d57506040513d601f19601f8201168201806040525081019061307a9190613922565b60015b613100573d80600081146130ad576040519150601f19603f3d011682016040523d82523d6000602084013e6130b2565b606091505b506000815114156130f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ef9061400a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613155565b600190505b949350505050565b61316783836131db565b6131746000848484612fc6565b6131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa9061400a565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561324b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132429061418a565b60405180910390fd5b613254816125f1565b15613294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328b9061406a565b60405180910390fd5b6132a060008383612f88565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132f09190614408565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133b160008383612f8d565b5050565b8280546133c1906145d3565b90600052602060002090601f0160209004810192826133e3576000855561342a565b82601f106133fc57805160ff191683800117855561342a565b8280016001018555821561342a579182015b8281111561342957825182559160200191906001019061340e565b5b50905061343791906134fc565b5090565b508054600082559060005260206000209081019061345991906134fc565b50565b8280548282559060005260206000209081019282156134eb579160200282015b828111156134ea57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061347c565b5b5090506134f891906134fc565b5090565b5b808211156135155760008160009055506001016134fd565b5090565b600061352c6135278461430a565b6142e5565b905082815260208101848484011115613548576135476147aa565b5b613553848285614591565b509392505050565b600061356e6135698461433b565b6142e5565b90508281526020810184848401111561358a576135896147aa565b5b613595848285614591565b509392505050565b6000813590506135ac81614d1b565b92915050565b60008083601f8401126135c8576135c76147a0565b5b8235905067ffffffffffffffff8111156135e5576135e461479b565b5b602083019150836020820283011115613601576136006147a5565b5b9250929050565b60008135905061361781614d32565b92915050565b60008135905061362c81614d49565b92915050565b60008151905061364181614d49565b92915050565b600082601f83011261365c5761365b6147a0565b5b813561366c848260208601613519565b91505092915050565b600082601f83011261368a576136896147a0565b5b813561369a84826020860161355b565b91505092915050565b6000813590506136b281614d60565b92915050565b6000602082840312156136ce576136cd6147b4565b5b60006136dc8482850161359d565b91505092915050565b600080604083850312156136fc576136fb6147b4565b5b600061370a8582860161359d565b925050602061371b8582860161359d565b9150509250929050565b60008060006060848603121561373e5761373d6147b4565b5b600061374c8682870161359d565b935050602061375d8682870161359d565b925050604061376e868287016136a3565b9150509250925092565b60008060008060808587031215613792576137916147b4565b5b60006137a08782880161359d565b94505060206137b18782880161359d565b93505060406137c2878288016136a3565b925050606085013567ffffffffffffffff8111156137e3576137e26147af565b5b6137ef87828801613647565b91505092959194509250565b60008060408385031215613812576138116147b4565b5b60006138208582860161359d565b925050602061383185828601613608565b9150509250929050565b60008060408385031215613852576138516147b4565b5b60006138608582860161359d565b9250506020613871858286016136a3565b9150509250929050565b60008060208385031215613892576138916147b4565b5b600083013567ffffffffffffffff8111156138b0576138af6147af565b5b6138bc858286016135b2565b92509250509250929050565b6000602082840312156138de576138dd6147b4565b5b60006138ec84828501613608565b91505092915050565b60006020828403121561390b5761390a6147b4565b5b60006139198482850161361d565b91505092915050565b600060208284031215613938576139376147b4565b5b600061394684828501613632565b91505092915050565b600060208284031215613965576139646147b4565b5b600082013567ffffffffffffffff811115613983576139826147af565b5b61398f84828501613675565b91505092915050565b6000602082840312156139ae576139ad6147b4565b5b60006139bc848285016136a3565b91505092915050565b600080604083850312156139dc576139db6147b4565b5b60006139ea858286016136a3565b92505060206139fb8582860161359d565b9150509250929050565b6000613a118383613ee0565b60208301905092915050565b613a268161451d565b82525050565b6000613a3782614391565b613a4181856143bf565b9350613a4c8361436c565b8060005b83811015613a7d578151613a648882613a05565b9750613a6f836143b2565b925050600181019050613a50565b5085935050505092915050565b613a938161452f565b82525050565b6000613aa48261439c565b613aae81856143d0565b9350613abe8185602086016145a0565b613ac7816147b9565b840191505092915050565b6000613add826143a7565b613ae781856143ec565b9350613af78185602086016145a0565b613b00816147b9565b840191505092915050565b6000613b16826143a7565b613b2081856143fd565b9350613b308185602086016145a0565b80840191505092915050565b60008154613b49816145d3565b613b5381866143fd565b94506001821660008114613b6e5760018114613b7f57613bb2565b60ff19831686528186019350613bb2565b613b888561437c565b60005b83811015613baa57815481890152600182019150602081019050613b8b565b838801955050505b50505092915050565b6000613bc86032836143ec565b9150613bd3826147ca565b604082019050919050565b6000613beb6026836143ec565b9150613bf682614819565b604082019050919050565b6000613c0e6025836143ec565b9150613c1982614868565b604082019050919050565b6000613c31601c836143ec565b9150613c3c826148b7565b602082019050919050565b6000613c546014836143ec565b9150613c5f826148e0565b602082019050919050565b6000613c776024836143ec565b9150613c8282614909565b604082019050919050565b6000613c9a6019836143ec565b9150613ca582614958565b602082019050919050565b6000613cbd602c836143ec565b9150613cc882614981565b604082019050919050565b6000613ce06017836143ec565b9150613ceb826149d0565b602082019050919050565b6000613d036038836143ec565b9150613d0e826149f9565b604082019050919050565b6000613d26602a836143ec565b9150613d3182614a48565b604082019050919050565b6000613d496029836143ec565b9150613d5482614a97565b604082019050919050565b6000613d6c6020836143ec565b9150613d7782614ae6565b602082019050919050565b6000613d8f602c836143ec565b9150613d9a82614b0f565b604082019050919050565b6000613db26020836143ec565b9150613dbd82614b5e565b602082019050919050565b6000613dd56017836143ec565b9150613de082614b87565b602082019050919050565b6000613df86011836143ec565b9150613e0382614bb0565b602082019050919050565b6000613e1b602f836143ec565b9150613e2682614bd9565b604082019050919050565b6000613e3e6021836143ec565b9150613e4982614c28565b604082019050919050565b6000613e616000836143e1565b9150613e6c82614c77565b600082019050919050565b6000613e846014836143ec565b9150613e8f82614c7a565b602082019050919050565b6000613ea76031836143ec565b9150613eb282614ca3565b604082019050919050565b6000613eca6013836143ec565b9150613ed582614cf2565b602082019050919050565b613ee981614587565b82525050565b613ef881614587565b82525050565b6000613f0a8286613b0b565b9150613f168285613b0b565b9150613f228284613b3c565b9150819050949350505050565b6000613f3a82613e54565b9150819050919050565b6000602082019050613f596000830184613a1d565b92915050565b6000608082019050613f746000830187613a1d565b613f816020830186613a1d565b613f8e6040830185613eef565b8181036060830152613fa08184613a99565b905095945050505050565b60006020820190508181036000830152613fc58184613a2c565b905092915050565b6000602082019050613fe26000830184613a8a565b92915050565b600060208201905081810360008301526140028184613ad2565b905092915050565b6000602082019050818103600083015261402381613bbb565b9050919050565b6000602082019050818103600083015261404381613bde565b9050919050565b6000602082019050818103600083015261406381613c01565b9050919050565b6000602082019050818103600083015261408381613c24565b9050919050565b600060208201905081810360008301526140a381613c47565b9050919050565b600060208201905081810360008301526140c381613c6a565b9050919050565b600060208201905081810360008301526140e381613c8d565b9050919050565b6000602082019050818103600083015261410381613cb0565b9050919050565b6000602082019050818103600083015261412381613cd3565b9050919050565b6000602082019050818103600083015261414381613cf6565b9050919050565b6000602082019050818103600083015261416381613d19565b9050919050565b6000602082019050818103600083015261418381613d3c565b9050919050565b600060208201905081810360008301526141a381613d5f565b9050919050565b600060208201905081810360008301526141c381613d82565b9050919050565b600060208201905081810360008301526141e381613da5565b9050919050565b6000602082019050818103600083015261420381613dc8565b9050919050565b6000602082019050818103600083015261422381613deb565b9050919050565b6000602082019050818103600083015261424381613e0e565b9050919050565b6000602082019050818103600083015261426381613e31565b9050919050565b6000602082019050818103600083015261428381613e77565b9050919050565b600060208201905081810360008301526142a381613e9a565b9050919050565b600060208201905081810360008301526142c381613ebd565b9050919050565b60006020820190506142df6000830184613eef565b92915050565b60006142ef614300565b90506142fb8282614605565b919050565b6000604051905090565b600067ffffffffffffffff8211156143255761432461476c565b5b61432e826147b9565b9050602081019050919050565b600067ffffffffffffffff8211156143565761435561476c565b5b61435f826147b9565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061441382614587565b915061441e83614587565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614453576144526146b0565b5b828201905092915050565b600061446982614587565b915061447483614587565b925082614484576144836146df565b5b828204905092915050565b600061449a82614587565b91506144a583614587565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144de576144dd6146b0565b5b828202905092915050565b60006144f482614587565b91506144ff83614587565b925082821015614512576145116146b0565b5b828203905092915050565b600061452882614567565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145be5780820151818401526020810190506145a3565b838111156145cd576000848401525b50505050565b600060028204905060018216806145eb57607f821691505b602082108114156145ff576145fe61470e565b5b50919050565b61460e826147b9565b810181811067ffffffffffffffff8211171561462d5761462c61476c565b5b80604052505050565b600061464182614587565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614674576146736146b0565b5b600182019050919050565b600061468a82614587565b915061469583614587565b9250826146a5576146a46146df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f55736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4f7665722057616c6c6574204c696d6974000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b614d248161451d565b8114614d2f57600080fd5b50565b614d3b8161452f565b8114614d4657600080fd5b50565b614d528161453b565b8114614d5d57600080fd5b50565b614d6981614587565b8114614d7457600080fd5b5056fea2646970667358221220826e86cf40cc6b61e8299b348b14139b5a77689cdbd25f987a4dae3e73bc5df364736f6c63430008070033

Deployed Bytecode Sourcemap

40549:6400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26402:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27571:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29264:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28787:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40825:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45742:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45965:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41969:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41195:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40949:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30183:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42933:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45856:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46056:327;;;;;;;;;;;;;:::i;:::-;;40993:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30630:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43215:743;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44962:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45459:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41072:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40747:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41040:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40712:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27178:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26821:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6347:103;;;;;;;;;;;;;:::i;:::-;;45628:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45167:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5696:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40905:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27740:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41107:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42072:481;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29644:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40787:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45292:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30886:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41151:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43966:727;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45050:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42762:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40867:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44867:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29902:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46792:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42561:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44701:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6605:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26402:355;26549:4;26606:25;26591:40;;;:11;:40;;;;:105;;;;26663:33;26648:48;;;:11;:48;;;;26591:105;:158;;;;26713:36;26737:11;26713:23;:36::i;:::-;26591:158;26571:178;;26402:355;;;:::o;27571:100::-;27625:13;27658:5;27651:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27571:100;:::o;29264:308::-;29385:7;29432:16;29440:7;29432;:16::i;:::-;29410:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29540:15;:24;29556:7;29540:24;;;;;;;;;;;;;;;;;;;;;29533:31;;29264:308;;;:::o;28787:411::-;28868:13;28884:23;28899:7;28884:14;:23::i;:::-;28868:39;;28932:5;28926:11;;:2;:11;;;;28918:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29026:5;29010:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29035:37;29052:5;29059:12;:10;:12::i;:::-;29035:16;:37::i;:::-;29010:62;28988:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29169:21;29178:2;29182:7;29169:8;:21::i;:::-;28857:341;28787:411;;:::o;40825:35::-;;;;:::o;45742:106::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45830:10:::1;45818:9;:22;;;;;;;;;;;;:::i;:::-;;45742:106:::0;:::o;45965:83::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46034:6:::1;46025;;:15;;;;;;;;;;;;;;;;;;45965:83:::0;:::o;41969:95::-;42013:7;42040:16;:6;:14;:16::i;:::-;42033:23;;41969:95;:::o;41195:55::-;;;;;;;;;;;;;;;;;:::o;40949:37::-;;;;:::o;30183:376::-;30392:41;30411:12;:10;:12::i;:::-;30425:7;30392:18;:41::i;:::-;30370:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30523:28;30533:4;30539:2;30543:7;30523:9;:28::i;:::-;30183:376;;;:::o;42933:274::-;42992:4;43014:9;43026:1;43014:13;;43009:168;43033:20;:27;;;;43029:1;:31;43009:168;;;43113:5;43086:32;;:20;43107:1;43086:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;43082:84;;;43146:4;43139:11;;;;;43082:84;43062:3;;;;;:::i;:::-;;;;43009:168;;;;43194:5;43187:12;;42933:274;;;;:::o;45856:101::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45943:6:::1;45925:15;;:24;;;;;;;;;;;;;;;;;;45856:101:::0;:::o;46056:327::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46195:7:::1;46216;:5;:7::i;:::-;46208:21;;46237;46208:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46194:69;;;46282:2;46274:11;;;::::0;::::1;;46093:290;46056:327::o:0;40993:40::-;;;;:::o;30630:185::-;30768:39;30785:4;30791:2;30795:7;30768:39;;;;;;;;;;;;:16;:39::i;:::-;30630:185;;;:::o;43215:743::-;43302:16;43336:23;43362:17;43372:6;43362:9;:17::i;:::-;43336:43;;43390:30;43437:15;43423:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43390:63;;43464:22;43489:1;43464:26;;43501:23;43541:377;43580:15;43562;:33;:64;;;;;43617:9;;43599:14;:27;;43562:64;43541:377;;;43653:25;43681:23;43689:14;43681:7;:23::i;:::-;43653:51;;43746:6;43725:27;;:17;:27;;;43721:153;;;43806:14;43773:13;43787:15;43773:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;43841:17;;;;;:::i;:::-;;;;43721:153;43890:16;;;;;:::i;:::-;;;;43638:280;43541:377;;;43937:13;43930:20;;;;;;43215:743;;;:::o;44962:80::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45029:5:::1;45022:4;:12;;;;44962:80:::0;:::o;45459:161::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45594:18:::1;45574:17;:38;;;;;;;;;;;;:::i;:::-;;45459:161:::0;:::o;41072:28::-;;;;;;;;;;;;;:::o;40747:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41040:25::-;;;;;;;;;;;;;:::o;40712:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27178:326::-;27295:7;27320:13;27336:7;:16;27344:7;27336:16;;;;;;;;;;;;;;;;;;;;;27320:32;;27402:1;27385:19;;:5;:19;;;;27363:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27491:5;27484:12;;;27178:326;;;:::o;26821:295::-;26938:7;27002:1;26985:19;;:5;:19;;;;26963:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27092:9;:16;27102:5;27092:16;;;;;;;;;;;;;;;;27085:23;;26821:295;;;:::o;6347:103::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6412:30:::1;6439:1;6412:18;:30::i;:::-;6347:103::o:0;45628:106::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45716:10:::1;45704:9;:22;;;;;;;;;;;;:::i;:::-;;45628:106:::0;:::o;45167:117::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45270:6:::1;45246:21;:30;;;;45167:117:::0;:::o;5696:87::-;5742:7;5769:6;;;;;;;;;;;5762:13;;5696:87;:::o;40905:37::-;;;;:::o;27740:104::-;27796:13;27829:7;27822:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27740:104;:::o;41107:35::-;;;;;;;;;;;;;:::o;42072:481::-;42164:11;41532:1;41518:11;:15;:52;;;;;41552:18;;41537:11;:33;;41518:52;41496:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;41685:9;;41670:11;41651:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;41629:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;41753:24;41780:20;:32;41801:10;41780:32;;;;;;;;;;;;;;;;41753:59;;41879:17;;41864:11;41845:16;:30;;;;:::i;:::-;:51;;41823:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;42202:6:::1;;;;;;;;;;;42201:7;42193:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;42275:11;42268:4;;:18;;;;:::i;:::-;42255:9;:31;;42247:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42341:7;:5;:7::i;:::-;42327:21;;:10;:21;;;42323:178;;42388:4;42369:23;;:15;;;;;;;;;;;:23;;;42365:125;;;42421:25;42435:10;42421:13;:25::i;:::-;42413:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;42365:125;42323:178;42511:34;42521:10;42533:11;42511:9;:34::i;:::-;41485:476:::0;42072:481;;:::o;29644:187::-;29771:52;29790:12;:10;:12::i;:::-;29804:8;29814;29771:18;:52::i;:::-;29644:187;;:::o;40787:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45292:159::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45424:19:::1;45403:18;:40;;;;45292:159:::0;:::o;30886:365::-;31075:41;31094:12;:10;:12::i;:::-;31108:7;31075:18;:41::i;:::-;31053:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31204:39;31218:4;31224:2;31228:7;31237:5;31204:13;:39::i;:::-;30886:365;;;;:::o;41151:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43966:727::-;44085:13;44138:17;44146:8;44138:7;:17::i;:::-;44116:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;44259:5;44247:17;;:8;;;;;;;;;;;:17;;;44243:74;;;44288:17;44281:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44243:74;44329:28;44360:10;:8;:10::i;:::-;44329:41;;44432:1;44407:14;44401:28;:32;:284;;;;;;;;;;;;;;;;;44525:14;44566:19;:8;:17;:19::i;:::-;44612:9;44482:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44401:284;44381:304;;;43966:727;;;;:::o;45050:109::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45145:6:::1;45125:17;:26;;;;45050:109:::0;:::o;42762:163::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42884:33:::1;42894:9;42905:11;42884:9;:33::i;:::-;42762:163:::0;;:::o;40867:31::-;;;;:::o;44867:87::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44940:6:::1;44929:8;;:17;;;;;;;;;;;;;;;;;;44867:87:::0;:::o;29902:214::-;30044:4;30073:18;:25;30092:5;30073:25;;;;;;;;;;;;;;;:35;30099:8;30073:35;;;;;;;;;;;;;;;;;;;;;;;;;30066:42;;29902:214;;;;:::o;46792:154::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46878:20:::1;;46871:27;;;;:::i;:::-;46932:6;;46909:20;:29;;;;;;;:::i;:::-;;46792:154:::0;;:::o;42561:193::-;42665:11;41532:1;41518:11;:15;:52;;;;;41552:18;;41537:11;:33;;41518:52;41496:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;41685:9;;41670:11;41651:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;41629:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;41753:24;41780:20;:32;41801:10;41780:32;;;;;;;;;;;;;;;;41753:59;;41879:17;;41864:11;41845:16;:30;;;;:::i;:::-;:51;;41823:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;5927:12:::1;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42713:33:::2;42723:9;42734:11;42713:9;:33::i;:::-;41485:476:::0;42561:193;;;:::o;44701:158::-;44767:4;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44784:45:::1;44794:11;44807:21;;44784:9;:45::i;:::-;44847:4;44840:11;;44701:158:::0;;;:::o;6605:238::-;5927:12;:10;:12::i;:::-;5916:23;;:7;:5;:7::i;:::-;:23;;;5908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6728:1:::1;6708:22;;:8;:22;;;;6686:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6807:28;6826:8;6807:18;:28::i;:::-;6605:238:::0;:::o;18974:207::-;19104:4;19148:25;19133:40;;;:11;:40;;;;19126:47;;18974:207;;;:::o;32798:127::-;32863:4;32915:1;32887:30;;:7;:16;32895:7;32887:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32880:37;;32798:127;;;:::o;4399:98::-;4452:7;4479:10;4472:17;;4399:98;:::o;37085:174::-;37187:2;37160:15;:24;37176:7;37160:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37243:7;37239:2;37205:46;;37214:23;37229:7;37214:14;:23::i;:::-;37205:46;;;;;;;;;;;;37085:174;;:::o;975:114::-;1040:7;1067;:14;;;1060:21;;975:114;;;:::o;33092:452::-;33221:4;33265:16;33273:7;33265;:16::i;:::-;33243:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33364:13;33380:23;33395:7;33380:14;:23::i;:::-;33364:39;;33433:5;33422:16;;:7;:16;;;:64;;;;33479:7;33455:31;;:20;33467:7;33455:11;:20::i;:::-;:31;;;33422:64;:113;;;;33503:32;33520:5;33527:7;33503:16;:32::i;:::-;33422:113;33414:122;;;33092:452;;;;:::o;36305:662::-;36478:4;36451:31;;:23;36466:7;36451:14;:23::i;:::-;:31;;;36429:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;36580:1;36566:16;;:2;:16;;;;36558:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36636:39;36657:4;36663:2;36667:7;36636:20;:39::i;:::-;36740:29;36757:1;36761:7;36740:8;:29::i;:::-;36801:1;36782:9;:15;36792:4;36782:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36830:1;36813:9;:13;36823:2;36813:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36861:2;36842:7;:16;36850:7;36842:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36900:7;36896:2;36881:27;;36890:4;36881:27;;;;;;;;;;;;36921:38;36941:4;36947:2;36951:7;36921:19;:38::i;:::-;36305:662;;;:::o;7003:191::-;7077:16;7096:6;;;;;;;;;;;7077:25;;7122:8;7113:6;;:17;;;;;;;;;;;;;;;;;;7177:8;7146:40;;7167:8;7146:40;;;;;;;;;;;;7066:128;7003:191;:::o;46391:275::-;46475:9;46470:189;46494:11;46490:1;:15;46470:189;;;46527:20;:32;46548:10;46527:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;46576:18;:6;:16;:18::i;:::-;46609:38;46619:9;46630:16;:6;:14;:16::i;:::-;46609:9;:38::i;:::-;46507:3;;;;;:::i;:::-;;;;46470:189;;;;46391:275;;:::o;37401:315::-;37556:8;37547:17;;:5;:17;;;;37539:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37643:8;37605:18;:25;37624:5;37605:25;;;;;;;;;;;;;;;:35;37631:8;37605:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37689:8;37667:41;;37682:5;37667:41;;;37699:8;37667:41;;;;;;:::i;:::-;;;;;;;;37401:315;;;:::o;32133:352::-;32290:28;32300:4;32306:2;32310:7;32290:9;:28::i;:::-;32351:48;32374:4;32380:2;32384:7;32393:5;32351:22;:48::i;:::-;32329:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;32133:352;;;;:::o;46674:110::-;46734:13;46767:9;46760:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46674:110;:::o;1931:723::-;1987:13;2217:1;2208:5;:10;2204:53;;;2235:10;;;;;;;;;;;;;;;;;;;;;2204:53;2267:12;2282:5;2267:20;;2298:14;2323:78;2338:1;2330:4;:9;2323:78;;2356:8;;;;;:::i;:::-;;;;2387:2;2379:10;;;;;:::i;:::-;;;2323:78;;;2411:19;2443:6;2433:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2411:39;;2461:154;2477:1;2468:5;:10;2461:154;;2505:1;2495:11;;;;;:::i;:::-;;;2572:2;2564:5;:10;;;;:::i;:::-;2551:2;:24;;;;:::i;:::-;2538:39;;2521:6;2528;2521:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2601:2;2592:11;;;;;:::i;:::-;;;2461:154;;;2639:6;2625:21;;;;;1931:723;;;;:::o;39833:126::-;;;;:::o;40344:125::-;;;;:::o;1097:127::-;1204:1;1186:7;:14;;;:19;;;;;;;;;;;1097:127;:::o;33886:110::-;33962:26;33972:2;33976:7;33962:26;;;;;;;;;;;;:9;:26::i;:::-;33886:110;;:::o;38281:980::-;38436:4;38457:15;:2;:13;;;:15::i;:::-;38453:801;;;38526:2;38510:36;;;38569:12;:10;:12::i;:::-;38604:4;38631:7;38661:5;38510:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38489:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38885:1;38868:6;:13;:18;38864:320;;;38911:108;;;;;;;;;;:::i;:::-;;;;;;;;38864:320;39134:6;39128:13;39119:6;39115:2;39111:15;39104:38;38489:710;38759:41;;;38749:51;;;:6;:51;;;;38742:58;;;;;38453:801;39238:4;39231:11;;38281:980;;;;;;;:::o;34223:321::-;34353:18;34359:2;34363:7;34353:5;:18::i;:::-;34404:54;34435:1;34439:2;34443:7;34452:5;34404:22;:54::i;:::-;34382:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34223:321;;;:::o;8432:326::-;8492:4;8749:1;8727:7;:19;;;:23;8720:30;;8432:326;;;:::o;34880:439::-;34974:1;34960:16;;:2;:16;;;;34952:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35033:16;35041:7;35033;:16::i;:::-;35032:17;35024:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35095:45;35124:1;35128:2;35132:7;35095:20;:45::i;:::-;35170:1;35153:9;:13;35163:2;35153:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35201:2;35182:7;:16;35190:7;35182:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35246:7;35242:2;35221:33;;35238:1;35221:33;;;;;;;;;;;;35267:44;35295:1;35299:2;35303:7;35267:19;:44::i;:::-;34880:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:474::-;8711:6;8719;8768:2;8756:9;8747:7;8743:23;8739:32;8736:119;;;8774:79;;:::i;:::-;8736:119;8894:1;8919:53;8964:7;8955:6;8944:9;8940:22;8919:53;:::i;:::-;8909:63;;8865:117;9021:2;9047:53;9092:7;9083:6;9072:9;9068:22;9047:53;:::i;:::-;9037:63;;8992:118;8643:474;;;;;:::o;9123:179::-;9192:10;9213:46;9255:3;9247:6;9213:46;:::i;:::-;9291:4;9286:3;9282:14;9268:28;;9123:179;;;;:::o;9308:118::-;9395:24;9413:5;9395:24;:::i;:::-;9390:3;9383:37;9308:118;;:::o;9462:732::-;9581:3;9610:54;9658:5;9610:54;:::i;:::-;9680:86;9759:6;9754:3;9680:86;:::i;:::-;9673:93;;9790:56;9840:5;9790:56;:::i;:::-;9869:7;9900:1;9885:284;9910:6;9907:1;9904:13;9885:284;;;9986:6;9980:13;10013:63;10072:3;10057:13;10013:63;:::i;:::-;10006:70;;10099:60;10152:6;10099:60;:::i;:::-;10089:70;;9945:224;9932:1;9929;9925:9;9920:14;;9885:284;;;9889:14;10185:3;10178:10;;9586:608;;;9462:732;;;;:::o;10200:109::-;10281:21;10296:5;10281:21;:::i;:::-;10276:3;10269:34;10200:109;;:::o;10315:360::-;10401:3;10429:38;10461:5;10429:38;:::i;:::-;10483:70;10546:6;10541:3;10483:70;:::i;:::-;10476:77;;10562:52;10607:6;10602:3;10595:4;10588:5;10584:16;10562:52;:::i;:::-;10639:29;10661:6;10639:29;:::i;:::-;10634:3;10630:39;10623:46;;10405:270;10315:360;;;;:::o;10681:364::-;10769:3;10797:39;10830:5;10797:39;:::i;:::-;10852:71;10916:6;10911:3;10852:71;:::i;:::-;10845:78;;10932:52;10977:6;10972:3;10965:4;10958:5;10954:16;10932:52;:::i;:::-;11009:29;11031:6;11009:29;:::i;:::-;11004:3;11000:39;10993:46;;10773:272;10681:364;;;;:::o;11051:377::-;11157:3;11185:39;11218:5;11185:39;:::i;:::-;11240:89;11322:6;11317:3;11240:89;:::i;:::-;11233:96;;11338:52;11383:6;11378:3;11371:4;11364:5;11360:16;11338:52;:::i;:::-;11415:6;11410:3;11406:16;11399:23;;11161:267;11051:377;;;;:::o;11458:845::-;11561:3;11598:5;11592:12;11627:36;11653:9;11627:36;:::i;:::-;11679:89;11761:6;11756:3;11679:89;:::i;:::-;11672:96;;11799:1;11788:9;11784:17;11815:1;11810:137;;;;11961:1;11956:341;;;;11777:520;;11810:137;11894:4;11890:9;11879;11875:25;11870:3;11863:38;11930:6;11925:3;11921:16;11914:23;;11810:137;;11956:341;12023:38;12055:5;12023:38;:::i;:::-;12083:1;12097:154;12111:6;12108:1;12105:13;12097:154;;;12185:7;12179:14;12175:1;12170:3;12166:11;12159:35;12235:1;12226:7;12222:15;12211:26;;12133:4;12130:1;12126:12;12121:17;;12097:154;;;12280:6;12275:3;12271:16;12264:23;;11963:334;;11777:520;;11565:738;;11458:845;;;;:::o;12309:366::-;12451:3;12472:67;12536:2;12531:3;12472:67;:::i;:::-;12465:74;;12548:93;12637:3;12548:93;:::i;:::-;12666:2;12661:3;12657:12;12650:19;;12309:366;;;:::o;12681:::-;12823:3;12844:67;12908:2;12903:3;12844:67;:::i;:::-;12837:74;;12920:93;13009:3;12920:93;:::i;:::-;13038:2;13033:3;13029:12;13022:19;;12681:366;;;:::o;13053:::-;13195:3;13216:67;13280:2;13275:3;13216:67;:::i;:::-;13209:74;;13292:93;13381:3;13292:93;:::i;:::-;13410:2;13405:3;13401:12;13394:19;;13053:366;;;:::o;13425:::-;13567:3;13588:67;13652:2;13647:3;13588:67;:::i;:::-;13581:74;;13664:93;13753:3;13664:93;:::i;:::-;13782:2;13777:3;13773:12;13766:19;;13425:366;;;:::o;13797:::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14169:366;;;:::o;14541:::-;14683:3;14704:67;14768:2;14763:3;14704:67;:::i;:::-;14697:74;;14780:93;14869:3;14780:93;:::i;:::-;14898:2;14893:3;14889:12;14882:19;;14541:366;;;:::o;14913:::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:::-;15799:3;15820:67;15884:2;15879:3;15820:67;:::i;:::-;15813:74;;15896:93;15985:3;15896:93;:::i;:::-;16014:2;16009:3;16005:12;15998:19;;15657:366;;;:::o;16029:::-;16171:3;16192:67;16256:2;16251:3;16192:67;:::i;:::-;16185:74;;16268:93;16357:3;16268:93;:::i;:::-;16386:2;16381:3;16377:12;16370:19;;16029:366;;;:::o;16401:::-;16543:3;16564:67;16628:2;16623:3;16564:67;:::i;:::-;16557:74;;16640:93;16729:3;16640:93;:::i;:::-;16758:2;16753:3;16749:12;16742:19;;16401:366;;;:::o;16773:::-;16915:3;16936:67;17000:2;16995:3;16936:67;:::i;:::-;16929:74;;17012:93;17101:3;17012:93;:::i;:::-;17130:2;17125:3;17121:12;17114:19;;16773:366;;;:::o;17145:::-;17287:3;17308:67;17372:2;17367:3;17308:67;:::i;:::-;17301:74;;17384:93;17473:3;17384:93;:::i;:::-;17502:2;17497:3;17493:12;17486:19;;17145:366;;;:::o;17517:::-;17659:3;17680:67;17744:2;17739:3;17680:67;:::i;:::-;17673:74;;17756:93;17845:3;17756:93;:::i;:::-;17874:2;17869:3;17865:12;17858:19;;17517:366;;;:::o;17889:::-;18031:3;18052:67;18116:2;18111:3;18052:67;:::i;:::-;18045:74;;18128:93;18217:3;18128:93;:::i;:::-;18246:2;18241:3;18237:12;18230:19;;17889:366;;;:::o;18261:::-;18403:3;18424:67;18488:2;18483:3;18424:67;:::i;:::-;18417:74;;18500:93;18589:3;18500:93;:::i;:::-;18618:2;18613:3;18609:12;18602:19;;18261:366;;;:::o;18633:::-;18775:3;18796:67;18860:2;18855:3;18796:67;:::i;:::-;18789:74;;18872:93;18961:3;18872:93;:::i;:::-;18990:2;18985:3;18981:12;18974:19;;18633:366;;;:::o;19005:::-;19147:3;19168:67;19232:2;19227:3;19168:67;:::i;:::-;19161:74;;19244:93;19333:3;19244:93;:::i;:::-;19362:2;19357:3;19353:12;19346:19;;19005:366;;;:::o;19377:398::-;19536:3;19557:83;19638:1;19633:3;19557:83;:::i;:::-;19550:90;;19649:93;19738:3;19649:93;:::i;:::-;19767:1;19762:3;19758:11;19751:18;;19377:398;;;:::o;19781:366::-;19923:3;19944:67;20008:2;20003:3;19944:67;:::i;:::-;19937:74;;20020:93;20109:3;20020:93;:::i;:::-;20138:2;20133:3;20129:12;20122:19;;19781:366;;;:::o;20153:::-;20295:3;20316:67;20380:2;20375:3;20316:67;:::i;:::-;20309:74;;20392:93;20481:3;20392:93;:::i;:::-;20510:2;20505:3;20501:12;20494:19;;20153:366;;;:::o;20525:::-;20667:3;20688:67;20752:2;20747:3;20688:67;:::i;:::-;20681:74;;20764:93;20853:3;20764:93;:::i;:::-;20882:2;20877:3;20873:12;20866:19;;20525:366;;;:::o;20897:108::-;20974:24;20992:5;20974:24;:::i;:::-;20969:3;20962:37;20897:108;;:::o;21011:118::-;21098:24;21116:5;21098:24;:::i;:::-;21093:3;21086:37;21011:118;;:::o;21135:589::-;21360:3;21382:95;21473:3;21464:6;21382:95;:::i;:::-;21375:102;;21494:95;21585:3;21576:6;21494:95;:::i;:::-;21487:102;;21606:92;21694:3;21685:6;21606:92;:::i;:::-;21599:99;;21715:3;21708:10;;21135:589;;;;;;:::o;21730:379::-;21914:3;21936:147;22079:3;21936:147;:::i;:::-;21929:154;;22100:3;22093:10;;21730:379;;;:::o;22115:222::-;22208:4;22246:2;22235:9;22231:18;22223:26;;22259:71;22327:1;22316:9;22312:17;22303:6;22259:71;:::i;:::-;22115:222;;;;:::o;22343:640::-;22538:4;22576:3;22565:9;22561:19;22553:27;;22590:71;22658:1;22647:9;22643:17;22634:6;22590:71;:::i;:::-;22671:72;22739:2;22728:9;22724:18;22715:6;22671:72;:::i;:::-;22753;22821:2;22810:9;22806:18;22797:6;22753:72;:::i;:::-;22872:9;22866:4;22862:20;22857:2;22846:9;22842:18;22835:48;22900:76;22971:4;22962:6;22900:76;:::i;:::-;22892:84;;22343:640;;;;;;;:::o;22989:373::-;23132:4;23170:2;23159:9;23155:18;23147:26;;23219:9;23213:4;23209:20;23205:1;23194:9;23190:17;23183:47;23247:108;23350:4;23341:6;23247:108;:::i;:::-;23239:116;;22989:373;;;;:::o;23368:210::-;23455:4;23493:2;23482:9;23478:18;23470:26;;23506:65;23568:1;23557:9;23553:17;23544:6;23506:65;:::i;:::-;23368:210;;;;:::o;23584:313::-;23697:4;23735:2;23724:9;23720:18;23712:26;;23784:9;23778:4;23774:20;23770:1;23759:9;23755:17;23748:47;23812:78;23885:4;23876:6;23812:78;:::i;:::-;23804:86;;23584:313;;;;:::o;23903:419::-;24069:4;24107:2;24096:9;24092:18;24084:26;;24156:9;24150:4;24146:20;24142:1;24131:9;24127:17;24120:47;24184:131;24310:4;24184:131;:::i;:::-;24176:139;;23903:419;;;:::o;24328:::-;24494:4;24532:2;24521:9;24517:18;24509:26;;24581:9;24575:4;24571:20;24567:1;24556:9;24552:17;24545:47;24609:131;24735:4;24609:131;:::i;:::-;24601:139;;24328:419;;;:::o;24753:::-;24919:4;24957:2;24946:9;24942:18;24934:26;;25006:9;25000:4;24996:20;24992:1;24981:9;24977:17;24970:47;25034:131;25160:4;25034:131;:::i;:::-;25026:139;;24753:419;;;:::o;25178:::-;25344:4;25382:2;25371:9;25367:18;25359:26;;25431:9;25425:4;25421:20;25417:1;25406:9;25402:17;25395:47;25459:131;25585:4;25459:131;:::i;:::-;25451:139;;25178:419;;;:::o;25603:::-;25769:4;25807:2;25796:9;25792:18;25784:26;;25856:9;25850:4;25846:20;25842:1;25831:9;25827:17;25820:47;25884:131;26010:4;25884:131;:::i;:::-;25876:139;;25603:419;;;:::o;26028:::-;26194:4;26232:2;26221:9;26217:18;26209:26;;26281:9;26275:4;26271:20;26267:1;26256:9;26252:17;26245:47;26309:131;26435:4;26309:131;:::i;:::-;26301:139;;26028:419;;;:::o;26453:::-;26619:4;26657:2;26646:9;26642:18;26634:26;;26706:9;26700:4;26696:20;26692:1;26681:9;26677:17;26670:47;26734:131;26860:4;26734:131;:::i;:::-;26726:139;;26453:419;;;:::o;26878:::-;27044:4;27082:2;27071:9;27067:18;27059:26;;27131:9;27125:4;27121:20;27117:1;27106:9;27102:17;27095:47;27159:131;27285:4;27159:131;:::i;:::-;27151:139;;26878:419;;;:::o;27303:::-;27469:4;27507:2;27496:9;27492:18;27484:26;;27556:9;27550:4;27546:20;27542:1;27531:9;27527:17;27520:47;27584:131;27710:4;27584:131;:::i;:::-;27576:139;;27303:419;;;:::o;27728:::-;27894:4;27932:2;27921:9;27917:18;27909:26;;27981:9;27975:4;27971:20;27967:1;27956:9;27952:17;27945:47;28009:131;28135:4;28009:131;:::i;:::-;28001:139;;27728:419;;;:::o;28153:::-;28319:4;28357:2;28346:9;28342:18;28334:26;;28406:9;28400:4;28396:20;28392:1;28381:9;28377:17;28370:47;28434:131;28560:4;28434:131;:::i;:::-;28426:139;;28153:419;;;:::o;28578:::-;28744:4;28782:2;28771:9;28767:18;28759:26;;28831:9;28825:4;28821:20;28817:1;28806:9;28802:17;28795:47;28859:131;28985:4;28859:131;:::i;:::-;28851:139;;28578:419;;;:::o;29003:::-;29169:4;29207:2;29196:9;29192:18;29184:26;;29256:9;29250:4;29246:20;29242:1;29231:9;29227:17;29220:47;29284:131;29410:4;29284:131;:::i;:::-;29276:139;;29003:419;;;:::o;29428:::-;29594:4;29632:2;29621:9;29617:18;29609:26;;29681:9;29675:4;29671:20;29667:1;29656:9;29652:17;29645:47;29709:131;29835:4;29709:131;:::i;:::-;29701:139;;29428:419;;;:::o;29853:::-;30019:4;30057:2;30046:9;30042:18;30034:26;;30106:9;30100:4;30096:20;30092:1;30081:9;30077:17;30070:47;30134:131;30260:4;30134:131;:::i;:::-;30126:139;;29853:419;;;:::o;30278:::-;30444:4;30482:2;30471:9;30467:18;30459:26;;30531:9;30525:4;30521:20;30517:1;30506:9;30502:17;30495:47;30559:131;30685:4;30559:131;:::i;:::-;30551:139;;30278:419;;;:::o;30703:::-;30869:4;30907:2;30896:9;30892:18;30884:26;;30956:9;30950:4;30946:20;30942:1;30931:9;30927:17;30920:47;30984:131;31110:4;30984:131;:::i;:::-;30976:139;;30703:419;;;:::o;31128:::-;31294:4;31332:2;31321:9;31317:18;31309:26;;31381:9;31375:4;31371:20;31367:1;31356:9;31352:17;31345:47;31409:131;31535:4;31409:131;:::i;:::-;31401:139;;31128:419;;;:::o;31553:::-;31719:4;31757:2;31746:9;31742:18;31734:26;;31806:9;31800:4;31796:20;31792:1;31781:9;31777:17;31770:47;31834:131;31960:4;31834:131;:::i;:::-;31826:139;;31553:419;;;:::o;31978:::-;32144:4;32182:2;32171:9;32167:18;32159:26;;32231:9;32225:4;32221:20;32217:1;32206:9;32202:17;32195:47;32259:131;32385:4;32259:131;:::i;:::-;32251:139;;31978:419;;;:::o;32403:::-;32569:4;32607:2;32596:9;32592:18;32584:26;;32656:9;32650:4;32646:20;32642:1;32631:9;32627:17;32620:47;32684:131;32810:4;32684:131;:::i;:::-;32676:139;;32403:419;;;:::o;32828:::-;32994:4;33032:2;33021:9;33017:18;33009:26;;33081:9;33075:4;33071:20;33067:1;33056:9;33052:17;33045:47;33109:131;33235:4;33109:131;:::i;:::-;33101:139;;32828:419;;;:::o;33253:222::-;33346:4;33384:2;33373:9;33369:18;33361:26;;33397:71;33465:1;33454:9;33450:17;33441:6;33397:71;:::i;:::-;33253:222;;;;:::o;33481:129::-;33515:6;33542:20;;:::i;:::-;33532:30;;33571:33;33599:4;33591:6;33571:33;:::i;:::-;33481:129;;;:::o;33616:75::-;33649:6;33682:2;33676:9;33666:19;;33616:75;:::o;33697:307::-;33758:4;33848:18;33840:6;33837:30;33834:56;;;33870:18;;:::i;:::-;33834:56;33908:29;33930:6;33908:29;:::i;:::-;33900:37;;33992:4;33986;33982:15;33974:23;;33697:307;;;:::o;34010:308::-;34072:4;34162:18;34154:6;34151:30;34148:56;;;34184:18;;:::i;:::-;34148:56;34222:29;34244:6;34222:29;:::i;:::-;34214:37;;34306:4;34300;34296:15;34288:23;;34010:308;;;:::o;34324:132::-;34391:4;34414:3;34406:11;;34444:4;34439:3;34435:14;34427:22;;34324:132;;;:::o;34462:141::-;34511:4;34534:3;34526:11;;34557:3;34554:1;34547:14;34591:4;34588:1;34578:18;34570:26;;34462:141;;;:::o;34609:114::-;34676:6;34710:5;34704:12;34694:22;;34609:114;;;:::o;34729:98::-;34780:6;34814:5;34808:12;34798:22;;34729:98;;;:::o;34833:99::-;34885:6;34919:5;34913:12;34903:22;;34833:99;;;:::o;34938:113::-;35008:4;35040;35035:3;35031:14;35023:22;;34938:113;;;:::o;35057:184::-;35156:11;35190:6;35185:3;35178:19;35230:4;35225:3;35221:14;35206:29;;35057:184;;;;:::o;35247:168::-;35330:11;35364:6;35359:3;35352:19;35404:4;35399:3;35395:14;35380:29;;35247:168;;;;:::o;35421:147::-;35522:11;35559:3;35544:18;;35421:147;;;;:::o;35574:169::-;35658:11;35692:6;35687:3;35680:19;35732:4;35727:3;35723:14;35708:29;;35574:169;;;;:::o;35749:148::-;35851:11;35888:3;35873:18;;35749:148;;;;:::o;35903:305::-;35943:3;35962:20;35980:1;35962:20;:::i;:::-;35957:25;;35996:20;36014:1;35996:20;:::i;:::-;35991:25;;36150:1;36082:66;36078:74;36075:1;36072:81;36069:107;;;36156:18;;:::i;:::-;36069:107;36200:1;36197;36193:9;36186:16;;35903:305;;;;:::o;36214:185::-;36254:1;36271:20;36289:1;36271:20;:::i;:::-;36266:25;;36305:20;36323:1;36305:20;:::i;:::-;36300:25;;36344:1;36334:35;;36349:18;;:::i;:::-;36334:35;36391:1;36388;36384:9;36379:14;;36214:185;;;;:::o;36405:348::-;36445:7;36468:20;36486:1;36468:20;:::i;:::-;36463:25;;36502:20;36520:1;36502:20;:::i;:::-;36497:25;;36690:1;36622:66;36618:74;36615:1;36612:81;36607:1;36600:9;36593:17;36589:105;36586:131;;;36697:18;;:::i;:::-;36586:131;36745:1;36742;36738:9;36727:20;;36405:348;;;;:::o;36759:191::-;36799:4;36819:20;36837:1;36819:20;:::i;:::-;36814:25;;36853:20;36871:1;36853:20;:::i;:::-;36848:25;;36892:1;36889;36886:8;36883:34;;;36897:18;;:::i;:::-;36883:34;36942:1;36939;36935:9;36927:17;;36759:191;;;;:::o;36956:96::-;36993:7;37022:24;37040:5;37022:24;:::i;:::-;37011:35;;36956:96;;;:::o;37058:90::-;37092:7;37135:5;37128:13;37121:21;37110:32;;37058:90;;;:::o;37154:149::-;37190:7;37230:66;37223:5;37219:78;37208:89;;37154:149;;;:::o;37309:126::-;37346:7;37386:42;37379:5;37375:54;37364:65;;37309:126;;;:::o;37441:77::-;37478:7;37507:5;37496:16;;37441:77;;;:::o;37524:154::-;37608:6;37603:3;37598;37585:30;37670:1;37661:6;37656:3;37652:16;37645:27;37524:154;;;:::o;37684:307::-;37752:1;37762:113;37776:6;37773:1;37770:13;37762:113;;;37861:1;37856:3;37852:11;37846:18;37842:1;37837:3;37833:11;37826:39;37798:2;37795:1;37791:10;37786:15;;37762:113;;;37893:6;37890:1;37887:13;37884:101;;;37973:1;37964:6;37959:3;37955:16;37948:27;37884:101;37733:258;37684:307;;;:::o;37997:320::-;38041:6;38078:1;38072:4;38068:12;38058:22;;38125:1;38119:4;38115:12;38146:18;38136:81;;38202:4;38194:6;38190:17;38180:27;;38136:81;38264:2;38256:6;38253:14;38233:18;38230:38;38227:84;;;38283:18;;:::i;:::-;38227:84;38048:269;37997:320;;;:::o;38323:281::-;38406:27;38428:4;38406:27;:::i;:::-;38398:6;38394:40;38536:6;38524:10;38521:22;38500:18;38488:10;38485:34;38482:62;38479:88;;;38547:18;;:::i;:::-;38479:88;38587:10;38583:2;38576:22;38366:238;38323:281;;:::o;38610:233::-;38649:3;38672:24;38690:5;38672:24;:::i;:::-;38663:33;;38718:66;38711:5;38708:77;38705:103;;;38788:18;;:::i;:::-;38705:103;38835:1;38828:5;38824:13;38817:20;;38610:233;;;:::o;38849:176::-;38881:1;38898:20;38916:1;38898:20;:::i;:::-;38893:25;;38932:20;38950:1;38932:20;:::i;:::-;38927:25;;38971:1;38961:35;;38976:18;;:::i;:::-;38961:35;39017:1;39014;39010:9;39005:14;;38849:176;;;;:::o;39031:180::-;39079:77;39076:1;39069:88;39176:4;39173:1;39166:15;39200:4;39197:1;39190:15;39217:180;39265:77;39262:1;39255:88;39362:4;39359:1;39352:15;39386:4;39383:1;39376:15;39403:180;39451:77;39448:1;39441:88;39548:4;39545:1;39538:15;39572:4;39569:1;39562:15;39589:180;39637:77;39634:1;39627:88;39734:4;39731:1;39724:15;39758:4;39755:1;39748:15;39775:180;39823:77;39820:1;39813:88;39920:4;39917:1;39910:15;39944:4;39941:1;39934:15;39961:117;40070:1;40067;40060:12;40084:117;40193:1;40190;40183:12;40207:117;40316:1;40313;40306:12;40330:117;40439:1;40436;40429:12;40453:117;40562:1;40559;40552:12;40576:117;40685:1;40682;40675:12;40699:102;40740:6;40791:2;40787:7;40782:2;40775:5;40771:14;40767:28;40757:38;;40699:102;;;:::o;40807:237::-;40947:34;40943:1;40935:6;40931:14;40924:58;41016:20;41011:2;41003:6;40999:15;40992:45;40807:237;:::o;41050:225::-;41190:34;41186:1;41178:6;41174:14;41167:58;41259:8;41254:2;41246:6;41242:15;41235:33;41050:225;:::o;41281:224::-;41421:34;41417:1;41409:6;41405:14;41398:58;41490:7;41485:2;41477:6;41473:15;41466:32;41281:224;:::o;41511:178::-;41651:30;41647:1;41639:6;41635:14;41628:54;41511:178;:::o;41695:170::-;41835:22;41831:1;41823:6;41819:14;41812:46;41695:170;:::o;41871:223::-;42011:34;42007:1;41999:6;41995:14;41988:58;42080:6;42075:2;42067:6;42063:15;42056:31;41871:223;:::o;42100:175::-;42240:27;42236:1;42228:6;42224:14;42217:51;42100:175;:::o;42281:231::-;42421:34;42417:1;42409:6;42405:14;42398:58;42490:14;42485:2;42477:6;42473:15;42466:39;42281:231;:::o;42518:173::-;42658:25;42654:1;42646:6;42642:14;42635:49;42518:173;:::o;42697:243::-;42837:34;42833:1;42825:6;42821:14;42814:58;42906:26;42901:2;42893:6;42889:15;42882:51;42697:243;:::o;42946:229::-;43086:34;43082:1;43074:6;43070:14;43063:58;43155:12;43150:2;43142:6;43138:15;43131:37;42946:229;:::o;43181:228::-;43321:34;43317:1;43309:6;43305:14;43298:58;43390:11;43385:2;43377:6;43373:15;43366:36;43181:228;:::o;43415:182::-;43555:34;43551:1;43543:6;43539:14;43532:58;43415:182;:::o;43603:231::-;43743:34;43739:1;43731:6;43727:14;43720:58;43812:14;43807:2;43799:6;43795:15;43788:39;43603:231;:::o;43840:182::-;43980:34;43976:1;43968:6;43964:14;43957:58;43840:182;:::o;44028:173::-;44168:25;44164:1;44156:6;44152:14;44145:49;44028:173;:::o;44207:167::-;44347:19;44343:1;44335:6;44331:14;44324:43;44207:167;:::o;44380:234::-;44520:34;44516:1;44508:6;44504:14;44497:58;44589:17;44584:2;44576:6;44572:15;44565:42;44380:234;:::o;44620:220::-;44760:34;44756:1;44748:6;44744:14;44737:58;44829:3;44824:2;44816:6;44812:15;44805:28;44620:220;:::o;44846:114::-;;:::o;44966:170::-;45106:22;45102:1;45094:6;45090:14;45083:46;44966:170;:::o;45142:236::-;45282:34;45278:1;45270:6;45266:14;45259:58;45351:19;45346:2;45338:6;45334:15;45327:44;45142:236;:::o;45384:169::-;45524:21;45520:1;45512:6;45508:14;45501:45;45384:169;:::o;45559:122::-;45632:24;45650:5;45632:24;:::i;:::-;45625:5;45622:35;45612:63;;45671:1;45668;45661:12;45612:63;45559:122;:::o;45687:116::-;45757:21;45772:5;45757:21;:::i;:::-;45750:5;45747:32;45737:60;;45793:1;45790;45783:12;45737:60;45687:116;:::o;45809:120::-;45881:23;45898:5;45881:23;:::i;:::-;45874:5;45871:34;45861:62;;45919:1;45916;45909:12;45861:62;45809:120;:::o;45935:122::-;46008:24;46026:5;46008:24;:::i;:::-;46001:5;45998:35;45988:63;;46047:1;46044;46037:12;45988:63;45935:122;:::o

Swarm Source

ipfs://826e86cf40cc6b61e8299b348b14139b5a77689cdbd25f987a4dae3e73bc5df3
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.