ETH Price: $2,945.00 (-3.92%)
Gas: 2 Gwei

Token

PhunkyMutantApeYachtClub (PMAYC)
 

Overview

Max Total Supply

7,158 PMAYC

Holders

1,854

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 PMAYC
0x735e59b365a9e41630fc100933d250c39f6aba29
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PhunkyMutantApeYachtClub

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-30
*/

// SPDX-License-Identifier: MIT
// 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);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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



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

pragma solidity ^0.8.0;

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


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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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


// OpenZeppelin Contracts v4.4.1 (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(), ".json")) : "";
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;


contract PhunkyMutantApeYachtClub is ERC721Enumerable, Ownable {

    uint256 public maycPrice = 20000000000000000;
    uint public constant maxMaycPurchase = 10;
    uint public maycSupply = 10000;
    bool public drop_is_active = false;
    string public baseURI = "";
    uint256 public tokensMinted = 0;
    uint256 public freeMints = 6000;

    mapping(address => uint) addressesThatMinted;

    constructor() ERC721("PhunkyMutantApeYachtClub", "PMAYC"){
    
    }

    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function flipDropState() public onlyOwner {
        drop_is_active = !drop_is_active;
    }

    function freeMintPMAYC(uint numberOfTokens) public {
        require(drop_is_active, "Please wait until the drop is active to mint");
        require(numberOfTokens > 0 && numberOfTokens <= maxMaycPurchase, "Mint count is too little or too high");
        require(tokensMinted + numberOfTokens <= freeMints, "Purchase will exceed max supply of free mints");
        require(addressesThatMinted[msg.sender] + numberOfTokens <= 10, "You have already minted 10!");

        uint256 tokenIndex = tokensMinted;
        tokensMinted += numberOfTokens;
        addressesThatMinted[msg.sender] += numberOfTokens;

        for (uint i = 0; i < numberOfTokens; i++){
            _safeMint(msg.sender, tokenIndex);
            tokenIndex++;
        }
    }

    function mintPMAYC(uint numberOfTokens) public payable {
        require(drop_is_active, "Please wait until the drop is active to mint");
        require(numberOfTokens > 0 && numberOfTokens <= maxMaycPurchase, "Mint count is too little or too high");
        require(tokensMinted + numberOfTokens <= maycSupply, "Purchase would exceed max supply of PMAYCs");
        require(msg.value >= maycPrice * numberOfTokens, "ETH value sent is too little for this many PMAYCs");
        require(addressesThatMinted[msg.sender] + numberOfTokens <= 10, "You have already minted 10!");

        uint256 tokenIndex = tokensMinted;
        tokensMinted += numberOfTokens;
        addressesThatMinted[msg.sender] += numberOfTokens;

        for (uint i = 0; i < numberOfTokens; i++){
            _safeMint(msg.sender, tokenIndex);
            tokenIndex++;
        }
    }

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

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

    function setSupply(uint256 newSupply)public onlyOwner{
        maycSupply = newSupply;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drop_is_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMintPMAYC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMaycPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maycPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maycSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPMAYC","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":"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df820000600b55612710600c556000600d60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600e90805190602001906200005792919062000205565b506000600f556117706010553480156200007057600080fd5b506040518060400160405280601881526020017f5068756e6b794d7574616e744170655961636874436c756200000000000000008152506040518060400160405280600581526020017f504d4159430000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f592919062000205565b5080600190805190602001906200010e92919062000205565b50505062000131620001256200013760201b60201c565b6200013f60201b60201c565b6200031a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021390620002b5565b90600052602060002090601f01602090048101928262000237576000855562000283565b82601f106200025257805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028257825182559160200191906001019062000265565b5b50905062000292919062000296565b5090565b5b80821115620002b157600081600090555060010162000297565b5090565b60006002820490506001821680620002ce57607f821691505b60208210811415620002e557620002e4620002eb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6142f0806200032a6000396000f3fe6080604052600436106101e35760003560e01c806367911cff116101025780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde146106af578063c87b56dd146106d8578063e985e9c514610715578063f2fde38b14610752576101e3565b80638da5cb5b1461061957806395d89b411461064457806396f8f6dd1461066f578063a22cb46514610686576101e3565b8063715018a6116100d1578063715018a6146105835780637e64aebd1461059a57806380b17335146105c55780638d8a2589146105f0576101e3565b806367911cff146104d45780636c0360eb146104f05780636de9f32b1461051b57806370a0823114610546576101e3565b806325f5c19f1161017a57806342842e0e1161014957806342842e0e146104085780634f6ccce71461043157806355f804b31461046e5780636352211e14610497576101e3565b806325f5c19f146103605780632f745c591461038b5780633b4c4b25146103c85780633ccfd60b146103f1576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630e9b44aa146102e157806318160ddd1461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e8578063052939051461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612fba565b61077b565b60405161021c9190613aee565b60405180910390f35b34801561023157600080fd5b5061023a6107f5565b6040516102479190613aee565b60405180910390f35b34801561025c57600080fd5b50610265610808565b6040516102729190613b09565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061304d565b61089a565b6040516102af9190613a87565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612f7e565b61091f565b005b3480156102ed57600080fd5b506102f6610a37565b6040516103039190613e2b565b60405180910390f35b34801561031857600080fd5b50610321610a3d565b60405161032e9190613e2b565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612e78565b610a4a565b005b34801561036c57600080fd5b50610375610aaa565b6040516103829190613e2b565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612f7e565b610ab0565b6040516103bf9190613e2b565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea919061304d565b610b55565b005b3480156103fd57600080fd5b50610406610bdb565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612e78565b610c97565b005b34801561043d57600080fd5b506104586004803603810190610453919061304d565b610cb7565b6040516104659190613e2b565b60405180910390f35b34801561047a57600080fd5b506104956004803603810190610490919061300c565b610d4e565b005b3480156104a357600080fd5b506104be60048036038101906104b9919061304d565b610de4565b6040516104cb9190613a87565b60405180910390f35b6104ee60048036038101906104e9919061304d565b610e96565b005b3480156104fc57600080fd5b50610505611116565b6040516105129190613b09565b60405180910390f35b34801561052757600080fd5b506105306111a4565b60405161053d9190613e2b565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612e13565b6111aa565b60405161057a9190613e2b565b60405180910390f35b34801561058f57600080fd5b50610598611262565b005b3480156105a657600080fd5b506105af6112ea565b6040516105bc9190613e2b565b60405180910390f35b3480156105d157600080fd5b506105da6112ef565b6040516105e79190613e2b565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061304d565b6112f5565b005b34801561062557600080fd5b5061062e611525565b60405161063b9190613a87565b60405180910390f35b34801561065057600080fd5b5061065961154f565b6040516106669190613b09565b60405180910390f35b34801561067b57600080fd5b506106846115e1565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612f42565b611689565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612ec7565b61169f565b005b3480156106e457600080fd5b506106ff60048036038101906106fa919061304d565b611701565b60405161070c9190613b09565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190612e3c565b6117a8565b6040516107499190613aee565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612e13565b61183c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57506107ed82611934565b5b9050919050565b600d60009054906101000a900460ff1681565b606060008054610817906140e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610843906140e5565b80156108905780601f1061086557610100808354040283529160200191610890565b820191906000526020600020905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b60006108a582611a16565b6108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90613ceb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82610de4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613d8b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ba611a82565b73ffffffffffffffffffffffffffffffffffffffff1614806109e957506109e8816109e3611a82565b6117a8565b5b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613c6b565b60405180910390fd5b610a328383611a8a565b505050565b600c5481565b6000600880549050905090565b610a5b610a55611a82565b82611b43565b610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613deb565b60405180910390fd5b610aa5838383611c21565b505050565b600b5481565b6000610abb836111aa565b8210610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390613b6b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b5d611a82565b73ffffffffffffffffffffffffffffffffffffffff16610b7b611525565b73ffffffffffffffffffffffffffffffffffffffff1614610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613d0b565b60405180910390fd5b80600c8190555050565b610be3611a82565b73ffffffffffffffffffffffffffffffffffffffff16610c01611525565b73ffffffffffffffffffffffffffffffffffffffff1614610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90613d0b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c9557600080fd5b565b610cb28383836040518060200160405280600081525061169f565b505050565b6000610cc1610a3d565b8210610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990613e0b565b60405180910390fd5b60088281548110610d3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d56611a82565b73ffffffffffffffffffffffffffffffffffffffff16610d74611525565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613d0b565b60405180910390fd5b80600e9080519060200190610de0929190612c37565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613cab565b60405180910390fd5b80915050919050565b600d60009054906101000a900460ff16610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90613dab565b60405180910390fd5b600081118015610ef65750600a8111155b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90613d6b565b60405180910390fd5b600c5481600f54610f469190613f1a565b1115610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613beb565b60405180910390fd5b80600b54610f959190613fa1565b341015610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613b2b565b60405180910390fd5b600a81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110249190613f1a565b1115611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90613b4b565b60405180910390fd5b6000600f54905081600f600082825461107e9190613f1a565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d49190613f1a565b9250508190555060005b82811015611111576110f03383611e7d565b81806110fb90614117565b925050808061110990614117565b9150506110de565b505050565b600e8054611123906140e5565b80601f016020809104026020016040519081016040528092919081815260200182805461114f906140e5565b801561119c5780601f106111715761010080835404028352916020019161119c565b820191906000526020600020905b81548152906001019060200180831161117f57829003601f168201915b505050505081565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290613c8b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126a611a82565b73ffffffffffffffffffffffffffffffffffffffff16611288611525565b73ffffffffffffffffffffffffffffffffffffffff16146112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613d0b565b60405180910390fd5b6112e86000611e9b565b565b600a81565b60105481565b600d60009054906101000a900460ff16611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90613dab565b60405180910390fd5b6000811180156113555750600a8111155b611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613d6b565b60405180910390fd5b60105481600f546113a59190613f1a565b11156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90613dcb565b60405180910390fd5b600a81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114339190613f1a565b1115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90613b4b565b60405180910390fd5b6000600f54905081600f600082825461148d9190613f1a565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e39190613f1a565b9250508190555060005b82811015611520576114ff3383611e7d565b818061150a90614117565b925050808061151890614117565b9150506114ed565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461155e906140e5565b80601f016020809104026020016040519081016040528092919081815260200182805461158a906140e5565b80156115d75780601f106115ac576101008083540402835291602001916115d7565b820191906000526020600020905b8154815290600101906020018083116115ba57829003601f168201915b5050505050905090565b6115e9611a82565b73ffffffffffffffffffffffffffffffffffffffff16611607611525565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613d0b565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b61169b611694611a82565b8383611f61565b5050565b6116b06116aa611a82565b83611b43565b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690613deb565b60405180910390fd5b6116fb848484846120ce565b50505050565b606061170c82611a16565b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613d4b565b60405180910390fd5b600061175561212a565b9050600081511161177557604051806020016040528060008152506117a0565b8061177f846121bc565b604051602001611790929190613a58565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611844611a82565b73ffffffffffffffffffffffffffffffffffffffff16611862611525565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613d0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613bab565b60405180910390fd5b61193181611e9b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a0f5750611a0e82612369565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611afd83610de4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b4e82611a16565b611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613c4b565b60405180910390fd5b6000611b9883610de4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0757508373ffffffffffffffffffffffffffffffffffffffff16611bef8461089a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c185750611c1781856117a8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c4182610de4565b73ffffffffffffffffffffffffffffffffffffffff1614611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613d2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613c0b565b60405180910390fd5b611d128383836123d3565b611d1d600082611a8a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6d9190613ffb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc49190613f1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e978282604051806020016040528060008152506124e7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613c2b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120c19190613aee565b60405180910390a3505050565b6120d9848484611c21565b6120e584848484612542565b612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90613b8b565b60405180910390fd5b50505050565b6060600e8054612139906140e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612165906140e5565b80156121b25780601f10612187576101008083540402835291602001916121b2565b820191906000526020600020905b81548152906001019060200180831161219557829003601f168201915b5050505050905090565b60606000821415612204576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612364565b600082905060005b6000821461223657808061221f90614117565b915050600a8261222f9190613f70565b915061220c565b60008167ffffffffffffffff811115612278577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122aa5781602001600182028036833780820191505090505b5090505b6000851461235d576001826122c39190613ffb565b9150600a856122d29190614160565b60306122de9190613f1a565b60f81b81838151811061231a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123569190613f70565b94506122ae565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123de8383836126d9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124215761241c816126de565b612460565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461245f5761245e8382612727565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a35761249e81612894565b6124e2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124e1576124e082826129d7565b5b5b505050565b6124f18383612a56565b6124fe6000848484612542565b61253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253490613b8b565b60405180910390fd5b505050565b60006125638473ffffffffffffffffffffffffffffffffffffffff16612c24565b156126cc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261258c611a82565b8786866040518563ffffffff1660e01b81526004016125ae9493929190613aa2565b602060405180830381600087803b1580156125c857600080fd5b505af19250505080156125f957506040513d601f19601f820116820180604052508101906125f69190612fe3565b60015b61267c573d8060008114612629576040519150601f19603f3d011682016040523d82523d6000602084013e61262e565b606091505b50600081511415612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b90613b8b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d1565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612734846111aa565b61273e9190613ffb565b9050600060076000848152602001908152602001600020549050818114612823576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128a89190613ffb565b90506000600960008481526020019081526020016000205490506000600883815481106128fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612946577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129e2836111aa565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90613ccb565b60405180910390fd5b612acf81611a16565b15612b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0690613bcb565b60405180910390fd5b612b1b600083836123d3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6b9190613f1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c43906140e5565b90600052602060002090601f016020900481019282612c655760008555612cac565b82601f10612c7e57805160ff1916838001178555612cac565b82800160010185558215612cac579182015b82811115612cab578251825591602001919060010190612c90565b5b509050612cb99190612cbd565b5090565b5b80821115612cd6576000816000905550600101612cbe565b5090565b6000612ced612ce884613e77565b613e46565b905082815260208101848484011115612d0557600080fd5b612d108482856140a3565b509392505050565b6000612d2b612d2684613ea7565b613e46565b905082815260208101848484011115612d4357600080fd5b612d4e8482856140a3565b509392505050565b600081359050612d658161425e565b92915050565b600081359050612d7a81614275565b92915050565b600081359050612d8f8161428c565b92915050565b600081519050612da48161428c565b92915050565b600082601f830112612dbb57600080fd5b8135612dcb848260208601612cda565b91505092915050565b600082601f830112612de557600080fd5b8135612df5848260208601612d18565b91505092915050565b600081359050612e0d816142a3565b92915050565b600060208284031215612e2557600080fd5b6000612e3384828501612d56565b91505092915050565b60008060408385031215612e4f57600080fd5b6000612e5d85828601612d56565b9250506020612e6e85828601612d56565b9150509250929050565b600080600060608486031215612e8d57600080fd5b6000612e9b86828701612d56565b9350506020612eac86828701612d56565b9250506040612ebd86828701612dfe565b9150509250925092565b60008060008060808587031215612edd57600080fd5b6000612eeb87828801612d56565b9450506020612efc87828801612d56565b9350506040612f0d87828801612dfe565b925050606085013567ffffffffffffffff811115612f2a57600080fd5b612f3687828801612daa565b91505092959194509250565b60008060408385031215612f5557600080fd5b6000612f6385828601612d56565b9250506020612f7485828601612d6b565b9150509250929050565b60008060408385031215612f9157600080fd5b6000612f9f85828601612d56565b9250506020612fb085828601612dfe565b9150509250929050565b600060208284031215612fcc57600080fd5b6000612fda84828501612d80565b91505092915050565b600060208284031215612ff557600080fd5b600061300384828501612d95565b91505092915050565b60006020828403121561301e57600080fd5b600082013567ffffffffffffffff81111561303857600080fd5b61304484828501612dd4565b91505092915050565b60006020828403121561305f57600080fd5b600061306d84828501612dfe565b91505092915050565b61307f8161402f565b82525050565b61308e81614041565b82525050565b600061309f82613ed7565b6130a98185613eed565b93506130b98185602086016140b2565b6130c28161424d565b840191505092915050565b60006130d882613ee2565b6130e28185613efe565b93506130f28185602086016140b2565b6130fb8161424d565b840191505092915050565b600061311182613ee2565b61311b8185613f0f565b935061312b8185602086016140b2565b80840191505092915050565b6000613144603183613efe565b91507f4554482076616c75652073656e7420697320746f6f206c6974746c6520666f7260008301527f2074686973206d616e7920504d415943730000000000000000000000000000006020830152604082019050919050565b60006131aa601b83613efe565b91507f596f75206861766520616c7265616479206d696e7465642031302100000000006000830152602082019050919050565b60006131ea602b83613efe565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613250603283613efe565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006132b6602683613efe565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061331c601c83613efe565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061335c602a83613efe565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620504d41594373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133c2602483613efe565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613428601983613efe565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613468602c83613efe565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134ce603883613efe565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613534602a83613efe565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061359a602983613efe565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613600602083613efe565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613640602c83613efe565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136a6600583613f0f565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006136e6602083613efe565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613726602983613efe565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061378c602f83613efe565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006137f2602483613efe565b91507f4d696e7420636f756e7420697320746f6f206c6974746c65206f7220746f6f2060008301527f68696768000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613858602183613efe565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138be602c83613efe565b91507f506c65617365207761697420756e74696c207468652064726f7020697320616360008301527f7469766520746f206d696e7400000000000000000000000000000000000000006020830152604082019050919050565b6000613924602d83613efe565b91507f50757263686173652077696c6c20657863656564206d617820737570706c792060008301527f6f662066726565206d696e7473000000000000000000000000000000000000006020830152604082019050919050565b600061398a603183613efe565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006139f0602c83613efe565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b613a5281614099565b82525050565b6000613a648285613106565b9150613a708284613106565b9150613a7b82613699565b91508190509392505050565b6000602082019050613a9c6000830184613076565b92915050565b6000608082019050613ab76000830187613076565b613ac46020830186613076565b613ad16040830185613a49565b8181036060830152613ae38184613094565b905095945050505050565b6000602082019050613b036000830184613085565b92915050565b60006020820190508181036000830152613b2381846130cd565b905092915050565b60006020820190508181036000830152613b4481613137565b9050919050565b60006020820190508181036000830152613b648161319d565b9050919050565b60006020820190508181036000830152613b84816131dd565b9050919050565b60006020820190508181036000830152613ba481613243565b9050919050565b60006020820190508181036000830152613bc4816132a9565b9050919050565b60006020820190508181036000830152613be48161330f565b9050919050565b60006020820190508181036000830152613c048161334f565b9050919050565b60006020820190508181036000830152613c24816133b5565b9050919050565b60006020820190508181036000830152613c448161341b565b9050919050565b60006020820190508181036000830152613c648161345b565b9050919050565b60006020820190508181036000830152613c84816134c1565b9050919050565b60006020820190508181036000830152613ca481613527565b9050919050565b60006020820190508181036000830152613cc48161358d565b9050919050565b60006020820190508181036000830152613ce4816135f3565b9050919050565b60006020820190508181036000830152613d0481613633565b9050919050565b60006020820190508181036000830152613d24816136d9565b9050919050565b60006020820190508181036000830152613d4481613719565b9050919050565b60006020820190508181036000830152613d648161377f565b9050919050565b60006020820190508181036000830152613d84816137e5565b9050919050565b60006020820190508181036000830152613da48161384b565b9050919050565b60006020820190508181036000830152613dc4816138b1565b9050919050565b60006020820190508181036000830152613de481613917565b9050919050565b60006020820190508181036000830152613e048161397d565b9050919050565b60006020820190508181036000830152613e24816139e3565b9050919050565b6000602082019050613e406000830184613a49565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e6d57613e6c61421e565b5b8060405250919050565b600067ffffffffffffffff821115613e9257613e9161421e565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ec257613ec161421e565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f2582614099565b9150613f3083614099565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6557613f64614191565b5b828201905092915050565b6000613f7b82614099565b9150613f8683614099565b925082613f9657613f956141c0565b5b828204905092915050565b6000613fac82614099565b9150613fb783614099565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ff057613fef614191565b5b828202905092915050565b600061400682614099565b915061401183614099565b92508282101561402457614023614191565b5b828203905092915050565b600061403a82614079565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140d05780820151818401526020810190506140b5565b838111156140df576000848401525b50505050565b600060028204905060018216806140fd57607f821691505b60208210811415614111576141106141ef565b5b50919050565b600061412282614099565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561415557614154614191565b5b600182019050919050565b600061416b82614099565b915061417683614099565b925082614186576141856141c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6142678161402f565b811461427257600080fd5b50565b61427e81614041565b811461428957600080fd5b50565b6142958161404d565b81146142a057600080fd5b50565b6142ac81614099565b81146142b757600080fd5b5056fea2646970667358221220b00c4f1d2cc036a0c5839fd5786c683ffd523016e966514f0d3512b5f7fea8dd64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806367911cff116101025780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde146106af578063c87b56dd146106d8578063e985e9c514610715578063f2fde38b14610752576101e3565b80638da5cb5b1461061957806395d89b411461064457806396f8f6dd1461066f578063a22cb46514610686576101e3565b8063715018a6116100d1578063715018a6146105835780637e64aebd1461059a57806380b17335146105c55780638d8a2589146105f0576101e3565b806367911cff146104d45780636c0360eb146104f05780636de9f32b1461051b57806370a0823114610546576101e3565b806325f5c19f1161017a57806342842e0e1161014957806342842e0e146104085780634f6ccce71461043157806355f804b31461046e5780636352211e14610497576101e3565b806325f5c19f146103605780632f745c591461038b5780633b4c4b25146103c85780633ccfd60b146103f1576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630e9b44aa146102e157806318160ddd1461030c57806323b872dd14610337576101e3565b806301ffc9a7146101e8578063052939051461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612fba565b61077b565b60405161021c9190613aee565b60405180910390f35b34801561023157600080fd5b5061023a6107f5565b6040516102479190613aee565b60405180910390f35b34801561025c57600080fd5b50610265610808565b6040516102729190613b09565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061304d565b61089a565b6040516102af9190613a87565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612f7e565b61091f565b005b3480156102ed57600080fd5b506102f6610a37565b6040516103039190613e2b565b60405180910390f35b34801561031857600080fd5b50610321610a3d565b60405161032e9190613e2b565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612e78565b610a4a565b005b34801561036c57600080fd5b50610375610aaa565b6040516103829190613e2b565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612f7e565b610ab0565b6040516103bf9190613e2b565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea919061304d565b610b55565b005b3480156103fd57600080fd5b50610406610bdb565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612e78565b610c97565b005b34801561043d57600080fd5b506104586004803603810190610453919061304d565b610cb7565b6040516104659190613e2b565b60405180910390f35b34801561047a57600080fd5b506104956004803603810190610490919061300c565b610d4e565b005b3480156104a357600080fd5b506104be60048036038101906104b9919061304d565b610de4565b6040516104cb9190613a87565b60405180910390f35b6104ee60048036038101906104e9919061304d565b610e96565b005b3480156104fc57600080fd5b50610505611116565b6040516105129190613b09565b60405180910390f35b34801561052757600080fd5b506105306111a4565b60405161053d9190613e2b565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612e13565b6111aa565b60405161057a9190613e2b565b60405180910390f35b34801561058f57600080fd5b50610598611262565b005b3480156105a657600080fd5b506105af6112ea565b6040516105bc9190613e2b565b60405180910390f35b3480156105d157600080fd5b506105da6112ef565b6040516105e79190613e2b565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061304d565b6112f5565b005b34801561062557600080fd5b5061062e611525565b60405161063b9190613a87565b60405180910390f35b34801561065057600080fd5b5061065961154f565b6040516106669190613b09565b60405180910390f35b34801561067b57600080fd5b506106846115e1565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612f42565b611689565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612ec7565b61169f565b005b3480156106e457600080fd5b506106ff60048036038101906106fa919061304d565b611701565b60405161070c9190613b09565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190612e3c565b6117a8565b6040516107499190613aee565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612e13565b61183c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57506107ed82611934565b5b9050919050565b600d60009054906101000a900460ff1681565b606060008054610817906140e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610843906140e5565b80156108905780601f1061086557610100808354040283529160200191610890565b820191906000526020600020905b81548152906001019060200180831161087357829003601f168201915b5050505050905090565b60006108a582611a16565b6108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db90613ceb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092a82610de4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613d8b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ba611a82565b73ffffffffffffffffffffffffffffffffffffffff1614806109e957506109e8816109e3611a82565b6117a8565b5b610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90613c6b565b60405180910390fd5b610a328383611a8a565b505050565b600c5481565b6000600880549050905090565b610a5b610a55611a82565b82611b43565b610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9190613deb565b60405180910390fd5b610aa5838383611c21565b505050565b600b5481565b6000610abb836111aa565b8210610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390613b6b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b5d611a82565b73ffffffffffffffffffffffffffffffffffffffff16610b7b611525565b73ffffffffffffffffffffffffffffffffffffffff1614610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc890613d0b565b60405180910390fd5b80600c8190555050565b610be3611a82565b73ffffffffffffffffffffffffffffffffffffffff16610c01611525565b73ffffffffffffffffffffffffffffffffffffffff1614610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90613d0b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c9557600080fd5b565b610cb28383836040518060200160405280600081525061169f565b505050565b6000610cc1610a3d565b8210610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990613e0b565b60405180910390fd5b60088281548110610d3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d56611a82565b73ffffffffffffffffffffffffffffffffffffffff16610d74611525565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613d0b565b60405180910390fd5b80600e9080519060200190610de0929190612c37565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613cab565b60405180910390fd5b80915050919050565b600d60009054906101000a900460ff16610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90613dab565b60405180910390fd5b600081118015610ef65750600a8111155b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90613d6b565b60405180910390fd5b600c5481600f54610f469190613f1a565b1115610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90613beb565b60405180910390fd5b80600b54610f959190613fa1565b341015610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613b2b565b60405180910390fd5b600a81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110249190613f1a565b1115611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90613b4b565b60405180910390fd5b6000600f54905081600f600082825461107e9190613f1a565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d49190613f1a565b9250508190555060005b82811015611111576110f03383611e7d565b81806110fb90614117565b925050808061110990614117565b9150506110de565b505050565b600e8054611123906140e5565b80601f016020809104026020016040519081016040528092919081815260200182805461114f906140e5565b801561119c5780601f106111715761010080835404028352916020019161119c565b820191906000526020600020905b81548152906001019060200180831161117f57829003601f168201915b505050505081565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290613c8b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126a611a82565b73ffffffffffffffffffffffffffffffffffffffff16611288611525565b73ffffffffffffffffffffffffffffffffffffffff16146112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613d0b565b60405180910390fd5b6112e86000611e9b565b565b600a81565b60105481565b600d60009054906101000a900460ff16611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b90613dab565b60405180910390fd5b6000811180156113555750600a8111155b611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613d6b565b60405180910390fd5b60105481600f546113a59190613f1a565b11156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90613dcb565b60405180910390fd5b600a81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114339190613f1a565b1115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90613b4b565b60405180910390fd5b6000600f54905081600f600082825461148d9190613f1a565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e39190613f1a565b9250508190555060005b82811015611520576114ff3383611e7d565b818061150a90614117565b925050808061151890614117565b9150506114ed565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461155e906140e5565b80601f016020809104026020016040519081016040528092919081815260200182805461158a906140e5565b80156115d75780601f106115ac576101008083540402835291602001916115d7565b820191906000526020600020905b8154815290600101906020018083116115ba57829003601f168201915b5050505050905090565b6115e9611a82565b73ffffffffffffffffffffffffffffffffffffffff16611607611525565b73ffffffffffffffffffffffffffffffffffffffff161461165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613d0b565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b61169b611694611a82565b8383611f61565b5050565b6116b06116aa611a82565b83611b43565b6116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690613deb565b60405180910390fd5b6116fb848484846120ce565b50505050565b606061170c82611a16565b61174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613d4b565b60405180910390fd5b600061175561212a565b9050600081511161177557604051806020016040528060008152506117a0565b8061177f846121bc565b604051602001611790929190613a58565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611844611a82565b73ffffffffffffffffffffffffffffffffffffffff16611862611525565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613d0b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613bab565b60405180910390fd5b61193181611e9b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a0f5750611a0e82612369565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611afd83610de4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b4e82611a16565b611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613c4b565b60405180910390fd5b6000611b9883610de4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0757508373ffffffffffffffffffffffffffffffffffffffff16611bef8461089a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c185750611c1781856117a8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c4182610de4565b73ffffffffffffffffffffffffffffffffffffffff1614611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613d2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe90613c0b565b60405180910390fd5b611d128383836123d3565b611d1d600082611a8a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6d9190613ffb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc49190613f1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e978282604051806020016040528060008152506124e7565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790613c2b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120c19190613aee565b60405180910390a3505050565b6120d9848484611c21565b6120e584848484612542565b612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90613b8b565b60405180910390fd5b50505050565b6060600e8054612139906140e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612165906140e5565b80156121b25780601f10612187576101008083540402835291602001916121b2565b820191906000526020600020905b81548152906001019060200180831161219557829003601f168201915b5050505050905090565b60606000821415612204576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612364565b600082905060005b6000821461223657808061221f90614117565b915050600a8261222f9190613f70565b915061220c565b60008167ffffffffffffffff811115612278577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122aa5781602001600182028036833780820191505090505b5090505b6000851461235d576001826122c39190613ffb565b9150600a856122d29190614160565b60306122de9190613f1a565b60f81b81838151811061231a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123569190613f70565b94506122ae565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123de8383836126d9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124215761241c816126de565b612460565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461245f5761245e8382612727565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a35761249e81612894565b6124e2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124e1576124e082826129d7565b5b5b505050565b6124f18383612a56565b6124fe6000848484612542565b61253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253490613b8b565b60405180910390fd5b505050565b60006125638473ffffffffffffffffffffffffffffffffffffffff16612c24565b156126cc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261258c611a82565b8786866040518563ffffffff1660e01b81526004016125ae9493929190613aa2565b602060405180830381600087803b1580156125c857600080fd5b505af19250505080156125f957506040513d601f19601f820116820180604052508101906125f69190612fe3565b60015b61267c573d8060008114612629576040519150601f19603f3d011682016040523d82523d6000602084013e61262e565b606091505b50600081511415612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b90613b8b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d1565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612734846111aa565b61273e9190613ffb565b9050600060076000848152602001908152602001600020549050818114612823576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128a89190613ffb565b90506000600960008481526020019081526020016000205490506000600883815481106128fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612946577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129e2836111aa565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90613ccb565b60405180910390fd5b612acf81611a16565b15612b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0690613bcb565b60405180910390fd5b612b1b600083836123d3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6b9190613f1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c43906140e5565b90600052602060002090601f016020900481019282612c655760008555612cac565b82601f10612c7e57805160ff1916838001178555612cac565b82800160010185558215612cac579182015b82811115612cab578251825591602001919060010190612c90565b5b509050612cb99190612cbd565b5090565b5b80821115612cd6576000816000905550600101612cbe565b5090565b6000612ced612ce884613e77565b613e46565b905082815260208101848484011115612d0557600080fd5b612d108482856140a3565b509392505050565b6000612d2b612d2684613ea7565b613e46565b905082815260208101848484011115612d4357600080fd5b612d4e8482856140a3565b509392505050565b600081359050612d658161425e565b92915050565b600081359050612d7a81614275565b92915050565b600081359050612d8f8161428c565b92915050565b600081519050612da48161428c565b92915050565b600082601f830112612dbb57600080fd5b8135612dcb848260208601612cda565b91505092915050565b600082601f830112612de557600080fd5b8135612df5848260208601612d18565b91505092915050565b600081359050612e0d816142a3565b92915050565b600060208284031215612e2557600080fd5b6000612e3384828501612d56565b91505092915050565b60008060408385031215612e4f57600080fd5b6000612e5d85828601612d56565b9250506020612e6e85828601612d56565b9150509250929050565b600080600060608486031215612e8d57600080fd5b6000612e9b86828701612d56565b9350506020612eac86828701612d56565b9250506040612ebd86828701612dfe565b9150509250925092565b60008060008060808587031215612edd57600080fd5b6000612eeb87828801612d56565b9450506020612efc87828801612d56565b9350506040612f0d87828801612dfe565b925050606085013567ffffffffffffffff811115612f2a57600080fd5b612f3687828801612daa565b91505092959194509250565b60008060408385031215612f5557600080fd5b6000612f6385828601612d56565b9250506020612f7485828601612d6b565b9150509250929050565b60008060408385031215612f9157600080fd5b6000612f9f85828601612d56565b9250506020612fb085828601612dfe565b9150509250929050565b600060208284031215612fcc57600080fd5b6000612fda84828501612d80565b91505092915050565b600060208284031215612ff557600080fd5b600061300384828501612d95565b91505092915050565b60006020828403121561301e57600080fd5b600082013567ffffffffffffffff81111561303857600080fd5b61304484828501612dd4565b91505092915050565b60006020828403121561305f57600080fd5b600061306d84828501612dfe565b91505092915050565b61307f8161402f565b82525050565b61308e81614041565b82525050565b600061309f82613ed7565b6130a98185613eed565b93506130b98185602086016140b2565b6130c28161424d565b840191505092915050565b60006130d882613ee2565b6130e28185613efe565b93506130f28185602086016140b2565b6130fb8161424d565b840191505092915050565b600061311182613ee2565b61311b8185613f0f565b935061312b8185602086016140b2565b80840191505092915050565b6000613144603183613efe565b91507f4554482076616c75652073656e7420697320746f6f206c6974746c6520666f7260008301527f2074686973206d616e7920504d415943730000000000000000000000000000006020830152604082019050919050565b60006131aa601b83613efe565b91507f596f75206861766520616c7265616479206d696e7465642031302100000000006000830152602082019050919050565b60006131ea602b83613efe565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613250603283613efe565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006132b6602683613efe565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061331c601c83613efe565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061335c602a83613efe565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620504d41594373000000000000000000000000000000000000000000006020830152604082019050919050565b60006133c2602483613efe565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613428601983613efe565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613468602c83613efe565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006134ce603883613efe565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613534602a83613efe565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061359a602983613efe565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613600602083613efe565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613640602c83613efe565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006136a6600583613f0f565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006136e6602083613efe565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613726602983613efe565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061378c602f83613efe565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006137f2602483613efe565b91507f4d696e7420636f756e7420697320746f6f206c6974746c65206f7220746f6f2060008301527f68696768000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613858602183613efe565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006138be602c83613efe565b91507f506c65617365207761697420756e74696c207468652064726f7020697320616360008301527f7469766520746f206d696e7400000000000000000000000000000000000000006020830152604082019050919050565b6000613924602d83613efe565b91507f50757263686173652077696c6c20657863656564206d617820737570706c792060008301527f6f662066726565206d696e7473000000000000000000000000000000000000006020830152604082019050919050565b600061398a603183613efe565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006139f0602c83613efe565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b613a5281614099565b82525050565b6000613a648285613106565b9150613a708284613106565b9150613a7b82613699565b91508190509392505050565b6000602082019050613a9c6000830184613076565b92915050565b6000608082019050613ab76000830187613076565b613ac46020830186613076565b613ad16040830185613a49565b8181036060830152613ae38184613094565b905095945050505050565b6000602082019050613b036000830184613085565b92915050565b60006020820190508181036000830152613b2381846130cd565b905092915050565b60006020820190508181036000830152613b4481613137565b9050919050565b60006020820190508181036000830152613b648161319d565b9050919050565b60006020820190508181036000830152613b84816131dd565b9050919050565b60006020820190508181036000830152613ba481613243565b9050919050565b60006020820190508181036000830152613bc4816132a9565b9050919050565b60006020820190508181036000830152613be48161330f565b9050919050565b60006020820190508181036000830152613c048161334f565b9050919050565b60006020820190508181036000830152613c24816133b5565b9050919050565b60006020820190508181036000830152613c448161341b565b9050919050565b60006020820190508181036000830152613c648161345b565b9050919050565b60006020820190508181036000830152613c84816134c1565b9050919050565b60006020820190508181036000830152613ca481613527565b9050919050565b60006020820190508181036000830152613cc48161358d565b9050919050565b60006020820190508181036000830152613ce4816135f3565b9050919050565b60006020820190508181036000830152613d0481613633565b9050919050565b60006020820190508181036000830152613d24816136d9565b9050919050565b60006020820190508181036000830152613d4481613719565b9050919050565b60006020820190508181036000830152613d648161377f565b9050919050565b60006020820190508181036000830152613d84816137e5565b9050919050565b60006020820190508181036000830152613da48161384b565b9050919050565b60006020820190508181036000830152613dc4816138b1565b9050919050565b60006020820190508181036000830152613de481613917565b9050919050565b60006020820190508181036000830152613e048161397d565b9050919050565b60006020820190508181036000830152613e24816139e3565b9050919050565b6000602082019050613e406000830184613a49565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e6d57613e6c61421e565b5b8060405250919050565b600067ffffffffffffffff821115613e9257613e9161421e565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ec257613ec161421e565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f2582614099565b9150613f3083614099565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6557613f64614191565b5b828201905092915050565b6000613f7b82614099565b9150613f8683614099565b925082613f9657613f956141c0565b5b828204905092915050565b6000613fac82614099565b9150613fb783614099565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ff057613fef614191565b5b828202905092915050565b600061400682614099565b915061401183614099565b92508282101561402457614023614191565b5b828203905092915050565b600061403a82614079565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140d05780820151818401526020810190506140b5565b838111156140df576000848401525b50505050565b600060028204905060018216806140fd57607f821691505b60208210811415614111576141106141ef565b5b50919050565b600061412282614099565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561415557614154614191565b5b600182019050919050565b600061416b82614099565b915061417683614099565b925082614186576141856141c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6142678161402f565b811461427257600080fd5b50565b61427e81614041565b811461428957600080fd5b50565b6142958161404d565b81146142a057600080fd5b50565b6142ac81614099565b81146142b757600080fd5b5056fea2646970667358221220b00c4f1d2cc036a0c5839fd5786c683ffd523016e966514f0d3512b5f7fea8dd64736f6c63430008000033

Deployed Bytecode Sourcemap

43599:2684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34947:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43807:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21607:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23175:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22698:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43770:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35587:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23925:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43671:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35255:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46184:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44091:112;;;;;;;;;;;;;:::i;:::-;;24335:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35777:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46076:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21301:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45079:873;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43848:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43881:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21031:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42751:103;;;;;;;;;;;;;:::i;:::-;;43722:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43919:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44312:759;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42100:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21776:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44211:93;;;;;;;;;;;;;:::i;:::-;;23468:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24591:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21951:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23694:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43009:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34947:224;35049:4;35088:35;35073:50;;;:11;:50;;;;:90;;;;35127:36;35151:11;35127:23;:36::i;:::-;35073:90;35066:97;;34947:224;;;:::o;43807:34::-;;;;;;;;;;;;;:::o;21607:100::-;21661:13;21694:5;21687:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21607:100;:::o;23175:221::-;23251:7;23279:16;23287:7;23279;:16::i;:::-;23271:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23364:15;:24;23380:7;23364:24;;;;;;;;;;;;;;;;;;;;;23357:31;;23175:221;;;:::o;22698:411::-;22779:13;22795:23;22810:7;22795:14;:23::i;:::-;22779:39;;22843:5;22837:11;;:2;:11;;;;22829:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22937:5;22921:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22946:37;22963:5;22970:12;:10;:12::i;:::-;22946:16;:37::i;:::-;22921:62;22899:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23080:21;23089:2;23093:7;23080:8;:21::i;:::-;22698:411;;;:::o;43770:30::-;;;;:::o;35587:113::-;35648:7;35675:10;:17;;;;35668:24;;35587:113;:::o;23925:339::-;24120:41;24139:12;:10;:12::i;:::-;24153:7;24120:18;:41::i;:::-;24112:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24228:28;24238:4;24244:2;24248:7;24228:9;:28::i;:::-;23925:339;;;:::o;43671:44::-;;;;:::o;35255:256::-;35352:7;35388:23;35405:5;35388:16;:23::i;:::-;35380:5;:31;35372:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35477:12;:19;35490:5;35477:19;;;;;;;;;;;;;;;:26;35497:5;35477:26;;;;;;;;;;;;35470:33;;35255:256;;;;:::o;46184:94::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46261:9:::1;46248:10;:22;;;;46184:94:::0;:::o;44091:112::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44155:10:::1;44147:24;;:47;44172:21;44147:47;;;;;;;;;;;;;;;;;;;;;;;44139:56;;;::::0;::::1;;44091:112::o:0;24335:185::-;24473:39;24490:4;24496:2;24500:7;24473:39;;;;;;;;;;;;:16;:39::i;:::-;24335:185;;;:::o;35777:233::-;35852:7;35888:30;:28;:30::i;:::-;35880:5;:38;35872:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35985:10;35996:5;35985:17;;;;;;;;;;;;;;;;;;;;;;;;35978:24;;35777:233;;;:::o;46076:100::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46158:10:::1;46148:7;:20;;;;;;;;;;;;:::i;:::-;;46076:100:::0;:::o;21301:239::-;21373:7;21393:13;21409:7;:16;21417:7;21409:16;;;;;;;;;;;;;;;;;;;;;21393:32;;21461:1;21444:19;;:5;:19;;;;21436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21527:5;21520:12;;;21301:239;;;:::o;45079:873::-;45153:14;;;;;;;;;;;45145:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45252:1;45235:14;:18;:55;;;;;43761:2;45257:14;:33;;45235:55;45227:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;45383:10;;45365:14;45350:12;;:29;;;;:::i;:::-;:43;;45342:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;45484:14;45472:9;;:26;;;;:::i;:::-;45459:9;:39;;45451:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;45623:2;45605:14;45571:19;:31;45591:10;45571:31;;;;;;;;;;;;;;;;:48;;;;:::i;:::-;:54;;45563:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;45670:18;45691:12;;45670:33;;45730:14;45714:12;;:30;;;;;;;:::i;:::-;;;;;;;;45790:14;45755:19;:31;45775:10;45755:31;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;45822:6;45817:128;45838:14;45834:1;:18;45817:128;;;45873:33;45883:10;45895;45873:9;:33::i;:::-;45921:12;;;;;:::i;:::-;;;;45854:3;;;;;:::i;:::-;;;;45817:128;;;;45079:873;;:::o;43848:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43881:31::-;;;;:::o;21031:208::-;21103:7;21148:1;21131:19;;:5;:19;;;;21123:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21215:9;:16;21225:5;21215:16;;;;;;;;;;;;;;;;21208:23;;21031:208;;;:::o;42751:103::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42816:30:::1;42843:1;42816:18;:30::i;:::-;42751:103::o:0;43722:41::-;43761:2;43722:41;:::o;43919:31::-;;;;:::o;44312:759::-;44382:14;;;;;;;;;;;44374:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44481:1;44464:14;:18;:55;;;;;43761:2;44486:14;:33;;44464:55;44456:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;44612:9;;44594:14;44579:12;;:29;;;;:::i;:::-;:42;;44571:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;44742:2;44724:14;44690:19;:31;44710:10;44690:31;;;;;;;;;;;;;;;;:48;;;;:::i;:::-;:54;;44682:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;44789:18;44810:12;;44789:33;;44849:14;44833:12;;:30;;;;;;;:::i;:::-;;;;;;;;44909:14;44874:19;:31;44894:10;44874:31;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;44941:6;44936:128;44957:14;44953:1;:18;44936:128;;;44992:33;45002:10;45014;44992:9;:33::i;:::-;45040:12;;;;;:::i;:::-;;;;44973:3;;;;;:::i;:::-;;;;44936:128;;;;44312:759;;:::o;42100:87::-;42146:7;42173:6;;;;;;;;;;;42166:13;;42100:87;:::o;21776:104::-;21832:13;21865:7;21858:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21776:104;:::o;44211:93::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44282:14:::1;;;;;;;;;;;44281:15;44264:14;;:32;;;;;;;;;;;;;;;;;;44211:93::o:0;23468:155::-;23563:52;23582:12;:10;:12::i;:::-;23596:8;23606;23563:18;:52::i;:::-;23468:155;;:::o;24591:328::-;24766:41;24785:12;:10;:12::i;:::-;24799:7;24766:18;:41::i;:::-;24758:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24872:39;24886:4;24892:2;24896:7;24905:5;24872:13;:39::i;:::-;24591:328;;;;:::o;21951:343::-;22024:13;22058:16;22066:7;22058;:16::i;:::-;22050:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22139:21;22163:10;:8;:10::i;:::-;22139:34;;22215:1;22197:7;22191:21;:25;:95;;;;;;;;;;;;;;;;;22243:7;22252:18;:7;:16;:18::i;:::-;22226:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22191:95;22184:102;;;21951:343;;;:::o;23694:164::-;23791:4;23815:18;:25;23834:5;23815:25;;;;;;;;;;;;;;;:35;23841:8;23815:35;;;;;;;;;;;;;;;;;;;;;;;;;23808:42;;23694:164;;;;:::o;43009:201::-;42331:12;:10;:12::i;:::-;42320:23;;:7;:5;:7::i;:::-;:23;;;42312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43118:1:::1;43098:22;;:8;:22;;;;43090:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43174:28;43193:8;43174:18;:28::i;:::-;43009:201:::0;:::o;20662:305::-;20764:4;20816:25;20801:40;;;:11;:40;;;;:105;;;;20873:33;20858:48;;;:11;:48;;;;20801:105;:158;;;;20923:36;20947:11;20923:23;:36::i;:::-;20801:158;20781:178;;20662:305;;;:::o;26429:127::-;26494:4;26546:1;26518:30;;:7;:16;26526:7;26518:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26511:37;;26429:127;;;:::o;17058:98::-;17111:7;17138:10;17131:17;;17058:98;:::o;30411:174::-;30513:2;30486:15;:24;30502:7;30486:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30569:7;30565:2;30531:46;;30540:23;30555:7;30540:14;:23::i;:::-;30531:46;;;;;;;;;;;;30411:174;;:::o;26723:348::-;26816:4;26841:16;26849:7;26841;:16::i;:::-;26833:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26917:13;26933:23;26948:7;26933:14;:23::i;:::-;26917:39;;26986:5;26975:16;;:7;:16;;;:51;;;;27019:7;26995:31;;:20;27007:7;26995:11;:20::i;:::-;:31;;;26975:51;:87;;;;27030:32;27047:5;27054:7;27030:16;:32::i;:::-;26975:87;26967:96;;;26723:348;;;;:::o;29715:578::-;29874:4;29847:31;;:23;29862:7;29847:14;:23::i;:::-;:31;;;29839:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29957:1;29943:16;;:2;:16;;;;29935:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30013:39;30034:4;30040:2;30044:7;30013:20;:39::i;:::-;30117:29;30134:1;30138:7;30117:8;:29::i;:::-;30178:1;30159:9;:15;30169:4;30159:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30207:1;30190:9;:13;30200:2;30190:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30238:2;30219:7;:16;30227:7;30219:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30277:7;30273:2;30258:27;;30267:4;30258:27;;;;;;;;;;;;29715:578;;;:::o;27413:110::-;27489:26;27499:2;27503:7;27489:26;;;;;;;;;;;;:9;:26::i;:::-;27413:110;;:::o;43370:191::-;43444:16;43463:6;;;;;;;;;;;43444:25;;43489:8;43480:6;;:17;;;;;;;;;;;;;;;;;;43544:8;43513:40;;43534:8;43513:40;;;;;;;;;;;;43370:191;;:::o;30727:315::-;30882:8;30873:17;;:5;:17;;;;30865:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;30969:8;30931:18;:25;30950:5;30931:25;;;;;;;;;;;;;;;:35;30957:8;30931:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31015:8;30993:41;;31008:5;30993:41;;;31025:8;30993:41;;;;;;:::i;:::-;;;;;;;;30727:315;;;:::o;25801:::-;25958:28;25968:4;25974:2;25978:7;25958:9;:28::i;:::-;26005:48;26028:4;26034:2;26038:7;26047:5;26005:22;:48::i;:::-;25997:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25801:315;;;;:::o;45960:108::-;46020:13;46053:7;46046:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45960:108;:::o;17583:723::-;17639:13;17869:1;17860:5;:10;17856:53;;;17887:10;;;;;;;;;;;;;;;;;;;;;17856:53;17919:12;17934:5;17919:20;;17950:14;17975:78;17990:1;17982:4;:9;17975:78;;18008:8;;;;;:::i;:::-;;;;18039:2;18031:10;;;;;:::i;:::-;;;17975:78;;;18063:19;18095:6;18085:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18063:39;;18113:154;18129:1;18120:5;:10;18113:154;;18157:1;18147:11;;;;;:::i;:::-;;;18224:2;18216:5;:10;;;;:::i;:::-;18203:2;:24;;;;:::i;:::-;18190:39;;18173:6;18180;18173:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18253:2;18244:11;;;;;:::i;:::-;;;18113:154;;;18291:6;18277:21;;;;;17583:723;;;;:::o;8172:157::-;8257:4;8296:25;8281:40;;;:11;:40;;;;8274:47;;8172:157;;;:::o;36623:589::-;36767:45;36794:4;36800:2;36804:7;36767:26;:45::i;:::-;36845:1;36829:18;;:4;:18;;;36825:187;;;36864:40;36896:7;36864:31;:40::i;:::-;36825:187;;;36934:2;36926:10;;:4;:10;;;36922:90;;36953:47;36986:4;36992:7;36953:32;:47::i;:::-;36922:90;36825:187;37040:1;37026:16;;:2;:16;;;37022:183;;;37059:45;37096:7;37059:36;:45::i;:::-;37022:183;;;37132:4;37126:10;;:2;:10;;;37122:83;;37153:40;37181:2;37185:7;37153:27;:40::i;:::-;37122:83;37022:183;36623:589;;;:::o;27750:321::-;27880:18;27886:2;27890:7;27880:5;:18::i;:::-;27931:54;27962:1;27966:2;27970:7;27979:5;27931:22;:54::i;:::-;27909:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27750:321;;;:::o;31607:799::-;31762:4;31783:15;:2;:13;;;:15::i;:::-;31779:620;;;31835:2;31819:36;;;31856:12;:10;:12::i;:::-;31870:4;31876:7;31885:5;31819:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31815:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32078:1;32061:6;:13;:18;32057:272;;;32104:60;;;;;;;;;;:::i;:::-;;;;;;;;32057:272;32279:6;32273:13;32264:6;32260:2;32256:15;32249:38;31815:529;31952:41;;;31942:51;;;:6;:51;;;;31935:58;;;;;31779:620;32383:4;32376:11;;31607:799;;;;;;;:::o;32978:126::-;;;;:::o;37935:164::-;38039:10;:17;;;;38012:15;:24;38028:7;38012:24;;;;;;;;;;;:44;;;;38067:10;38083:7;38067:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37935:164;:::o;38726:988::-;38992:22;39042:1;39017:22;39034:4;39017:16;:22::i;:::-;:26;;;;:::i;:::-;38992:51;;39054:18;39075:17;:26;39093:7;39075:26;;;;;;;;;;;;39054:47;;39222:14;39208:10;:28;39204:328;;39253:19;39275:12;:18;39288:4;39275:18;;;;;;;;;;;;;;;:34;39294:14;39275:34;;;;;;;;;;;;39253:56;;39359:11;39326:12;:18;39339:4;39326:18;;;;;;;;;;;;;;;:30;39345:10;39326:30;;;;;;;;;;;:44;;;;39476:10;39443:17;:30;39461:11;39443:30;;;;;;;;;;;:43;;;;39204:328;;39628:17;:26;39646:7;39628:26;;;;;;;;;;;39621:33;;;39672:12;:18;39685:4;39672:18;;;;;;;;;;;;;;;:34;39691:14;39672:34;;;;;;;;;;;39665:41;;;38726:988;;;;:::o;40009:1079::-;40262:22;40307:1;40287:10;:17;;;;:21;;;;:::i;:::-;40262:46;;40319:18;40340:15;:24;40356:7;40340:24;;;;;;;;;;;;40319:45;;40691:19;40713:10;40724:14;40713:26;;;;;;;;;;;;;;;;;;;;;;;;40691:48;;40777:11;40752:10;40763;40752:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40888:10;40857:15;:28;40873:11;40857:28;;;;;;;;;;;:41;;;;41029:15;:24;41045:7;41029:24;;;;;;;;;;;41022:31;;;41064:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40009:1079;;;;:::o;37513:221::-;37598:14;37615:20;37632:2;37615:16;:20::i;:::-;37598:37;;37673:7;37646:12;:16;37659:2;37646:16;;;;;;;;;;;;;;;:24;37663:6;37646:24;;;;;;;;;;;:34;;;;37720:6;37691:17;:26;37709:7;37691:26;;;;;;;;;;;:35;;;;37513:221;;;:::o;28407:382::-;28501:1;28487:16;;:2;:16;;;;28479:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28560:16;28568:7;28560;:16::i;:::-;28559:17;28551:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28622:45;28651:1;28655:2;28659:7;28622:20;:45::i;:::-;28697:1;28680:9;:13;28690:2;28680:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28728:2;28709:7;:16;28717:7;28709:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28773:7;28769:2;28748:33;;28765:1;28748:33;;;;;;;;;;;;28407:382;;:::o;9102:387::-;9162:4;9370:12;9437:7;9425:20;9417:28;;9480:1;9473:4;:8;9466:15;;;9102:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:381::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:34;7698:1;7693:3;7689:11;7682:55;7768:19;7763:2;7758:3;7754:12;7747:41;7814:2;7809:3;7805:12;7798:19;;7588:235;;;:::o;7829:325::-;;7992:67;8056:2;8051:3;7992:67;:::i;:::-;7985:74;;8089:29;8085:1;8080:3;8076:11;8069:50;8145:2;8140:3;8136:12;8129:19;;7975:179;;;:::o;8160:375::-;;8323:67;8387:2;8382:3;8323:67;:::i;:::-;8316:74;;8420:34;8416:1;8411:3;8407:11;8400:55;8486:13;8481:2;8476:3;8472:12;8465:35;8526:2;8521:3;8517:12;8510:19;;8306:229;;;:::o;8541:382::-;;8704:67;8768:2;8763:3;8704:67;:::i;:::-;8697:74;;8801:34;8797:1;8792:3;8788:11;8781:55;8867:20;8862:2;8857:3;8853:12;8846:42;8914:2;8909:3;8905:12;8898:19;;8687:236;;;:::o;8929:370::-;;9092:67;9156:2;9151:3;9092:67;:::i;:::-;9085:74;;9189:34;9185:1;9180:3;9176:11;9169:55;9255:8;9250:2;9245:3;9241:12;9234:30;9290:2;9285:3;9281:12;9274:19;;9075:224;;;:::o;9305:326::-;;9468:67;9532:2;9527:3;9468:67;:::i;:::-;9461:74;;9565:30;9561:1;9556:3;9552:11;9545:51;9622:2;9617:3;9613:12;9606:19;;9451:180;;;:::o;9637:374::-;;9800:67;9864:2;9859:3;9800:67;:::i;:::-;9793:74;;9897:34;9893:1;9888:3;9884:11;9877:55;9963:12;9958:2;9953:3;9949:12;9942:34;10002:2;9997:3;9993:12;9986:19;;9783:228;;;:::o;10017:368::-;;10180:67;10244:2;10239:3;10180:67;:::i;:::-;10173:74;;10277:34;10273:1;10268:3;10264:11;10257:55;10343:6;10338:2;10333:3;10329:12;10322:28;10376:2;10371:3;10367:12;10360:19;;10163:222;;;:::o;10391:323::-;;10554:67;10618:2;10613:3;10554:67;:::i;:::-;10547:74;;10651:27;10647:1;10642:3;10638:11;10631:48;10705:2;10700:3;10696:12;10689:19;;10537:177;;;:::o;10720:376::-;;10883:67;10947:2;10942:3;10883:67;:::i;:::-;10876:74;;10980:34;10976:1;10971:3;10967:11;10960:55;11046:14;11041:2;11036:3;11032:12;11025:36;11087:2;11082:3;11078:12;11071:19;;10866:230;;;:::o;11102:388::-;;11265:67;11329:2;11324:3;11265:67;:::i;:::-;11258:74;;11362:34;11358:1;11353:3;11349:11;11342:55;11428:26;11423:2;11418:3;11414:12;11407:48;11481:2;11476:3;11472:12;11465:19;;11248:242;;;:::o;11496:374::-;;11659:67;11723:2;11718:3;11659:67;:::i;:::-;11652:74;;11756:34;11752:1;11747:3;11743:11;11736:55;11822:12;11817:2;11812:3;11808:12;11801:34;11861:2;11856:3;11852:12;11845:19;;11642:228;;;:::o;11876:373::-;;12039:67;12103:2;12098:3;12039:67;:::i;:::-;12032:74;;12136:34;12132:1;12127:3;12123:11;12116:55;12202:11;12197:2;12192:3;12188:12;12181:33;12240:2;12235:3;12231:12;12224:19;;12022:227;;;:::o;12255:330::-;;12418:67;12482:2;12477:3;12418:67;:::i;:::-;12411:74;;12515:34;12511:1;12506:3;12502:11;12495:55;12576:2;12571:3;12567:12;12560:19;;12401:184;;;:::o;12591:376::-;;12754:67;12818:2;12813:3;12754:67;:::i;:::-;12747:74;;12851:34;12847:1;12842:3;12838:11;12831:55;12917:14;12912:2;12907:3;12903:12;12896:36;12958:2;12953:3;12949:12;12942:19;;12737:230;;;:::o;12973:337::-;;13154:84;13236:1;13231:3;13154:84;:::i;:::-;13147:91;;13268:7;13264:1;13259:3;13255:11;13248:28;13302:1;13297:3;13293:11;13286:18;;13137:173;;;:::o;13316:330::-;;13479:67;13543:2;13538:3;13479:67;:::i;:::-;13472:74;;13576:34;13572:1;13567:3;13563:11;13556:55;13637:2;13632:3;13628:12;13621:19;;13462:184;;;:::o;13652:373::-;;13815:67;13879:2;13874:3;13815:67;:::i;:::-;13808:74;;13912:34;13908:1;13903:3;13899:11;13892:55;13978:11;13973:2;13968:3;13964:12;13957:33;14016:2;14011:3;14007:12;14000:19;;13798:227;;;:::o;14031:379::-;;14194:67;14258:2;14253:3;14194:67;:::i;:::-;14187:74;;14291:34;14287:1;14282:3;14278:11;14271:55;14357:17;14352:2;14347:3;14343:12;14336:39;14401:2;14396:3;14392:12;14385:19;;14177:233;;;:::o;14416:368::-;;14579:67;14643:2;14638:3;14579:67;:::i;:::-;14572:74;;14676:34;14672:1;14667:3;14663:11;14656:55;14742:6;14737:2;14732:3;14728:12;14721:28;14775:2;14770:3;14766:12;14759:19;;14562:222;;;:::o;14790:365::-;;14953:67;15017:2;15012:3;14953:67;:::i;:::-;14946:74;;15050:34;15046:1;15041:3;15037:11;15030:55;15116:3;15111:2;15106:3;15102:12;15095:25;15146:2;15141:3;15137:12;15130:19;;14936:219;;;:::o;15161:376::-;;15324:67;15388:2;15383:3;15324:67;:::i;:::-;15317:74;;15421:34;15417:1;15412:3;15408:11;15401:55;15487:14;15482:2;15477:3;15473:12;15466:36;15528:2;15523:3;15519:12;15512:19;;15307:230;;;:::o;15543:377::-;;15706:67;15770:2;15765:3;15706:67;:::i;:::-;15699:74;;15803:34;15799:1;15794:3;15790:11;15783:55;15869:15;15864:2;15859:3;15855:12;15848:37;15911:2;15906:3;15902:12;15895:19;;15689:231;;;:::o;15926:381::-;;16089:67;16153:2;16148:3;16089:67;:::i;:::-;16082:74;;16186:34;16182:1;16177:3;16173:11;16166:55;16252:19;16247:2;16242:3;16238:12;16231:41;16298:2;16293:3;16289:12;16282:19;;16072:235;;;:::o;16313:376::-;;16476:67;16540:2;16535:3;16476:67;:::i;:::-;16469:74;;16573:34;16569:1;16564:3;16560:11;16553:55;16639:14;16634:2;16629:3;16625:12;16618:36;16680:2;16675:3;16671:12;16664:19;;16459:230;;;:::o;16695:118::-;16782:24;16800:5;16782:24;:::i;:::-;16777:3;16770:37;16760:53;;:::o;16819:701::-;;17122:95;17213:3;17204:6;17122:95;:::i;:::-;17115:102;;17234:95;17325:3;17316:6;17234:95;:::i;:::-;17227:102;;17346:148;17490:3;17346:148;:::i;:::-;17339:155;;17511:3;17504:10;;17104:416;;;;;:::o;17526:222::-;;17657:2;17646:9;17642:18;17634:26;;17670:71;17738:1;17727:9;17723:17;17714:6;17670:71;:::i;:::-;17624:124;;;;:::o;17754:640::-;;17987:3;17976:9;17972:19;17964:27;;18001:71;18069:1;18058:9;18054:17;18045:6;18001:71;:::i;:::-;18082:72;18150:2;18139:9;18135:18;18126:6;18082:72;:::i;:::-;18164;18232:2;18221:9;18217:18;18208:6;18164:72;:::i;:::-;18283:9;18277:4;18273:20;18268:2;18257:9;18253:18;18246:48;18311:76;18382:4;18373:6;18311:76;:::i;:::-;18303:84;;17954:440;;;;;;;:::o;18400:210::-;;18525:2;18514:9;18510:18;18502:26;;18538:65;18600:1;18589:9;18585:17;18576:6;18538:65;:::i;:::-;18492:118;;;;:::o;18616:313::-;;18767:2;18756:9;18752:18;18744:26;;18816:9;18810:4;18806:20;18802:1;18791:9;18787:17;18780:47;18844:78;18917:4;18908:6;18844:78;:::i;:::-;18836:86;;18734:195;;;;:::o;18935:419::-;;19139:2;19128:9;19124:18;19116:26;;19188:9;19182:4;19178:20;19174:1;19163:9;19159:17;19152:47;19216:131;19342:4;19216:131;:::i;:::-;19208:139;;19106:248;;;:::o;19360:419::-;;19564:2;19553:9;19549:18;19541:26;;19613:9;19607:4;19603:20;19599:1;19588:9;19584:17;19577:47;19641:131;19767:4;19641:131;:::i;:::-;19633:139;;19531:248;;;:::o;19785:419::-;;19989:2;19978:9;19974:18;19966:26;;20038:9;20032:4;20028:20;20024:1;20013:9;20009:17;20002:47;20066:131;20192:4;20066:131;:::i;:::-;20058:139;;19956:248;;;:::o;20210:419::-;;20414:2;20403:9;20399:18;20391:26;;20463:9;20457:4;20453:20;20449:1;20438:9;20434:17;20427:47;20491:131;20617:4;20491:131;:::i;:::-;20483:139;;20381:248;;;:::o;20635:419::-;;20839:2;20828:9;20824:18;20816:26;;20888:9;20882:4;20878:20;20874:1;20863:9;20859:17;20852:47;20916:131;21042:4;20916:131;:::i;:::-;20908:139;;20806:248;;;:::o;21060:419::-;;21264:2;21253:9;21249:18;21241:26;;21313:9;21307:4;21303:20;21299:1;21288:9;21284:17;21277:47;21341:131;21467:4;21341:131;:::i;:::-;21333:139;;21231:248;;;:::o;21485:419::-;;21689:2;21678:9;21674:18;21666:26;;21738:9;21732:4;21728:20;21724:1;21713:9;21709:17;21702:47;21766:131;21892:4;21766:131;:::i;:::-;21758:139;;21656:248;;;:::o;21910:419::-;;22114:2;22103:9;22099:18;22091:26;;22163:9;22157:4;22153:20;22149:1;22138:9;22134:17;22127:47;22191:131;22317:4;22191:131;:::i;:::-;22183:139;;22081:248;;;:::o;22335:419::-;;22539:2;22528:9;22524:18;22516:26;;22588:9;22582:4;22578:20;22574:1;22563:9;22559:17;22552:47;22616:131;22742:4;22616:131;:::i;:::-;22608:139;;22506:248;;;:::o;22760:419::-;;22964:2;22953:9;22949:18;22941:26;;23013:9;23007:4;23003:20;22999:1;22988:9;22984:17;22977:47;23041:131;23167:4;23041:131;:::i;:::-;23033:139;;22931:248;;;:::o;23185:419::-;;23389:2;23378:9;23374:18;23366:26;;23438:9;23432:4;23428:20;23424:1;23413:9;23409:17;23402:47;23466:131;23592:4;23466:131;:::i;:::-;23458:139;;23356:248;;;:::o;23610:419::-;;23814:2;23803:9;23799:18;23791:26;;23863:9;23857:4;23853:20;23849:1;23838:9;23834:17;23827:47;23891:131;24017:4;23891:131;:::i;:::-;23883:139;;23781:248;;;:::o;24035:419::-;;24239:2;24228:9;24224:18;24216:26;;24288:9;24282:4;24278:20;24274:1;24263:9;24259:17;24252:47;24316:131;24442:4;24316:131;:::i;:::-;24308:139;;24206:248;;;:::o;24460:419::-;;24664:2;24653:9;24649:18;24641:26;;24713:9;24707:4;24703:20;24699:1;24688:9;24684:17;24677:47;24741:131;24867:4;24741:131;:::i;:::-;24733:139;;24631:248;;;:::o;24885:419::-;;25089:2;25078:9;25074:18;25066:26;;25138:9;25132:4;25128:20;25124:1;25113:9;25109:17;25102:47;25166:131;25292:4;25166:131;:::i;:::-;25158:139;;25056:248;;;:::o;25310:419::-;;25514:2;25503:9;25499:18;25491:26;;25563:9;25557:4;25553:20;25549:1;25538:9;25534:17;25527:47;25591:131;25717:4;25591:131;:::i;:::-;25583:139;;25481:248;;;:::o;25735:419::-;;25939:2;25928:9;25924:18;25916:26;;25988:9;25982:4;25978:20;25974:1;25963:9;25959:17;25952:47;26016:131;26142:4;26016:131;:::i;:::-;26008:139;;25906:248;;;:::o;26160:419::-;;26364:2;26353:9;26349:18;26341:26;;26413:9;26407:4;26403:20;26399:1;26388:9;26384:17;26377:47;26441:131;26567:4;26441:131;:::i;:::-;26433:139;;26331:248;;;:::o;26585:419::-;;26789:2;26778:9;26774:18;26766:26;;26838:9;26832:4;26828:20;26824:1;26813:9;26809:17;26802:47;26866:131;26992:4;26866:131;:::i;:::-;26858:139;;26756:248;;;:::o;27010:419::-;;27214:2;27203:9;27199:18;27191:26;;27263:9;27257:4;27253:20;27249:1;27238:9;27234:17;27227:47;27291:131;27417:4;27291:131;:::i;:::-;27283:139;;27181:248;;;:::o;27435:419::-;;27639:2;27628:9;27624:18;27616:26;;27688:9;27682:4;27678:20;27674:1;27663:9;27659:17;27652:47;27716:131;27842:4;27716:131;:::i;:::-;27708:139;;27606:248;;;:::o;27860:419::-;;28064:2;28053:9;28049:18;28041:26;;28113:9;28107:4;28103:20;28099:1;28088:9;28084:17;28077:47;28141:131;28267:4;28141:131;:::i;:::-;28133:139;;28031:248;;;:::o;28285:419::-;;28489:2;28478:9;28474:18;28466:26;;28538:9;28532:4;28528:20;28524:1;28513:9;28509:17;28502:47;28566:131;28692:4;28566:131;:::i;:::-;28558:139;;28456:248;;;:::o;28710:419::-;;28914:2;28903:9;28899:18;28891:26;;28963:9;28957:4;28953:20;28949:1;28938:9;28934:17;28927:47;28991:131;29117:4;28991:131;:::i;:::-;28983:139;;28881:248;;;:::o;29135:222::-;;29266:2;29255:9;29251:18;29243:26;;29279:71;29347:1;29336:9;29332:17;29323:6;29279:71;:::i;:::-;29233:124;;;;:::o;29363:283::-;;29429:2;29423:9;29413:19;;29471:4;29463:6;29459:17;29578:6;29566:10;29563:22;29542:18;29530:10;29527:34;29524:62;29521:2;;;29589:18;;:::i;:::-;29521:2;29629:10;29625:2;29618:22;29403:243;;;;:::o;29652:331::-;;29803:18;29795:6;29792:30;29789:2;;;29825:18;;:::i;:::-;29789:2;29910:4;29906:9;29899:4;29891:6;29887:17;29883:33;29875:41;;29971:4;29965;29961:15;29953:23;;29718:265;;;:::o;29989:332::-;;30141:18;30133:6;30130:30;30127:2;;;30163:18;;:::i;:::-;30127:2;30248:4;30244:9;30237:4;30229:6;30225:17;30221:33;30213:41;;30309:4;30303;30299:15;30291:23;;30056:265;;;:::o;30327:98::-;;30412:5;30406:12;30396:22;;30385:40;;;:::o;30431:99::-;;30517:5;30511:12;30501:22;;30490:40;;;:::o;30536:168::-;;30653:6;30648:3;30641:19;30693:4;30688:3;30684:14;30669:29;;30631:73;;;;:::o;30710:169::-;;30828:6;30823:3;30816:19;30868:4;30863:3;30859:14;30844:29;;30806:73;;;;:::o;30885:148::-;;31024:3;31009:18;;30999:34;;;;:::o;31039:305::-;;31098:20;31116:1;31098:20;:::i;:::-;31093:25;;31132:20;31150:1;31132:20;:::i;:::-;31127:25;;31286:1;31218:66;31214:74;31211:1;31208:81;31205:2;;;31292:18;;:::i;:::-;31205:2;31336:1;31333;31329:9;31322:16;;31083:261;;;;:::o;31350:185::-;;31407:20;31425:1;31407:20;:::i;:::-;31402:25;;31441:20;31459:1;31441:20;:::i;:::-;31436:25;;31480:1;31470:2;;31485:18;;:::i;:::-;31470:2;31527:1;31524;31520:9;31515:14;;31392:143;;;;:::o;31541:348::-;;31604:20;31622:1;31604:20;:::i;:::-;31599:25;;31638:20;31656:1;31638:20;:::i;:::-;31633:25;;31826:1;31758:66;31754:74;31751:1;31748:81;31743:1;31736:9;31729:17;31725:105;31722:2;;;31833:18;;:::i;:::-;31722:2;31881:1;31878;31874:9;31863:20;;31589:300;;;;:::o;31895:191::-;;31955:20;31973:1;31955:20;:::i;:::-;31950:25;;31989:20;32007:1;31989:20;:::i;:::-;31984:25;;32028:1;32025;32022:8;32019:2;;;32033:18;;:::i;:::-;32019:2;32078:1;32075;32071:9;32063:17;;31940:146;;;;:::o;32092:96::-;;32158:24;32176:5;32158:24;:::i;:::-;32147:35;;32137:51;;;:::o;32194:90::-;;32271:5;32264:13;32257:21;32246:32;;32236:48;;;:::o;32290:149::-;;32366:66;32359:5;32355:78;32344:89;;32334:105;;;:::o;32445:126::-;;32522:42;32515:5;32511:54;32500:65;;32490:81;;;:::o;32577:77::-;;32643:5;32632:16;;32622:32;;;:::o;32660:154::-;32744:6;32739:3;32734;32721:30;32806:1;32797:6;32792:3;32788:16;32781:27;32711:103;;;:::o;32820:307::-;32888:1;32898:113;32912:6;32909:1;32906:13;32898:113;;;32997:1;32992:3;32988:11;32982:18;32978:1;32973:3;32969:11;32962:39;32934:2;32931:1;32927:10;32922:15;;32898:113;;;33029:6;33026:1;33023:13;33020:2;;;33109:1;33100:6;33095:3;33091:16;33084:27;33020:2;32869:258;;;;:::o;33133:320::-;;33214:1;33208:4;33204:12;33194:22;;33261:1;33255:4;33251:12;33282:18;33272:2;;33338:4;33330:6;33326:17;33316:27;;33272:2;33400;33392:6;33389:14;33369:18;33366:38;33363:2;;;33419:18;;:::i;:::-;33363:2;33184:269;;;;:::o;33459:233::-;;33521:24;33539:5;33521:24;:::i;:::-;33512:33;;33567:66;33560:5;33557:77;33554:2;;;33637:18;;:::i;:::-;33554:2;33684:1;33677:5;33673:13;33666:20;;33502:190;;;:::o;33698:176::-;;33747:20;33765:1;33747:20;:::i;:::-;33742:25;;33781:20;33799:1;33781:20;:::i;:::-;33776:25;;33820:1;33810:2;;33825:18;;:::i;:::-;33810:2;33866:1;33863;33859:9;33854:14;;33732:142;;;;:::o;33880:180::-;33928:77;33925:1;33918:88;34025:4;34022:1;34015:15;34049:4;34046:1;34039:15;34066:180;34114:77;34111:1;34104:88;34211:4;34208:1;34201:15;34235:4;34232:1;34225:15;34252:180;34300:77;34297:1;34290:88;34397:4;34394:1;34387:15;34421:4;34418:1;34411:15;34438:180;34486:77;34483:1;34476:88;34583:4;34580:1;34573:15;34607:4;34604:1;34597:15;34624:102;;34716:2;34712:7;34707:2;34700:5;34696:14;34692:28;34682:38;;34672:54;;;:::o;34732:122::-;34805:24;34823:5;34805:24;:::i;:::-;34798:5;34795:35;34785:2;;34844:1;34841;34834:12;34785:2;34775:79;:::o;34860:116::-;34930:21;34945:5;34930:21;:::i;:::-;34923:5;34920:32;34910:2;;34966:1;34963;34956:12;34910:2;34900:76;:::o;34982:120::-;35054:23;35071:5;35054:23;:::i;:::-;35047:5;35044:34;35034:2;;35092:1;35089;35082:12;35034:2;35024:78;:::o;35108:122::-;35181:24;35199:5;35181:24;:::i;:::-;35174:5;35171:35;35161:2;;35220:1;35217;35210:12;35161:2;35151:79;:::o

Swarm Source

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