APE Price: $1.03 (-18.24%)

CreativeCommoners (CC0s)

Overview

TokenID

600

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CreativeCommoners

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-25
*/

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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


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

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

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


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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/CreativeCommoners.sol



pragma solidity ^0.8.0;





contract CreativeCommoners is ERC721, ERC721Enumerable, Ownable {
    using Address for address;
    //#USUAL FARE
    string public baseURI;

    bool public saleActive = false;
    uint256 public MAX_MINT_IS_TWO = 2;
    
    uint256 public price = 0.0 ether;
    uint256 public constant MAX_CC0S = 2222;
    mapping(address => uint256) private mintCount;


    // The following functions are overrides required by Solidity.

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

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


    constructor() ERC721("CreativeCommoners", "CC0s") {
    }

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


    function mint(uint256 numberOfMints) public payable {
        address _to = msg.sender;
        uint256 minted = mintCount[_to];

        require(saleActive,                                         "Sale must be active to mint");
        require(numberOfMints > 0 && numberOfMints < 3,             "Invalid purchase amount");
        require(minted + numberOfMints < MAX_MINT_IS_TWO + 1, "mint over max");
        require(totalSupply() + numberOfMints < MAX_CC0S + 1,         "Purchase would exceed max supply of tokens");
        require(msg.sender == tx.origin,"message being sent doesn't not match origin");
        mintCount[_to] = minted + numberOfMints;

        for (uint i = 0; i < numberOfMints; i++) {
            uint mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex + 1);
            }
    }

    // Only Owner executable functions
    function mintByOwner(address _to, uint256 _mintAmount) external onlyOwner {
        _safeMint(_to, _mintAmount);
    }



    
    //#SETTERS
    function setBaseURI(string memory _newURI) external onlyOwner {
        baseURI = _newURI;
    }

    function toggleSale() public onlyOwner {
        saleActive = !saleActive;
    }  

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

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

}

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":[],"name":"MAX_CC0S","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_IS_TWO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506002600d556000600e553480156200003657600080fd5b506040518060400160405280601181526020017f4372656174697665436f6d6d6f6e6572730000000000000000000000000000008152506040518060400160405280600481526020017f43433073000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620001cb565b508060019080519060200190620000d4929190620001cb565b505050620000f7620000eb620000fd60201b60201c565b6200010560201b60201c565b620002e0565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d9906200027b565b90600052602060002090601f016020900481019282620001fd576000855562000249565b82601f106200021857805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002485782518255916020019190600101906200022b565b5b5090506200025891906200025c565b5090565b5b80821115620002775760008160009055506001016200025d565b5090565b600060028204905060018216806200029457607f821691505b60208210811415620002ab57620002aa620002b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6140f080620002f06000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610641578063e985e9c51461067e578063ed3c121d146106bb578063f2fde38b146106e6576101cd565b8063a0712d68146105a8578063a22cb465146105c4578063b88d4fde146105ed578063c28e355c14610616576101cd565b80638da5cb5b116100d15780638da5cb5b146104fe57806391b7f5ed1461052957806395d89b4114610552578063a035b1fe1461057d576101cd565b806370a0823114610493578063715018a6146104d05780637d8966e4146104e7576101cd565b80633542aee21161016f57806355f804b31161013e57806355f804b3146103d75780636352211e1461040057806368428a1b1461043d5780636c0360eb14610468576101cd565b80633542aee2146103315780633ccfd60b1461035a57806342842e0e146103715780634f6ccce71461039a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612df6565b61070f565b6040516102069190613332565b60405180910390f35b34801561021b57600080fd5b50610224610721565b604051610231919061334d565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e89565b6107b3565b60405161026e91906132cb565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612dba565b610838565b005b3480156102ac57600080fd5b506102b5610950565b6040516102c2919061364f565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612cb4565b61095d565b005b34801561030057600080fd5b5061031b60048036038101906103169190612dba565b6109bd565b604051610328919061364f565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612dba565b610a62565b005b34801561036657600080fd5b5061036f610aec565b005b34801561037d57600080fd5b5061039860048036038101906103939190612cb4565b610bb7565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e89565b610bd7565b6040516103ce919061364f565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612e48565b610c6e565b005b34801561040c57600080fd5b5061042760048036038101906104229190612e89565b610d04565b60405161043491906132cb565b60405180910390f35b34801561044957600080fd5b50610452610db6565b60405161045f9190613332565b60405180910390f35b34801561047457600080fd5b5061047d610dc9565b60405161048a919061334d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612c4f565b610e57565b6040516104c7919061364f565b60405180910390f35b3480156104dc57600080fd5b506104e5610f0f565b005b3480156104f357600080fd5b506104fc610f97565b005b34801561050a57600080fd5b5061051361103f565b60405161052091906132cb565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190612e89565b611069565b005b34801561055e57600080fd5b506105676110ef565b604051610574919061334d565b60405180910390f35b34801561058957600080fd5b50610592611181565b60405161059f919061364f565b60405180910390f35b6105c260048036038101906105bd9190612e89565b611187565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612d7e565b61142f565b005b3480156105f957600080fd5b50610614600480360381019061060f9190612d03565b611445565b005b34801561062257600080fd5b5061062b6114a7565b604051610638919061364f565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612e89565b6114ad565b604051610675919061334d565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612c78565b611554565b6040516106b29190613332565b60405180910390f35b3480156106c757600080fd5b506106d06115e8565b6040516106dd919061364f565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612c4f565b6115ee565b005b600061071a826116e6565b9050919050565b606060008054610730906138a5565b80601f016020809104026020016040519081016040528092919081815260200182805461075c906138a5565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be82611760565b6107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f49061352f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084382610d04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab906135cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d36117cc565b73ffffffffffffffffffffffffffffffffffffffff1614806109025750610901816108fc6117cc565b611554565b5b610941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109389061348f565b60405180910390fd5b61094b83836117d4565b505050565b6000600880549050905090565b61096e6109686117cc565b8261188d565b6109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a4906135ef565b60405180910390fd5b6109b883838361196b565b505050565b60006109c883610e57565b8210610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a009061336f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a6a6117cc565b73ffffffffffffffffffffffffffffffffffffffff16610a8861103f565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad59061354f565b60405180910390fd5b610ae88282611bc7565b5050565b610af46117cc565b73ffffffffffffffffffffffffffffffffffffffff16610b1261103f565b73ffffffffffffffffffffffffffffffffffffffff1614610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f9061354f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bb3573d6000803e3d6000fd5b5050565b610bd283838360405180602001604052806000815250611445565b505050565b6000610be1610950565b8210610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061360f565b60405180910390fd5b60088281548110610c5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610c766117cc565b73ffffffffffffffffffffffffffffffffffffffff16610c9461103f565b73ffffffffffffffffffffffffffffffffffffffff1614610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce19061354f565b60405180910390fd5b80600b9080519060200190610d00929190612a73565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906134cf565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b600b8054610dd6906138a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e02906138a5565b8015610e4f5780601f10610e2457610100808354040283529160200191610e4f565b820191906000526020600020905b815481529060010190602001808311610e3257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf906134af565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f176117cc565b73ffffffffffffffffffffffffffffffffffffffff16610f3561103f565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f829061354f565b60405180910390fd5b610f956000611be5565b565b610f9f6117cc565b73ffffffffffffffffffffffffffffffffffffffff16610fbd61103f565b73ffffffffffffffffffffffffffffffffffffffff1614611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a9061354f565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110716117cc565b73ffffffffffffffffffffffffffffffffffffffff1661108f61103f565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061354f565b60405180910390fd5b80600e8190555050565b6060600180546110fe906138a5565b80601f016020809104026020016040519081016040528092919081815260200182805461112a906138a5565b80156111775780601f1061114c57610100808354040283529160200191611177565b820191906000526020600020905b81548152906001019060200180831161115a57829003601f168201915b5050505050905090565b600e5481565b60003390506000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60009054906101000a900460ff1661121f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112169061344f565b60405180910390fd5b60008311801561122f5750600383105b61126e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112659061362f565b60405180910390fd5b6001600d5461127d9190613734565b83826112899190613734565b106112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c0906135af565b60405180910390fd5b60016108ae6112d89190613734565b836112e1610950565b6112eb9190613734565b1061132b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611322906134ef565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611390906133af565b60405180910390fd5b82816113a59190613734565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b838110156114295760006113fd610950565b9050611415336001836114109190613734565b611bc7565b50808061142190613908565b9150506113eb565b50505050565b61144161143a6117cc565b8383611cab565b5050565b6114566114506117cc565b8361188d565b611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c906135ef565b60405180910390fd5b6114a184848484611e18565b50505050565b6108ae81565b60606114b882611760565b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee9061358f565b60405180910390fd5b6000611501611e74565b90506000815111611521576040518060200160405280600081525061154c565b8061152b84611f06565b60405160200161153c9291906132a7565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b6115f66117cc565b73ffffffffffffffffffffffffffffffffffffffff1661161461103f565b73ffffffffffffffffffffffffffffffffffffffff161461166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061354f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906133cf565b60405180910390fd5b6116e381611be5565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117595750611758826120b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184783610d04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061189882611760565b6118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce9061346f565b60405180910390fd5b60006118e283610d04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061195157508373ffffffffffffffffffffffffffffffffffffffff16611939846107b3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061196257506119618185611554565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661198b82610d04565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d89061356f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a489061340f565b60405180910390fd5b611a5c838383612195565b611a676000826117d4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab791906137bb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0e9190613734565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611be18282604051806020016040528060008152506121a5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119061342f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0b9190613332565b60405180910390a3505050565b611e2384848461196b565b611e2f84848484612200565b611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e659061338f565b60405180910390fd5b50505050565b6060600b8054611e83906138a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611eaf906138a5565b8015611efc5780601f10611ed157610100808354040283529160200191611efc565b820191906000526020600020905b815481529060010190602001808311611edf57829003601f168201915b5050505050905090565b60606000821415611f4e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120ae565b600082905060005b60008214611f80578080611f6990613908565b915050600a82611f79919061378a565b9150611f56565b60008167ffffffffffffffff811115611fc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ff45781602001600182028036833780820191505090505b5090505b600085146120a75760018261200d91906137bb565b9150600a8561201c9190613951565b60306120289190613734565b60f81b818381518110612064577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120a0919061378a565b9450611ff8565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061217e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061218e575061218d82612397565b5b9050919050565b6121a0838383612401565b505050565b6121af8383612515565b6121bc6000848484612200565b6121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f29061338f565b60405180910390fd5b505050565b60006122218473ffffffffffffffffffffffffffffffffffffffff166126e3565b1561238a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261224a6117cc565b8786866040518563ffffffff1660e01b815260040161226c94939291906132e6565b602060405180830381600087803b15801561228657600080fd5b505af19250505080156122b757506040513d601f19601f820116820180604052508101906122b49190612e1f565b60015b61233a573d80600081146122e7576040519150601f19603f3d011682016040523d82523d6000602084013e6122ec565b606091505b50600081511415612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123299061338f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061238f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61240c8383836126f6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244f5761244a816126fb565b61248e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248d5761248c8382612744565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d1576124cc816128b1565b612510565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461250f5761250e82826129f4565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257c9061350f565b60405180910390fd5b61258e81611760565b156125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c5906133ef565b60405180910390fd5b6125da60008383612195565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262a9190613734565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161275184610e57565b61275b91906137bb565b9050600060076000848152602001908152602001600020549050818114612840576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128c591906137bb565b905060006009600084815260200190815260200160002054905060006008838154811061291b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612963577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129ff83610e57565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612a7f906138a5565b90600052602060002090601f016020900481019282612aa15760008555612ae8565b82601f10612aba57805160ff1916838001178555612ae8565b82800160010185558215612ae8579182015b82811115612ae7578251825591602001919060010190612acc565b5b509050612af59190612af9565b5090565b5b80821115612b12576000816000905550600101612afa565b5090565b6000612b29612b248461368f565b61366a565b905082815260208101848484011115612b4157600080fd5b612b4c848285613863565b509392505050565b6000612b67612b62846136c0565b61366a565b905082815260208101848484011115612b7f57600080fd5b612b8a848285613863565b509392505050565b600081359050612ba18161405e565b92915050565b600081359050612bb681614075565b92915050565b600081359050612bcb8161408c565b92915050565b600081519050612be08161408c565b92915050565b600082601f830112612bf757600080fd5b8135612c07848260208601612b16565b91505092915050565b600082601f830112612c2157600080fd5b8135612c31848260208601612b54565b91505092915050565b600081359050612c49816140a3565b92915050565b600060208284031215612c6157600080fd5b6000612c6f84828501612b92565b91505092915050565b60008060408385031215612c8b57600080fd5b6000612c9985828601612b92565b9250506020612caa85828601612b92565b9150509250929050565b600080600060608486031215612cc957600080fd5b6000612cd786828701612b92565b9350506020612ce886828701612b92565b9250506040612cf986828701612c3a565b9150509250925092565b60008060008060808587031215612d1957600080fd5b6000612d2787828801612b92565b9450506020612d3887828801612b92565b9350506040612d4987828801612c3a565b925050606085013567ffffffffffffffff811115612d6657600080fd5b612d7287828801612be6565b91505092959194509250565b60008060408385031215612d9157600080fd5b6000612d9f85828601612b92565b9250506020612db085828601612ba7565b9150509250929050565b60008060408385031215612dcd57600080fd5b6000612ddb85828601612b92565b9250506020612dec85828601612c3a565b9150509250929050565b600060208284031215612e0857600080fd5b6000612e1684828501612bbc565b91505092915050565b600060208284031215612e3157600080fd5b6000612e3f84828501612bd1565b91505092915050565b600060208284031215612e5a57600080fd5b600082013567ffffffffffffffff811115612e7457600080fd5b612e8084828501612c10565b91505092915050565b600060208284031215612e9b57600080fd5b6000612ea984828501612c3a565b91505092915050565b612ebb816137ef565b82525050565b612eca81613801565b82525050565b6000612edb826136f1565b612ee58185613707565b9350612ef5818560208601613872565b612efe81613a3e565b840191505092915050565b6000612f14826136fc565b612f1e8185613718565b9350612f2e818560208601613872565b612f3781613a3e565b840191505092915050565b6000612f4d826136fc565b612f578185613729565b9350612f67818560208601613872565b80840191505092915050565b6000612f80602b83613718565b9150612f8b82613a4f565b604082019050919050565b6000612fa3603283613718565b9150612fae82613a9e565b604082019050919050565b6000612fc6602b83613718565b9150612fd182613aed565b604082019050919050565b6000612fe9602683613718565b9150612ff482613b3c565b604082019050919050565b600061300c601c83613718565b915061301782613b8b565b602082019050919050565b600061302f602483613718565b915061303a82613bb4565b604082019050919050565b6000613052601983613718565b915061305d82613c03565b602082019050919050565b6000613075601b83613718565b915061308082613c2c565b602082019050919050565b6000613098602c83613718565b91506130a382613c55565b604082019050919050565b60006130bb603883613718565b91506130c682613ca4565b604082019050919050565b60006130de602a83613718565b91506130e982613cf3565b604082019050919050565b6000613101602983613718565b915061310c82613d42565b604082019050919050565b6000613124602a83613718565b915061312f82613d91565b604082019050919050565b6000613147602083613718565b915061315282613de0565b602082019050919050565b600061316a602c83613718565b915061317582613e09565b604082019050919050565b600061318d602083613718565b915061319882613e58565b602082019050919050565b60006131b0602983613718565b91506131bb82613e81565b604082019050919050565b60006131d3602f83613718565b91506131de82613ed0565b604082019050919050565b60006131f6600d83613718565b915061320182613f1f565b602082019050919050565b6000613219602183613718565b915061322482613f48565b604082019050919050565b600061323c603183613718565b915061324782613f97565b604082019050919050565b600061325f602c83613718565b915061326a82613fe6565b604082019050919050565b6000613282601783613718565b915061328d82614035565b602082019050919050565b6132a181613859565b82525050565b60006132b38285612f42565b91506132bf8284612f42565b91508190509392505050565b60006020820190506132e06000830184612eb2565b92915050565b60006080820190506132fb6000830187612eb2565b6133086020830186612eb2565b6133156040830185613298565b81810360608301526133278184612ed0565b905095945050505050565b60006020820190506133476000830184612ec1565b92915050565b600060208201905081810360008301526133678184612f09565b905092915050565b6000602082019050818103600083015261338881612f73565b9050919050565b600060208201905081810360008301526133a881612f96565b9050919050565b600060208201905081810360008301526133c881612fb9565b9050919050565b600060208201905081810360008301526133e881612fdc565b9050919050565b6000602082019050818103600083015261340881612fff565b9050919050565b6000602082019050818103600083015261342881613022565b9050919050565b6000602082019050818103600083015261344881613045565b9050919050565b6000602082019050818103600083015261346881613068565b9050919050565b600060208201905081810360008301526134888161308b565b9050919050565b600060208201905081810360008301526134a8816130ae565b9050919050565b600060208201905081810360008301526134c8816130d1565b9050919050565b600060208201905081810360008301526134e8816130f4565b9050919050565b6000602082019050818103600083015261350881613117565b9050919050565b600060208201905081810360008301526135288161313a565b9050919050565b600060208201905081810360008301526135488161315d565b9050919050565b6000602082019050818103600083015261356881613180565b9050919050565b60006020820190508181036000830152613588816131a3565b9050919050565b600060208201905081810360008301526135a8816131c6565b9050919050565b600060208201905081810360008301526135c8816131e9565b9050919050565b600060208201905081810360008301526135e88161320c565b9050919050565b600060208201905081810360008301526136088161322f565b9050919050565b6000602082019050818103600083015261362881613252565b9050919050565b6000602082019050818103600083015261364881613275565b9050919050565b60006020820190506136646000830184613298565b92915050565b6000613674613685565b905061368082826138d7565b919050565b6000604051905090565b600067ffffffffffffffff8211156136aa576136a9613a0f565b5b6136b382613a3e565b9050602081019050919050565b600067ffffffffffffffff8211156136db576136da613a0f565b5b6136e482613a3e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061373f82613859565b915061374a83613859565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561377f5761377e613982565b5b828201905092915050565b600061379582613859565b91506137a083613859565b9250826137b0576137af6139b1565b5b828204905092915050565b60006137c682613859565b91506137d183613859565b9250828210156137e4576137e3613982565b5b828203905092915050565b60006137fa82613839565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613890578082015181840152602081019050613875565b8381111561389f576000848401525b50505050565b600060028204905060018216806138bd57607f821691505b602082108114156138d1576138d06139e0565b5b50919050565b6138e082613a3e565b810181811067ffffffffffffffff821117156138ff576138fe613a0f565b5b80604052505050565b600061391382613859565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561394657613945613982565b5b600182019050919050565b600061395c82613859565b915061396783613859565b925082613977576139766139b1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d657373616765206265696e672073656e7420646f65736e2774206e6f74206d60008201527f61746368206f726967696e000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6d696e74206f766572206d617800000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b614067816137ef565b811461407257600080fd5b50565b61407e81613801565b811461408957600080fd5b50565b6140958161380d565b81146140a057600080fd5b50565b6140ac81613859565b81146140b757600080fd5b5056fea2646970667358221220c2eaea708023758f27aceff09c99068eacdfef18915bc086f029de7bd30cab0664736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610641578063e985e9c51461067e578063ed3c121d146106bb578063f2fde38b146106e6576101cd565b8063a0712d68146105a8578063a22cb465146105c4578063b88d4fde146105ed578063c28e355c14610616576101cd565b80638da5cb5b116100d15780638da5cb5b146104fe57806391b7f5ed1461052957806395d89b4114610552578063a035b1fe1461057d576101cd565b806370a0823114610493578063715018a6146104d05780637d8966e4146104e7576101cd565b80633542aee21161016f57806355f804b31161013e57806355f804b3146103d75780636352211e1461040057806368428a1b1461043d5780636c0360eb14610468576101cd565b80633542aee2146103315780633ccfd60b1461035a57806342842e0e146103715780634f6ccce71461039a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612df6565b61070f565b6040516102069190613332565b60405180910390f35b34801561021b57600080fd5b50610224610721565b604051610231919061334d565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e89565b6107b3565b60405161026e91906132cb565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612dba565b610838565b005b3480156102ac57600080fd5b506102b5610950565b6040516102c2919061364f565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612cb4565b61095d565b005b34801561030057600080fd5b5061031b60048036038101906103169190612dba565b6109bd565b604051610328919061364f565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612dba565b610a62565b005b34801561036657600080fd5b5061036f610aec565b005b34801561037d57600080fd5b5061039860048036038101906103939190612cb4565b610bb7565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e89565b610bd7565b6040516103ce919061364f565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612e48565b610c6e565b005b34801561040c57600080fd5b5061042760048036038101906104229190612e89565b610d04565b60405161043491906132cb565b60405180910390f35b34801561044957600080fd5b50610452610db6565b60405161045f9190613332565b60405180910390f35b34801561047457600080fd5b5061047d610dc9565b60405161048a919061334d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190612c4f565b610e57565b6040516104c7919061364f565b60405180910390f35b3480156104dc57600080fd5b506104e5610f0f565b005b3480156104f357600080fd5b506104fc610f97565b005b34801561050a57600080fd5b5061051361103f565b60405161052091906132cb565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190612e89565b611069565b005b34801561055e57600080fd5b506105676110ef565b604051610574919061334d565b60405180910390f35b34801561058957600080fd5b50610592611181565b60405161059f919061364f565b60405180910390f35b6105c260048036038101906105bd9190612e89565b611187565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612d7e565b61142f565b005b3480156105f957600080fd5b50610614600480360381019061060f9190612d03565b611445565b005b34801561062257600080fd5b5061062b6114a7565b604051610638919061364f565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190612e89565b6114ad565b604051610675919061334d565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612c78565b611554565b6040516106b29190613332565b60405180910390f35b3480156106c757600080fd5b506106d06115e8565b6040516106dd919061364f565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612c4f565b6115ee565b005b600061071a826116e6565b9050919050565b606060008054610730906138a5565b80601f016020809104026020016040519081016040528092919081815260200182805461075c906138a5565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be82611760565b6107fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f49061352f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084382610d04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab906135cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d36117cc565b73ffffffffffffffffffffffffffffffffffffffff1614806109025750610901816108fc6117cc565b611554565b5b610941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109389061348f565b60405180910390fd5b61094b83836117d4565b505050565b6000600880549050905090565b61096e6109686117cc565b8261188d565b6109ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a4906135ef565b60405180910390fd5b6109b883838361196b565b505050565b60006109c883610e57565b8210610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a009061336f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a6a6117cc565b73ffffffffffffffffffffffffffffffffffffffff16610a8861103f565b73ffffffffffffffffffffffffffffffffffffffff1614610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad59061354f565b60405180910390fd5b610ae88282611bc7565b5050565b610af46117cc565b73ffffffffffffffffffffffffffffffffffffffff16610b1261103f565b73ffffffffffffffffffffffffffffffffffffffff1614610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f9061354f565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bb3573d6000803e3d6000fd5b5050565b610bd283838360405180602001604052806000815250611445565b505050565b6000610be1610950565b8210610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061360f565b60405180910390fd5b60088281548110610c5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610c766117cc565b73ffffffffffffffffffffffffffffffffffffffff16610c9461103f565b73ffffffffffffffffffffffffffffffffffffffff1614610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce19061354f565b60405180910390fd5b80600b9080519060200190610d00929190612a73565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906134cf565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b600b8054610dd6906138a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e02906138a5565b8015610e4f5780601f10610e2457610100808354040283529160200191610e4f565b820191906000526020600020905b815481529060010190602001808311610e3257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf906134af565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f176117cc565b73ffffffffffffffffffffffffffffffffffffffff16610f3561103f565b73ffffffffffffffffffffffffffffffffffffffff1614610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f829061354f565b60405180910390fd5b610f956000611be5565b565b610f9f6117cc565b73ffffffffffffffffffffffffffffffffffffffff16610fbd61103f565b73ffffffffffffffffffffffffffffffffffffffff1614611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a9061354f565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110716117cc565b73ffffffffffffffffffffffffffffffffffffffff1661108f61103f565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061354f565b60405180910390fd5b80600e8190555050565b6060600180546110fe906138a5565b80601f016020809104026020016040519081016040528092919081815260200182805461112a906138a5565b80156111775780601f1061114c57610100808354040283529160200191611177565b820191906000526020600020905b81548152906001019060200180831161115a57829003601f168201915b5050505050905090565b600e5481565b60003390506000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60009054906101000a900460ff1661121f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112169061344f565b60405180910390fd5b60008311801561122f5750600383105b61126e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112659061362f565b60405180910390fd5b6001600d5461127d9190613734565b83826112899190613734565b106112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c0906135af565b60405180910390fd5b60016108ae6112d89190613734565b836112e1610950565b6112eb9190613734565b1061132b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611322906134ef565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611390906133af565b60405180910390fd5b82816113a59190613734565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b838110156114295760006113fd610950565b9050611415336001836114109190613734565b611bc7565b50808061142190613908565b9150506113eb565b50505050565b61144161143a6117cc565b8383611cab565b5050565b6114566114506117cc565b8361188d565b611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c906135ef565b60405180910390fd5b6114a184848484611e18565b50505050565b6108ae81565b60606114b882611760565b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee9061358f565b60405180910390fd5b6000611501611e74565b90506000815111611521576040518060200160405280600081525061154c565b8061152b84611f06565b60405160200161153c9291906132a7565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b6115f66117cc565b73ffffffffffffffffffffffffffffffffffffffff1661161461103f565b73ffffffffffffffffffffffffffffffffffffffff161461166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061354f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906133cf565b60405180910390fd5b6116e381611be5565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117595750611758826120b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661184783610d04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061189882611760565b6118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce9061346f565b60405180910390fd5b60006118e283610d04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061195157508373ffffffffffffffffffffffffffffffffffffffff16611939846107b3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061196257506119618185611554565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661198b82610d04565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d89061356f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a489061340f565b60405180910390fd5b611a5c838383612195565b611a676000826117d4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab791906137bb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0e9190613734565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611be18282604051806020016040528060008152506121a5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119061342f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0b9190613332565b60405180910390a3505050565b611e2384848461196b565b611e2f84848484612200565b611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e659061338f565b60405180910390fd5b50505050565b6060600b8054611e83906138a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611eaf906138a5565b8015611efc5780601f10611ed157610100808354040283529160200191611efc565b820191906000526020600020905b815481529060010190602001808311611edf57829003601f168201915b5050505050905090565b60606000821415611f4e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120ae565b600082905060005b60008214611f80578080611f6990613908565b915050600a82611f79919061378a565b9150611f56565b60008167ffffffffffffffff811115611fc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ff45781602001600182028036833780820191505090505b5090505b600085146120a75760018261200d91906137bb565b9150600a8561201c9190613951565b60306120289190613734565b60f81b818381518110612064577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120a0919061378a565b9450611ff8565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061217e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061218e575061218d82612397565b5b9050919050565b6121a0838383612401565b505050565b6121af8383612515565b6121bc6000848484612200565b6121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f29061338f565b60405180910390fd5b505050565b60006122218473ffffffffffffffffffffffffffffffffffffffff166126e3565b1561238a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261224a6117cc565b8786866040518563ffffffff1660e01b815260040161226c94939291906132e6565b602060405180830381600087803b15801561228657600080fd5b505af19250505080156122b757506040513d601f19601f820116820180604052508101906122b49190612e1f565b60015b61233a573d80600081146122e7576040519150601f19603f3d011682016040523d82523d6000602084013e6122ec565b606091505b50600081511415612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123299061338f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061238f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61240c8383836126f6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244f5761244a816126fb565b61248e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248d5761248c8382612744565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d1576124cc816128b1565b612510565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461250f5761250e82826129f4565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257c9061350f565b60405180910390fd5b61258e81611760565b156125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c5906133ef565b60405180910390fd5b6125da60008383612195565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461262a9190613734565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161275184610e57565b61275b91906137bb565b9050600060076000848152602001908152602001600020549050818114612840576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128c591906137bb565b905060006009600084815260200190815260200160002054905060006008838154811061291b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612963577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006129ff83610e57565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612a7f906138a5565b90600052602060002090601f016020900481019282612aa15760008555612ae8565b82601f10612aba57805160ff1916838001178555612ae8565b82800160010185558215612ae8579182015b82811115612ae7578251825591602001919060010190612acc565b5b509050612af59190612af9565b5090565b5b80821115612b12576000816000905550600101612afa565b5090565b6000612b29612b248461368f565b61366a565b905082815260208101848484011115612b4157600080fd5b612b4c848285613863565b509392505050565b6000612b67612b62846136c0565b61366a565b905082815260208101848484011115612b7f57600080fd5b612b8a848285613863565b509392505050565b600081359050612ba18161405e565b92915050565b600081359050612bb681614075565b92915050565b600081359050612bcb8161408c565b92915050565b600081519050612be08161408c565b92915050565b600082601f830112612bf757600080fd5b8135612c07848260208601612b16565b91505092915050565b600082601f830112612c2157600080fd5b8135612c31848260208601612b54565b91505092915050565b600081359050612c49816140a3565b92915050565b600060208284031215612c6157600080fd5b6000612c6f84828501612b92565b91505092915050565b60008060408385031215612c8b57600080fd5b6000612c9985828601612b92565b9250506020612caa85828601612b92565b9150509250929050565b600080600060608486031215612cc957600080fd5b6000612cd786828701612b92565b9350506020612ce886828701612b92565b9250506040612cf986828701612c3a565b9150509250925092565b60008060008060808587031215612d1957600080fd5b6000612d2787828801612b92565b9450506020612d3887828801612b92565b9350506040612d4987828801612c3a565b925050606085013567ffffffffffffffff811115612d6657600080fd5b612d7287828801612be6565b91505092959194509250565b60008060408385031215612d9157600080fd5b6000612d9f85828601612b92565b9250506020612db085828601612ba7565b9150509250929050565b60008060408385031215612dcd57600080fd5b6000612ddb85828601612b92565b9250506020612dec85828601612c3a565b9150509250929050565b600060208284031215612e0857600080fd5b6000612e1684828501612bbc565b91505092915050565b600060208284031215612e3157600080fd5b6000612e3f84828501612bd1565b91505092915050565b600060208284031215612e5a57600080fd5b600082013567ffffffffffffffff811115612e7457600080fd5b612e8084828501612c10565b91505092915050565b600060208284031215612e9b57600080fd5b6000612ea984828501612c3a565b91505092915050565b612ebb816137ef565b82525050565b612eca81613801565b82525050565b6000612edb826136f1565b612ee58185613707565b9350612ef5818560208601613872565b612efe81613a3e565b840191505092915050565b6000612f14826136fc565b612f1e8185613718565b9350612f2e818560208601613872565b612f3781613a3e565b840191505092915050565b6000612f4d826136fc565b612f578185613729565b9350612f67818560208601613872565b80840191505092915050565b6000612f80602b83613718565b9150612f8b82613a4f565b604082019050919050565b6000612fa3603283613718565b9150612fae82613a9e565b604082019050919050565b6000612fc6602b83613718565b9150612fd182613aed565b604082019050919050565b6000612fe9602683613718565b9150612ff482613b3c565b604082019050919050565b600061300c601c83613718565b915061301782613b8b565b602082019050919050565b600061302f602483613718565b915061303a82613bb4565b604082019050919050565b6000613052601983613718565b915061305d82613c03565b602082019050919050565b6000613075601b83613718565b915061308082613c2c565b602082019050919050565b6000613098602c83613718565b91506130a382613c55565b604082019050919050565b60006130bb603883613718565b91506130c682613ca4565b604082019050919050565b60006130de602a83613718565b91506130e982613cf3565b604082019050919050565b6000613101602983613718565b915061310c82613d42565b604082019050919050565b6000613124602a83613718565b915061312f82613d91565b604082019050919050565b6000613147602083613718565b915061315282613de0565b602082019050919050565b600061316a602c83613718565b915061317582613e09565b604082019050919050565b600061318d602083613718565b915061319882613e58565b602082019050919050565b60006131b0602983613718565b91506131bb82613e81565b604082019050919050565b60006131d3602f83613718565b91506131de82613ed0565b604082019050919050565b60006131f6600d83613718565b915061320182613f1f565b602082019050919050565b6000613219602183613718565b915061322482613f48565b604082019050919050565b600061323c603183613718565b915061324782613f97565b604082019050919050565b600061325f602c83613718565b915061326a82613fe6565b604082019050919050565b6000613282601783613718565b915061328d82614035565b602082019050919050565b6132a181613859565b82525050565b60006132b38285612f42565b91506132bf8284612f42565b91508190509392505050565b60006020820190506132e06000830184612eb2565b92915050565b60006080820190506132fb6000830187612eb2565b6133086020830186612eb2565b6133156040830185613298565b81810360608301526133278184612ed0565b905095945050505050565b60006020820190506133476000830184612ec1565b92915050565b600060208201905081810360008301526133678184612f09565b905092915050565b6000602082019050818103600083015261338881612f73565b9050919050565b600060208201905081810360008301526133a881612f96565b9050919050565b600060208201905081810360008301526133c881612fb9565b9050919050565b600060208201905081810360008301526133e881612fdc565b9050919050565b6000602082019050818103600083015261340881612fff565b9050919050565b6000602082019050818103600083015261342881613022565b9050919050565b6000602082019050818103600083015261344881613045565b9050919050565b6000602082019050818103600083015261346881613068565b9050919050565b600060208201905081810360008301526134888161308b565b9050919050565b600060208201905081810360008301526134a8816130ae565b9050919050565b600060208201905081810360008301526134c8816130d1565b9050919050565b600060208201905081810360008301526134e8816130f4565b9050919050565b6000602082019050818103600083015261350881613117565b9050919050565b600060208201905081810360008301526135288161313a565b9050919050565b600060208201905081810360008301526135488161315d565b9050919050565b6000602082019050818103600083015261356881613180565b9050919050565b60006020820190508181036000830152613588816131a3565b9050919050565b600060208201905081810360008301526135a8816131c6565b9050919050565b600060208201905081810360008301526135c8816131e9565b9050919050565b600060208201905081810360008301526135e88161320c565b9050919050565b600060208201905081810360008301526136088161322f565b9050919050565b6000602082019050818103600083015261362881613252565b9050919050565b6000602082019050818103600083015261364881613275565b9050919050565b60006020820190506136646000830184613298565b92915050565b6000613674613685565b905061368082826138d7565b919050565b6000604051905090565b600067ffffffffffffffff8211156136aa576136a9613a0f565b5b6136b382613a3e565b9050602081019050919050565b600067ffffffffffffffff8211156136db576136da613a0f565b5b6136e482613a3e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061373f82613859565b915061374a83613859565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561377f5761377e613982565b5b828201905092915050565b600061379582613859565b91506137a083613859565b9250826137b0576137af6139b1565b5b828204905092915050565b60006137c682613859565b91506137d183613859565b9250828210156137e4576137e3613982565b5b828203905092915050565b60006137fa82613839565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613890578082015181840152602081019050613875565b8381111561389f576000848401525b50505050565b600060028204905060018216806138bd57607f821691505b602082108114156138d1576138d06139e0565b5b50919050565b6138e082613a3e565b810181811067ffffffffffffffff821117156138ff576138fe613a0f565b5b80604052505050565b600061391382613859565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561394657613945613982565b5b600182019050919050565b600061395c82613859565b915061396783613859565b925082613977576139766139b1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d657373616765206265696e672073656e7420646f65736e2774206e6f74206d60008201527f61746368206f726967696e000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6d696e74206f766572206d617800000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b614067816137ef565b811461407257600080fd5b50565b61407e81613801565b811461408957600080fd5b50565b6140958161380d565b81146140a057600080fd5b50565b6140ac81613859565b81146140b757600080fd5b5056fea2646970667358221220c2eaea708023758f27aceff09c99068eacdfef18915bc086f029de7bd30cab0664736f6c63430008040033

