ETH Price: $3,360.96 (-0.63%)
Gas: 11 Gwei

Token

Tribe Odyssey (Tribe)
 

Overview

Max Total Supply

9,409 Tribe

Holders

1,581

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Tribe
0x9E886c3a1fe69756B5006C6431F600c6EBeD6dfE
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A standalone collection of (14000) distinctive and collectable ape characters that live on the Ethereum Blockchain. Tribe is an entirely original collection that is based in an alternate dimension.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Tribe

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-15
*/

// SPDX-License-Identifier: MIT
// 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/[email protected]
// 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/introspection/[email protected]
// 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/token/ERC721/[email protected]
// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

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

// File @openzeppelin/contracts/token/ERC721/[email protected]
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]
// 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/utils/[email protected]
// 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/utils/[email protected]
// 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/introspection/[email protected]
// 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/[email protected]
// OpenZeppelin Contracts (last updated v4.6.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 overridden 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 ||
            isApprovedForAll(owner, spender) ||
            getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File @openzeppelin/contracts/security/[email protected]
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File @openzeppelin/contracts/utils/cryptography/[email protected]
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf)
        internal
        pure
        returns (bytes32)
    {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

pragma solidity 0.8.14;

contract Tribe is Ownable, ERC721, ReentrancyGuard {
    string private _tokenBaseURI = "";

    bool public isSaleActive = false;
    bool public isClaimActive = false;

    uint256 public constant MAX_SUPPLY = 14000;
    uint256 public constant APE_SUPPLY = 10146;
    uint256 public constant APE_START_ID = 10000;

    uint256 public constant maxCountPerTx = 5;
    uint256 public constant priceForWhitelist = 0.15 ether;
    uint256 public constant priceForPublic = 0.2 ether;

    uint256 public currentTokenId;
    uint256 public totalSupply;

    address public immutable apeAddress;
    bytes32 public immutable merkleRoot;

    address private constant devAddr1 =
        0x1faE5a7603b3573138556dF8E726Dad94E1901E5;
    address private constant devAddr2 =
        0xcA49c0c49eDa3a3069879D5bD1fEA6349298C348;

    constructor(address _ape, bytes32 _merkleRoot)
        ERC721("Tribe Odyssey", "Tribe")
    {
        currentTokenId = APE_SUPPLY;
        merkleRoot = _merkleRoot;
        apeAddress = _ape;
    }

    function mint(uint256 numberOfTokens, bytes32[] calldata merkleProof)
        external
        payable
        nonReentrant
    {
        require(isSaleActive, "!sale active");
        require(
            numberOfTokens > 0 && numberOfTokens <= maxCountPerTx,
            "invalid count"
        );
        require(currentTokenId + numberOfTokens <= MAX_SUPPLY, "!exceeded");

        uint256 costForMinting = costForMint(
            numberOfTokens,
            msg.sender,
            merkleProof
        );
        if (costForMinting > 0) {
            require(msg.value >= costForMinting, "insufficient funds!");
        }

        //refund remain eth
        if (msg.value > costForMinting) {
            Address.sendValue(payable(msg.sender), msg.value - costForMinting);
        }

        // mint nfts
        for (uint256 i = 0; i < numberOfTokens; ) {
            _safeMint(msg.sender, currentTokenId + i);

            unchecked {
                i++;
            }
        }

        unchecked {
            currentTokenId += numberOfTokens;
            totalSupply += numberOfTokens;
        }
    }

    function costForMint(
        uint256 _numToMint,
        address account,
        bytes32[] calldata merkleProof
    ) public view returns (uint256) {
        uint256 price;
        if (isWhiteList(account, merkleProof)) {
            price = priceForWhitelist;
        } else {
            price = priceForPublic;
        }

        return price * _numToMint;
    }

    function isWhiteList(address account, bytes32[] calldata merkleProof)
        public
        view
        returns (bool)
    {
        // Verify the merkle proof.
        bytes32 node = keccak256(abi.encodePacked(account));
        return MerkleProof.verify(merkleProof, merkleRoot, node);
    }

    function claim(uint256 tokenId) external {
        require(isClaimActive, "!claim active");
        _claim(tokenId);
    }

    function claimBatch(uint256[] memory tokenIds) external {
        require(isClaimActive, "!claim active");
        require(tokenIds.length > 0, "!length");

        for (uint256 i = 0; i < tokenIds.length; ) {
            _claim(tokenIds[i]);

            unchecked {
                i++;
            }
        }
    }

    function _claim(uint256 _tokenId) internal {
        require(
            IERC721(apeAddress).ownerOf(_tokenId) == msg.sender,
            "!token owner"
        );

        _safeMint(msg.sender, _tokenId - APE_START_ID);

        unchecked {
            totalSupply++;
        }
    }

    function isExists(uint256[] memory tokenIds)
        public
        view
        returns (bool[] memory)
    {
        bool[] memory exists = new bool[](tokenIds.length);
        for (uint256 i = 0; i < tokenIds.length; ) {
            exists[i] = _exists(tokenIds[i]);

            unchecked {
                i++;
            }
        }
        return exists;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    /////////////////////////////////////////////////////////////
    //////////////////   Admin Functions ////////////////////////
    /////////////////////////////////////////////////////////////
    function startSale() external onlyOwner {
        isSaleActive = true;
    }

    function endSale() external onlyOwner {
        isSaleActive = false;
    }

    function startClaim() external onlyOwner {
        isClaimActive = true;
    }

    function endClaim() external onlyOwner {
        isClaimActive = false;
    }

    function setTokenBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        uint256 devAmount1 = (balance * 65) / 1000;
        uint256 devAmount2 = (balance * 20) / 1000;
        Address.sendValue(payable(devAddr1), devAmount1);
        Address.sendValue(payable(devAddr2), devAmount2);
        Address.sendValue(payable(owner()), balance - devAmount1 - devAmount2);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_ape","type":"address"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"APE_START_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"APE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"costForMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClaimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isExists","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceForPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceForWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260405180602001604052806000815250600890805190602001906200002b92919062000276565b506000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055503480156200006f57600080fd5b5060405162004da238038062004da28339818101604052810190620000959190620003cb565b6040518060400160405280600d81526020017f5472696265204f647973736579000000000000000000000000000000000000008152506040518060400160405280600581526020017f54726962650000000000000000000000000000000000000000000000000000008152506200012162000115620001aa60201b60201c565b620001b260201b60201c565b81600190805190602001906200013992919062000276565b5080600290805190602001906200015292919062000276565b50505060016007819055506127a2600a819055508060a081815250508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050505062000476565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002849062000441565b90600052602060002090601f016020900481019282620002a85760008555620002f4565b82601f10620002c357805160ff1916838001178555620002f4565b82800160010185558215620002f4579182015b82811115620002f3578251825591602001919060010190620002d6565b5b50905062000303919062000307565b5090565b5b808211156200032257600081600090555060010162000308565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000358826200032b565b9050919050565b6200036a816200034b565b81146200037657600080fd5b50565b6000815190506200038a816200035f565b92915050565b6000819050919050565b620003a58162000390565b8114620003b157600080fd5b50565b600081519050620003c5816200039a565b92915050565b60008060408385031215620003e557620003e462000326565b5b6000620003f58582860162000379565b92505060206200040885828601620003b4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045a57607f821691505b60208210810362000470576200046f62000412565b5b50919050565b60805160a0516148f8620004aa60003960008181610d100152610d41015260008181611012015261206a01526148f86000f3fe60806040526004361061023d5760003560e01c80636246de0e1161012e578063b2c62d46116100ab578063d74d460a1161006f578063d74d460a14610825578063d9f76a1614610862578063e985e9c51461088d578063ecbfc077146108ca578063f2fde38b146108e157610244565b8063b2c62d4614610775578063b66a0e5d1461078c578063b88d4fde146107a3578063ba41b0c6146107cc578063c87b56dd146107e857610244565b80637fc27803116100f25780637fc27803146106a25780638da5cb5b146106cd5780638ef79e91146106f857806395d89b4114610721578063a22cb4651461074c57610244565b80636246de0e146105ab57806362abebce146105e85780636352211e1461061157806370a082311461064e578063715018a61461068b57610244565b80632c374e95116101bc5780633ccfd60b116101805780633ccfd60b146104ea57806342842e0e1461050157806351bdbbc71461052a578063564566a81461055557806360f61cec1461058057610244565b80632c374e95146104175780632eb4a7ab1461045457806332cb6b0c1461047f578063379607f5146104aa578063380d831b146104d357610244565b8063095ea7b311610203578063095ea7b314610344578063125cef251461036d57806318153d031461039857806318160ddd146103c357806323b872dd146103ee57610244565b80621d1805146102495780629a9b7b1461027457806301ffc9a71461029f57806306fdde03146102dc578063081812fc1461030757610244565b3661024457005b600080fd5b34801561025557600080fd5b5061025e61090a565b60405161026b9190612ceb565b60405180910390f35b34801561028057600080fd5b50610289610916565b6040516102969190612ceb565b60405180910390f35b3480156102ab57600080fd5b506102c660048036038101906102c19190612d72565b61091c565b6040516102d39190612dba565b60405180910390f35b3480156102e857600080fd5b506102f16109fe565b6040516102fe9190612e6e565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190612ebc565b610a90565b60405161033b9190612f2a565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612f71565b610b15565b005b34801561037957600080fd5b50610382610c2c565b60405161038f9190612ceb565b60405180910390f35b3480156103a457600080fd5b506103ad610c32565b6040516103ba9190612ceb565b60405180910390f35b3480156103cf57600080fd5b506103d8610c37565b6040516103e59190612ceb565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612fb1565b610c3d565b005b34801561042357600080fd5b5061043e60048036038101906104399190613069565b610c9d565b60405161044b9190612dba565b60405180910390f35b34801561046057600080fd5b50610469610d3f565b60405161047691906130e2565b60405180910390f35b34801561048b57600080fd5b50610494610d63565b6040516104a19190612ceb565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190612ebc565b610d69565b005b3480156104df57600080fd5b506104e8610dc4565b005b3480156104f657600080fd5b506104ff610e5d565b005b34801561050d57600080fd5b5061052860048036038101906105239190612fb1565b610fd7565b005b34801561053657600080fd5b5061053f610ff7565b60405161054c9190612ceb565b60405180910390f35b34801561056157600080fd5b5061056a610ffd565b6040516105779190612dba565b60405180910390f35b34801561058c57600080fd5b50610595611010565b6040516105a29190612f2a565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906130fd565b611034565b6040516105df9190612ceb565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a91906132af565b61107a565b005b34801561061d57600080fd5b5061063860048036038101906106339190612ebc565b61114d565b6040516106459190612f2a565b60405180910390f35b34801561065a57600080fd5b50610675600480360381019061067091906132f8565b6111fe565b6040516106829190612ceb565b60405180910390f35b34801561069757600080fd5b506106a06112b5565b005b3480156106ae57600080fd5b506106b761133d565b6040516106c49190612dba565b60405180910390f35b3480156106d957600080fd5b506106e2611350565b6040516106ef9190612f2a565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a91906133da565b611379565b005b34801561072d57600080fd5b5061073661140f565b6040516107439190612e6e565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061344f565b6114a1565b005b34801561078157600080fd5b5061078a6114b7565b005b34801561079857600080fd5b506107a1611550565b005b3480156107af57600080fd5b506107ca60048036038101906107c59190613530565b6115e9565b005b6107e660048036038101906107e191906135b3565b61164b565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190612ebc565b611862565b60405161081c9190612e6e565b60405180910390f35b34801561083157600080fd5b5061084c600480360381019061084791906132af565b611874565b60405161085991906136d1565b60405180910390f35b34801561086e57600080fd5b5061087761192f565b6040516108849190612ceb565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af91906136f3565b61193b565b6040516108c19190612dba565b60405180910390f35b3480156108d657600080fd5b506108df6119cf565b005b3480156108ed57600080fd5b50610908600480360381019061090391906132f8565b611a68565b005b6702c68af0bb14000081565b600a5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f757506109f682611b5f565b5b9050919050565b606060018054610a0d90613762565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3990613762565b8015610a865780601f10610a5b57610100808354040283529160200191610a86565b820191906000526020600020905b815481529060010190602001808311610a6957829003601f168201915b5050505050905090565b6000610a9b82611bc9565b610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190613805565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b208261114d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790613897565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610baf611c35565b73ffffffffffffffffffffffffffffffffffffffff161480610bde5750610bdd81610bd8611c35565b61193b565b5b610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490613929565b60405180910390fd5b610c278383611c3d565b505050565b61271081565b600581565b600b5481565b610c4e610c48611c35565b82611cf6565b610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906139bb565b60405180910390fd5b610c98838383611dd4565b505050565b60008084604051602001610cb19190613a23565b604051602081830303815290604052805190602001209050610d35848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f00000000000000000000000000000000000000000000000000000000000000008361203a565b9150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6136b081565b600960019054906101000a900460ff16610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90613a8a565b60405180910390fd5b610dc181612051565b50565b610dcc611c35565b73ffffffffffffffffffffffffffffffffffffffff16610dea611350565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613af6565b60405180910390fd5b6000600960006101000a81548160ff021916908315150217905550565b610e65611c35565b73ffffffffffffffffffffffffffffffffffffffff16610e83611350565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090613af6565b60405180910390fd5b600260075403610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590613b62565b60405180910390fd5b6002600781905550600047905060006103e8604183610f3d9190613bb1565b610f479190613c3a565b905060006103e8601484610f5b9190613bb1565b610f659190613c3a565b9050610f85731fae5a7603b3573138556df8e726dad94e1901e583612184565b610fa373ca49c0c49eda3a3069879d5bd1fea6349298c34882612184565b610fca610fae611350565b828486610fbb9190613c6b565b610fc59190613c6b565b612184565b5050506001600781905550565b610ff2838383604051806020016040528060008152506115e9565b505050565b6127a281565b600960009054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080611042858585610c9d565b1561105757670214e8348c4f00009050611063565b6702c68af0bb14000090505b858161106f9190613bb1565b915050949350505050565b600960019054906101000a900460ff166110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613a8a565b60405180910390fd5b600081511161110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490613ceb565b60405180910390fd5b60005b81518110156111495761113c82828151811061112f5761112e613d0b565b5b6020026020010151612051565b8080600101915050611110565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613dac565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590613e3e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd611c35565b73ffffffffffffffffffffffffffffffffffffffff166112db611350565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613af6565b60405180910390fd5b61133b6000612278565b565b600960019054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611381611c35565b73ffffffffffffffffffffffffffffffffffffffff1661139f611350565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90613af6565b60405180910390fd5b806008908051906020019061140b929190612c2f565b5050565b60606002805461141e90613762565b80601f016020809104026020016040519081016040528092919081815260200182805461144a90613762565b80156114975780601f1061146c57610100808354040283529160200191611497565b820191906000526020600020905b81548152906001019060200180831161147a57829003601f168201915b5050505050905090565b6114b36114ac611c35565b838361233c565b5050565b6114bf611c35565b73ffffffffffffffffffffffffffffffffffffffff166114dd611350565b73ffffffffffffffffffffffffffffffffffffffff1614611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613af6565b60405180910390fd5b6000600960016101000a81548160ff021916908315150217905550565b611558611c35565b73ffffffffffffffffffffffffffffffffffffffff16611576611350565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613af6565b60405180910390fd5b6001600960006101000a81548160ff021916908315150217905550565b6115fa6115f4611c35565b83611cf6565b611639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611630906139bb565b60405180910390fd5b611645848484846124a8565b50505050565b600260075403611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613b62565b60405180910390fd5b6002600781905550600960009054906101000a900460ff166116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90613eaa565b60405180910390fd5b6000831180156116f8575060058311155b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613f16565b60405180910390fd5b6136b083600a546117489190613f36565b1115611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613fd8565b60405180910390fd5b600061179784338585611034565b905060008111156117e657803410156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90614044565b60405180910390fd5b5b80341115611804576118033382346117fe9190613c6b565b612184565b5b60005b84811015611833576118263382600a546118219190613f36565b612504565b8080600101915050611807565b5083600a6000828254019250508190555083600b60008282540192505081905550506001600781905550505050565b606061186d82612522565b9050919050565b60606000825167ffffffffffffffff81111561189357611892613171565b5b6040519080825280602002602001820160405280156118c15781602001602082028036833780820191505090505b50905060005b8351811015611925576118f38482815181106118e6576118e5613d0b565b5b6020026020010151611bc9565b82828151811061190657611905613d0b565b5b60200260200101901515908115158152505080806001019150506118c7565b5080915050919050565b670214e8348c4f000081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119d7611c35565b73ffffffffffffffffffffffffffffffffffffffff166119f5611350565b73ffffffffffffffffffffffffffffffffffffffff1614611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290613af6565b60405180910390fd5b6001600960016101000a81548160ff021916908315150217905550565b611a70611c35565b73ffffffffffffffffffffffffffffffffffffffff16611a8e611350565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613af6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a906140d6565b60405180910390fd5b611b5c81612278565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cb08361114d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d0182611bc9565b611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790614168565b60405180910390fd5b6000611d4b8361114d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d8d5750611d8c818561193b565b5b80611dcb57508373ffffffffffffffffffffffffffffffffffffffff16611db384610a90565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611df48261114d565b73ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e41906141fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb09061428c565b60405180910390fd5b611ec48383836125c9565b611ecf600082611c3d565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f1f9190613c6b565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f769190613f36565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120358383836125ce565b505050565b60008261204785846125d3565b1490509392505050565b3373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016120c19190612ceb565b602060405180830381865afa1580156120de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061210291906142c1565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f9061433a565b60405180910390fd5b61216f336127108361216a9190613c6b565b612504565b600b6000815480929190600101919050555050565b804710156121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906143a6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121ed906143f7565b60006040518083038185875af1925050503d806000811461222a576040519150601f19603f3d011682016040523d82523d6000602084013e61222f565b606091505b5050905080612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a9061447e565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906144ea565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161249b9190612dba565b60405180910390a3505050565b6124b3848484611dd4565b6124bf84848484612648565b6124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f59061457c565b60405180910390fd5b50505050565b61251e8282604051806020016040528060008152506127cf565b5050565b606061252d82611bc9565b61256c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125639061460e565b60405180910390fd5b600061257661282a565b9050600081511161259657604051806020016040528060008152506125c1565b806125a0846128bc565b6040516020016125b192919061466a565b6040516020818303038152906040525b915050919050565b505050565b505050565b60008082905060005b845181101561263d5760008582815181106125fa576125f9613d0b565b5b6020026020010151905080831161261c576126158382612a1c565b9250612629565b6126268184612a1c565b92505b5080806126359061468e565b9150506125dc565b508091505092915050565b60006126698473ffffffffffffffffffffffffffffffffffffffff16612a33565b156127c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612692611c35565b8786866040518563ffffffff1660e01b81526004016126b4949392919061472b565b6020604051808303816000875af19250505080156126f057506040513d601f19601f820116820180604052508101906126ed919061478c565b60015b612772573d8060008114612720576040519150601f19603f3d011682016040523d82523d6000602084013e612725565b606091505b50600081510361276a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127619061457c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c7565b600190505b949350505050565b6127d98383612a56565b6127e66000848484612648565b612825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281c9061457c565b60405180910390fd5b505050565b60606008805461283990613762565b80601f016020809104026020016040519081016040528092919081815260200182805461286590613762565b80156128b25780601f10612887576101008083540402835291602001916128b2565b820191906000526020600020905b81548152906001019060200180831161289557829003601f168201915b5050505050905090565b606060008203612903576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a17565b600082905060005b6000821461293557808061291e9061468e565b915050600a8261292e9190613c3a565b915061290b565b60008167ffffffffffffffff81111561295157612950613171565b5b6040519080825280601f01601f1916602001820160405280156129835781602001600182028036833780820191505090505b5090505b60008514612a105760018261299c9190613c6b565b9150600a856129ab91906147b9565b60306129b79190613f36565b60f81b8183815181106129cd576129cc613d0b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a099190613c3a565b9450612987565b8093505050505b919050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614836565b60405180910390fd5b612ace81611bc9565b15612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b05906148a2565b60405180910390fd5b612b1a600083836125c9565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6a9190613f36565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2b600083836125ce565b5050565b828054612c3b90613762565b90600052602060002090601f016020900481019282612c5d5760008555612ca4565b82601f10612c7657805160ff1916838001178555612ca4565b82800160010185558215612ca4579182015b82811115612ca3578251825591602001919060010190612c88565b5b509050612cb19190612cb5565b5090565b5b80821115612cce576000816000905550600101612cb6565b5090565b6000819050919050565b612ce581612cd2565b82525050565b6000602082019050612d006000830184612cdc565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d4f81612d1a565b8114612d5a57600080fd5b50565b600081359050612d6c81612d46565b92915050565b600060208284031215612d8857612d87612d10565b5b6000612d9684828501612d5d565b91505092915050565b60008115159050919050565b612db481612d9f565b82525050565b6000602082019050612dcf6000830184612dab565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e0f578082015181840152602081019050612df4565b83811115612e1e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e4082612dd5565b612e4a8185612de0565b9350612e5a818560208601612df1565b612e6381612e24565b840191505092915050565b60006020820190508181036000830152612e888184612e35565b905092915050565b612e9981612cd2565b8114612ea457600080fd5b50565b600081359050612eb681612e90565b92915050565b600060208284031215612ed257612ed1612d10565b5b6000612ee084828501612ea7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f1482612ee9565b9050919050565b612f2481612f09565b82525050565b6000602082019050612f3f6000830184612f1b565b92915050565b612f4e81612f09565b8114612f5957600080fd5b50565b600081359050612f6b81612f45565b92915050565b60008060408385031215612f8857612f87612d10565b5b6000612f9685828601612f5c565b9250506020612fa785828601612ea7565b9150509250929050565b600080600060608486031215612fca57612fc9612d10565b5b6000612fd886828701612f5c565b9350506020612fe986828701612f5c565b9250506040612ffa86828701612ea7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261302957613028613004565b5b8235905067ffffffffffffffff81111561304657613045613009565b5b6020830191508360208202830111156130625761306161300e565b5b9250929050565b60008060006040848603121561308257613081612d10565b5b600061309086828701612f5c565b935050602084013567ffffffffffffffff8111156130b1576130b0612d15565b5b6130bd86828701613013565b92509250509250925092565b6000819050919050565b6130dc816130c9565b82525050565b60006020820190506130f760008301846130d3565b92915050565b6000806000806060858703121561311757613116612d10565b5b600061312587828801612ea7565b945050602061313687828801612f5c565b935050604085013567ffffffffffffffff81111561315757613156612d15565b5b61316387828801613013565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131a982612e24565b810181811067ffffffffffffffff821117156131c8576131c7613171565b5b80604052505050565b60006131db612d06565b90506131e782826131a0565b919050565b600067ffffffffffffffff82111561320757613206613171565b5b602082029050602081019050919050565b600061322b613226846131ec565b6131d1565b9050808382526020820190506020840283018581111561324e5761324d61300e565b5b835b8181101561327757806132638882612ea7565b845260208401935050602081019050613250565b5050509392505050565b600082601f83011261329657613295613004565b5b81356132a6848260208601613218565b91505092915050565b6000602082840312156132c5576132c4612d10565b5b600082013567ffffffffffffffff8111156132e3576132e2612d15565b5b6132ef84828501613281565b91505092915050565b60006020828403121561330e5761330d612d10565b5b600061331c84828501612f5c565b91505092915050565b600080fd5b600067ffffffffffffffff82111561334557613344613171565b5b61334e82612e24565b9050602081019050919050565b82818337600083830152505050565b600061337d6133788461332a565b6131d1565b90508281526020810184848401111561339957613398613325565b5b6133a484828561335b565b509392505050565b600082601f8301126133c1576133c0613004565b5b81356133d184826020860161336a565b91505092915050565b6000602082840312156133f0576133ef612d10565b5b600082013567ffffffffffffffff81111561340e5761340d612d15565b5b61341a848285016133ac565b91505092915050565b61342c81612d9f565b811461343757600080fd5b50565b60008135905061344981613423565b92915050565b6000806040838503121561346657613465612d10565b5b600061347485828601612f5c565b92505060206134858582860161343a565b9150509250929050565b600067ffffffffffffffff8211156134aa576134a9613171565b5b6134b382612e24565b9050602081019050919050565b60006134d36134ce8461348f565b6131d1565b9050828152602081018484840111156134ef576134ee613325565b5b6134fa84828561335b565b509392505050565b600082601f83011261351757613516613004565b5b81356135278482602086016134c0565b91505092915050565b6000806000806080858703121561354a57613549612d10565b5b600061355887828801612f5c565b945050602061356987828801612f5c565b935050604061357a87828801612ea7565b925050606085013567ffffffffffffffff81111561359b5761359a612d15565b5b6135a787828801613502565b91505092959194509250565b6000806000604084860312156135cc576135cb612d10565b5b60006135da86828701612ea7565b935050602084013567ffffffffffffffff8111156135fb576135fa612d15565b5b61360786828701613013565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61364881612d9f565b82525050565b600061365a838361363f565b60208301905092915050565b6000602082019050919050565b600061367e82613613565b613688818561361e565b93506136938361362f565b8060005b838110156136c45781516136ab888261364e565b97506136b683613666565b925050600181019050613697565b5085935050505092915050565b600060208201905081810360008301526136eb8184613673565b905092915050565b6000806040838503121561370a57613709612d10565b5b600061371885828601612f5c565b925050602061372985828601612f5c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377a57607f821691505b60208210810361378d5761378c613733565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006137ef602c83612de0565b91506137fa82613793565b604082019050919050565b6000602082019050818103600083015261381e816137e2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613881602183612de0565b915061388c82613825565b604082019050919050565b600060208201905081810360008301526138b081613874565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613913603883612de0565b915061391e826138b7565b604082019050919050565b6000602082019050818103600083015261394281613906565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006139a5603183612de0565b91506139b082613949565b604082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b60008160601b9050919050565b60006139f3826139db565b9050919050565b6000613a05826139e8565b9050919050565b613a1d613a1882612f09565b6139fa565b82525050565b6000613a2f8284613a0c565b60148201915081905092915050565b7f21636c61696d2061637469766500000000000000000000000000000000000000600082015250565b6000613a74600d83612de0565b9150613a7f82613a3e565b602082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ae0602083612de0565b9150613aeb82613aaa565b602082019050919050565b60006020820190508181036000830152613b0f81613ad3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b4c601f83612de0565b9150613b5782613b16565b602082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc82612cd2565b9150613bc783612cd2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0057613bff613b82565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c4582612cd2565b9150613c5083612cd2565b925082613c6057613c5f613c0b565b5b828204905092915050565b6000613c7682612cd2565b9150613c8183612cd2565b925082821015613c9457613c93613b82565b5b828203905092915050565b7f216c656e67746800000000000000000000000000000000000000000000000000600082015250565b6000613cd5600783612de0565b9150613ce082613c9f565b602082019050919050565b60006020820190508181036000830152613d0481613cc8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613d96602983612de0565b9150613da182613d3a565b604082019050919050565b60006020820190508181036000830152613dc581613d89565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e28602a83612de0565b9150613e3382613dcc565b604082019050919050565b60006020820190508181036000830152613e5781613e1b565b9050919050565b7f2173616c65206163746976650000000000000000000000000000000000000000600082015250565b6000613e94600c83612de0565b9150613e9f82613e5e565b602082019050919050565b60006020820190508181036000830152613ec381613e87565b9050919050565b7f696e76616c696420636f756e7400000000000000000000000000000000000000600082015250565b6000613f00600d83612de0565b9150613f0b82613eca565b602082019050919050565b60006020820190508181036000830152613f2f81613ef3565b9050919050565b6000613f4182612cd2565b9150613f4c83612cd2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8157613f80613b82565b5b828201905092915050565b7f2165786365656465640000000000000000000000000000000000000000000000600082015250565b6000613fc2600983612de0565b9150613fcd82613f8c565b602082019050919050565b60006020820190508181036000830152613ff181613fb5565b9050919050565b7f696e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061402e601383612de0565b915061403982613ff8565b602082019050919050565b6000602082019050818103600083015261405d81614021565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140c0602683612de0565b91506140cb82614064565b604082019050919050565b600060208201905081810360008301526140ef816140b3565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614152602c83612de0565b915061415d826140f6565b604082019050919050565b6000602082019050818103600083015261418181614145565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006141e4602583612de0565b91506141ef82614188565b604082019050919050565b60006020820190508181036000830152614213816141d7565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614276602483612de0565b91506142818261421a565b604082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b6000815190506142bb81612f45565b92915050565b6000602082840312156142d7576142d6612d10565b5b60006142e5848285016142ac565b91505092915050565b7f21746f6b656e206f776e65720000000000000000000000000000000000000000600082015250565b6000614324600c83612de0565b915061432f826142ee565b602082019050919050565b6000602082019050818103600083015261435381614317565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614390601d83612de0565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b600081905092915050565b50565b60006143e16000836143c6565b91506143ec826143d1565b600082019050919050565b6000614402826143d4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614468603a83612de0565b91506144738261440c565b604082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006144d4601983612de0565b91506144df8261449e565b602082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614566603283612de0565b91506145718261450a565b604082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145f8602f83612de0565b91506146038261459c565b604082019050919050565b60006020820190508181036000830152614627816145eb565b9050919050565b600081905092915050565b600061464482612dd5565b61464e818561462e565b935061465e818560208601612df1565b80840191505092915050565b60006146768285614639565b91506146828284614639565b91508190509392505050565b600061469982612cd2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146cb576146ca613b82565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006146fd826146d6565b61470781856146e1565b9350614717818560208601612df1565b61472081612e24565b840191505092915050565b60006080820190506147406000830187612f1b565b61474d6020830186612f1b565b61475a6040830185612cdc565b818103606083015261476c81846146f2565b905095945050505050565b60008151905061478681612d46565b92915050565b6000602082840312156147a2576147a1612d10565b5b60006147b084828501614777565b91505092915050565b60006147c482612cd2565b91506147cf83612cd2565b9250826147df576147de613c0b565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614820602083612de0565b915061482b826147ea565b602082019050919050565b6000602082019050818103600083015261484f81614813565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061488c601c83612de0565b915061489782614856565b602082019050919050565b600060208201905081810360008301526148bb8161487f565b905091905056fea2646970667358221220910a9d94d816280cb78d478b060254ade950a911594b2cea884c3b5fb4750a1a64736f6c634300080e003300000000000000000000000022c08c358f62f35b742d023bf2faf67e30e5376ed948aff8577567502186430afebfa8add6ea71765156563d1cc1df68adee1d44

Deployed Bytecode

0x60806040526004361061023d5760003560e01c80636246de0e1161012e578063b2c62d46116100ab578063d74d460a1161006f578063d74d460a14610825578063d9f76a1614610862578063e985e9c51461088d578063ecbfc077146108ca578063f2fde38b146108e157610244565b8063b2c62d4614610775578063b66a0e5d1461078c578063b88d4fde146107a3578063ba41b0c6146107cc578063c87b56dd146107e857610244565b80637fc27803116100f25780637fc27803146106a25780638da5cb5b146106cd5780638ef79e91146106f857806395d89b4114610721578063a22cb4651461074c57610244565b80636246de0e146105ab57806362abebce146105e85780636352211e1461061157806370a082311461064e578063715018a61461068b57610244565b80632c374e95116101bc5780633ccfd60b116101805780633ccfd60b146104ea57806342842e0e1461050157806351bdbbc71461052a578063564566a81461055557806360f61cec1461058057610244565b80632c374e95146104175780632eb4a7ab1461045457806332cb6b0c1461047f578063379607f5146104aa578063380d831b146104d357610244565b8063095ea7b311610203578063095ea7b314610344578063125cef251461036d57806318153d031461039857806318160ddd146103c357806323b872dd146103ee57610244565b80621d1805146102495780629a9b7b1461027457806301ffc9a71461029f57806306fdde03146102dc578063081812fc1461030757610244565b3661024457005b600080fd5b34801561025557600080fd5b5061025e61090a565b60405161026b9190612ceb565b60405180910390f35b34801561028057600080fd5b50610289610916565b6040516102969190612ceb565b60405180910390f35b3480156102ab57600080fd5b506102c660048036038101906102c19190612d72565b61091c565b6040516102d39190612dba565b60405180910390f35b3480156102e857600080fd5b506102f16109fe565b6040516102fe9190612e6e565b60405180910390f35b34801561031357600080fd5b5061032e60048036038101906103299190612ebc565b610a90565b60405161033b9190612f2a565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612f71565b610b15565b005b34801561037957600080fd5b50610382610c2c565b60405161038f9190612ceb565b60405180910390f35b3480156103a457600080fd5b506103ad610c32565b6040516103ba9190612ceb565b60405180910390f35b3480156103cf57600080fd5b506103d8610c37565b6040516103e59190612ceb565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612fb1565b610c3d565b005b34801561042357600080fd5b5061043e60048036038101906104399190613069565b610c9d565b60405161044b9190612dba565b60405180910390f35b34801561046057600080fd5b50610469610d3f565b60405161047691906130e2565b60405180910390f35b34801561048b57600080fd5b50610494610d63565b6040516104a19190612ceb565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190612ebc565b610d69565b005b3480156104df57600080fd5b506104e8610dc4565b005b3480156104f657600080fd5b506104ff610e5d565b005b34801561050d57600080fd5b5061052860048036038101906105239190612fb1565b610fd7565b005b34801561053657600080fd5b5061053f610ff7565b60405161054c9190612ceb565b60405180910390f35b34801561056157600080fd5b5061056a610ffd565b6040516105779190612dba565b60405180910390f35b34801561058c57600080fd5b50610595611010565b6040516105a29190612f2a565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906130fd565b611034565b6040516105df9190612ceb565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a91906132af565b61107a565b005b34801561061d57600080fd5b5061063860048036038101906106339190612ebc565b61114d565b6040516106459190612f2a565b60405180910390f35b34801561065a57600080fd5b50610675600480360381019061067091906132f8565b6111fe565b6040516106829190612ceb565b60405180910390f35b34801561069757600080fd5b506106a06112b5565b005b3480156106ae57600080fd5b506106b761133d565b6040516106c49190612dba565b60405180910390f35b3480156106d957600080fd5b506106e2611350565b6040516106ef9190612f2a565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a91906133da565b611379565b005b34801561072d57600080fd5b5061073661140f565b6040516107439190612e6e565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061344f565b6114a1565b005b34801561078157600080fd5b5061078a6114b7565b005b34801561079857600080fd5b506107a1611550565b005b3480156107af57600080fd5b506107ca60048036038101906107c59190613530565b6115e9565b005b6107e660048036038101906107e191906135b3565b61164b565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190612ebc565b611862565b60405161081c9190612e6e565b60405180910390f35b34801561083157600080fd5b5061084c600480360381019061084791906132af565b611874565b60405161085991906136d1565b60405180910390f35b34801561086e57600080fd5b5061087761192f565b6040516108849190612ceb565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af91906136f3565b61193b565b6040516108c19190612dba565b60405180910390f35b3480156108d657600080fd5b506108df6119cf565b005b3480156108ed57600080fd5b50610908600480360381019061090391906132f8565b611a68565b005b6702c68af0bb14000081565b600a5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f757506109f682611b5f565b5b9050919050565b606060018054610a0d90613762565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3990613762565b8015610a865780601f10610a5b57610100808354040283529160200191610a86565b820191906000526020600020905b815481529060010190602001808311610a6957829003601f168201915b5050505050905090565b6000610a9b82611bc9565b610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190613805565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b208261114d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790613897565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610baf611c35565b73ffffffffffffffffffffffffffffffffffffffff161480610bde5750610bdd81610bd8611c35565b61193b565b5b610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490613929565b60405180910390fd5b610c278383611c3d565b505050565b61271081565b600581565b600b5481565b610c4e610c48611c35565b82611cf6565b610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906139bb565b60405180910390fd5b610c98838383611dd4565b505050565b60008084604051602001610cb19190613a23565b604051602081830303815290604052805190602001209050610d35848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507fd948aff8577567502186430afebfa8add6ea71765156563d1cc1df68adee1d448361203a565b9150509392505050565b7fd948aff8577567502186430afebfa8add6ea71765156563d1cc1df68adee1d4481565b6136b081565b600960019054906101000a900460ff16610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90613a8a565b60405180910390fd5b610dc181612051565b50565b610dcc611c35565b73ffffffffffffffffffffffffffffffffffffffff16610dea611350565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613af6565b60405180910390fd5b6000600960006101000a81548160ff021916908315150217905550565b610e65611c35565b73ffffffffffffffffffffffffffffffffffffffff16610e83611350565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090613af6565b60405180910390fd5b600260075403610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590613b62565b60405180910390fd5b6002600781905550600047905060006103e8604183610f3d9190613bb1565b610f479190613c3a565b905060006103e8601484610f5b9190613bb1565b610f659190613c3a565b9050610f85731fae5a7603b3573138556df8e726dad94e1901e583612184565b610fa373ca49c0c49eda3a3069879d5bd1fea6349298c34882612184565b610fca610fae611350565b828486610fbb9190613c6b565b610fc59190613c6b565b612184565b5050506001600781905550565b610ff2838383604051806020016040528060008152506115e9565b505050565b6127a281565b600960009054906101000a900460ff1681565b7f00000000000000000000000022c08c358f62f35b742d023bf2faf67e30e5376e81565b600080611042858585610c9d565b1561105757670214e8348c4f00009050611063565b6702c68af0bb14000090505b858161106f9190613bb1565b915050949350505050565b600960019054906101000a900460ff166110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613a8a565b60405180910390fd5b600081511161110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490613ceb565b60405180910390fd5b60005b81518110156111495761113c82828151811061112f5761112e613d0b565b5b6020026020010151612051565b8080600101915050611110565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613dac565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590613e3e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112bd611c35565b73ffffffffffffffffffffffffffffffffffffffff166112db611350565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613af6565b60405180910390fd5b61133b6000612278565b565b600960019054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611381611c35565b73ffffffffffffffffffffffffffffffffffffffff1661139f611350565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90613af6565b60405180910390fd5b806008908051906020019061140b929190612c2f565b5050565b60606002805461141e90613762565b80601f016020809104026020016040519081016040528092919081815260200182805461144a90613762565b80156114975780601f1061146c57610100808354040283529160200191611497565b820191906000526020600020905b81548152906001019060200180831161147a57829003601f168201915b5050505050905090565b6114b36114ac611c35565b838361233c565b5050565b6114bf611c35565b73ffffffffffffffffffffffffffffffffffffffff166114dd611350565b73ffffffffffffffffffffffffffffffffffffffff1614611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613af6565b60405180910390fd5b6000600960016101000a81548160ff021916908315150217905550565b611558611c35565b73ffffffffffffffffffffffffffffffffffffffff16611576611350565b73ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613af6565b60405180910390fd5b6001600960006101000a81548160ff021916908315150217905550565b6115fa6115f4611c35565b83611cf6565b611639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611630906139bb565b60405180910390fd5b611645848484846124a8565b50505050565b600260075403611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613b62565b60405180910390fd5b6002600781905550600960009054906101000a900460ff166116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90613eaa565b60405180910390fd5b6000831180156116f8575060058311155b611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90613f16565b60405180910390fd5b6136b083600a546117489190613f36565b1115611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613fd8565b60405180910390fd5b600061179784338585611034565b905060008111156117e657803410156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90614044565b60405180910390fd5b5b80341115611804576118033382346117fe9190613c6b565b612184565b5b60005b84811015611833576118263382600a546118219190613f36565b612504565b8080600101915050611807565b5083600a6000828254019250508190555083600b60008282540192505081905550506001600781905550505050565b606061186d82612522565b9050919050565b60606000825167ffffffffffffffff81111561189357611892613171565b5b6040519080825280602002602001820160405280156118c15781602001602082028036833780820191505090505b50905060005b8351811015611925576118f38482815181106118e6576118e5613d0b565b5b6020026020010151611bc9565b82828151811061190657611905613d0b565b5b60200260200101901515908115158152505080806001019150506118c7565b5080915050919050565b670214e8348c4f000081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119d7611c35565b73ffffffffffffffffffffffffffffffffffffffff166119f5611350565b73ffffffffffffffffffffffffffffffffffffffff1614611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290613af6565b60405180910390fd5b6001600960016101000a81548160ff021916908315150217905550565b611a70611c35565b73ffffffffffffffffffffffffffffffffffffffff16611a8e611350565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613af6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a906140d6565b60405180910390fd5b611b5c81612278565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cb08361114d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d0182611bc9565b611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790614168565b60405180910390fd5b6000611d4b8361114d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d8d5750611d8c818561193b565b5b80611dcb57508373ffffffffffffffffffffffffffffffffffffffff16611db384610a90565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611df48261114d565b73ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e41906141fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb09061428c565b60405180910390fd5b611ec48383836125c9565b611ecf600082611c3d565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f1f9190613c6b565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f769190613f36565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120358383836125ce565b505050565b60008261204785846125d3565b1490509392505050565b3373ffffffffffffffffffffffffffffffffffffffff167f00000000000000000000000022c08c358f62f35b742d023bf2faf67e30e5376e73ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016120c19190612ceb565b602060405180830381865afa1580156120de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061210291906142c1565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f9061433a565b60405180910390fd5b61216f336127108361216a9190613c6b565b612504565b600b6000815480929190600101919050555050565b804710156121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906143a6565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121ed906143f7565b60006040518083038185875af1925050503d806000811461222a576040519150601f19603f3d011682016040523d82523d6000602084013e61222f565b606091505b5050905080612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a9061447e565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906144ea565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161249b9190612dba565b60405180910390a3505050565b6124b3848484611dd4565b6124bf84848484612648565b6124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f59061457c565b60405180910390fd5b50505050565b61251e8282604051806020016040528060008152506127cf565b5050565b606061252d82611bc9565b61256c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125639061460e565b60405180910390fd5b600061257661282a565b9050600081511161259657604051806020016040528060008152506125c1565b806125a0846128bc565b6040516020016125b192919061466a565b6040516020818303038152906040525b915050919050565b505050565b505050565b60008082905060005b845181101561263d5760008582815181106125fa576125f9613d0b565b5b6020026020010151905080831161261c576126158382612a1c565b9250612629565b6126268184612a1c565b92505b5080806126359061468e565b9150506125dc565b508091505092915050565b60006126698473ffffffffffffffffffffffffffffffffffffffff16612a33565b156127c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612692611c35565b8786866040518563ffffffff1660e01b81526004016126b4949392919061472b565b6020604051808303816000875af19250505080156126f057506040513d601f19601f820116820180604052508101906126ed919061478c565b60015b612772573d8060008114612720576040519150601f19603f3d011682016040523d82523d6000602084013e612725565b606091505b50600081510361276a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127619061457c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c7565b600190505b949350505050565b6127d98383612a56565b6127e66000848484612648565b612825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281c9061457c565b60405180910390fd5b505050565b60606008805461283990613762565b80601f016020809104026020016040519081016040528092919081815260200182805461286590613762565b80156128b25780601f10612887576101008083540402835291602001916128b2565b820191906000526020600020905b81548152906001019060200180831161289557829003601f168201915b5050505050905090565b606060008203612903576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a17565b600082905060005b6000821461293557808061291e9061468e565b915050600a8261292e9190613c3a565b915061290b565b60008167ffffffffffffffff81111561295157612950613171565b5b6040519080825280601f01601f1916602001820160405280156129835781602001600182028036833780820191505090505b5090505b60008514612a105760018261299c9190613c6b565b9150600a856129ab91906147b9565b60306129b79190613f36565b60f81b8183815181106129cd576129cc613d0b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a099190613c3a565b9450612987565b8093505050505b919050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614836565b60405180910390fd5b612ace81611bc9565b15612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b05906148a2565b60405180910390fd5b612b1a600083836125c9565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6a9190613f36565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c2b600083836125ce565b5050565b828054612c3b90613762565b90600052602060002090601f016020900481019282612c5d5760008555612ca4565b82601f10612c7657805160ff1916838001178555612ca4565b82800160010185558215612ca4579182015b82811115612ca3578251825591602001919060010190612c88565b5b509050612cb19190612cb5565b5090565b5b80821115612cce576000816000905550600101612cb6565b5090565b6000819050919050565b612ce581612cd2565b82525050565b6000602082019050612d006000830184612cdc565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d4f81612d1a565b8114612d5a57600080fd5b50565b600081359050612d6c81612d46565b92915050565b600060208284031215612d8857612d87612d10565b5b6000612d9684828501612d5d565b91505092915050565b60008115159050919050565b612db481612d9f565b82525050565b6000602082019050612dcf6000830184612dab565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e0f578082015181840152602081019050612df4565b83811115612e1e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e4082612dd5565b612e4a8185612de0565b9350612e5a818560208601612df1565b612e6381612e24565b840191505092915050565b60006020820190508181036000830152612e888184612e35565b905092915050565b612e9981612cd2565b8114612ea457600080fd5b50565b600081359050612eb681612e90565b92915050565b600060208284031215612ed257612ed1612d10565b5b6000612ee084828501612ea7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f1482612ee9565b9050919050565b612f2481612f09565b82525050565b6000602082019050612f3f6000830184612f1b565b92915050565b612f4e81612f09565b8114612f5957600080fd5b50565b600081359050612f6b81612f45565b92915050565b60008060408385031215612f8857612f87612d10565b5b6000612f9685828601612f5c565b9250506020612fa785828601612ea7565b9150509250929050565b600080600060608486031215612fca57612fc9612d10565b5b6000612fd886828701612f5c565b9350506020612fe986828701612f5c565b9250506040612ffa86828701612ea7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261302957613028613004565b5b8235905067ffffffffffffffff81111561304657613045613009565b5b6020830191508360208202830111156130625761306161300e565b5b9250929050565b60008060006040848603121561308257613081612d10565b5b600061309086828701612f5c565b935050602084013567ffffffffffffffff8111156130b1576130b0612d15565b5b6130bd86828701613013565b92509250509250925092565b6000819050919050565b6130dc816130c9565b82525050565b60006020820190506130f760008301846130d3565b92915050565b6000806000806060858703121561311757613116612d10565b5b600061312587828801612ea7565b945050602061313687828801612f5c565b935050604085013567ffffffffffffffff81111561315757613156612d15565b5b61316387828801613013565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131a982612e24565b810181811067ffffffffffffffff821117156131c8576131c7613171565b5b80604052505050565b60006131db612d06565b90506131e782826131a0565b919050565b600067ffffffffffffffff82111561320757613206613171565b5b602082029050602081019050919050565b600061322b613226846131ec565b6131d1565b9050808382526020820190506020840283018581111561324e5761324d61300e565b5b835b8181101561327757806132638882612ea7565b845260208401935050602081019050613250565b5050509392505050565b600082601f83011261329657613295613004565b5b81356132a6848260208601613218565b91505092915050565b6000602082840312156132c5576132c4612d10565b5b600082013567ffffffffffffffff8111156132e3576132e2612d15565b5b6132ef84828501613281565b91505092915050565b60006020828403121561330e5761330d612d10565b5b600061331c84828501612f5c565b91505092915050565b600080fd5b600067ffffffffffffffff82111561334557613344613171565b5b61334e82612e24565b9050602081019050919050565b82818337600083830152505050565b600061337d6133788461332a565b6131d1565b90508281526020810184848401111561339957613398613325565b5b6133a484828561335b565b509392505050565b600082601f8301126133c1576133c0613004565b5b81356133d184826020860161336a565b91505092915050565b6000602082840312156133f0576133ef612d10565b5b600082013567ffffffffffffffff81111561340e5761340d612d15565b5b61341a848285016133ac565b91505092915050565b61342c81612d9f565b811461343757600080fd5b50565b60008135905061344981613423565b92915050565b6000806040838503121561346657613465612d10565b5b600061347485828601612f5c565b92505060206134858582860161343a565b9150509250929050565b600067ffffffffffffffff8211156134aa576134a9613171565b5b6134b382612e24565b9050602081019050919050565b60006134d36134ce8461348f565b6131d1565b9050828152602081018484840111156134ef576134ee613325565b5b6134fa84828561335b565b509392505050565b600082601f83011261351757613516613004565b5b81356135278482602086016134c0565b91505092915050565b6000806000806080858703121561354a57613549612d10565b5b600061355887828801612f5c565b945050602061356987828801612f5c565b935050604061357a87828801612ea7565b925050606085013567ffffffffffffffff81111561359b5761359a612d15565b5b6135a787828801613502565b91505092959194509250565b6000806000604084860312156135cc576135cb612d10565b5b60006135da86828701612ea7565b935050602084013567ffffffffffffffff8111156135fb576135fa612d15565b5b61360786828701613013565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61364881612d9f565b82525050565b600061365a838361363f565b60208301905092915050565b6000602082019050919050565b600061367e82613613565b613688818561361e565b93506136938361362f565b8060005b838110156136c45781516136ab888261364e565b97506136b683613666565b925050600181019050613697565b5085935050505092915050565b600060208201905081810360008301526136eb8184613673565b905092915050565b6000806040838503121561370a57613709612d10565b5b600061371885828601612f5c565b925050602061372985828601612f5c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061377a57607f821691505b60208210810361378d5761378c613733565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006137ef602c83612de0565b91506137fa82613793565b604082019050919050565b6000602082019050818103600083015261381e816137e2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613881602183612de0565b915061388c82613825565b604082019050919050565b600060208201905081810360008301526138b081613874565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613913603883612de0565b915061391e826138b7565b604082019050919050565b6000602082019050818103600083015261394281613906565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006139a5603183612de0565b91506139b082613949565b604082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b60008160601b9050919050565b60006139f3826139db565b9050919050565b6000613a05826139e8565b9050919050565b613a1d613a1882612f09565b6139fa565b82525050565b6000613a2f8284613a0c565b60148201915081905092915050565b7f21636c61696d2061637469766500000000000000000000000000000000000000600082015250565b6000613a74600d83612de0565b9150613a7f82613a3e565b602082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ae0602083612de0565b9150613aeb82613aaa565b602082019050919050565b60006020820190508181036000830152613b0f81613ad3565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b4c601f83612de0565b9150613b5782613b16565b602082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc82612cd2565b9150613bc783612cd2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0057613bff613b82565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c4582612cd2565b9150613c5083612cd2565b925082613c6057613c5f613c0b565b5b828204905092915050565b6000613c7682612cd2565b9150613c8183612cd2565b925082821015613c9457613c93613b82565b5b828203905092915050565b7f216c656e67746800000000000000000000000000000000000000000000000000600082015250565b6000613cd5600783612de0565b9150613ce082613c9f565b602082019050919050565b60006020820190508181036000830152613d0481613cc8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613d96602983612de0565b9150613da182613d3a565b604082019050919050565b60006020820190508181036000830152613dc581613d89565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e28602a83612de0565b9150613e3382613dcc565b604082019050919050565b60006020820190508181036000830152613e5781613e1b565b9050919050565b7f2173616c65206163746976650000000000000000000000000000000000000000600082015250565b6000613e94600c83612de0565b9150613e9f82613e5e565b602082019050919050565b60006020820190508181036000830152613ec381613e87565b9050919050565b7f696e76616c696420636f756e7400000000000000000000000000000000000000600082015250565b6000613f00600d83612de0565b9150613f0b82613eca565b602082019050919050565b60006020820190508181036000830152613f2f81613ef3565b9050919050565b6000613f4182612cd2565b9150613f4c83612cd2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8157613f80613b82565b5b828201905092915050565b7f2165786365656465640000000000000000000000000000000000000000000000600082015250565b6000613fc2600983612de0565b9150613fcd82613f8c565b602082019050919050565b60006020820190508181036000830152613ff181613fb5565b9050919050565b7f696e73756666696369656e742066756e64732100000000000000000000000000600082015250565b600061402e601383612de0565b915061403982613ff8565b602082019050919050565b6000602082019050818103600083015261405d81614021565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140c0602683612de0565b91506140cb82614064565b604082019050919050565b600060208201905081810360008301526140ef816140b3565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614152602c83612de0565b915061415d826140f6565b604082019050919050565b6000602082019050818103600083015261418181614145565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006141e4602583612de0565b91506141ef82614188565b604082019050919050565b60006020820190508181036000830152614213816141d7565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614276602483612de0565b91506142818261421a565b604082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b6000815190506142bb81612f45565b92915050565b6000602082840312156142d7576142d6612d10565b5b60006142e5848285016142ac565b91505092915050565b7f21746f6b656e206f776e65720000000000000000000000000000000000000000600082015250565b6000614324600c83612de0565b915061432f826142ee565b602082019050919050565b6000602082019050818103600083015261435381614317565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614390601d83612de0565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b600081905092915050565b50565b60006143e16000836143c6565b91506143ec826143d1565b600082019050919050565b6000614402826143d4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614468603a83612de0565b91506144738261440c565b604082019050919050565b600060208201905081810360008301526144978161445b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006144d4601983612de0565b91506144df8261449e565b602082019050919050565b60006020820190508181036000830152614503816144c7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614566603283612de0565b91506145718261450a565b604082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006145f8602f83612de0565b91506146038261459c565b604082019050919050565b60006020820190508181036000830152614627816145eb565b9050919050565b600081905092915050565b600061464482612dd5565b61464e818561462e565b935061465e818560208601612df1565b80840191505092915050565b60006146768285614639565b91506146828284614639565b91508190509392505050565b600061469982612cd2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146cb576146ca613b82565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b60006146fd826146d6565b61470781856146e1565b9350614717818560208601612df1565b61472081612e24565b840191505092915050565b60006080820190506147406000830187612f1b565b61474d6020830186612f1b565b61475a6040830185612cdc565b818103606083015261476c81846146f2565b905095945050505050565b60008151905061478681612d46565b92915050565b6000602082840312156147a2576147a1612d10565b5b60006147b084828501614777565b91505092915050565b60006147c482612cd2565b91506147cf83612cd2565b9250826147df576147de613c0b565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614820602083612de0565b915061482b826147ea565b602082019050919050565b6000602082019050818103600083015261484f81614813565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061488c601c83612de0565b915061489782614856565b602082019050919050565b600060208201905081810360008301526148bb8161487f565b905091905056fea2646970667358221220910a9d94d816280cb78d478b060254ade950a911594b2cea884c3b5fb4750a1a64736f6c634300080e0033

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

00000000000000000000000022c08c358f62f35b742d023bf2faf67e30e5376ed948aff8577567502186430afebfa8add6ea71765156563d1cc1df68adee1d44

-----Decoded View---------------
Arg [0] : _ape (address): 0x22C08C358f62f35B742D023Bf2fAF67e30e5376E
Arg [1] : _merkleRoot (bytes32): 0xd948aff8577567502186430afebfa8add6ea71765156563d1cc1df68adee1d44

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000022c08c358f62f35b742d023bf2faf67e30e5376e
Arg [1] : d948aff8577567502186430afebfa8add6ea71765156563d1cc1df68adee1d44


Deployed Bytecode Sourcemap

44501:5492:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44942:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45001:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24887:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26056:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27750:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27273:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44780:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44833:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45037:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28669:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47107:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45114:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44682:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47418:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49169:77;;;;;;;;;;;;;:::i;:::-;;49538:415;;;;;;;;;;;;;:::i;:::-;;29116:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44731:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44601:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45072:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46719:380;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47551:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25663:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25306:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2608:103;;;;;;;;;;;;;:::i;:::-;;44640:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1957:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49429:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26225:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28130:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49342:79;;;;;;;;;;;;;:::i;:::-;;49083:78;;;;;;;;;;;;;:::i;:::-;;29372:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45559:1152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48696:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48192:382;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44881:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28388:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49254:80;;;;;;;;;;;;;:::i;:::-;;2866:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44942:50;44983:9;44942:50;:::o;45001:29::-;;;;:::o;24887:355::-;25034:4;25091:25;25076:40;;;:11;:40;;;;:105;;;;25148:33;25133:48;;;:11;:48;;;;25076:105;:158;;;;25198:36;25222:11;25198:23;:36::i;:::-;25076:158;25056:178;;24887:355;;;:::o;26056:100::-;26110:13;26143:5;26136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26056:100;:::o;27750:308::-;27871:7;27918:16;27926:7;27918;:16::i;:::-;27896:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;28026:15;:24;28042:7;28026:24;;;;;;;;;;;;;;;;;;;;;28019:31;;27750:308;;;:::o;27273:411::-;27354:13;27370:23;27385:7;27370:14;:23::i;:::-;27354:39;;27418:5;27412:11;;:2;:11;;;27404:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27512:5;27496:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27521:37;27538:5;27545:12;:10;:12::i;:::-;27521:16;:37::i;:::-;27496:62;27474:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27655:21;27664:2;27668:7;27655:8;:21::i;:::-;27343:341;27273:411;;:::o;44780:44::-;44819:5;44780:44;:::o;44833:41::-;44873:1;44833:41;:::o;45037:26::-;;;;:::o;28669:376::-;28878:41;28897:12;:10;:12::i;:::-;28911:7;28878:18;:41::i;:::-;28856:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;29009:28;29019:4;29025:2;29029:7;29009:9;:28::i;:::-;28669:376;;;:::o;47107:303::-;47225:4;47284:12;47326:7;47309:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;47299:36;;;;;;47284:51;;47353:49;47372:11;;47353:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47385:10;47397:4;47353:18;:49::i;:::-;47346:56;;;47107:303;;;;;:::o;45114:35::-;;;:::o;44682:42::-;44719:5;44682:42;:::o;47418:125::-;47478:13;;;;;;;;;;;47470:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;47520:15;47527:7;47520:6;:15::i;:::-;47418:125;:::o;49169:77::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49233:5:::1;49218:12;;:20;;;;;;;;;;;;;;;;;;49169:77::o:0;49538:415::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40776:1:::1;41374:7;;:19:::0;41366:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40776:1;41507:7;:18;;;;49601:15:::2;49619:21;49601:39;;49651:18;49689:4;49683:2;49673:7;:12;;;;:::i;:::-;49672:21;;;;:::i;:::-;49651:42;;49704:18;49742:4;49736:2;49726:7;:12;;;;:::i;:::-;49725:21;;;;:::i;:::-;49704:42;;49757:48;45203:42;49794:10;49757:17;:48::i;:::-;49816;45297:42;49853:10;49816:17;:48::i;:::-;49875:70;49901:7;:5;:7::i;:::-;49934:10;49921;49911:7;:20;;;;:::i;:::-;:33;;;;:::i;:::-;49875:17;:70::i;:::-;49590:363;;;40732:1:::1;41686:7;:22;;;;49538:415::o:0;29116:185::-;29254:39;29271:4;29277:2;29281:7;29254:39;;;;;;;;;;;;:16;:39::i;:::-;29116:185;;;:::o;44731:42::-;44768:5;44731:42;:::o;44601:32::-;;;;;;;;;;;;;:::o;45072:35::-;;;:::o;46719:380::-;46864:7;46884:13;46912:33;46924:7;46933:11;;46912;:33::i;:::-;46908:146;;;44925:10;46962:25;;46908:146;;;44983:9;47020:22;;46908:146;47081:10;47073:5;:18;;;;:::i;:::-;47066:25;;;46719:380;;;;;;:::o;47551:329::-;47626:13;;;;;;;;;;;47618:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;47694:1;47676:8;:15;:19;47668:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;47725:9;47720:153;47744:8;:15;47740:1;:19;47720:153;;;47778:19;47785:8;47794:1;47785:11;;;;;;;;:::i;:::-;;;;;;;;47778:6;:19::i;:::-;47843:3;;;;;;;47720:153;;;;47551:329;:::o;25663:326::-;25780:7;25805:13;25821:7;:16;25829:7;25821:16;;;;;;;;;;;;;;;;;;;;;25805:32;;25887:1;25870:19;;:5;:19;;;25848:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;25976:5;25969:12;;;25663:326;;;:::o;25306:295::-;25423:7;25487:1;25470:19;;:5;:19;;;25448:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25577:9;:16;25587:5;25577:16;;;;;;;;;;;;;;;;25570:23;;25306:295;;;:::o;2608:103::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2673:30:::1;2700:1;2673:18;:30::i;:::-;2608:103::o:0;44640:33::-;;;;;;;;;;;;;:::o;1957:87::-;2003:7;2030:6;;;;;;;;;;;2023:13;;1957:87;:::o;49429:101::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49519:3:::1;49503:13;:19;;;;;;;;;;;;:::i;:::-;;49429:101:::0;:::o;26225:104::-;26281:13;26314:7;26307:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26225:104;:::o;28130:187::-;28257:52;28276:12;:10;:12::i;:::-;28290:8;28300;28257:18;:52::i;:::-;28130:187;;:::o;49342:79::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49408:5:::1;49392:13;;:21;;;;;;;;;;;;;;;;;;49342:79::o:0;49083:78::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49149:4:::1;49134:12;;:19;;;;;;;;;;;;;;;;;;49083:78::o:0;29372:365::-;29561:41;29580:12;:10;:12::i;:::-;29594:7;29561:18;:41::i;:::-;29539:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;29690:39;29704:4;29710:2;29714:7;29723:5;29690:13;:39::i;:::-;29372:365;;;;:::o;45559:1152::-;40776:1;41374:7;;:19;41366:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40776:1;41507:7;:18;;;;45710:12:::1;;;;;;;;;;;45702:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;45789:1;45772:14;:18;:53;;;;;44873:1;45794:14;:31;;45772:53;45750:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;44719:5;45902:14;45885;;:31;;;;:::i;:::-;:45;;45877:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45957:22;45982:102;46008:14;46037:10;46062:11;;45982;:102::i;:::-;45957:127;;46116:1;46099:14;:18;46095:110;;;46155:14;46142:9;:27;;46134:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46095:110;46262:14;46250:9;:26;46246:125;;;46293:66;46319:10;46344:14;46332:9;:26;;;;:::i;:::-;46293:17;:66::i;:::-;46246:125;46410:9;46405:174;46429:14;46425:1;:18;46405:174;;;46462:41;46472:10;46501:1;46484:14;;:18;;;;:::i;:::-;46462:9;:41::i;:::-;46549:3;;;;;;;46405:174;;;;46634:14;46616;;:32;;;;;;;;;;;46678:14;46663:11;;:29;;;;;;;;;;;45691:1020;40732:1:::0;41686:7;:22;;;;45559:1152;;;:::o;48696:178::-;48805:13;48843:23;48858:7;48843:14;:23::i;:::-;48836:30;;48696:178;;;:::o;48192:382::-;48285:13;48316:20;48350:8;:15;48339:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48316:50;;48382:9;48377:166;48401:8;:15;48397:1;:19;48377:166;;;48447:20;48455:8;48464:1;48455:11;;;;;;;;:::i;:::-;;;;;;;;48447:7;:20::i;:::-;48435:6;48442:1;48435:9;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;48513:3;;;;;;;48377:166;;;;48560:6;48553:13;;;48192:382;;;:::o;44881:54::-;44925:10;44881:54;:::o;28388:214::-;28530:4;28559:18;:25;28578:5;28559:25;;;;;;;;;;;;;;;:35;28585:8;28559:35;;;;;;;;;;;;;;;;;;;;;;;;;28552:42;;28388:214;;;;:::o;49254:80::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49322:4:::1;49306:13;;:20;;;;;;;;;;;;;;;;;;49254:80::o:0;2866:238::-;2188:12;:10;:12::i;:::-;2177:23;;:7;:5;:7::i;:::-;:23;;;2169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2989:1:::1;2969:22;;:8;:22;;::::0;2947:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3068:28;3087:8;3068:18;:28::i;:::-;2866:238:::0;:::o;23278:207::-;23408:4;23452:25;23437:40;;;:11;:40;;;;23430:47;;23278:207;;;:::o;31284:127::-;31349:4;31401:1;31373:30;;:7;:16;31381:7;31373:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31366:37;;31284:127;;;:::o;656:98::-;709:7;736:10;729:17;;656:98;:::o;35571:174::-;35673:2;35646:15;:24;35662:7;35646:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35729:7;35725:2;35691:46;;35700:23;35715:7;35700:14;:23::i;:::-;35691:46;;;;;;;;;;;;35571:174;;:::o;31578:452::-;31707:4;31751:16;31759:7;31751;:16::i;:::-;31729:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31850:13;31866:23;31881:7;31866:14;:23::i;:::-;31850:39;;31919:5;31908:16;;:7;:16;;;:65;;;;31941:32;31958:5;31965:7;31941:16;:32::i;:::-;31908:65;:113;;;;32014:7;31990:31;;:20;32002:7;31990:11;:20::i;:::-;:31;;;31908:113;31900:122;;;31578:452;;;;:::o;34791:662::-;34964:4;34937:31;;:23;34952:7;34937:14;:23::i;:::-;:31;;;34915:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;35066:1;35052:16;;:2;:16;;;35044:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35122:39;35143:4;35149:2;35153:7;35122:20;:39::i;:::-;35226:29;35243:1;35247:7;35226:8;:29::i;:::-;35287:1;35268:9;:15;35278:4;35268:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35316:1;35299:9;:13;35309:2;35299:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35347:2;35328:7;:16;35336:7;35328:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35386:7;35382:2;35367:27;;35376:4;35367:27;;;;;;;;;;;;35407:38;35427:4;35433:2;35437:7;35407:19;:38::i;:::-;34791:662;;;:::o;42945:190::-;43070:4;43123;43094:25;43107:5;43114:4;43094:12;:25::i;:::-;:33;43087:40;;42945:190;;;;;:::o;47888:296::-;48005:10;47964:51;;47972:10;47964:27;;;47992:8;47964:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;;;47942:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;48068:46;48078:10;44819:5;48090:8;:23;;;;:::i;:::-;48068:9;:46::i;:::-;48152:11;;:13;;;;;;;;;;;;;47888:296;:::o;13779:391::-;13908:6;13883:21;:31;;13861:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;13985:12;14003:9;:14;;14025:6;14003:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13984:52;;;14069:7;14047:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;13850:320;13779:391;;:::o;3264:191::-;3338:16;3357:6;;;;;;;;;;;3338:25;;3383:8;3374:6;;:17;;;;;;;;;;;;;;;;;;3438:8;3407:40;;3428:8;3407:40;;;;;;;;;;;;3327:128;3264:191;:::o;35887:315::-;36042:8;36033:17;;:5;:17;;;36025:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36129:8;36091:18;:25;36110:5;36091:25;;;;;;;;;;;;;;;:35;36117:8;36091:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36175:8;36153:41;;36168:5;36153:41;;;36185:8;36153:41;;;;;;:::i;:::-;;;;;;;;35887:315;;;:::o;30619:352::-;30776:28;30786:4;30792:2;30796:7;30776:9;:28::i;:::-;30837:48;30860:4;30866:2;30870:7;30879:5;30837:22;:48::i;:::-;30815:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;30619:352;;;;:::o;32372:110::-;32448:26;32458:2;32462:7;32448:26;;;;;;;;;;;;:9;:26::i;:::-;32372:110;;:::o;26400:468::-;26518:13;26571:16;26579:7;26571;:16::i;:::-;26549:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;26675:21;26699:10;:8;:10::i;:::-;26675:34;;26764:1;26746:7;26740:21;:25;:120;;;;;;;;;;;;;;;;;26809:7;26818:18;:7;:16;:18::i;:::-;26792:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26740:120;26720:140;;;26400:468;;;:::o;38319:126::-;;;;:::o;38830:125::-;;;;:::o;43496:707::-;43606:7;43631:20;43654:4;43631:27;;43674:9;43669:497;43693:5;:12;43689:1;:16;43669:497;;;43727:20;43750:5;43756:1;43750:8;;;;;;;;:::i;:::-;;;;;;;;43727:31;;43793:12;43777;:28;43773:382;;43920:42;43935:12;43949;43920:14;:42::i;:::-;43905:57;;43773:382;;;44097:42;44112:12;44126;44097:14;:42::i;:::-;44082:57;;43773:382;43712:454;43707:3;;;;;:::i;:::-;;;;43669:497;;;;44183:12;44176:19;;;43496:707;;;;:::o;36767:980::-;36922:4;36943:15;:2;:13;;;:15::i;:::-;36939:801;;;37012:2;36996:36;;;37055:12;:10;:12::i;:::-;37090:4;37117:7;37147:5;36996:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36975:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37371:1;37354:6;:13;:18;37350:320;;37397:108;;;;;;;;;;:::i;:::-;;;;;;;;37350:320;37620:6;37614:13;37605:6;37601:2;37597:15;37590:38;36975:710;37245:41;;;37235:51;;;:6;:51;;;;37228:58;;;;;36939:801;37724:4;37717:11;;36767:980;;;;;;;:::o;32709:321::-;32839:18;32845:2;32849:7;32839:5;:18::i;:::-;32890:54;32921:1;32925:2;32929:7;32938:5;32890:22;:54::i;:::-;32868:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32709:321;;;:::o;48582:106::-;48634:13;48667;48660:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48582:106;:::o;20622:723::-;20678:13;20908:1;20899:5;:10;20895:53;;20926:10;;;;;;;;;;;;;;;;;;;;;20895:53;20958:12;20973:5;20958:20;;20989:14;21014:78;21029:1;21021:4;:9;21014:78;;21047:8;;;;;:::i;:::-;;;;21078:2;21070:10;;;;;:::i;:::-;;;21014:78;;;21102:19;21134:6;21124:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21102:39;;21152:154;21168:1;21159:5;:10;21152:154;;21196:1;21186:11;;;;;:::i;:::-;;;21263:2;21255:5;:10;;;;:::i;:::-;21242:2;:24;;;;:::i;:::-;21229:39;;21212:6;21219;21212:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21292:2;21283:11;;;;;:::i;:::-;;;21152:154;;;21330:6;21316:21;;;;;20622:723;;;;:::o;44211:256::-;44306:13;44374:1;44368:4;44361:15;44403:1;44397:4;44390:15;44444:4;44438;44428:21;44419:30;;44211:256;;;;:::o;12518:326::-;12578:4;12835:1;12813:7;:19;;;:23;12806:30;;12518:326;;;:::o;33366:439::-;33460:1;33446:16;;:2;:16;;;33438:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33519:16;33527:7;33519;:16::i;:::-;33518:17;33510:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33581:45;33610:1;33614:2;33618:7;33581:20;:45::i;:::-;33656:1;33639:9;:13;33649:2;33639:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33687:2;33668:7;:16;33676:7;33668:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33732:7;33728:2;33707:33;;33724:1;33707:33;;;;;;;;;;;;33753:44;33781:1;33785:2;33789:7;33753:19;:44::i;:::-;33366:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6301:568;6374:8;6384:6;6434:3;6427:4;6419:6;6415:17;6411:27;6401:122;;6442:79;;:::i;:::-;6401:122;6555:6;6542:20;6532:30;;6585:18;6577:6;6574:30;6571:117;;;6607:79;;:::i;:::-;6571:117;6721:4;6713:6;6709:17;6697:29;;6775:3;6767:4;6759:6;6755:17;6745:8;6741:32;6738:41;6735:128;;;6782:79;;:::i;:::-;6735:128;6301:568;;;;;:::o;6875:704::-;6970:6;6978;6986;7035:2;7023:9;7014:7;7010:23;7006:32;7003:119;;;7041:79;;:::i;:::-;7003:119;7161:1;7186:53;7231:7;7222:6;7211:9;7207:22;7186:53;:::i;:::-;7176:63;;7132:117;7316:2;7305:9;7301:18;7288:32;7347:18;7339:6;7336:30;7333:117;;;7369:79;;:::i;:::-;7333:117;7482:80;7554:7;7545:6;7534:9;7530:22;7482:80;:::i;:::-;7464:98;;;;7259:313;6875:704;;;;;:::o;7585:77::-;7622:7;7651:5;7640:16;;7585:77;;;:::o;7668:118::-;7755:24;7773:5;7755:24;:::i;:::-;7750:3;7743:37;7668:118;;:::o;7792:222::-;7885:4;7923:2;7912:9;7908:18;7900:26;;7936:71;8004:1;7993:9;7989:17;7980:6;7936:71;:::i;:::-;7792:222;;;;:::o;8020:849::-;8124:6;8132;8140;8148;8197:2;8185:9;8176:7;8172:23;8168:32;8165:119;;;8203:79;;:::i;:::-;8165:119;8323:1;8348:53;8393:7;8384:6;8373:9;8369:22;8348:53;:::i;:::-;8338:63;;8294:117;8450:2;8476:53;8521:7;8512:6;8501:9;8497:22;8476:53;:::i;:::-;8466:63;;8421:118;8606:2;8595:9;8591:18;8578:32;8637:18;8629:6;8626:30;8623:117;;;8659:79;;:::i;:::-;8623:117;8772:80;8844:7;8835:6;8824:9;8820:22;8772:80;:::i;:::-;8754:98;;;;8549:313;8020:849;;;;;;;:::o;8875:180::-;8923:77;8920:1;8913:88;9020:4;9017:1;9010:15;9044:4;9041:1;9034:15;9061:281;9144:27;9166:4;9144:27;:::i;:::-;9136:6;9132:40;9274:6;9262:10;9259:22;9238:18;9226:10;9223:34;9220:62;9217:88;;;9285:18;;:::i;:::-;9217:88;9325:10;9321:2;9314:22;9104:238;9061:281;;:::o;9348:129::-;9382:6;9409:20;;:::i;:::-;9399:30;;9438:33;9466:4;9458:6;9438:33;:::i;:::-;9348:129;;;:::o;9483:311::-;9560:4;9650:18;9642:6;9639:30;9636:56;;;9672:18;;:::i;:::-;9636:56;9722:4;9714:6;9710:17;9702:25;;9782:4;9776;9772:15;9764:23;;9483:311;;;:::o;9817:710::-;9913:5;9938:81;9954:64;10011:6;9954:64;:::i;:::-;9938:81;:::i;:::-;9929:90;;10039:5;10068:6;10061:5;10054:21;10102:4;10095:5;10091:16;10084:23;;10155:4;10147:6;10143:17;10135:6;10131:30;10184:3;10176:6;10173:15;10170:122;;;10203:79;;:::i;:::-;10170:122;10318:6;10301:220;10335:6;10330:3;10327:15;10301:220;;;10410:3;10439:37;10472:3;10460:10;10439:37;:::i;:::-;10434:3;10427:50;10506:4;10501:3;10497:14;10490:21;;10377:144;10361:4;10356:3;10352:14;10345:21;;10301:220;;;10305:21;9919:608;;9817:710;;;;;:::o;10550:370::-;10621:5;10670:3;10663:4;10655:6;10651:17;10647:27;10637:122;;10678:79;;:::i;:::-;10637:122;10795:6;10782:20;10820:94;10910:3;10902:6;10895:4;10887:6;10883:17;10820:94;:::i;:::-;10811:103;;10627:293;10550:370;;;;:::o;10926:539::-;11010:6;11059:2;11047:9;11038:7;11034:23;11030:32;11027:119;;;11065:79;;:::i;:::-;11027:119;11213:1;11202:9;11198:17;11185:31;11243:18;11235:6;11232:30;11229:117;;;11265:79;;:::i;:::-;11229:117;11370:78;11440:7;11431:6;11420:9;11416:22;11370:78;:::i;:::-;11360:88;;11156:302;10926:539;;;;:::o;11471:329::-;11530:6;11579:2;11567:9;11558:7;11554:23;11550:32;11547:119;;;11585:79;;:::i;:::-;11547:119;11705:1;11730:53;11775:7;11766:6;11755:9;11751:22;11730:53;:::i;:::-;11720:63;;11676:117;11471:329;;;;:::o;11806:117::-;11915:1;11912;11905:12;11929:308;11991:4;12081:18;12073:6;12070:30;12067:56;;;12103:18;;:::i;:::-;12067:56;12141:29;12163:6;12141:29;:::i;:::-;12133:37;;12225:4;12219;12215:15;12207:23;;11929:308;;;:::o;12243:154::-;12327:6;12322:3;12317;12304:30;12389:1;12380:6;12375:3;12371:16;12364:27;12243:154;;;:::o;12403:412::-;12481:5;12506:66;12522:49;12564:6;12522:49;:::i;:::-;12506:66;:::i;:::-;12497:75;;12595:6;12588:5;12581:21;12633:4;12626:5;12622:16;12671:3;12662:6;12657:3;12653:16;12650:25;12647:112;;;12678:79;;:::i;:::-;12647:112;12768:41;12802:6;12797:3;12792;12768:41;:::i;:::-;12487:328;12403:412;;;;;:::o;12835:340::-;12891:5;12940:3;12933:4;12925:6;12921:17;12917:27;12907:122;;12948:79;;:::i;:::-;12907:122;13065:6;13052:20;13090:79;13165:3;13157:6;13150:4;13142:6;13138:17;13090:79;:::i;:::-;13081:88;;12897:278;12835:340;;;;:::o;13181:509::-;13250:6;13299:2;13287:9;13278:7;13274:23;13270:32;13267:119;;;13305:79;;:::i;:::-;13267:119;13453:1;13442:9;13438:17;13425:31;13483:18;13475:6;13472:30;13469:117;;;13505:79;;:::i;:::-;13469:117;13610:63;13665:7;13656:6;13645:9;13641:22;13610:63;:::i;:::-;13600:73;;13396:287;13181:509;;;;:::o;13696:116::-;13766:21;13781:5;13766:21;:::i;:::-;13759:5;13756:32;13746:60;;13802:1;13799;13792:12;13746:60;13696:116;:::o;13818:133::-;13861:5;13899:6;13886:20;13877:29;;13915:30;13939:5;13915:30;:::i;:::-;13818:133;;;;:::o;13957:468::-;14022:6;14030;14079:2;14067:9;14058:7;14054:23;14050:32;14047:119;;;14085:79;;:::i;:::-;14047:119;14205:1;14230:53;14275:7;14266:6;14255:9;14251:22;14230:53;:::i;:::-;14220:63;;14176:117;14332:2;14358:50;14400:7;14391:6;14380:9;14376:22;14358:50;:::i;:::-;14348:60;;14303:115;13957:468;;;;;:::o;14431:307::-;14492:4;14582:18;14574:6;14571:30;14568:56;;;14604:18;;:::i;:::-;14568:56;14642:29;14664:6;14642:29;:::i;:::-;14634:37;;14726:4;14720;14716:15;14708:23;;14431:307;;;:::o;14744:410::-;14821:5;14846:65;14862:48;14903:6;14862:48;:::i;:::-;14846:65;:::i;:::-;14837:74;;14934:6;14927:5;14920:21;14972:4;14965:5;14961:16;15010:3;15001:6;14996:3;14992:16;14989:25;14986:112;;;15017:79;;:::i;:::-;14986:112;15107:41;15141:6;15136:3;15131;15107:41;:::i;:::-;14827:327;14744:410;;;;;:::o;15173:338::-;15228:5;15277:3;15270:4;15262:6;15258:17;15254:27;15244:122;;15285:79;;:::i;:::-;15244:122;15402:6;15389:20;15427:78;15501:3;15493:6;15486:4;15478:6;15474:17;15427:78;:::i;:::-;15418:87;;15234:277;15173:338;;;;:::o;15517:943::-;15612:6;15620;15628;15636;15685:3;15673:9;15664:7;15660:23;15656:33;15653:120;;;15692:79;;:::i;:::-;15653:120;15812:1;15837:53;15882:7;15873:6;15862:9;15858:22;15837:53;:::i;:::-;15827:63;;15783:117;15939:2;15965:53;16010:7;16001:6;15990:9;15986:22;15965:53;:::i;:::-;15955:63;;15910:118;16067:2;16093:53;16138:7;16129:6;16118:9;16114:22;16093:53;:::i;:::-;16083:63;;16038:118;16223:2;16212:9;16208:18;16195:32;16254:18;16246:6;16243:30;16240:117;;;16276:79;;:::i;:::-;16240:117;16381:62;16435:7;16426:6;16415:9;16411:22;16381:62;:::i;:::-;16371:72;;16166:287;15517:943;;;;;;;:::o;16466:704::-;16561:6;16569;16577;16626:2;16614:9;16605:7;16601:23;16597:32;16594:119;;;16632:79;;:::i;:::-;16594:119;16752:1;16777:53;16822:7;16813:6;16802:9;16798:22;16777:53;:::i;:::-;16767:63;;16723:117;16907:2;16896:9;16892:18;16879:32;16938:18;16930:6;16927:30;16924:117;;;16960:79;;:::i;:::-;16924:117;17073:80;17145:7;17136:6;17125:9;17121:22;17073:80;:::i;:::-;17055:98;;;;16850:313;16466:704;;;;;:::o;17176:111::-;17240:6;17274:5;17268:12;17258:22;;17176:111;;;:::o;17293:181::-;17389:11;17423:6;17418:3;17411:19;17463:4;17458:3;17454:14;17439:29;;17293:181;;;;:::o;17480:129::-;17544:4;17567:3;17559:11;;17597:4;17592:3;17588:14;17580:22;;17480:129;;;:::o;17615:99::-;17686:21;17701:5;17686:21;:::i;:::-;17681:3;17674:34;17615:99;;:::o;17720:167::-;17783:10;17804:40;17840:3;17832:6;17804:40;:::i;:::-;17876:4;17871:3;17867:14;17853:28;;17720:167;;;;:::o;17893:110::-;17960:4;17992;17987:3;17983:14;17975:22;;17893:110;;;:::o;18033:708::-;18146:3;18175:51;18220:5;18175:51;:::i;:::-;18242:83;18318:6;18313:3;18242:83;:::i;:::-;18235:90;;18349:53;18396:5;18349:53;:::i;:::-;18425:7;18456:1;18441:275;18466:6;18463:1;18460:13;18441:275;;;18542:6;18536:13;18569:57;18622:3;18607:13;18569:57;:::i;:::-;18562:64;;18649:57;18699:6;18649:57;:::i;:::-;18639:67;;18501:215;18488:1;18485;18481:9;18476:14;;18441:275;;;18445:14;18732:3;18725:10;;18151:590;;;18033:708;;;;:::o;18747:361::-;18884:4;18922:2;18911:9;18907:18;18899:26;;18971:9;18965:4;18961:20;18957:1;18946:9;18942:17;18935:47;18999:102;19096:4;19087:6;18999:102;:::i;:::-;18991:110;;18747:361;;;;:::o;19114:474::-;19182:6;19190;19239:2;19227:9;19218:7;19214:23;19210:32;19207:119;;;19245:79;;:::i;:::-;19207:119;19365:1;19390:53;19435:7;19426:6;19415:9;19411:22;19390:53;:::i;:::-;19380:63;;19336:117;19492:2;19518:53;19563:7;19554:6;19543:9;19539:22;19518:53;:::i;:::-;19508:63;;19463:118;19114:474;;;;;:::o;19594:180::-;19642:77;19639:1;19632:88;19739:4;19736:1;19729:15;19763:4;19760:1;19753:15;19780:320;19824:6;19861:1;19855:4;19851:12;19841:22;;19908:1;19902:4;19898:12;19929:18;19919:81;;19985:4;19977:6;19973:17;19963:27;;19919:81;20047:2;20039:6;20036:14;20016:18;20013:38;20010:84;;20066:18;;:::i;:::-;20010:84;19831:269;19780:320;;;:::o;20106:231::-;20246:34;20242:1;20234:6;20230:14;20223:58;20315:14;20310:2;20302:6;20298:15;20291:39;20106:231;:::o;20343:366::-;20485:3;20506:67;20570:2;20565:3;20506:67;:::i;:::-;20499:74;;20582:93;20671:3;20582:93;:::i;:::-;20700:2;20695:3;20691:12;20684:19;;20343:366;;;:::o;20715:419::-;20881:4;20919:2;20908:9;20904:18;20896:26;;20968:9;20962:4;20958:20;20954:1;20943:9;20939:17;20932:47;20996:131;21122:4;20996:131;:::i;:::-;20988:139;;20715:419;;;:::o;21140:220::-;21280:34;21276:1;21268:6;21264:14;21257:58;21349:3;21344:2;21336:6;21332:15;21325:28;21140:220;:::o;21366:366::-;21508:3;21529:67;21593:2;21588:3;21529:67;:::i;:::-;21522:74;;21605:93;21694:3;21605:93;:::i;:::-;21723:2;21718:3;21714:12;21707:19;;21366:366;;;:::o;21738:419::-;21904:4;21942:2;21931:9;21927:18;21919:26;;21991:9;21985:4;21981:20;21977:1;21966:9;21962:17;21955:47;22019:131;22145:4;22019:131;:::i;:::-;22011:139;;21738:419;;;:::o;22163:243::-;22303:34;22299:1;22291:6;22287:14;22280:58;22372:26;22367:2;22359:6;22355:15;22348:51;22163:243;:::o;22412:366::-;22554:3;22575:67;22639:2;22634:3;22575:67;:::i;:::-;22568:74;;22651:93;22740:3;22651:93;:::i;:::-;22769:2;22764:3;22760:12;22753:19;;22412:366;;;:::o;22784:419::-;22950:4;22988:2;22977:9;22973:18;22965:26;;23037:9;23031:4;23027:20;23023:1;23012:9;23008:17;23001:47;23065:131;23191:4;23065:131;:::i;:::-;23057:139;;22784:419;;;:::o;23209:236::-;23349:34;23345:1;23337:6;23333:14;23326:58;23418:19;23413:2;23405:6;23401:15;23394:44;23209:236;:::o;23451:366::-;23593:3;23614:67;23678:2;23673:3;23614:67;:::i;:::-;23607:74;;23690:93;23779:3;23690:93;:::i;:::-;23808:2;23803:3;23799:12;23792:19;;23451:366;;;:::o;23823:419::-;23989:4;24027:2;24016:9;24012:18;24004:26;;24076:9;24070:4;24066:20;24062:1;24051:9;24047:17;24040:47;24104:131;24230:4;24104:131;:::i;:::-;24096:139;;23823:419;;;:::o;24248:94::-;24281:8;24329:5;24325:2;24321:14;24300:35;;24248:94;;;:::o;24348:::-;24387:7;24416:20;24430:5;24416:20;:::i;:::-;24405:31;;24348:94;;;:::o;24448:100::-;24487:7;24516:26;24536:5;24516:26;:::i;:::-;24505:37;;24448:100;;;:::o;24554:157::-;24659:45;24679:24;24697:5;24679:24;:::i;:::-;24659:45;:::i;:::-;24654:3;24647:58;24554:157;;:::o;24717:256::-;24829:3;24844:75;24915:3;24906:6;24844:75;:::i;:::-;24944:2;24939:3;24935:12;24928:19;;24964:3;24957:10;;24717:256;;;;:::o;24979:163::-;25119:15;25115:1;25107:6;25103:14;25096:39;24979:163;:::o;25148:366::-;25290:3;25311:67;25375:2;25370:3;25311:67;:::i;:::-;25304:74;;25387:93;25476:3;25387:93;:::i;:::-;25505:2;25500:3;25496:12;25489:19;;25148:366;;;:::o;25520:419::-;25686:4;25724:2;25713:9;25709:18;25701:26;;25773:9;25767:4;25763:20;25759:1;25748:9;25744:17;25737:47;25801:131;25927:4;25801:131;:::i;:::-;25793:139;;25520:419;;;:::o;25945:182::-;26085:34;26081:1;26073:6;26069:14;26062:58;25945:182;:::o;26133:366::-;26275:3;26296:67;26360:2;26355:3;26296:67;:::i;:::-;26289:74;;26372:93;26461:3;26372:93;:::i;:::-;26490:2;26485:3;26481:12;26474:19;;26133:366;;;:::o;26505:419::-;26671:4;26709:2;26698:9;26694:18;26686:26;;26758:9;26752:4;26748:20;26744:1;26733:9;26729:17;26722:47;26786:131;26912:4;26786:131;:::i;:::-;26778:139;;26505:419;;;:::o;26930:181::-;27070:33;27066:1;27058:6;27054:14;27047:57;26930:181;:::o;27117:366::-;27259:3;27280:67;27344:2;27339:3;27280:67;:::i;:::-;27273:74;;27356:93;27445:3;27356:93;:::i;:::-;27474:2;27469:3;27465:12;27458:19;;27117:366;;;:::o;27489:419::-;27655:4;27693:2;27682:9;27678:18;27670:26;;27742:9;27736:4;27732:20;27728:1;27717:9;27713:17;27706:47;27770:131;27896:4;27770:131;:::i;:::-;27762:139;;27489:419;;;:::o;27914:180::-;27962:77;27959:1;27952:88;28059:4;28056:1;28049:15;28083:4;28080:1;28073:15;28100:348;28140:7;28163:20;28181:1;28163:20;:::i;:::-;28158:25;;28197:20;28215:1;28197:20;:::i;:::-;28192:25;;28385:1;28317:66;28313:74;28310:1;28307:81;28302:1;28295:9;28288:17;28284:105;28281:131;;;28392:18;;:::i;:::-;28281:131;28440:1;28437;28433:9;28422:20;;28100:348;;;;:::o;28454:180::-;28502:77;28499:1;28492:88;28599:4;28596:1;28589:15;28623:4;28620:1;28613:15;28640:185;28680:1;28697:20;28715:1;28697:20;:::i;:::-;28692:25;;28731:20;28749:1;28731:20;:::i;:::-;28726:25;;28770:1;28760:35;;28775:18;;:::i;:::-;28760:35;28817:1;28814;28810:9;28805:14;;28640:185;;;;:::o;28831:191::-;28871:4;28891:20;28909:1;28891:20;:::i;:::-;28886:25;;28925:20;28943:1;28925:20;:::i;:::-;28920:25;;28964:1;28961;28958:8;28955:34;;;28969:18;;:::i;:::-;28955:34;29014:1;29011;29007:9;28999:17;;28831:191;;;;:::o;29028:157::-;29168:9;29164:1;29156:6;29152:14;29145:33;29028:157;:::o;29191:365::-;29333:3;29354:66;29418:1;29413:3;29354:66;:::i;:::-;29347:73;;29429:93;29518:3;29429:93;:::i;:::-;29547:2;29542:3;29538:12;29531:19;;29191:365;;;:::o;29562:419::-;29728:4;29766:2;29755:9;29751:18;29743:26;;29815:9;29809:4;29805:20;29801:1;29790:9;29786:17;29779:47;29843:131;29969:4;29843:131;:::i;:::-;29835:139;;29562:419;;;:::o;29987:180::-;30035:77;30032:1;30025:88;30132:4;30129:1;30122:15;30156:4;30153:1;30146:15;30173:228;30313:34;30309:1;30301:6;30297:14;30290:58;30382:11;30377:2;30369:6;30365:15;30358:36;30173:228;:::o;30407:366::-;30549:3;30570:67;30634:2;30629:3;30570:67;:::i;:::-;30563:74;;30646:93;30735:3;30646:93;:::i;:::-;30764:2;30759:3;30755:12;30748:19;;30407:366;;;:::o;30779:419::-;30945:4;30983:2;30972:9;30968:18;30960:26;;31032:9;31026:4;31022:20;31018:1;31007:9;31003:17;30996:47;31060:131;31186:4;31060:131;:::i;:::-;31052:139;;30779:419;;;:::o;31204:229::-;31344:34;31340:1;31332:6;31328:14;31321:58;31413:12;31408:2;31400:6;31396:15;31389:37;31204:229;:::o;31439:366::-;31581:3;31602:67;31666:2;31661:3;31602:67;:::i;:::-;31595:74;;31678:93;31767:3;31678:93;:::i;:::-;31796:2;31791:3;31787:12;31780:19;;31439:366;;;:::o;31811:419::-;31977:4;32015:2;32004:9;32000:18;31992:26;;32064:9;32058:4;32054:20;32050:1;32039:9;32035:17;32028:47;32092:131;32218:4;32092:131;:::i;:::-;32084:139;;31811:419;;;:::o;32236:162::-;32376:14;32372:1;32364:6;32360:14;32353:38;32236:162;:::o;32404:366::-;32546:3;32567:67;32631:2;32626:3;32567:67;:::i;:::-;32560:74;;32643:93;32732:3;32643:93;:::i;:::-;32761:2;32756:3;32752:12;32745:19;;32404:366;;;:::o;32776:419::-;32942:4;32980:2;32969:9;32965:18;32957:26;;33029:9;33023:4;33019:20;33015:1;33004:9;33000:17;32993:47;33057:131;33183:4;33057:131;:::i;:::-;33049:139;;32776:419;;;:::o;33201:163::-;33341:15;33337:1;33329:6;33325:14;33318:39;33201:163;:::o;33370:366::-;33512:3;33533:67;33597:2;33592:3;33533:67;:::i;:::-;33526:74;;33609:93;33698:3;33609:93;:::i;:::-;33727:2;33722:3;33718:12;33711:19;;33370:366;;;:::o;33742:419::-;33908:4;33946:2;33935:9;33931:18;33923:26;;33995:9;33989:4;33985:20;33981:1;33970:9;33966:17;33959:47;34023:131;34149:4;34023:131;:::i;:::-;34015:139;;33742:419;;;:::o;34167:305::-;34207:3;34226:20;34244:1;34226:20;:::i;:::-;34221:25;;34260:20;34278:1;34260:20;:::i;:::-;34255:25;;34414:1;34346:66;34342:74;34339:1;34336:81;34333:107;;;34420:18;;:::i;:::-;34333:107;34464:1;34461;34457:9;34450:16;;34167:305;;;;:::o;34478:159::-;34618:11;34614:1;34606:6;34602:14;34595:35;34478:159;:::o;34643:365::-;34785:3;34806:66;34870:1;34865:3;34806:66;:::i;:::-;34799:73;;34881:93;34970:3;34881:93;:::i;:::-;34999:2;34994:3;34990:12;34983:19;;34643:365;;;:::o;35014:419::-;35180:4;35218:2;35207:9;35203:18;35195:26;;35267:9;35261:4;35257:20;35253:1;35242:9;35238:17;35231:47;35295:131;35421:4;35295:131;:::i;:::-;35287:139;;35014:419;;;:::o;35439:169::-;35579:21;35575:1;35567:6;35563:14;35556:45;35439:169;:::o;35614:366::-;35756:3;35777:67;35841:2;35836:3;35777:67;:::i;:::-;35770:74;;35853:93;35942:3;35853:93;:::i;:::-;35971:2;35966:3;35962:12;35955:19;;35614:366;;;:::o;35986:419::-;36152:4;36190:2;36179:9;36175:18;36167:26;;36239:9;36233:4;36229:20;36225:1;36214:9;36210:17;36203:47;36267:131;36393:4;36267:131;:::i;:::-;36259:139;;35986:419;;;:::o;36411:225::-;36551:34;36547:1;36539:6;36535:14;36528:58;36620:8;36615:2;36607:6;36603:15;36596:33;36411:225;:::o;36642:366::-;36784:3;36805:67;36869:2;36864:3;36805:67;:::i;:::-;36798:74;;36881:93;36970:3;36881:93;:::i;:::-;36999:2;36994:3;36990:12;36983:19;;36642:366;;;:::o;37014:419::-;37180:4;37218:2;37207:9;37203:18;37195:26;;37267:9;37261:4;37257:20;37253:1;37242:9;37238:17;37231:47;37295:131;37421:4;37295:131;:::i;:::-;37287:139;;37014:419;;;:::o;37439:231::-;37579:34;37575:1;37567:6;37563:14;37556:58;37648:14;37643:2;37635:6;37631:15;37624:39;37439:231;:::o;37676:366::-;37818:3;37839:67;37903:2;37898:3;37839:67;:::i;:::-;37832:74;;37915:93;38004:3;37915:93;:::i;:::-;38033:2;38028:3;38024:12;38017:19;;37676:366;;;:::o;38048:419::-;38214:4;38252:2;38241:9;38237:18;38229:26;;38301:9;38295:4;38291:20;38287:1;38276:9;38272:17;38265:47;38329:131;38455:4;38329:131;:::i;:::-;38321:139;;38048:419;;;:::o;38473:224::-;38613:34;38609:1;38601:6;38597:14;38590:58;38682:7;38677:2;38669:6;38665:15;38658:32;38473:224;:::o;38703:366::-;38845:3;38866:67;38930:2;38925:3;38866:67;:::i;:::-;38859:74;;38942:93;39031:3;38942:93;:::i;:::-;39060:2;39055:3;39051:12;39044:19;;38703:366;;;:::o;39075:419::-;39241:4;39279:2;39268:9;39264:18;39256:26;;39328:9;39322:4;39318:20;39314:1;39303:9;39299:17;39292:47;39356:131;39482:4;39356:131;:::i;:::-;39348:139;;39075:419;;;:::o;39500:223::-;39640:34;39636:1;39628:6;39624:14;39617:58;39709:6;39704:2;39696:6;39692:15;39685:31;39500:223;:::o;39729:366::-;39871:3;39892:67;39956:2;39951:3;39892:67;:::i;:::-;39885:74;;39968:93;40057:3;39968:93;:::i;:::-;40086:2;40081:3;40077:12;40070:19;;39729:366;;;:::o;40101:419::-;40267:4;40305:2;40294:9;40290:18;40282:26;;40354:9;40348:4;40344:20;40340:1;40329:9;40325:17;40318:47;40382:131;40508:4;40382:131;:::i;:::-;40374:139;;40101:419;;;:::o;40526:143::-;40583:5;40614:6;40608:13;40599:22;;40630:33;40657:5;40630:33;:::i;:::-;40526:143;;;;:::o;40675:351::-;40745:6;40794:2;40782:9;40773:7;40769:23;40765:32;40762:119;;;40800:79;;:::i;:::-;40762:119;40920:1;40945:64;41001:7;40992:6;40981:9;40977:22;40945:64;:::i;:::-;40935:74;;40891:128;40675:351;;;;:::o;41032:162::-;41172:14;41168:1;41160:6;41156:14;41149:38;41032:162;:::o;41200:366::-;41342:3;41363:67;41427:2;41422:3;41363:67;:::i;:::-;41356:74;;41439:93;41528:3;41439:93;:::i;:::-;41557:2;41552:3;41548:12;41541:19;;41200:366;;;:::o;41572:419::-;41738:4;41776:2;41765:9;41761:18;41753:26;;41825:9;41819:4;41815:20;41811:1;41800:9;41796:17;41789:47;41853:131;41979:4;41853:131;:::i;:::-;41845:139;;41572:419;;;:::o;41997:179::-;42137:31;42133:1;42125:6;42121:14;42114:55;41997:179;:::o;42182:366::-;42324:3;42345:67;42409:2;42404:3;42345:67;:::i;:::-;42338:74;;42421:93;42510:3;42421:93;:::i;:::-;42539:2;42534:3;42530:12;42523:19;;42182:366;;;:::o;42554:419::-;42720:4;42758:2;42747:9;42743:18;42735:26;;42807:9;42801:4;42797:20;42793:1;42782:9;42778:17;42771:47;42835:131;42961:4;42835:131;:::i;:::-;42827:139;;42554:419;;;:::o;42979:147::-;43080:11;43117:3;43102:18;;42979:147;;;;:::o;43132:114::-;;:::o;43252:398::-;43411:3;43432:83;43513:1;43508:3;43432:83;:::i;:::-;43425:90;;43524:93;43613:3;43524:93;:::i;:::-;43642:1;43637:3;43633:11;43626:18;;43252:398;;;:::o;43656:379::-;43840:3;43862:147;44005:3;43862:147;:::i;:::-;43855:154;;44026:3;44019:10;;43656:379;;;:::o;44041:245::-;44181:34;44177:1;44169:6;44165:14;44158:58;44250:28;44245:2;44237:6;44233:15;44226:53;44041:245;:::o;44292:366::-;44434:3;44455:67;44519:2;44514:3;44455:67;:::i;:::-;44448:74;;44531:93;44620:3;44531:93;:::i;:::-;44649:2;44644:3;44640:12;44633:19;;44292:366;;;:::o;44664:419::-;44830:4;44868:2;44857:9;44853:18;44845:26;;44917:9;44911:4;44907:20;44903:1;44892:9;44888:17;44881:47;44945:131;45071:4;44945:131;:::i;:::-;44937:139;;44664:419;;;:::o;45089:175::-;45229:27;45225:1;45217:6;45213:14;45206:51;45089:175;:::o;45270:366::-;45412:3;45433:67;45497:2;45492:3;45433:67;:::i;:::-;45426:74;;45509:93;45598:3;45509:93;:::i;:::-;45627:2;45622:3;45618:12;45611:19;;45270:366;;;:::o;45642:419::-;45808:4;45846:2;45835:9;45831:18;45823:26;;45895:9;45889:4;45885:20;45881:1;45870:9;45866:17;45859:47;45923:131;46049:4;45923:131;:::i;:::-;45915:139;;45642:419;;;:::o;46067:237::-;46207:34;46203:1;46195:6;46191:14;46184:58;46276:20;46271:2;46263:6;46259:15;46252:45;46067:237;:::o;46310:366::-;46452:3;46473:67;46537:2;46532:3;46473:67;:::i;:::-;46466:74;;46549:93;46638:3;46549:93;:::i;:::-;46667:2;46662:3;46658:12;46651:19;;46310:366;;;:::o;46682:419::-;46848:4;46886:2;46875:9;46871:18;46863:26;;46935:9;46929:4;46925:20;46921:1;46910:9;46906:17;46899:47;46963:131;47089:4;46963:131;:::i;:::-;46955:139;;46682:419;;;:::o;47107:234::-;47247:34;47243:1;47235:6;47231:14;47224:58;47316:17;47311:2;47303:6;47299:15;47292:42;47107:234;:::o;47347:366::-;47489:3;47510:67;47574:2;47569:3;47510:67;:::i;:::-;47503:74;;47586:93;47675:3;47586:93;:::i;:::-;47704:2;47699:3;47695:12;47688:19;;47347:366;;;:::o;47719:419::-;47885:4;47923:2;47912:9;47908:18;47900:26;;47972:9;47966:4;47962:20;47958:1;47947:9;47943:17;47936:47;48000:131;48126:4;48000:131;:::i;:::-;47992:139;;47719:419;;;:::o;48144:148::-;48246:11;48283:3;48268:18;;48144:148;;;;:::o;48298:377::-;48404:3;48432:39;48465:5;48432:39;:::i;:::-;48487:89;48569:6;48564:3;48487:89;:::i;:::-;48480:96;;48585:52;48630:6;48625:3;48618:4;48611:5;48607:16;48585:52;:::i;:::-;48662:6;48657:3;48653:16;48646:23;;48408:267;48298:377;;;;:::o;48681:435::-;48861:3;48883:95;48974:3;48965:6;48883:95;:::i;:::-;48876:102;;48995:95;49086:3;49077:6;48995:95;:::i;:::-;48988:102;;49107:3;49100:10;;48681:435;;;;;:::o;49122:233::-;49161:3;49184:24;49202:5;49184:24;:::i;:::-;49175:33;;49230:66;49223:5;49220:77;49217:103;;49300:18;;:::i;:::-;49217:103;49347:1;49340:5;49336:13;49329:20;;49122:233;;;:::o;49361:98::-;49412:6;49446:5;49440:12;49430:22;;49361:98;;;:::o;49465:168::-;49548:11;49582:6;49577:3;49570:19;49622:4;49617:3;49613:14;49598:29;;49465:168;;;;:::o;49639:360::-;49725:3;49753:38;49785:5;49753:38;:::i;:::-;49807:70;49870:6;49865:3;49807:70;:::i;:::-;49800:77;;49886:52;49931:6;49926:3;49919:4;49912:5;49908:16;49886:52;:::i;:::-;49963:29;49985:6;49963:29;:::i;:::-;49958:3;49954:39;49947:46;;49729:270;49639:360;;;;:::o;50005:640::-;50200:4;50238:3;50227:9;50223:19;50215:27;;50252:71;50320:1;50309:9;50305:17;50296:6;50252:71;:::i;:::-;50333:72;50401:2;50390:9;50386:18;50377:6;50333:72;:::i;:::-;50415;50483:2;50472:9;50468:18;50459:6;50415:72;:::i;:::-;50534:9;50528:4;50524:20;50519:2;50508:9;50504:18;50497:48;50562:76;50633:4;50624:6;50562:76;:::i;:::-;50554:84;;50005:640;;;;;;;:::o;50651:141::-;50707:5;50738:6;50732:13;50723:22;;50754:32;50780:5;50754:32;:::i;:::-;50651:141;;;;:::o;50798:349::-;50867:6;50916:2;50904:9;50895:7;50891:23;50887:32;50884:119;;;50922:79;;:::i;:::-;50884:119;51042:1;51067:63;51122:7;51113:6;51102:9;51098:22;51067:63;:::i;:::-;51057:73;;51013:127;50798:349;;;;:::o;51153:176::-;51185:1;51202:20;51220:1;51202:20;:::i;:::-;51197:25;;51236:20;51254:1;51236:20;:::i;:::-;51231:25;;51275:1;51265:35;;51280:18;;:::i;:::-;51265:35;51321:1;51318;51314:9;51309:14;;51153:176;;;;:::o;51335:182::-;51475:34;51471:1;51463:6;51459:14;51452:58;51335:182;:::o;51523:366::-;51665:3;51686:67;51750:2;51745:3;51686:67;:::i;:::-;51679:74;;51762:93;51851:3;51762:93;:::i;:::-;51880:2;51875:3;51871:12;51864:19;;51523:366;;;:::o;51895:419::-;52061:4;52099:2;52088:9;52084:18;52076:26;;52148:9;52142:4;52138:20;52134:1;52123:9;52119:17;52112:47;52176:131;52302:4;52176:131;:::i;:::-;52168:139;;51895:419;;;:::o;52320:178::-;52460:30;52456:1;52448:6;52444:14;52437:54;52320:178;:::o;52504:366::-;52646:3;52667:67;52731:2;52726:3;52667:67;:::i;:::-;52660:74;;52743:93;52832:3;52743:93;:::i;:::-;52861:2;52856:3;52852:12;52845:19;;52504:366;;;:::o;52876:419::-;53042:4;53080:2;53069:9;53065:18;53057:26;;53129:9;53123:4;53119:20;53115:1;53104:9;53100:17;53093:47;53157:131;53283:4;53157:131;:::i;:::-;53149:139;;52876:419;;;:::o

Swarm Source

ipfs://910a9d94d816280cb78d478b060254ade950a911594b2cea884c3b5fb4750a1a
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.