Deployed Bytecode Sourcemap

44497:2550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45344:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22157:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23716:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23239:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36376:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24466:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36044:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46454:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46900:140;;;;;;;;;;;;;:::i;:::-;;24876:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36566:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46608:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21851:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44649:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44619:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21581:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43597:103;;;;;;;;;;;;;:::i;:::-;;46714:82;;;;;;;;;;;;;:::i;:::-;;42946:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46806:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22326:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44733:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45566:840;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24009:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25132:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44772:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22501:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24235:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44686:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43855:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45344:212;45483:4;45512:36;45536:11;45512:23;:36::i;:::-;45505:43;;45344:212;;;:::o;22157:100::-;22211:13;22244:5;22237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22157:100;:::o;23716:221::-;23792:7;23820:16;23828:7;23820;:16::i;:::-;23812:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23905:15;:24;23921:7;23905:24;;;;;;;;;;;;;;;;;;;;;23898:31;;23716:221;;;:::o;23239:411::-;23320:13;23336:23;23351:7;23336:14;:23::i;:::-;23320:39;;23384:5;23378:11;;:2;:11;;;;23370:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23478:5;23462:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23487:37;23504:5;23511:12;:10;:12::i;:::-;23487:16;:37::i;:::-;23462:62;23440:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23621:21;23630:2;23634:7;23621:8;:21::i;:::-;23239:411;;;:::o;36376:113::-;36437:7;36464:10;:17;;;;36457:24;;36376:113;:::o;24466:339::-;24661:41;24680:12;:10;:12::i;:::-;24694:7;24661:18;:41::i;:::-;24653:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24769:28;24779:4;24785:2;24789:7;24769:9;:28::i;:::-;24466:339;;;:::o;36044:256::-;36141:7;36177:23;36194:5;36177:16;:23::i;:::-;36169:5;:31;36161:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36266:12;:19;36279:5;36266:19;;;;;;;;;;;;;;;:26;36286:5;36266:26;;;;;;;;;;;;36259:33;;36044:256;;;;:::o;46454:120::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46539:27:::1;46549:3;46554:11;46539:9;:27::i;:::-;46454:120:::0;;:::o;46900:140::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46948:12:::1;46963:21;46948:36;;47003:10;46995:28;;:37;47024:7;46995:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43237:1;46900:140::o:0;24876:185::-;25014:39;25031:4;25037:2;25041:7;25014:39;;;;;;;;;;;;:16;:39::i;:::-;24876:185;;;:::o;36566:233::-;36641:7;36677:30;:28;:30::i;:::-;36669:5;:38;36661:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36774:10;36785:5;36774:17;;;;;;;;;;;;;;;;;;;;;;;;36767:24;;36566:233;;;:::o;46608:98::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46691:7:::1;46681;:17;;;;;;;;;;;;:::i;:::-;;46608:98:::0;:::o;21851:239::-;21923:7;21943:13;21959:7;:16;21967:7;21959:16;;;;;;;;;;;;;;;;;;;;;21943:32;;22011:1;21994:19;;:5;:19;;;;21986:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22077:5;22070:12;;;21851:239;;;:::o;44649:30::-;;;;;;;;;;;;;:::o;44619:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21581:208::-;21653:7;21698:1;21681:19;;:5;:19;;;;21673:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21765:9;:16;21775:5;21765:16;;;;;;;;;;;;;;;;21758:23;;21581:208;;;:::o;43597:103::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43662:30:::1;43689:1;43662:18;:30::i;:::-;43597:103::o:0;46714:82::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46778:10:::1;;;;;;;;;;;46777:11;46764:10;;:24;;;;;;;;;;;;;;;;;;46714:82::o:0;42946:87::-;42992:7;43019:6;;;;;;;;;;;43012:13;;42946:87;:::o;46806:86::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46878:6:::1;46870:5;:14;;;;46806:86:::0;:::o;22326:104::-;22382:13;22415:7;22408:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22326:104;:::o;44733:32::-;;;;:::o;45566:840::-;45629:11;45643:10;45629:24;;45664:14;45681:9;:14;45691:3;45681:14;;;;;;;;;;;;;;;;45664:31;;45716:10;;;;;;;;;;;45708:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;45833:1;45817:13;:17;:38;;;;;45854:1;45838:13;:17;45817:38;45809:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;45957:1;45939:15;;:19;;;;:::i;:::-;45923:13;45914:6;:22;;;;:::i;:::-;:44;45906:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;46038:1;44807:4;46027:12;;;;:::i;:::-;46011:13;45995;:11;:13::i;:::-;:29;;;;:::i;:::-;:44;45987:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;46127:9;46113:23;;:10;:23;;;46105:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46220:13;46211:6;:22;;;;:::i;:::-;46194:9;:14;46204:3;46194:14;;;;;;;;;;;;;;;:39;;;;46251:6;46246:153;46267:13;46263:1;:17;46246:153;;;46302:14;46319:13;:11;:13::i;:::-;46302:30;;46347:36;46357:10;46381:1;46369:9;:13;;;;:::i;:::-;46347:9;:36::i;:::-;46246:153;46282:3;;;;;:::i;:::-;;;;46246:153;;;;45566:840;;;:::o;24009:155::-;24104:52;24123:12;:10;:12::i;:::-;24137:8;24147;24104:18;:52::i;:::-;24009:155;;:::o;25132:328::-;25307:41;25326:12;:10;:12::i;:::-;25340:7;25307:18;:41::i;:::-;25299:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25413:39;25427:4;25433:2;25437:7;25446:5;25413:13;:39::i;:::-;25132:328;;;;:::o;44772:39::-;44807:4;44772:39;:::o;22501:334::-;22574:13;22608:16;22616:7;22608;:16::i;:::-;22600:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22689:21;22713:10;:8;:10::i;:::-;22689:34;;22765:1;22747:7;22741:21;:25;:86;;;;;;;;;;;;;;;;;22793:7;22802:18;:7;:16;:18::i;:::-;22776:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22741:86;22734:93;;;22501:334;;;:::o;24235:164::-;24332:4;24356:18;:25;24375:5;24356:25;;;;;;;;;;;;;;;:35;24382:8;24356:35;;;;;;;;;;;;;;;;;;;;;;;;;24349:42;;24235:164;;;;:::o;44686:34::-;;;;:::o;43855:201::-;43177:12;:10;:12::i;:::-;43166:23;;:7;:5;:7::i;:::-;:23;;;43158:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43964:1:::1;43944:22;;:8;:22;;;;43936:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44020:28;44039:8;44020:18;:28::i;:::-;43855:201:::0;:::o;35736:224::-;35838:4;35877:35;35862:50;;;:11;:50;;;;:90;;;;35916:36;35940:11;35916:23;:36::i;:::-;35862:90;35855:97;;35736:224;;;:::o;26970:127::-;27035:4;27087:1;27059:30;;:7;:16;27067:7;27059:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27052:37;;26970:127;;;:::o;16453:98::-;16506:7;16533:10;16526:17;;16453:98;:::o;30952:174::-;31054:2;31027:15;:24;31043:7;31027:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31110:7;31106:2;31072:46;;31081:23;31096:7;31081:14;:23::i;:::-;31072:46;;;;;;;;;;;;30952:174;;:::o;27264:348::-;27357:4;27382:16;27390:7;27382;:16::i;:::-;27374:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27458:13;27474:23;27489:7;27474:14;:23::i;:::-;27458:39;;27527:5;27516:16;;:7;:16;;;:51;;;;27560:7;27536:31;;:20;27548:7;27536:11;:20::i;:::-;:31;;;27516:51;:87;;;;27571:32;27588:5;27595:7;27571:16;:32::i;:::-;27516:87;27508:96;;;27264:348;;;;:::o;30256:578::-;30415:4;30388:31;;:23;30403:7;30388:14;:23::i;:::-;:31;;;30380:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30498:1;30484:16;;:2;:16;;;;30476:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30554:39;30575:4;30581:2;30585:7;30554:20;:39::i;:::-;30658:29;30675:1;30679:7;30658:8;:29::i;:::-;30719:1;30700:9;:15;30710:4;30700:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30748:1;30731:9;:13;30741:2;30731:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30779:2;30760:7;:16;30768:7;30760:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30818:7;30814:2;30799:27;;30808:4;30799:27;;;;;;;;;;;;30256:578;;;:::o;27954:110::-;28030:26;28040:2;28044:7;28030:26;;;;;;;;;;;;:9;:26::i;:::-;27954:110;;:::o;44216:191::-;44290:16;44309:6;;;;;;;;;;;44290:25;;44335:8;44326:6;;:17;;;;;;;;;;;;;;;;;;44390:8;44359:40;;44380:8;44359:40;;;;;;;;;;;;44216:191;;:::o;31268:315::-;31423:8;31414:17;;:5;:17;;;;31406:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;31510:8;31472:18;:25;31491:5;31472:25;;;;;;;;;;;;;;;:35;31498:8;31472:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31556:8;31534:41;;31549:5;31534:41;;;31566:8;31534:41;;;;;;:::i;:::-;;;;;;;;31268:315;;;:::o;26342:::-;26499:28;26509:4;26515:2;26519:7;26499:9;:28::i;:::-;26546:48;26569:4;26575:2;26579:7;26588:5;26546:22;:48::i;:::-;26538:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26342:315;;;;:::o;45156:108::-;45216:13;45249:7;45242:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45156:108;:::o;17032:723::-;17088:13;17318:1;17309:5;:10;17305:53;;;17336:10;;;;;;;;;;;;;;;;;;;;;17305:53;17368:12;17383:5;17368:20;;17399:14;17424:78;17439:1;17431:4;:9;17424:78;;17457:8;;;;;:::i;:::-;;;;17488:2;17480:10;;;;;:::i;:::-;;;17424:78;;;17512:19;17544:6;17534:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17512:39;;17562:154;17578:1;17569:5;:10;17562:154;;17606:1;17596:11;;;;;:::i;:::-;;;17673:2;17665:5;:10;;;;:::i;:::-;17652:2;:24;;;;:::i;:::-;17639:39;;17622:6;17629;17622:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17702:2;17693:11;;;;;:::i;:::-;;;17562:154;;;17740:6;17726:21;;;;;17032:723;;;;:::o;21212:305::-;21314:4;21366:25;21351:40;;;:11;:40;;;;:105;;;;21423:33;21408:48;;;:11;:48;;;;21351:105;:158;;;;21473:36;21497:11;21473:23;:36::i;:::-;21351:158;21331:178;;21212:305;;;:::o;44944:204::-;45095:45;45122:4;45128:2;45132:7;45095:26;:45::i;:::-;44944:204;;;:::o;28291:321::-;28421:18;28427:2;28431:7;28421:5;:18::i;:::-;28472:54;28503:1;28507:2;28511:7;28520:5;28472:22;:54::i;:::-;28450:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28291:321;;;:::o;32148:799::-;32303:4;32324:15;:2;:13;;;:15::i;:::-;32320:620;;;32376:2;32360:36;;;32397:12;:10;:12::i;:::-;32411:4;32417:7;32426:5;32360:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32356:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32619:1;32602:6;:13;:18;32598:272;;;32645:60;;;;;;;;;;:::i;:::-;;;;;;;;32598:272;32820:6;32814:13;32805:6;32801:2;32797:15;32790:38;32356:529;32493:41;;;32483:51;;;:6;:51;;;;32476:58;;;;;32320:620;32924:4;32917:11;;32148:799;;;;;;;:::o;19656:157::-;19741:4;19780:25;19765:40;;;:11;:40;;;;19758:47;;19656:157;;;:::o;37412:589::-;37556:45;37583:4;37589:2;37593:7;37556:26;:45::i;:::-;37634:1;37618:18;;:4;:18;;;37614:187;;;37653:40;37685:7;37653:31;:40::i;:::-;37614:187;;;37723:2;37715:10;;:4;:10;;;37711:90;;37742:47;37775:4;37781:7;37742:32;:47::i;:::-;37711:90;37614:187;37829:1;37815:16;;:2;:16;;;37811:183;;;37848:45;37885:7;37848:36;:45::i;:::-;37811:183;;;37921:4;37915:10;;:2;:10;;;37911:83;;37942:40;37970:2;37974:7;37942:27;:40::i;:::-;37911:83;37811:183;37412:589;;;:::o;28948:382::-;29042:1;29028:16;;:2;:16;;;;29020:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29101:16;29109:7;29101;:16::i;:::-;29100:17;29092:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29163:45;29192:1;29196:2;29200:7;29163:20;:45::i;:::-;29238:1;29221:9;:13;29231:2;29221:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29269:2;29250:7;:16;29258:7;29250:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29314:7;29310:2;29289:33;;29306:1;29289:33;;;;;;;;;;;;28948:382;;:::o;8443:387::-;8503:4;8711:12;8778:7;8766:20;8758:28;;8821:1;8814:4;:8;8807:15;;;8443:387;;;:::o;33519:126::-;;;;:::o;38724:164::-;38828:10;:17;;;;38801:15;:24;38817:7;38801:24;;;;;;;;;;;:44;;;;38856:10;38872:7;38856:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38724:164;:::o;39515:988::-;39781:22;39831:1;39806:22;39823:4;39806:16;:22::i;:::-;:26;;;;:::i;:::-;39781:51;;39843:18;39864:17;:26;39882:7;39864:26;;;;;;;;;;;;39843:47;;40011:14;39997:10;:28;39993:328;;40042:19;40064:12;:18;40077:4;40064:18;;;;;;;;;;;;;;;:34;40083:14;40064:34;;;;;;;;;;;;40042:56;;40148:11;40115:12;:18;40128:4;40115:18;;;;;;;;;;;;;;;:30;40134:10;40115:30;;;;;;;;;;;:44;;;;40265:10;40232:17;:30;40250:11;40232:30;;;;;;;;;;;:43;;;;39993:328;;40417:17;:26;40435:7;40417:26;;;;;;;;;;;40410:33;;;40461:12;:18;40474:4;40461:18;;;;;;;;;;;;;;;:34;40480:14;40461:34;;;;;;;;;;;40454:41;;;39515:988;;;;:::o;40798:1079::-;41051:22;41096:1;41076:10;:17;;;;:21;;;;:::i;:::-;41051:46;;41108:18;41129:15;:24;41145:7;41129:24;;;;;;;;;;;;41108:45;;41480:19;41502:10;41513:14;41502:26;;;;;;;;;;;;;;;;;;;;;;;;41480:48;;41566:11;41541:10;41552;41541:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41677:10;41646:15;:28;41662:11;41646:28;;;;;;;;;;;:41;;;;41818:15;:24;41834:7;41818:24;;;;;;;;;;;41811:31;;;41853:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40798:1079;;;;:::o;38302:221::-;38387:14;38404:20;38421:2;38404:16;:20::i;:::-;38387:37;;38462:7;38435:12;:16;38448:2;38435:16;;;;;;;;;;;;;;;:24;38452:6;38435:24;;;;;;;;;;;:34;;;;38509:6;38480:17;:26;38498:7;38480:26;;;;;;;;;;;:35;;;;38302:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:366::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9822:220;;;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10194:220;;;:::o;10420:366::-;10562:3;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10659:93;10748:3;10659:93;:::i;:::-;10777:2;10772:3;10768:12;10761:19;;10566:220;;;:::o;10792:366::-;10934:3;10955:67;11019:2;11014:3;10955:67;:::i;:::-;10948:74;;11031:93;11120:3;11031:93;:::i;:::-;11149:2;11144:3;11140:12;11133:19;;10938:220;;;:::o;11164:366::-;11306:3;11327:67;11391:2;11386:3;11327:67;:::i;:::-;11320:74;;11403:93;11492:3;11403:93;:::i;:::-;11521:2;11516:3;11512:12;11505:19;;11310:220;;;:::o;11536:366::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11682:220;;;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;12054:220;;;:::o;12280:366::-;12422:3;12443:67;12507:2;12502:3;12443:67;:::i;:::-;12436:74;;12519:93;12608:3;12519:93;:::i;:::-;12637:2;12632:3;12628:12;12621:19;;12426:220;;;:::o;12652:366::-;12794:3;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12891:93;12980:3;12891:93;:::i;:::-;13009:2;13004:3;13000:12;12993:19;;12798:220;;;:::o;13024:366::-;13166:3;13187:67;13251:2;13246:3;13187:67;:::i;:::-;13180:74;;13263:93;13352:3;13263:93;:::i;:::-;13381:2;13376:3;13372:12;13365:19;;13170:220;;;:::o;13396:366::-;13538:3;13559:67;13623:2;13618:3;13559:67;:::i;:::-;13552:74;;13635:93;13724:3;13635:93;:::i;:::-;13753:2;13748:3;13744:12;13737:19;;13542:220;;;:::o;13768:366::-;13910:3;13931:67;13995:2;13990:3;13931:67;:::i;:::-;13924:74;;14007:93;14096:3;14007:93;:::i;:::-;14125:2;14120:3;14116:12;14109:19;;13914:220;;;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14286:220;;;:::o;14512:366::-;14654:3;14675:67;14739:2;14734:3;14675:67;:::i;:::-;14668:74;;14751:93;14840:3;14751:93;:::i;:::-;14869:2;14864:3;14860:12;14853:19;;14658:220;;;:::o;14884:366::-;15026:3;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15123:93;15212:3;15123:93;:::i;:::-;15241:2;15236:3;15232:12;15225:19;;15030:220;;;:::o;15256:366::-;15398:3;15419:67;15483:2;15478:3;15419:67;:::i;:::-;15412:74;;15495:93;15584:3;15495:93;:::i;:::-;15613:2;15608:3;15604:12;15597:19;;15402:220;;;:::o;15628:366::-;15770:3;15791:67;15855:2;15850:3;15791:67;:::i;:::-;15784:74;;15867:93;15956:3;15867:93;:::i;:::-;15985:2;15980:3;15976:12;15969:19;;15774:220;;;:::o;16000:118::-;16087:24;16105:5;16087:24;:::i;:::-;16082:3;16075:37;16065:53;;:::o;16124:435::-;16304:3;16326:95;16417:3;16408:6;16326:95;:::i;:::-;16319:102;;16438:95;16529:3;16520:6;16438:95;:::i;:::-;16431:102;;16550:3;16543:10;;16308:251;;;;;:::o;16565:222::-;16658:4;16696:2;16685:9;16681:18;16673:26;;16709:71;16777:1;16766:9;16762:17;16753:6;16709:71;:::i;:::-;16663:124;;;;:::o;16793:640::-;16988:4;17026:3;17015:9;17011:19;17003:27;;17040:71;17108:1;17097:9;17093:17;17084:6;17040:71;:::i;:::-;17121:72;17189:2;17178:9;17174:18;17165:6;17121:72;:::i;:::-;17203;17271:2;17260:9;17256:18;17247:6;17203:72;:::i;:::-;17322:9;17316:4;17312:20;17307:2;17296:9;17292:18;17285:48;17350:76;17421:4;17412:6;17350:76;:::i;:::-;17342:84;;16993:440;;;;;;;:::o;17439:210::-;17526:4;17564:2;17553:9;17549:18;17541:26;;17577:65;17639:1;17628:9;17624:17;17615:6;17577:65;:::i;:::-;17531:118;;;;:::o;17655:313::-;17768:4;17806:2;17795:9;17791:18;17783:26;;17855:9;17849:4;17845:20;17841:1;17830:9;17826:17;17819:47;17883:78;17956:4;17947:6;17883:78;:::i;:::-;17875:86;;17773:195;;;;:::o;17974:419::-;18140:4;18178:2;18167:9;18163:18;18155:26;;18227:9;18221:4;18217:20;18213:1;18202:9;18198:17;18191:47;18255:131;18381:4;18255:131;:::i;:::-;18247:139;;18145:248;;;:::o;18399:419::-;18565:4;18603:2;18592:9;18588:18;18580:26;;18652:9;18646:4;18642:20;18638:1;18627:9;18623:17;18616:47;18680:131;18806:4;18680:131;:::i;:::-;18672:139;;18570:248;;;:::o;18824:419::-;18990:4;19028:2;19017:9;19013:18;19005:26;;19077:9;19071:4;19067:20;19063:1;19052:9;19048:17;19041:47;19105:131;19231:4;19105:131;:::i;:::-;19097:139;;18995:248;;;:::o;19249:419::-;19415:4;19453:2;19442:9;19438:18;19430:26;;19502:9;19496:4;19492:20;19488:1;19477:9;19473:17;19466:47;19530:131;19656:4;19530:131;:::i;:::-;19522:139;;19420:248;;;:::o;19674:419::-;19840:4;19878:2;19867:9;19863:18;19855:26;;19927:9;19921:4;19917:20;19913:1;19902:9;19898:17;19891:47;19955:131;20081:4;19955:131;:::i;:::-;19947:139;;19845:248;;;:::o;20099:419::-;20265:4;20303:2;20292:9;20288:18;20280:26;;20352:9;20346:4;20342:20;20338:1;20327:9;20323:17;20316:47;20380:131;20506:4;20380:131;:::i;:::-;20372:139;;20270:248;;;:::o;20524:419::-;20690:4;20728:2;20717:9;20713:18;20705:26;;20777:9;20771:4;20767:20;20763:1;20752:9;20748:17;20741:47;20805:131;20931:4;20805:131;:::i;:::-;20797:139;;20695:248;;;:::o;20949:419::-;21115:4;21153:2;21142:9;21138:18;21130:26;;21202:9;21196:4;21192:20;21188:1;21177:9;21173:17;21166:47;21230:131;21356:4;21230:131;:::i;:::-;21222:139;;21120:248;;;:::o;21374:419::-;21540:4;21578:2;21567:9;21563:18;21555:26;;21627:9;21621:4;21617:20;21613:1;21602:9;21598:17;21591:47;21655:131;21781:4;21655:131;:::i;:::-;21647:139;;21545:248;;;:::o;21799:419::-;21965:4;22003:2;21992:9;21988:18;21980:26;;22052:9;22046:4;22042:20;22038:1;22027:9;22023:17;22016:47;22080:131;22206:4;22080:131;:::i;:::-;22072:139;;21970:248;;;:::o;22224:419::-;22390:4;22428:2;22417:9;22413:18;22405:26;;22477:9;22471:4;22467:20;22463:1;22452:9;22448:17;22441:47;22505:131;22631:4;22505:131;:::i;:::-;22497:139;;22395:248;;;:::o;22649:419::-;22815:4;22853:2;22842:9;22838:18;22830:26;;22902:9;22896:4;22892:20;22888:1;22877:9;22873:17;22866:47;22930:131;23056:4;22930:131;:::i;:::-;22922:139;;22820:248;;;:::o;23074:419::-;23240:4;23278:2;23267:9;23263:18;23255:26;;23327:9;23321:4;23317:20;23313:1;23302:9;23298:17;23291:47;23355:131;23481:4;23355:131;:::i;:::-;23347:139;;23245:248;;;:::o;23499:419::-;23665:4;23703:2;23692:9;23688:18;23680:26;;23752:9;23746:4;23742:20;23738:1;23727:9;23723:17;23716:47;23780:131;23906:4;23780:131;:::i;:::-;23772:139;;23670:248;;;:::o;23924:419::-;24090:4;24128:2;24117:9;24113:18;24105:26;;24177:9;24171:4;24167:20;24163:1;24152:9;24148:17;24141:47;24205:131;24331:4;24205:131;:::i;:::-;24197:139;;24095:248;;;:::o;24349:419::-;24515:4;24553:2;24542:9;24538:18;24530:26;;24602:9;24596:4;24592:20;24588:1;24577:9;24573:17;24566:47;24630:131;24756:4;24630:131;:::i;:::-;24622:139;;24520:248;;;:::o;24774:419::-;24940:4;24978:2;24967:9;24963:18;24955:26;;25027:9;25021:4;25017:20;25013:1;25002:9;24998:17;24991:47;25055:131;25181:4;25055:131;:::i;:::-;25047:139;;24945:248;;;:::o;25199:419::-;25365:4;25403:2;25392:9;25388:18;25380:26;;25452:9;25446:4;25442:20;25438:1;25427:9;25423:17;25416:47;25480:131;25606:4;25480:131;:::i;:::-;25472:139;;25370:248;;;:::o;25624:419::-;25790:4;25828:2;25817:9;25813:18;25805:26;;25877:9;25871:4;25867:20;25863:1;25852:9;25848:17;25841:47;25905:131;26031:4;25905:131;:::i;:::-;25897:139;;25795:248;;;:::o;26049:419::-;26215:4;26253:2;26242:9;26238:18;26230:26;;26302:9;26296:4;26292:20;26288:1;26277:9;26273:17;26266:47;26330:131;26456:4;26330:131;:::i;:::-;26322:139;;26220:248;;;:::o;26474:419::-;26640:4;26678:2;26667:9;26663:18;26655:26;;26727:9;26721:4;26717:20;26713:1;26702:9;26698:17;26691:47;26755:131;26881:4;26755:131;:::i;:::-;26747:139;;26645:248;;;:::o;26899:419::-;27065:4;27103:2;27092:9;27088:18;27080:26;;27152:9;27146:4;27142:20;27138:1;27127:9;27123:17;27116:47;27180:131;27306:4;27180:131;:::i;:::-;27172:139;;27070:248;;;:::o;27324:419::-;27490:4;27528:2;27517:9;27513:18;27505:26;;27577:9;27571:4;27567:20;27563:1;27552:9;27548:17;27541:47;27605:131;27731:4;27605:131;:::i;:::-;27597:139;;27495:248;;;:::o;27749:222::-;27842:4;27880:2;27869:9;27865:18;27857:26;;27893:71;27961:1;27950:9;27946:17;27937:6;27893:71;:::i;:::-;27847:124;;;;:::o;27977:129::-;28011:6;28038:20;;:::i;:::-;28028:30;;28067:33;28095:4;28087:6;28067:33;:::i;:::-;28018:88;;;:::o;28112:75::-;28145:6;28178:2;28172:9;28162:19;;28152:35;:::o;28193:307::-;28254:4;28344:18;28336:6;28333:30;28330:2;;;28366:18;;:::i;:::-;28330:2;28404:29;28426:6;28404:29;:::i;:::-;28396:37;;28488:4;28482;28478:15;28470:23;;28259:241;;;:::o;28506:308::-;28568:4;28658:18;28650:6;28647:30;28644:2;;;28680:18;;:::i;:::-;28644:2;28718:29;28740:6;28718:29;:::i;:::-;28710:37;;28802:4;28796;28792:15;28784:23;;28573:241;;;:::o;28820:98::-;28871:6;28905:5;28899:12;28889:22;;28878:40;;;:::o;28924:99::-;28976:6;29010:5;29004:12;28994:22;;28983:40;;;:::o;29029:168::-;29112:11;29146:6;29141:3;29134:19;29186:4;29181:3;29177:14;29162:29;;29124:73;;;;:::o;29203:169::-;29287:11;29321:6;29316:3;29309:19;29361:4;29356:3;29352:14;29337:29;;29299:73;;;;:::o;29378:148::-;29480:11;29517:3;29502:18;;29492:34;;;;:::o;29532:305::-;29572:3;29591:20;29609:1;29591:20;:::i;:::-;29586:25;;29625:20;29643:1;29625:20;:::i;:::-;29620:25;;29779:1;29711:66;29707:74;29704:1;29701:81;29698:2;;;29785:18;;:::i;:::-;29698:2;29829:1;29826;29822:9;29815:16;;29576:261;;;;:::o;29843:185::-;29883:1;29900:20;29918:1;29900:20;:::i;:::-;29895:25;;29934:20;29952:1;29934:20;:::i;:::-;29929:25;;29973:1;29963:2;;29978:18;;:::i;:::-;29963:2;30020:1;30017;30013:9;30008:14;;29885:143;;;;:::o;30034:191::-;30074:4;30094:20;30112:1;30094:20;:::i;:::-;30089:25;;30128:20;30146:1;30128:20;:::i;:::-;30123:25;;30167:1;30164;30161:8;30158:2;;;30172:18;;:::i;:::-;30158:2;30217:1;30214;30210:9;30202:17;;30079:146;;;;:::o;30231:96::-;30268:7;30297:24;30315:5;30297:24;:::i;:::-;30286:35;;30276:51;;;:::o;30333:90::-;30367:7;30410:5;30403:13;30396:21;30385:32;;30375:48;;;:::o;30429:149::-;30465:7;30505:66;30498:5;30494:78;30483:89;;30473:105;;;:::o;30584:126::-;30621:7;30661:42;30654:5;30650:54;30639:65;;30629:81;;;:::o;30716:77::-;30753:7;30782:5;30771:16;;30761:32;;;:::o;30799:154::-;30883:6;30878:3;30873;30860:30;30945:1;30936:6;30931:3;30927:16;30920:27;30850:103;;;:::o;30959:307::-;31027:1;31037:113;31051:6;31048:1;31045:13;31037:113;;;31136:1;31131:3;31127:11;31121:18;31117:1;31112:3;31108:11;31101:39;31073:2;31070:1;31066:10;31061:15;;31037:113;;;31168:6;31165:1;31162:13;31159:2;;;31248:1;31239:6;31234:3;31230:16;31223:27;31159:2;31008:258;;;;:::o;31272:320::-;31316:6;31353:1;31347:4;31343:12;31333:22;;31400:1;31394:4;31390:12;31421:18;31411:2;;31477:4;31469:6;31465:17;31455:27;;31411:2;31539;31531:6;31528:14;31508:18;31505:38;31502:2;;;31558:18;;:::i;:::-;31502:2;31323:269;;;;:::o;31598:281::-;31681:27;31703:4;31681:27;:::i;:::-;31673:6;31669:40;31811:6;31799:10;31796:22;31775:18;31763:10;31760:34;31757:62;31754:2;;;31822:18;;:::i;:::-;31754:2;31862:10;31858:2;31851:22;31641:238;;;:::o;31885:233::-;31924:3;31947:24;31965:5;31947:24;:::i;:::-;31938:33;;31993:66;31986:5;31983:77;31980:2;;;32063:18;;:::i;:::-;31980:2;32110:1;32103:5;32099:13;32092:20;;31928:190;;;:::o;32124:176::-;32156:1;32173:20;32191:1;32173:20;:::i;:::-;32168:25;;32207:20;32225:1;32207:20;:::i;:::-;32202:25;;32246:1;32236:2;;32251:18;;:::i;:::-;32236:2;32292:1;32289;32285:9;32280:14;;32158:142;;;;:::o;32306:180::-;32354:77;32351:1;32344:88;32451:4;32448:1;32441:15;32475:4;32472:1;32465:15;32492:180;32540:77;32537:1;32530:88;32637:4;32634:1;32627:15;32661:4;32658:1;32651:15;32678:180;32726:77;32723:1;32716:88;32823:4;32820:1;32813:15;32847:4;32844:1;32837:15;32864:180;32912:77;32909:1;32902:88;33009:4;33006:1;32999:15;33033:4;33030:1;33023:15;33050:102;33091:6;33142:2;33138:7;33133:2;33126:5;33122:14;33118:28;33108:38;;33098:54;;;:::o;33158:230::-;33298:34;33294:1;33286:6;33282:14;33275:58;33367:13;33362:2;33354:6;33350:15;33343:38;33264:124;:::o;33394:237::-;33534:34;33530:1;33522:6;33518:14;33511:58;33603:20;33598:2;33590:6;33586:15;33579:45;33500:131;:::o;33637:230::-;33777:34;33773:1;33765:6;33761:14;33754:58;33846:13;33841:2;33833:6;33829:15;33822:38;33743:124;:::o;33873:225::-;34013:34;34009:1;34001:6;33997:14;33990:58;34082:8;34077:2;34069:6;34065:15;34058:33;33979:119;:::o;34104:178::-;34244:30;34240:1;34232:6;34228:14;34221:54;34210:72;:::o;34288:223::-;34428:34;34424:1;34416:6;34412:14;34405:58;34497:6;34492:2;34484:6;34480:15;34473:31;34394:117;:::o;34517:175::-;34657:27;34653:1;34645:6;34641:14;34634:51;34623:69;:::o;34698:177::-;34838:29;34834:1;34826:6;34822:14;34815:53;34804:71;:::o;34881:231::-;35021:34;35017:1;35009:6;35005:14;34998:58;35090:14;35085:2;35077:6;35073:15;35066:39;34987:125;:::o;35118:243::-;35258:34;35254:1;35246:6;35242:14;35235:58;35327:26;35322:2;35314:6;35310:15;35303:51;35224:137;:::o;35367:229::-;35507:34;35503:1;35495:6;35491:14;35484:58;35576:12;35571:2;35563:6;35559:15;35552:37;35473:123;:::o;35602:228::-;35742:34;35738:1;35730:6;35726:14;35719:58;35811:11;35806:2;35798:6;35794:15;35787:36;35708:122;:::o;35836:229::-;35976:34;35972:1;35964:6;35960:14;35953:58;36045:12;36040:2;36032:6;36028:15;36021:37;35942:123;:::o;36071:182::-;36211:34;36207:1;36199:6;36195:14;36188:58;36177:76;:::o;36259:231::-;36399:34;36395:1;36387:6;36383:14;36376:58;36468:14;36463:2;36455:6;36451:15;36444:39;36365:125;:::o;36496:182::-;36636:34;36632:1;36624:6;36620:14;36613:58;36602:76;:::o;36684:228::-;36824:34;36820:1;36812:6;36808:14;36801:58;36893:11;36888:2;36880:6;36876:15;36869:36;36790:122;:::o;36918:234::-;37058:34;37054:1;37046:6;37042:14;37035:58;37127:17;37122:2;37114:6;37110:15;37103:42;37024:128;:::o;37158:163::-;37298:15;37294:1;37286:6;37282:14;37275:39;37264:57;:::o;37327:220::-;37467:34;37463:1;37455:6;37451:14;37444:58;37536:3;37531:2;37523:6;37519:15;37512:28;37433:114;:::o;37553:236::-;37693:34;37689:1;37681:6;37677:14;37670:58;37762:19;37757:2;37749:6;37745:15;37738:44;37659:130;:::o;37795:231::-;37935:34;37931:1;37923:6;37919:14;37912:58;38004:14;37999:2;37991:6;37987:15;37980:39;37901:125;:::o;38032:173::-;38172:25;38168:1;38160:6;38156:14;38149:49;38138:67;:::o;38211:122::-;38284:24;38302:5;38284:24;:::i;:::-;38277:5;38274:35;38264:2;;38323:1;38320;38313:12;38264:2;38254:79;:::o;38339:116::-;38409:21;38424:5;38409:21;:::i;:::-;38402:5;38399:32;38389:2;;38445:1;38442;38435:12;38389:2;38379:76;:::o;38461:120::-;38533:23;38550:5;38533:23;:::i;:::-;38526:5;38523:34;38513:2;;38571:1;38568;38561:12;38513:2;38503:78;:::o;38587:122::-;38660:24;38678:5;38660:24;:::i;:::-;38653:5;38650:35;38640:2;;38699:1;38696;38689:12;38640:2;38630:79;:::o

Swarm Source

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