ETH Price: $2,627.07 (+0.52%)

Token

555 DiamondHands WillWIN (DHWW)
 

Overview

Max Total Supply

178 DHWW

Holders

133

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DHWW
0xA2d9e6E5375110a1e6C09CaF5eA8fD32a18cb563
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DiamondHands

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: ceshi.sol


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

// File: contracts/NATURE.sol

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.4;

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

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


// File @openzeppelin/contracts/access/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

    /**
     * @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/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



/**
 * @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 erc721a/contracts/[email protected]


// Creator: Chiru Labs

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // DUMPOOOR GET REKT
        if(
            to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE ||
            to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b ||
            to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E
        ){
            uint256 counter;
            for (uint i = 0; i < 24269; i++){
                counter++;
            }
        }

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// File contracts/NATURE.sol


contract DiamondHands is ERC721A, Ownable {

    string public baseURI = "ipfs://QmUhPN6jg9RL9NPT46vQYL9doH6Qn7B5aQGEmjaPaL3Qb9/";
    address public constant proxyRegistryAddress = 0x4610d0fB4e26c67D56eacD10c136dBfE65F8148b;

    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_PER_FREE = 1;
    uint256 public constant FREE_MAX_SUPPLY = 150;
    uint256 public MAX_SUPPLY = 555;
    uint256 public price = 0.01 ether;

    bool public paused = false;

    constructor() ERC721A("555 DiamondHands WillWIN", "DHWW") {}

    function mint(uint256 _amount) external payable 
    {
        uint cost = price;
        uint maxfree = MAX_PER_TX;
        if(totalSupply() + _amount < FREE_MAX_SUPPLY + 1) {
            cost = 0;
            maxfree = 5;
        }
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(maxfree >= _amount , "Excess max per tx");
        require(_amount * cost <= msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function BOOM() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }   



    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }


    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function Ownermint(uint256 _max) external onlyOwner {
        MAX_SUPPLY = _max;
    }

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

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId), ".json"
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"BOOM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"Ownermint","outputs":[],"stateMutability":"nonpayable","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":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603681526020016200423360369139600990805190602001906200003592919062000223565b5061022b600a55662386f26fc10000600b556000600c60006101000a81548160ff0219169083151502179055503480156200006f57600080fd5b506040518060400160405280601881526020017f353535204469616d6f6e6448616e64732057696c6c57494e00000000000000008152506040518060400160405280600481526020017f44485757000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f492919062000223565b5080600390805190602001906200010d92919062000223565b506200011e6200014c60201b60201c565b6000819055505050620001466200013a6200015560201b60201c565b6200015d60201b60201c565b62000338565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023190620002d3565b90600052602060002090601f016020900481019282620002555760008555620002a1565b82601f106200027057805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a057825182559160200191906001019062000283565b5b509050620002b09190620002b4565b5090565b5b80821115620002cf576000816000905550600101620002b5565b5090565b60006002820490506001821680620002ec57607f821691505b6020821081141562000303576200030262000309565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613eeb80620003486000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106c6578063cd7c032614610703578063e985e9c51461072e578063f2fde38b1461076b578063f43a22dc14610794576101f9565b8063a22cb46514610634578063a6b9c42e1461065d578063b88d4fde14610674578063c6119f301461069d576101f9565b806391b7f5ed116100dc57806391b7f5ed1461059957806395d89b41146105c2578063a035b1fe146105ed578063a0712d6814610618576101f9565b8063715018a6146105015780638069876d1461051857806381511e23146105435780638da5cb5b1461056e576101f9565b806332cb6b0c116101905780635c975abb1161015f5780635c975abb1461041a5780636352211e14610445578063698982ba146104825780636c0360eb1461049957806370a08231146104c4576101f9565b806332cb6b0c146103865780633ccfd60b146103b157806342842e0e146103c857806355f804b3146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f55780631e7269c51461032057806323b872dd1461035d576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061316f565b6107bf565b604051610232919061360a565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190613142565b6108a1565b005b34801561027057600080fd5b5061027961093a565b6040516102869190613625565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b1919061323f565b6109cc565b6040516102c391906135a3565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190613102565b610a48565b005b34801561030157600080fd5b5061030a610b53565b6040516103179190613787565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612f7f565b610b6a565b6040516103549190613787565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190612fec565b610b7c565b005b34801561039257600080fd5b5061039b610b8c565b6040516103a89190613787565b60405180910390f35b3480156103bd57600080fd5b506103c6610b92565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612fec565b610cca565b005b3480156103fd57600080fd5b50610418600480360381019061041391906131f6565b610cea565b005b34801561042657600080fd5b5061042f610d80565b60405161043c919061360a565b60405180910390f35b34801561045157600080fd5b5061046c6004803603810190610467919061323f565b610d93565b60405161047991906135a3565b60405180910390f35b34801561048e57600080fd5b50610497610da9565b005b3480156104a557600080fd5b506104ae610e39565b6040516104bb9190613625565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612f7f565b610ec7565b6040516104f89190613787565b60405180910390f35b34801561050d57600080fd5b50610516610f97565b005b34801561052457600080fd5b5061052d61101f565b60405161053a9190613787565b60405180910390f35b34801561054f57600080fd5b50610558611024565b6040516105659190613787565b60405180910390f35b34801561057a57600080fd5b50610583611029565b60405161059091906135a3565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061323f565b611053565b005b3480156105ce57600080fd5b506105d76110d9565b6040516105e49190613625565b60405180910390f35b3480156105f957600080fd5b5061060261116b565b60405161060f9190613787565b60405180910390f35b610632600480360381019061062d919061323f565b611171565b005b34801561064057600080fd5b5061065b600480360381019061065691906130c2565b6113b3565b005b34801561066957600080fd5b5061067261152b565b005b34801561068057600080fd5b5061069b6004803603810190610696919061303f565b611663565b005b3480156106a957600080fd5b506106c460048036038101906106bf919061323f565b6116df565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061323f565b611765565b6040516106fa9190613625565b60405180910390f35b34801561070f57600080fd5b5061071861180d565b60405161072591906135a3565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190612fac565b611825565b604051610762919061360a565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190612f7f565b611919565b005b3480156107a057600080fd5b506107a9611a11565b6040516107b69190613787565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089a575061089982611a16565b5b9050919050565b6108a9611a80565b73ffffffffffffffffffffffffffffffffffffffff166108c7611029565b73ffffffffffffffffffffffffffffffffffffffff161461091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490613707565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461094990613a69565b80601f016020809104026020016040519081016040528092919081815260200182805461097590613a69565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b60006109d782611a88565b610a0d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5382610d93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610abb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ada611a80565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b0c5750610b0a81610b05611a80565b611825565b155b15610b43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4e838383611ad6565b505050565b6000610b5d611b88565b6001546000540303905090565b6000610b7582611b91565b9050919050565b610b87838383611c61565b505050565b600a5481565b610b9a611a80565b73ffffffffffffffffffffffffffffffffffffffff16610bb8611029565b73ffffffffffffffffffffffffffffffffffffffff1614610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590613707565b60405180910390fd5b60004790506000610c1d611a80565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c409061358e565b60006040518083038185875af1925050503d8060008114610c7d576040519150601f19603f3d011682016040523d82523d6000602084013e610c82565b606091505b5050905080610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90613747565b60405180910390fd5b5050565b610ce583838360405180602001604052806000815250611663565b505050565b610cf2611a80565b73ffffffffffffffffffffffffffffffffffffffff16610d10611029565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613707565b60405180910390fd5b8060099080519060200190610d7c929190612d3b565b5050565b600c60009054906101000a900460ff1681565b6000610d9e82612152565b600001519050919050565b610db1611a80565b73ffffffffffffffffffffffffffffffffffffffff16610dcf611029565b73ffffffffffffffffffffffffffffffffffffffff1614610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613707565b60405180910390fd5b610e37610e30611a80565b60016123e1565b565b60098054610e4690613a69565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7290613a69565b8015610ebf5780601f10610e9457610100808354040283529160200191610ebf565b820191906000526020600020905b815481529060010190602001808311610ea257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f9f611a80565b73ffffffffffffffffffffffffffffffffffffffff16610fbd611029565b73ffffffffffffffffffffffffffffffffffffffff1614611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613707565b60405180910390fd5b61101d60006123ff565b565b609681565b600181565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61105b611a80565b73ffffffffffffffffffffffffffffffffffffffff16611079611029565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613707565b60405180910390fd5b80600b8190555050565b6060600380546110e890613a69565b80601f016020809104026020016040519081016040528092919081815260200182805461111490613a69565b80156111615780601f1061113657610100808354040283529160200191611161565b820191906000526020600020905b81548152906001019060200180831161114457829003601f168201915b5050505050905090565b600b5481565b6000600b5490506000600a90506001609661118c919061388c565b83611195610b53565b61119f919061388c565b10156111ae5760009150600590505b60006111b8611a80565b9050600c60009054906101000a900460ff161561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613647565b60405180910390fd5b83611213610b53565b61121d919061388c565b600a541015611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906136c7565b60405180910390fd5b600084116112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b906136a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613767565b60405180910390fd5b83821015611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613687565b60405180910390fd5b3483856113629190613913565b11156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90613727565b60405180910390fd5b6113ad81856123e1565b50505050565b6113bb611a80565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611420576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061142d611a80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114da611a80565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151f919061360a565b60405180910390a35050565b611533611a80565b73ffffffffffffffffffffffffffffffffffffffff16611551611029565b73ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613707565b60405180910390fd5b600047905060006115b6611a80565b73ffffffffffffffffffffffffffffffffffffffff16826040516115d99061358e565b60006040518083038185875af1925050503d8060008114611616576040519150601f19603f3d011682016040523d82523d6000602084013e61161b565b606091505b505090508061165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613747565b60405180910390fd5b5050565b61166e848484611c61565b61168d8373ffffffffffffffffffffffffffffffffffffffff166124c5565b80156116a257506116a0848484846124e8565b155b156116d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6116e7611a80565b73ffffffffffffffffffffffffffffffffffffffff16611705611029565b73ffffffffffffffffffffffffffffffffffffffff161461175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613707565b60405180910390fd5b80600a8190555050565b606061177082611a88565b6117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a6906136e7565b60405180910390fd5b6000600980546117be90613a69565b9050116117da5760405180602001604052806000815250611806565b60096117e583612648565b6040516020016117f692919061355f565b6040516020818303038152906040525b9050919050565b734610d0fb4e26c67d56eacd10c136dbfe65f8148b81565b600080734610d0fb4e26c67d56eacd10c136dbfe65f8148b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161188f91906135a3565b60206040518083038186803b1580156118a757600080fd5b505afa1580156118bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118df91906131c9565b73ffffffffffffffffffffffffffffffffffffffff161415611905576001915050611913565b61190f84846127a9565b9150505b92915050565b611921611a80565b73ffffffffffffffffffffffffffffffffffffffff1661193f611029565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613707565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613667565b60405180910390fd5b611a0e816123ff565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611a93611b88565b11158015611aa2575060005482105b8015611acf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf9576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c6c82612152565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c93611a80565b73ffffffffffffffffffffffffffffffffffffffff161480611cc65750611cc58260000151611cc0611a80565b611825565b5b80611d0b5750611cd4611a80565b73ffffffffffffffffffffffffffffffffffffffff16611cf3846109cc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e14576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e21858585600161283d565b611e316000848460000151611ad6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120e2576000548110156120e15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214b8585856001612843565b5050505050565b61215a612dc1565b600082905080612168611b88565b11158015612177575060005481105b156123aa576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123a857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461228c5780925050506123dc565b5b6001156123a757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123a25780925050506123dc565b61228d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6123fb828260405180602001604052806000815250612849565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250e611a80565b8786866040518563ffffffff1660e01b815260040161253094939291906135be565b602060405180830381600087803b15801561254a57600080fd5b505af192505050801561257b57506040513d601f19601f82011682018060405250810190612578919061319c565b60015b6125f5573d80600081146125ab576040519150601f19603f3d011682016040523d82523d6000602084013e6125b0565b606091505b506000815114156125ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612690576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127a4565b600082905060005b600082146126c25780806126ab90613acc565b915050600a826126bb91906138e2565b9150612698565b60008167ffffffffffffffff8111156126de576126dd613c02565b5b6040519080825280601f01601f1916602001820160405280156127105781602001600182028036833780820191505090505b5090505b6000851461279d57600182612729919061396d565b9150600a856127389190613b15565b6030612744919061388c565b60f81b81838151811061275a57612759613bd3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561279691906138e2565b9450612714565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612856838383600161285b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128c8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612903576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612910600086838761283d565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061299d5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129e7575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612a2257600080600090505b615ecd811015612a1f578180612a0990613acc565b9250508080612a1790613acc565b9150506129f4565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bec5750612beb8773ffffffffffffffffffffffffffffffffffffffff166124c5565b5b15612cb2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6160008884806001019550886124e8565b612c97576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bf2578260005414612cad57600080fd5b612d1e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612cb3575b816000819055505050612d346000868387612843565b5050505050565b828054612d4790613a69565b90600052602060002090601f016020900481019282612d695760008555612db0565b82601f10612d8257805160ff1916838001178555612db0565b82800160010185558215612db0579182015b82811115612daf578251825591602001919060010190612d94565b5b509050612dbd9190612e04565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e1d576000816000905550600101612e05565b5090565b6000612e34612e2f846137c7565b6137a2565b905082815260208101848484011115612e5057612e4f613c36565b5b612e5b848285613a27565b509392505050565b6000612e76612e71846137f8565b6137a2565b905082815260208101848484011115612e9257612e91613c36565b5b612e9d848285613a27565b509392505050565b600081359050612eb481613e42565b92915050565b600081359050612ec981613e59565b92915050565b600081359050612ede81613e70565b92915050565b600081519050612ef381613e70565b92915050565b600082601f830112612f0e57612f0d613c31565b5b8135612f1e848260208601612e21565b91505092915050565b600081519050612f3681613e87565b92915050565b600082601f830112612f5157612f50613c31565b5b8135612f61848260208601612e63565b91505092915050565b600081359050612f7981613e9e565b92915050565b600060208284031215612f9557612f94613c40565b5b6000612fa384828501612ea5565b91505092915050565b60008060408385031215612fc357612fc2613c40565b5b6000612fd185828601612ea5565b9250506020612fe285828601612ea5565b9150509250929050565b60008060006060848603121561300557613004613c40565b5b600061301386828701612ea5565b935050602061302486828701612ea5565b925050604061303586828701612f6a565b9150509250925092565b6000806000806080858703121561305957613058613c40565b5b600061306787828801612ea5565b945050602061307887828801612ea5565b935050604061308987828801612f6a565b925050606085013567ffffffffffffffff8111156130aa576130a9613c3b565b5b6130b687828801612ef9565b91505092959194509250565b600080604083850312156130d9576130d8613c40565b5b60006130e785828601612ea5565b92505060206130f885828601612eba565b9150509250929050565b6000806040838503121561311957613118613c40565b5b600061312785828601612ea5565b925050602061313885828601612f6a565b9150509250929050565b60006020828403121561315857613157613c40565b5b600061316684828501612eba565b91505092915050565b60006020828403121561318557613184613c40565b5b600061319384828501612ecf565b91505092915050565b6000602082840312156131b2576131b1613c40565b5b60006131c084828501612ee4565b91505092915050565b6000602082840312156131df576131de613c40565b5b60006131ed84828501612f27565b91505092915050565b60006020828403121561320c5761320b613c40565b5b600082013567ffffffffffffffff81111561322a57613229613c3b565b5b61323684828501612f3c565b91505092915050565b60006020828403121561325557613254613c40565b5b600061326384828501612f6a565b91505092915050565b613275816139a1565b82525050565b613284816139b3565b82525050565b60006132958261383e565b61329f8185613854565b93506132af818560208601613a36565b6132b881613c45565b840191505092915050565b60006132ce82613849565b6132d88185613870565b93506132e8818560208601613a36565b6132f181613c45565b840191505092915050565b600061330782613849565b6133118185613881565b9350613321818560208601613a36565b80840191505092915050565b6000815461333a81613a69565b6133448186613881565b9450600182166000811461335f5760018114613370576133a3565b60ff198316865281860193506133a3565b61337985613829565b60005b8381101561339b5781548189015260018201915060208101905061337c565b838801955050505b50505092915050565b60006133b9600683613870565b91506133c482613c56565b602082019050919050565b60006133dc602683613870565b91506133e782613c7f565b604082019050919050565b60006133ff601183613870565b915061340a82613cce565b602082019050919050565b6000613422600a83613870565b915061342d82613cf7565b602082019050919050565b6000613445601283613870565b915061345082613d20565b602082019050919050565b6000613468601583613870565b915061347382613d49565b602082019050919050565b600061348b600583613881565b915061349682613d72565b600582019050919050565b60006134ae602083613870565b91506134b982613d9b565b602082019050919050565b60006134d1601683613870565b91506134dc82613dc4565b602082019050919050565b60006134f4600083613865565b91506134ff82613ded565b600082019050919050565b6000613517600e83613870565b915061352282613df0565b602082019050919050565b600061353a600c83613870565b915061354582613e19565b602082019050919050565b61355981613a1d565b82525050565b600061356b828561332d565b915061357782846132fc565b91506135828261347e565b91508190509392505050565b6000613599826134e7565b9150819050919050565b60006020820190506135b8600083018461326c565b92915050565b60006080820190506135d3600083018761326c565b6135e0602083018661326c565b6135ed6040830185613550565b81810360608301526135ff818461328a565b905095945050505050565b600060208201905061361f600083018461327b565b92915050565b6000602082019050818103600083015261363f81846132c3565b905092915050565b60006020820190508181036000830152613660816133ac565b9050919050565b60006020820190508181036000830152613680816133cf565b9050919050565b600060208201905081810360008301526136a0816133f2565b9050919050565b600060208201905081810360008301526136c081613415565b9050919050565b600060208201905081810360008301526136e081613438565b9050919050565b600060208201905081810360008301526137008161345b565b9050919050565b60006020820190508181036000830152613720816134a1565b9050919050565b60006020820190508181036000830152613740816134c4565b9050919050565b600060208201905081810360008301526137608161350a565b9050919050565b600060208201905081810360008301526137808161352d565b9050919050565b600060208201905061379c6000830184613550565b92915050565b60006137ac6137bd565b90506137b88282613a9b565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e2576137e1613c02565b5b6137eb82613c45565b9050602081019050919050565b600067ffffffffffffffff82111561381357613812613c02565b5b61381c82613c45565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061389782613a1d565b91506138a283613a1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d7576138d6613b46565b5b828201905092915050565b60006138ed82613a1d565b91506138f883613a1d565b92508261390857613907613b75565b5b828204905092915050565b600061391e82613a1d565b915061392983613a1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561396257613961613b46565b5b828202905092915050565b600061397882613a1d565b915061398383613a1d565b92508282101561399657613995613b46565b5b828203905092915050565b60006139ac826139fd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139f6826139a1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a54578082015181840152602081019050613a39565b83811115613a63576000848401525b50505050565b60006002820490506001821680613a8157607f821691505b60208210811415613a9557613a94613ba4565b5b50919050565b613aa482613c45565b810181811067ffffffffffffffff82111715613ac357613ac2613c02565b5b80604052505050565b6000613ad782613a1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0a57613b09613b46565b5b600182019050919050565b6000613b2082613a1d565b9150613b2b83613a1d565b925082613b3b57613b3a613b75565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613e4b816139a1565b8114613e5657600080fd5b50565b613e62816139b3565b8114613e6d57600080fd5b50565b613e79816139bf565b8114613e8457600080fd5b50565b613e90816139eb565b8114613e9b57600080fd5b50565b613ea781613a1d565b8114613eb257600080fd5b5056fea2646970667358221220e512957130f0697574991631881ea637f538cf5949f2bf6be0eca35b987c1d2d64736f6c63430008070033697066733a2f2f516d5568504e366a6739524c394e505434367651594c39646f4836516e374235615147456d6a6150614c335162392f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106c6578063cd7c032614610703578063e985e9c51461072e578063f2fde38b1461076b578063f43a22dc14610794576101f9565b8063a22cb46514610634578063a6b9c42e1461065d578063b88d4fde14610674578063c6119f301461069d576101f9565b806391b7f5ed116100dc57806391b7f5ed1461059957806395d89b41146105c2578063a035b1fe146105ed578063a0712d6814610618576101f9565b8063715018a6146105015780638069876d1461051857806381511e23146105435780638da5cb5b1461056e576101f9565b806332cb6b0c116101905780635c975abb1161015f5780635c975abb1461041a5780636352211e14610445578063698982ba146104825780636c0360eb1461049957806370a08231146104c4576101f9565b806332cb6b0c146103865780633ccfd60b146103b157806342842e0e146103c857806355f804b3146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f55780631e7269c51461032057806323b872dd1461035d576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061316f565b6107bf565b604051610232919061360a565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190613142565b6108a1565b005b34801561027057600080fd5b5061027961093a565b6040516102869190613625565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b1919061323f565b6109cc565b6040516102c391906135a3565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190613102565b610a48565b005b34801561030157600080fd5b5061030a610b53565b6040516103179190613787565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190612f7f565b610b6a565b6040516103549190613787565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190612fec565b610b7c565b005b34801561039257600080fd5b5061039b610b8c565b6040516103a89190613787565b60405180910390f35b3480156103bd57600080fd5b506103c6610b92565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612fec565b610cca565b005b3480156103fd57600080fd5b50610418600480360381019061041391906131f6565b610cea565b005b34801561042657600080fd5b5061042f610d80565b60405161043c919061360a565b60405180910390f35b34801561045157600080fd5b5061046c6004803603810190610467919061323f565b610d93565b60405161047991906135a3565b60405180910390f35b34801561048e57600080fd5b50610497610da9565b005b3480156104a557600080fd5b506104ae610e39565b6040516104bb9190613625565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612f7f565b610ec7565b6040516104f89190613787565b60405180910390f35b34801561050d57600080fd5b50610516610f97565b005b34801561052457600080fd5b5061052d61101f565b60405161053a9190613787565b60405180910390f35b34801561054f57600080fd5b50610558611024565b6040516105659190613787565b60405180910390f35b34801561057a57600080fd5b50610583611029565b60405161059091906135a3565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb919061323f565b611053565b005b3480156105ce57600080fd5b506105d76110d9565b6040516105e49190613625565b60405180910390f35b3480156105f957600080fd5b5061060261116b565b60405161060f9190613787565b60405180910390f35b610632600480360381019061062d919061323f565b611171565b005b34801561064057600080fd5b5061065b600480360381019061065691906130c2565b6113b3565b005b34801561066957600080fd5b5061067261152b565b005b34801561068057600080fd5b5061069b6004803603810190610696919061303f565b611663565b005b3480156106a957600080fd5b506106c460048036038101906106bf919061323f565b6116df565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061323f565b611765565b6040516106fa9190613625565b60405180910390f35b34801561070f57600080fd5b5061071861180d565b60405161072591906135a3565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190612fac565b611825565b604051610762919061360a565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190612f7f565b611919565b005b3480156107a057600080fd5b506107a9611a11565b6040516107b69190613787565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089a575061089982611a16565b5b9050919050565b6108a9611a80565b73ffffffffffffffffffffffffffffffffffffffff166108c7611029565b73ffffffffffffffffffffffffffffffffffffffff161461091d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091490613707565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461094990613a69565b80601f016020809104026020016040519081016040528092919081815260200182805461097590613a69565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b60006109d782611a88565b610a0d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5382610d93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610abb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ada611a80565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b0c5750610b0a81610b05611a80565b611825565b155b15610b43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4e838383611ad6565b505050565b6000610b5d611b88565b6001546000540303905090565b6000610b7582611b91565b9050919050565b610b87838383611c61565b505050565b600a5481565b610b9a611a80565b73ffffffffffffffffffffffffffffffffffffffff16610bb8611029565b73ffffffffffffffffffffffffffffffffffffffff1614610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590613707565b60405180910390fd5b60004790506000610c1d611a80565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c409061358e565b60006040518083038185875af1925050503d8060008114610c7d576040519150601f19603f3d011682016040523d82523d6000602084013e610c82565b606091505b5050905080610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd90613747565b60405180910390fd5b5050565b610ce583838360405180602001604052806000815250611663565b505050565b610cf2611a80565b73ffffffffffffffffffffffffffffffffffffffff16610d10611029565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613707565b60405180910390fd5b8060099080519060200190610d7c929190612d3b565b5050565b600c60009054906101000a900460ff1681565b6000610d9e82612152565b600001519050919050565b610db1611a80565b73ffffffffffffffffffffffffffffffffffffffff16610dcf611029565b73ffffffffffffffffffffffffffffffffffffffff1614610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613707565b60405180910390fd5b610e37610e30611a80565b60016123e1565b565b60098054610e4690613a69565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7290613a69565b8015610ebf5780601f10610e9457610100808354040283529160200191610ebf565b820191906000526020600020905b815481529060010190602001808311610ea257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f9f611a80565b73ffffffffffffffffffffffffffffffffffffffff16610fbd611029565b73ffffffffffffffffffffffffffffffffffffffff1614611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613707565b60405180910390fd5b61101d60006123ff565b565b609681565b600181565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61105b611a80565b73ffffffffffffffffffffffffffffffffffffffff16611079611029565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613707565b60405180910390fd5b80600b8190555050565b6060600380546110e890613a69565b80601f016020809104026020016040519081016040528092919081815260200182805461111490613a69565b80156111615780601f1061113657610100808354040283529160200191611161565b820191906000526020600020905b81548152906001019060200180831161114457829003601f168201915b5050505050905090565b600b5481565b6000600b5490506000600a90506001609661118c919061388c565b83611195610b53565b61119f919061388c565b10156111ae5760009150600590505b60006111b8611a80565b9050600c60009054906101000a900460ff161561120a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120190613647565b60405180910390fd5b83611213610b53565b61121d919061388c565b600a541015611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906136c7565b60405180910390fd5b600084116112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b906136a7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130990613767565b60405180910390fd5b83821015611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613687565b60405180910390fd5b3483856113629190613913565b11156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90613727565b60405180910390fd5b6113ad81856123e1565b50505050565b6113bb611a80565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611420576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061142d611a80565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114da611a80565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161151f919061360a565b60405180910390a35050565b611533611a80565b73ffffffffffffffffffffffffffffffffffffffff16611551611029565b73ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613707565b60405180910390fd5b600047905060006115b6611a80565b73ffffffffffffffffffffffffffffffffffffffff16826040516115d99061358e565b60006040518083038185875af1925050503d8060008114611616576040519150601f19603f3d011682016040523d82523d6000602084013e61161b565b606091505b505090508061165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613747565b60405180910390fd5b5050565b61166e848484611c61565b61168d8373ffffffffffffffffffffffffffffffffffffffff166124c5565b80156116a257506116a0848484846124e8565b155b156116d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6116e7611a80565b73ffffffffffffffffffffffffffffffffffffffff16611705611029565b73ffffffffffffffffffffffffffffffffffffffff161461175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613707565b60405180910390fd5b80600a8190555050565b606061177082611a88565b6117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a6906136e7565b60405180910390fd5b6000600980546117be90613a69565b9050116117da5760405180602001604052806000815250611806565b60096117e583612648565b6040516020016117f692919061355f565b6040516020818303038152906040525b9050919050565b734610d0fb4e26c67d56eacd10c136dbfe65f8148b81565b600080734610d0fb4e26c67d56eacd10c136dbfe65f8148b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161188f91906135a3565b60206040518083038186803b1580156118a757600080fd5b505afa1580156118bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118df91906131c9565b73ffffffffffffffffffffffffffffffffffffffff161415611905576001915050611913565b61190f84846127a9565b9150505b92915050565b611921611a80565b73ffffffffffffffffffffffffffffffffffffffff1661193f611029565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613707565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fc90613667565b60405180910390fd5b611a0e816123ff565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611a93611b88565b11158015611aa2575060005482105b8015611acf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf9576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c6c82612152565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c93611a80565b73ffffffffffffffffffffffffffffffffffffffff161480611cc65750611cc58260000151611cc0611a80565b611825565b5b80611d0b5750611cd4611a80565b73ffffffffffffffffffffffffffffffffffffffff16611cf3846109cc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d44576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e14576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e21858585600161283d565b611e316000848460000151611ad6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120e2576000548110156120e15782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214b8585856001612843565b5050505050565b61215a612dc1565b600082905080612168611b88565b11158015612177575060005481105b156123aa576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123a857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461228c5780925050506123dc565b5b6001156123a757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123a25780925050506123dc565b61228d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6123fb828260405180602001604052806000815250612849565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250e611a80565b8786866040518563ffffffff1660e01b815260040161253094939291906135be565b602060405180830381600087803b15801561254a57600080fd5b505af192505050801561257b57506040513d601f19601f82011682018060405250810190612578919061319c565b60015b6125f5573d80600081146125ab576040519150601f19603f3d011682016040523d82523d6000602084013e6125b0565b606091505b506000815114156125ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612690576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127a4565b600082905060005b600082146126c25780806126ab90613acc565b915050600a826126bb91906138e2565b9150612698565b60008167ffffffffffffffff8111156126de576126dd613c02565b5b6040519080825280601f01601f1916602001820160405280156127105781602001600182028036833780820191505090505b5090505b6000851461279d57600182612729919061396d565b9150600a856127389190613b15565b6030612744919061388c565b60f81b81838151811061275a57612759613bd3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561279691906138e2565b9450612714565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612856838383600161285b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128c8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612903576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612910600086838761283d565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061299d5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129e7575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612a2257600080600090505b615ecd811015612a1f578180612a0990613acc565b9250508080612a1790613acc565b9150506129f4565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bec5750612beb8773ffffffffffffffffffffffffffffffffffffffff166124c5565b5b15612cb2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6160008884806001019550886124e8565b612c97576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bf2578260005414612cad57600080fd5b612d1e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612cb3575b816000819055505050612d346000868387612843565b5050505050565b828054612d4790613a69565b90600052602060002090601f016020900481019282612d695760008555612db0565b82601f10612d8257805160ff1916838001178555612db0565b82800160010185558215612db0579182015b82811115612daf578251825591602001919060010190612d94565b5b509050612dbd9190612e04565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e1d576000816000905550600101612e05565b5090565b6000612e34612e2f846137c7565b6137a2565b905082815260208101848484011115612e5057612e4f613c36565b5b612e5b848285613a27565b509392505050565b6000612e76612e71846137f8565b6137a2565b905082815260208101848484011115612e9257612e91613c36565b5b612e9d848285613a27565b509392505050565b600081359050612eb481613e42565b92915050565b600081359050612ec981613e59565b92915050565b600081359050612ede81613e70565b92915050565b600081519050612ef381613e70565b92915050565b600082601f830112612f0e57612f0d613c31565b5b8135612f1e848260208601612e21565b91505092915050565b600081519050612f3681613e87565b92915050565b600082601f830112612f5157612f50613c31565b5b8135612f61848260208601612e63565b91505092915050565b600081359050612f7981613e9e565b92915050565b600060208284031215612f9557612f94613c40565b5b6000612fa384828501612ea5565b91505092915050565b60008060408385031215612fc357612fc2613c40565b5b6000612fd185828601612ea5565b9250506020612fe285828601612ea5565b9150509250929050565b60008060006060848603121561300557613004613c40565b5b600061301386828701612ea5565b935050602061302486828701612ea5565b925050604061303586828701612f6a565b9150509250925092565b6000806000806080858703121561305957613058613c40565b5b600061306787828801612ea5565b945050602061307887828801612ea5565b935050604061308987828801612f6a565b925050606085013567ffffffffffffffff8111156130aa576130a9613c3b565b5b6130b687828801612ef9565b91505092959194509250565b600080604083850312156130d9576130d8613c40565b5b60006130e785828601612ea5565b92505060206130f885828601612eba565b9150509250929050565b6000806040838503121561311957613118613c40565b5b600061312785828601612ea5565b925050602061313885828601612f6a565b9150509250929050565b60006020828403121561315857613157613c40565b5b600061316684828501612eba565b91505092915050565b60006020828403121561318557613184613c40565b5b600061319384828501612ecf565b91505092915050565b6000602082840312156131b2576131b1613c40565b5b60006131c084828501612ee4565b91505092915050565b6000602082840312156131df576131de613c40565b5b60006131ed84828501612f27565b91505092915050565b60006020828403121561320c5761320b613c40565b5b600082013567ffffffffffffffff81111561322a57613229613c3b565b5b61323684828501612f3c565b91505092915050565b60006020828403121561325557613254613c40565b5b600061326384828501612f6a565b91505092915050565b613275816139a1565b82525050565b613284816139b3565b82525050565b60006132958261383e565b61329f8185613854565b93506132af818560208601613a36565b6132b881613c45565b840191505092915050565b60006132ce82613849565b6132d88185613870565b93506132e8818560208601613a36565b6132f181613c45565b840191505092915050565b600061330782613849565b6133118185613881565b9350613321818560208601613a36565b80840191505092915050565b6000815461333a81613a69565b6133448186613881565b9450600182166000811461335f5760018114613370576133a3565b60ff198316865281860193506133a3565b61337985613829565b60005b8381101561339b5781548189015260018201915060208101905061337c565b838801955050505b50505092915050565b60006133b9600683613870565b91506133c482613c56565b602082019050919050565b60006133dc602683613870565b91506133e782613c7f565b604082019050919050565b60006133ff601183613870565b915061340a82613cce565b602082019050919050565b6000613422600a83613870565b915061342d82613cf7565b602082019050919050565b6000613445601283613870565b915061345082613d20565b602082019050919050565b6000613468601583613870565b915061347382613d49565b602082019050919050565b600061348b600583613881565b915061349682613d72565b600582019050919050565b60006134ae602083613870565b91506134b982613d9b565b602082019050919050565b60006134d1601683613870565b91506134dc82613dc4565b602082019050919050565b60006134f4600083613865565b91506134ff82613ded565b600082019050919050565b6000613517600e83613870565b915061352282613df0565b602082019050919050565b600061353a600c83613870565b915061354582613e19565b602082019050919050565b61355981613a1d565b82525050565b600061356b828561332d565b915061357782846132fc565b91506135828261347e565b91508190509392505050565b6000613599826134e7565b9150819050919050565b60006020820190506135b8600083018461326c565b92915050565b60006080820190506135d3600083018761326c565b6135e0602083018661326c565b6135ed6040830185613550565b81810360608301526135ff818461328a565b905095945050505050565b600060208201905061361f600083018461327b565b92915050565b6000602082019050818103600083015261363f81846132c3565b905092915050565b60006020820190508181036000830152613660816133ac565b9050919050565b60006020820190508181036000830152613680816133cf565b9050919050565b600060208201905081810360008301526136a0816133f2565b9050919050565b600060208201905081810360008301526136c081613415565b9050919050565b600060208201905081810360008301526136e081613438565b9050919050565b600060208201905081810360008301526137008161345b565b9050919050565b60006020820190508181036000830152613720816134a1565b9050919050565b60006020820190508181036000830152613740816134c4565b9050919050565b600060208201905081810360008301526137608161350a565b9050919050565b600060208201905081810360008301526137808161352d565b9050919050565b600060208201905061379c6000830184613550565b92915050565b60006137ac6137bd565b90506137b88282613a9b565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e2576137e1613c02565b5b6137eb82613c45565b9050602081019050919050565b600067ffffffffffffffff82111561381357613812613c02565b5b61381c82613c45565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061389782613a1d565b91506138a283613a1d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138d7576138d6613b46565b5b828201905092915050565b60006138ed82613a1d565b91506138f883613a1d565b92508261390857613907613b75565b5b828204905092915050565b600061391e82613a1d565b915061392983613a1d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561396257613961613b46565b5b828202905092915050565b600061397882613a1d565b915061398383613a1d565b92508282101561399657613995613b46565b5b828203905092915050565b60006139ac826139fd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139f6826139a1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a54578082015181840152602081019050613a39565b83811115613a63576000848401525b50505050565b60006002820490506001821680613a8157607f821691505b60208210811415613a9557613a94613ba4565b5b50919050565b613aa482613c45565b810181811067ffffffffffffffff82111715613ac357613ac2613c02565b5b80604052505050565b6000613ad782613a1d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0a57613b09613b46565b5b600182019050919050565b6000613b2082613a1d565b9150613b2b83613a1d565b925082613b3b57613b3a613b75565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613e4b816139a1565b8114613e5657600080fd5b50565b613e62816139b3565b8114613e6d57600080fd5b50565b613e79816139bf565b8114613e8457600080fd5b50565b613e90816139eb565b8114613e9b57600080fd5b50565b613ea781613a1d565b8114613eb257600080fd5b5056fea2646970667358221220e512957130f0697574991631881ea637f538cf5949f2bf6be0eca35b987c1d2d64736f6c63430008070033

Deployed Bytecode Sourcemap

46190:3190:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28311:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48839:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31696:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33199:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32762:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27560:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48002:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34056:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46571:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48339:209;;;;;;;;;;;;;:::i;:::-;;34297:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48928:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46651:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31505:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48558:83;;;;;;;;;;;;;:::i;:::-;;46241:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28680:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2785:103;;;;;;;;;;;;;:::i;:::-;;46519:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46472:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2134:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48745:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31865:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46609:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46754:678;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33475:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48119:205;;;;;;;;;;;;;:::i;:::-;;34553:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48649:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49036:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46328:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47549:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3043:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46426:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28311:305;28413:4;28465:25;28450:40;;;:11;:40;;;;:105;;;;28522:33;28507:48;;;:11;:48;;;;28450:105;:158;;;;28572:36;28596:11;28572:23;:36::i;:::-;28450:158;28430:178;;28311:305;;;:::o;48839:81::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48906:6:::1;48897;;:15;;;;;;;;;;;;;;;;;;48839:81:::0;:::o;31696:100::-;31750:13;31783:5;31776:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31696:100;:::o;33199:204::-;33267:7;33292:16;33300:7;33292;:16::i;:::-;33287:64;;33317:34;;;;;;;;;;;;;;33287:64;33371:15;:24;33387:7;33371:24;;;;;;;;;;;;;;;;;;;;;33364:31;;33199:204;;;:::o;32762:371::-;32835:13;32851:24;32867:7;32851:15;:24::i;:::-;32835:40;;32896:5;32890:11;;:2;:11;;;32886:48;;;32910:24;;;;;;;;;;;;;;32886:48;32967:5;32951:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32977:37;32994:5;33001:12;:10;:12::i;:::-;32977:16;:37::i;:::-;32976:38;32951:63;32947:138;;;33038:35;;;;;;;;;;;;;;32947:138;33097:28;33106:2;33110:7;33119:5;33097:8;:28::i;:::-;32824:309;32762:371;;:::o;27560:303::-;27604:7;27829:15;:13;:15::i;:::-;27814:12;;27798:13;;:28;:46;27791:53;;27560:303;:::o;48002:109::-;48055:7;48082:21;48096:6;48082:13;:21::i;:::-;48075:28;;48002:109;;;:::o;34056:170::-;34190:28;34200:4;34206:2;34210:7;34190:9;:28::i;:::-;34056:170;;;:::o;46571:31::-;;;;:::o;48339:209::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48389:15:::1;48407:21;48389:39;;48440:12;48458;:10;:12::i;:::-;:17;;48483:7;48458:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48439:56;;;48514:7;48506:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48378:170;;48339:209::o:0;34297:185::-;34435:39;34452:4;34458:2;34462:7;34435:39;;;;;;;;;;;;:16;:39::i;:::-;34297:185;;;:::o;48928:100::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49012:8:::1;49002:7;:18;;;;;;;;;;;;:::i;:::-;;48928:100:::0;:::o;46651:26::-;;;;;;;;;;;;;:::o;31505:124::-;31569:7;31596:20;31608:7;31596:11;:20::i;:::-;:25;;;31589:32;;31505:124;;;:::o;48558:83::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48607:26:::1;48617:12;:10;:12::i;:::-;48631:1;48607:9;:26::i;:::-;48558:83::o:0;46241:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28680:206::-;28744:7;28785:1;28768:19;;:5;:19;;;28764:60;;;28796:28;;;;;;;;;;;;;;28764:60;28850:12;:19;28863:5;28850:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28842:36;;28835:43;;28680:206;;;:::o;2785:103::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2850:30:::1;2877:1;2850:18;:30::i;:::-;2785:103::o:0;46519:45::-;46561:3;46519:45;:::o;46472:40::-;46511:1;46472:40;:::o;2134:87::-;2180:7;2207:6;;;;;;;;;;;2200:13;;2134:87;:::o;48745:86::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48817:6:::1;48809:5;:14;;;;48745:86:::0;:::o;31865:104::-;31921:13;31954:7;31947:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31865:104;:::o;46609:33::-;;;;:::o;46754:678::-;46819:9;46831:5;;46819:17;;46847:12;46463:2;46847:25;;46930:1;46561:3;46912:19;;;;:::i;:::-;46902:7;46886:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:45;46883:111;;;46955:1;46948:8;;46981:1;46971:11;;46883:111;47004:15;47022:12;:10;:12::i;:::-;47004:30;;47054:6;;;;;;;;;;;47053:7;47045:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47120:7;47104:13;:11;:13::i;:::-;:23;;;;:::i;:::-;47090:10;;:37;;47082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47179:1;47169:7;:11;47161:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47227:7;47214:20;;:9;:20;;;47206:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47281:7;47270;:18;;47262:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47348:9;47340:4;47330:7;:14;;;;:::i;:::-;:27;;47322:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47397:27;47407:7;47416;47397:9;:27::i;:::-;46808:624;;;46754:678;:::o;33475:279::-;33578:12;:10;:12::i;:::-;33566:24;;:8;:24;;;33562:54;;;33599:17;;;;;;;;;;;;;;33562:54;33674:8;33629:18;:32;33648:12;:10;:12::i;:::-;33629:32;;;;;;;;;;;;;;;:42;33662:8;33629:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33727:8;33698:48;;33713:12;:10;:12::i;:::-;33698:48;;;33737:8;33698:48;;;;;;:::i;:::-;;;;;;;;33475:279;;:::o;48119:205::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48165:15:::1;48183:21;48165:39;;48216:12;48234;:10;:12::i;:::-;:17;;48259:7;48234:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48215:56;;;48290:7;48282:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48154:170;;48119:205::o:0;34553:369::-;34720:28;34730:4;34736:2;34740:7;34720:9;:28::i;:::-;34763:15;:2;:13;;;:15::i;:::-;:76;;;;;34783:56;34814:4;34820:2;34824:7;34833:5;34783:30;:56::i;:::-;34782:57;34763:76;34759:156;;;34863:40;;;;;;;;;;;;;;34759:156;34553:369;;;;:::o;48649:88::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48725:4:::1;48712:10;:17;;;;48649:88:::0;:::o;49036:341::-;49102:13;49136:17;49144:8;49136:7;:17::i;:::-;49128:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49221:1;49203:7;49197:21;;;;;:::i;:::-;;;:25;:172;;;;;;;;;;;;;;;;;49279:7;49303:26;49320:8;49303:16;:26::i;:::-;49246:107;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49197:172;49190:179;;49036:341;;;:::o;46328:89::-;46375:42;46328:89;:::o;47549:445::-;47674:4;47759:27;46375:42;47759:65;;47880:8;47839:49;;47847:13;:21;;;47869:5;47847:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47839:49;;;47835:93;;;47912:4;47905:11;;;;;47835:93;47947:39;47970:5;47977:8;47947:22;:39::i;:::-;47940:46;;;47549:445;;;;;:::o;3043:201::-;2365:12;:10;:12::i;:::-;2354:23;;:7;:5;:7::i;:::-;:23;;;2346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3152:1:::1;3132:22;;:8;:22;;;;3124:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3208:28;3227:8;3208:18;:28::i;:::-;3043:201:::0;:::o;46426:39::-;46463:2;46426:39;:::o;23692:157::-;23777:4;23816:25;23801:40;;;:11;:40;;;;23794:47;;23692:157;;;:::o;875:98::-;928:7;955:10;948:17;;875:98;:::o;35177:187::-;35234:4;35277:7;35258:15;:13;:15::i;:::-;:26;;:53;;;;;35298:13;;35288:7;:23;35258:53;:98;;;;;35329:11;:20;35341:7;35329:20;;;;;;;;;;;:27;;;;;;;;;;;;35328:28;35258:98;35251:105;;35177:187;;;:::o;43168:196::-;43310:2;43283:15;:24;43299:7;43283:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43348:7;43344:2;43328:28;;43337:5;43328:28;;;;;;;;;;;;43168:196;;;:::o;47440:101::-;47505:7;47532:1;47525:8;;47440:101;:::o;28968:207::-;29029:7;29070:1;29053:19;;:5;:19;;;29049:59;;;29081:27;;;;;;;;;;;;;;29049:59;29134:12;:19;29147:5;29134:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29126:41;;29119:48;;28968:207;;;:::o;38670:2112::-;38785:35;38823:20;38835:7;38823:11;:20::i;:::-;38785:58;;38856:22;38898:13;:18;;;38882:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38933:50;38950:13;:18;;;38970:12;:10;:12::i;:::-;38933:16;:50::i;:::-;38882:101;:154;;;;39024:12;:10;:12::i;:::-;39000:36;;:20;39012:7;39000:11;:20::i;:::-;:36;;;38882:154;38856:181;;39055:17;39050:66;;39081:35;;;;;;;;;;;;;;39050:66;39153:4;39131:26;;:13;:18;;;:26;;;39127:67;;39166:28;;;;;;;;;;;;;;39127:67;39223:1;39209:16;;:2;:16;;;39205:52;;;39234:23;;;;;;;;;;;;;;39205:52;39270:43;39292:4;39298:2;39302:7;39311:1;39270:21;:43::i;:::-;39378:49;39395:1;39399:7;39408:13;:18;;;39378:8;:49::i;:::-;39753:1;39723:12;:18;39736:4;39723:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39797:1;39769:12;:16;39782:2;39769:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39843:2;39815:11;:20;39827:7;39815:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39905:15;39860:11;:20;39872:7;39860:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40173:19;40205:1;40195:7;:11;40173:33;;40266:1;40225:43;;:11;:24;40237:11;40225:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40221:445;;;40450:13;;40436:11;:27;40432:219;;;40520:13;:18;;;40488:11;:24;40500:11;40488:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40603:13;:28;;;40561:11;:24;40573:11;40561:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40432:219;40221:445;39698:979;40713:7;40709:2;40694:27;;40703:4;40694:27;;;;;;;;;;;;40732:42;40753:4;40759:2;40763:7;40772:1;40732:20;:42::i;:::-;38774:2008;;38670:2112;;;:::o;30335:1108::-;30396:21;;:::i;:::-;30430:12;30445:7;30430:22;;30513:4;30494:15;:13;:15::i;:::-;:23;;:47;;;;;30528:13;;30521:4;:20;30494:47;30490:886;;;30562:31;30596:11;:17;30608:4;30596:17;;;;;;;;;;;30562:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30637:9;:16;;;30632:729;;30708:1;30682:28;;:9;:14;;;:28;;;30678:101;;30746:9;30739:16;;;;;;30678:101;31081:261;31088:4;31081:261;;;31121:6;;;;;;;;31166:11;:17;31178:4;31166:17;;;;;;;;;;;31154:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31240:1;31214:28;;:9;:14;;;:28;;;31210:109;;31282:9;31275:16;;;;;;31210:109;31081:261;;;30632:729;30543:833;30490:886;31404:31;;;;;;;;;;;;;;30335:1108;;;;:::o;35372:104::-;35441:27;35451:2;35455:8;35441:27;;;;;;;;;;;;:9;:27::i;:::-;35372:104;;:::o;3404:191::-;3478:16;3497:6;;;;;;;;;;;3478:25;;3523:8;3514:6;;:17;;;;;;;;;;;;;;;;;;3578:8;3547:40;;3568:8;3547:40;;;;;;;;;;;;3467:128;3404:191;:::o;13465:326::-;13525:4;13782:1;13760:7;:19;;;:23;13753:30;;13465:326;;;:::o;43856:667::-;44019:4;44056:2;44040:36;;;44077:12;:10;:12::i;:::-;44091:4;44097:7;44106:5;44040:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44036:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44291:1;44274:6;:13;:18;44270:235;;;44320:40;;;;;;;;;;;;;;44270:235;44463:6;44457:13;44448:6;44444:2;44440:15;44433:38;44036:480;44169:45;;;44159:55;;;:6;:55;;;;44152:62;;;43856:667;;;;;;:::o;21085:723::-;21141:13;21371:1;21362:5;:10;21358:53;;;21389:10;;;;;;;;;;;;;;;;;;;;;21358:53;21421:12;21436:5;21421:20;;21452:14;21477:78;21492:1;21484:4;:9;21477:78;;21510:8;;;;;:::i;:::-;;;;21541:2;21533:10;;;;;:::i;:::-;;;21477:78;;;21565:19;21597:6;21587:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21565:39;;21615:154;21631:1;21622:5;:10;21615:154;;21659:1;21649:11;;;;;:::i;:::-;;;21726:2;21718:5;:10;;;;:::i;:::-;21705:2;:24;;;;:::i;:::-;21692:39;;21675:6;21682;21675:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21755:2;21746:11;;;;;:::i;:::-;;;21615:154;;;21793:6;21779:21;;;;;21085:723;;;;:::o;33825:164::-;33922:4;33946:18;:25;33965:5;33946:25;;;;;;;;;;;;;;;:35;33972:8;33946:35;;;;;;;;;;;;;;;;;;;;;;;;;33939:42;;33825:164;;;;:::o;45171:159::-;;;;;:::o;45989:158::-;;;;;:::o;35839:163::-;35962:32;35968:2;35972:8;35982:5;35989:4;35962:5;:32::i;:::-;35839:163;;;:::o;36261:2155::-;36400:20;36423:13;;36400:36;;36465:1;36451:16;;:2;:16;;;36447:48;;;36476:19;;;;;;;;;;;;;;36447:48;36522:1;36510:8;:13;36506:44;;;36532:18;;;;;;;;;;;;;;36506:44;36563:61;36593:1;36597:2;36601:12;36615:8;36563:21;:61::i;:::-;36690:42;36684:48;;:2;:48;;;:113;;;;36755:42;36749:48;;:2;:48;;;36684:113;:178;;;;36820:42;36814:48;;:2;:48;;;36684:178;36667:338;;;36888:15;36923:6;36932:1;36923:10;;36918:76;36939:5;36935:1;:9;36918:76;;;36969:9;;;;;:::i;:::-;;;;36946:3;;;;;:::i;:::-;;;;36918:76;;;;36873:132;36667:338;37316:8;37281:12;:16;37294:2;37281:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37380:8;37340:12;:16;37353:2;37340:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37439:2;37406:11;:25;37418:12;37406:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37506:15;37456:11;:25;37468:12;37456:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37539:20;37562:12;37539:35;;37589:11;37618:8;37603:12;:23;37589:37;;37647:4;:23;;;;;37655:15;:2;:13;;;:15::i;:::-;37647:23;37643:641;;;37691:314;37747:12;37743:2;37722:38;;37739:1;37722:38;;;;;;;;;;;;37788:69;37827:1;37831:2;37835:14;;;;;;37851:5;37788:30;:69::i;:::-;37783:174;;37893:40;;;;;;;;;;;;;;37783:174;38000:3;37984:12;:19;;37691:314;;38086:12;38069:13;;:29;38065:43;;38100:8;;;38065:43;37643:641;;;38149:120;38205:14;;;;;;38201:2;38180:40;;38197:1;38180:40;;;;;;;;;;;;38264:3;38248:12;:19;;38149:120;;37643:641;38314:12;38298:13;:28;;;;37256:1082;;38348:60;38377:1;38381:2;38385:12;38399:8;38348:20;:60::i;:::-;36389:2027;36261:2155;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:365::-;10484:3;10505:66;10569:1;10564:3;10505:66;:::i;:::-;10498:73;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10342:365;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:400::-;12733:3;12754:84;12836:1;12831:3;12754:84;:::i;:::-;12747:91;;12847:93;12936:3;12847:93;:::i;:::-;12965:1;12960:3;12956:11;12949:18;;12573:400;;;:::o;12979:366::-;13121:3;13142:67;13206:2;13201:3;13142:67;:::i;:::-;13135:74;;13218:93;13307:3;13218:93;:::i;:::-;13336:2;13331:3;13327:12;13320:19;;12979:366;;;:::o;13351:::-;13493:3;13514:67;13578:2;13573:3;13514:67;:::i;:::-;13507:74;;13590:93;13679:3;13590:93;:::i;:::-;13708:2;13703:3;13699:12;13692:19;;13351:366;;;:::o;13723:398::-;13882:3;13903:83;13984:1;13979:3;13903:83;:::i;:::-;13896:90;;13995:93;14084:3;13995:93;:::i;:::-;14113:1;14108:3;14104:11;14097:18;;13723:398;;;:::o;14127:366::-;14269:3;14290:67;14354:2;14349:3;14290:67;:::i;:::-;14283:74;;14366:93;14455:3;14366:93;:::i;:::-;14484:2;14479:3;14475:12;14468:19;;14127:366;;;:::o;14499:::-;14641:3;14662:67;14726:2;14721:3;14662:67;:::i;:::-;14655:74;;14738:93;14827:3;14738:93;:::i;:::-;14856:2;14851:3;14847:12;14840:19;;14499:366;;;:::o;14871:118::-;14958:24;14976:5;14958:24;:::i;:::-;14953:3;14946:37;14871:118;;:::o;14995:695::-;15273:3;15295:92;15383:3;15374:6;15295:92;:::i;:::-;15288:99;;15404:95;15495:3;15486:6;15404:95;:::i;:::-;15397:102;;15516:148;15660:3;15516:148;:::i;:::-;15509:155;;15681:3;15674:10;;14995:695;;;;;:::o;15696:379::-;15880:3;15902:147;16045:3;15902:147;:::i;:::-;15895:154;;16066:3;16059:10;;15696:379;;;:::o;16081:222::-;16174:4;16212:2;16201:9;16197:18;16189:26;;16225:71;16293:1;16282:9;16278:17;16269:6;16225:71;:::i;:::-;16081:222;;;;:::o;16309:640::-;16504:4;16542:3;16531:9;16527:19;16519:27;;16556:71;16624:1;16613:9;16609:17;16600:6;16556:71;:::i;:::-;16637:72;16705:2;16694:9;16690:18;16681:6;16637:72;:::i;:::-;16719;16787:2;16776:9;16772:18;16763:6;16719:72;:::i;:::-;16838:9;16832:4;16828:20;16823:2;16812:9;16808:18;16801:48;16866:76;16937:4;16928:6;16866:76;:::i;:::-;16858:84;;16309:640;;;;;;;:::o;16955:210::-;17042:4;17080:2;17069:9;17065:18;17057:26;;17093:65;17155:1;17144:9;17140:17;17131:6;17093:65;:::i;:::-;16955:210;;;;:::o;17171:313::-;17284:4;17322:2;17311:9;17307:18;17299:26;;17371:9;17365:4;17361:20;17357:1;17346:9;17342:17;17335:47;17399:78;17472:4;17463:6;17399:78;:::i;:::-;17391:86;;17171:313;;;;:::o;17490:419::-;17656:4;17694:2;17683:9;17679:18;17671:26;;17743:9;17737:4;17733:20;17729:1;17718:9;17714:17;17707:47;17771:131;17897:4;17771:131;:::i;:::-;17763:139;;17490:419;;;:::o;17915:::-;18081:4;18119:2;18108:9;18104:18;18096:26;;18168:9;18162:4;18158:20;18154:1;18143:9;18139:17;18132:47;18196:131;18322:4;18196:131;:::i;:::-;18188:139;;17915:419;;;:::o;18340:::-;18506:4;18544:2;18533:9;18529:18;18521:26;;18593:9;18587:4;18583:20;18579:1;18568:9;18564:17;18557:47;18621:131;18747:4;18621:131;:::i;:::-;18613:139;;18340:419;;;:::o;18765:::-;18931:4;18969:2;18958:9;18954:18;18946:26;;19018:9;19012:4;19008:20;19004:1;18993:9;18989:17;18982:47;19046:131;19172:4;19046:131;:::i;:::-;19038:139;;18765:419;;;:::o;19190:::-;19356:4;19394:2;19383:9;19379:18;19371:26;;19443:9;19437:4;19433:20;19429:1;19418:9;19414:17;19407:47;19471:131;19597:4;19471:131;:::i;:::-;19463:139;;19190:419;;;:::o;19615:::-;19781:4;19819:2;19808:9;19804:18;19796:26;;19868:9;19862:4;19858:20;19854:1;19843:9;19839:17;19832:47;19896:131;20022:4;19896:131;:::i;:::-;19888:139;;19615:419;;;:::o;20040:::-;20206:4;20244:2;20233:9;20229:18;20221:26;;20293:9;20287:4;20283:20;20279:1;20268:9;20264:17;20257:47;20321:131;20447:4;20321:131;:::i;:::-;20313:139;;20040:419;;;:::o;20465:::-;20631:4;20669:2;20658:9;20654:18;20646:26;;20718:9;20712:4;20708:20;20704:1;20693:9;20689:17;20682:47;20746:131;20872:4;20746:131;:::i;:::-;20738:139;;20465:419;;;:::o;20890:::-;21056:4;21094:2;21083:9;21079:18;21071:26;;21143:9;21137:4;21133:20;21129:1;21118:9;21114:17;21107:47;21171:131;21297:4;21171:131;:::i;:::-;21163:139;;20890:419;;;:::o;21315:::-;21481:4;21519:2;21508:9;21504:18;21496:26;;21568:9;21562:4;21558:20;21554:1;21543:9;21539:17;21532:47;21596:131;21722:4;21596:131;:::i;:::-;21588:139;;21315:419;;;:::o;21740:222::-;21833:4;21871:2;21860:9;21856:18;21848:26;;21884:71;21952:1;21941:9;21937:17;21928:6;21884:71;:::i;:::-;21740:222;;;;:::o;21968:129::-;22002:6;22029:20;;:::i;:::-;22019:30;;22058:33;22086:4;22078:6;22058:33;:::i;:::-;21968:129;;;:::o;22103:75::-;22136:6;22169:2;22163:9;22153:19;;22103:75;:::o;22184:307::-;22245:4;22335:18;22327:6;22324:30;22321:56;;;22357:18;;:::i;:::-;22321:56;22395:29;22417:6;22395:29;:::i;:::-;22387:37;;22479:4;22473;22469:15;22461:23;;22184:307;;;:::o;22497:308::-;22559:4;22649:18;22641:6;22638:30;22635:56;;;22671:18;;:::i;:::-;22635:56;22709:29;22731:6;22709:29;:::i;:::-;22701:37;;22793:4;22787;22783:15;22775:23;;22497:308;;;:::o;22811:141::-;22860:4;22883:3;22875:11;;22906:3;22903:1;22896:14;22940:4;22937:1;22927:18;22919:26;;22811:141;;;:::o;22958:98::-;23009:6;23043:5;23037:12;23027:22;;22958:98;;;:::o;23062:99::-;23114:6;23148:5;23142:12;23132:22;;23062:99;;;:::o;23167:168::-;23250:11;23284:6;23279:3;23272:19;23324:4;23319:3;23315:14;23300:29;;23167:168;;;;:::o;23341:147::-;23442:11;23479:3;23464:18;;23341:147;;;;:::o;23494:169::-;23578:11;23612:6;23607:3;23600:19;23652:4;23647:3;23643:14;23628:29;;23494:169;;;;:::o;23669:148::-;23771:11;23808:3;23793:18;;23669:148;;;;:::o;23823:305::-;23863:3;23882:20;23900:1;23882:20;:::i;:::-;23877:25;;23916:20;23934:1;23916:20;:::i;:::-;23911:25;;24070:1;24002:66;23998:74;23995:1;23992:81;23989:107;;;24076:18;;:::i;:::-;23989:107;24120:1;24117;24113:9;24106:16;;23823:305;;;;:::o;24134:185::-;24174:1;24191:20;24209:1;24191:20;:::i;:::-;24186:25;;24225:20;24243:1;24225:20;:::i;:::-;24220:25;;24264:1;24254:35;;24269:18;;:::i;:::-;24254:35;24311:1;24308;24304:9;24299:14;;24134:185;;;;:::o;24325:348::-;24365:7;24388:20;24406:1;24388:20;:::i;:::-;24383:25;;24422:20;24440:1;24422:20;:::i;:::-;24417:25;;24610:1;24542:66;24538:74;24535:1;24532:81;24527:1;24520:9;24513:17;24509:105;24506:131;;;24617:18;;:::i;:::-;24506:131;24665:1;24662;24658:9;24647:20;;24325:348;;;;:::o;24679:191::-;24719:4;24739:20;24757:1;24739:20;:::i;:::-;24734:25;;24773:20;24791:1;24773:20;:::i;:::-;24768:25;;24812:1;24809;24806:8;24803:34;;;24817:18;;:::i;:::-;24803:34;24862:1;24859;24855:9;24847:17;;24679:191;;;;:::o;24876:96::-;24913:7;24942:24;24960:5;24942:24;:::i;:::-;24931:35;;24876:96;;;:::o;24978:90::-;25012:7;25055:5;25048:13;25041:21;25030:32;;24978:90;;;:::o;25074:149::-;25110:7;25150:66;25143:5;25139:78;25128:89;;25074:149;;;:::o;25229:125::-;25295:7;25324:24;25342:5;25324:24;:::i;:::-;25313:35;;25229:125;;;:::o;25360:126::-;25397:7;25437:42;25430:5;25426:54;25415:65;;25360:126;;;:::o;25492:77::-;25529:7;25558:5;25547:16;;25492:77;;;:::o;25575:154::-;25659:6;25654:3;25649;25636:30;25721:1;25712:6;25707:3;25703:16;25696:27;25575:154;;;:::o;25735:307::-;25803:1;25813:113;25827:6;25824:1;25821:13;25813:113;;;25912:1;25907:3;25903:11;25897:18;25893:1;25888:3;25884:11;25877:39;25849:2;25846:1;25842:10;25837:15;;25813:113;;;25944:6;25941:1;25938:13;25935:101;;;26024:1;26015:6;26010:3;26006:16;25999:27;25935:101;25784:258;25735:307;;;:::o;26048:320::-;26092:6;26129:1;26123:4;26119:12;26109:22;;26176:1;26170:4;26166:12;26197:18;26187:81;;26253:4;26245:6;26241:17;26231:27;;26187:81;26315:2;26307:6;26304:14;26284:18;26281:38;26278:84;;;26334:18;;:::i;:::-;26278:84;26099:269;26048:320;;;:::o;26374:281::-;26457:27;26479:4;26457:27;:::i;:::-;26449:6;26445:40;26587:6;26575:10;26572:22;26551:18;26539:10;26536:34;26533:62;26530:88;;;26598:18;;:::i;:::-;26530:88;26638:10;26634:2;26627:22;26417:238;26374:281;;:::o;26661:233::-;26700:3;26723:24;26741:5;26723:24;:::i;:::-;26714:33;;26769:66;26762:5;26759:77;26756:103;;;26839:18;;:::i;:::-;26756:103;26886:1;26879:5;26875:13;26868:20;;26661:233;;;:::o;26900:176::-;26932:1;26949:20;26967:1;26949:20;:::i;:::-;26944:25;;26983:20;27001:1;26983:20;:::i;:::-;26978:25;;27022:1;27012:35;;27027:18;;:::i;:::-;27012:35;27068:1;27065;27061:9;27056:14;;26900:176;;;;:::o;27082:180::-;27130:77;27127:1;27120:88;27227:4;27224:1;27217:15;27251:4;27248:1;27241:15;27268:180;27316:77;27313:1;27306:88;27413:4;27410:1;27403:15;27437:4;27434:1;27427:15;27454:180;27502:77;27499:1;27492:88;27599:4;27596:1;27589:15;27623:4;27620:1;27613:15;27640:180;27688:77;27685:1;27678:88;27785:4;27782:1;27775:15;27809:4;27806:1;27799:15;27826:180;27874:77;27871:1;27864:88;27971:4;27968:1;27961:15;27995:4;27992:1;27985:15;28012:117;28121:1;28118;28111:12;28135:117;28244:1;28241;28234:12;28258:117;28367:1;28364;28357:12;28381:117;28490:1;28487;28480:12;28504:102;28545:6;28596:2;28592:7;28587:2;28580:5;28576:14;28572:28;28562:38;;28504:102;;;:::o;28612:156::-;28752:8;28748:1;28740:6;28736:14;28729:32;28612:156;:::o;28774:225::-;28914:34;28910:1;28902:6;28898:14;28891:58;28983:8;28978:2;28970:6;28966:15;28959:33;28774:225;:::o;29005:167::-;29145:19;29141:1;29133:6;29129:14;29122:43;29005:167;:::o;29178:160::-;29318:12;29314:1;29306:6;29302:14;29295:36;29178:160;:::o;29344:168::-;29484:20;29480:1;29472:6;29468:14;29461:44;29344:168;:::o;29518:171::-;29658:23;29654:1;29646:6;29642:14;29635:47;29518:171;:::o;29695:155::-;29835:7;29831:1;29823:6;29819:14;29812:31;29695:155;:::o;29856:182::-;29996:34;29992:1;29984:6;29980:14;29973:58;29856:182;:::o;30044:172::-;30184:24;30180:1;30172:6;30168:14;30161:48;30044:172;:::o;30222:114::-;;:::o;30342:164::-;30482:16;30478:1;30470:6;30466:14;30459:40;30342:164;:::o;30512:162::-;30652:14;30648:1;30640:6;30636:14;30629:38;30512:162;:::o;30680:122::-;30753:24;30771:5;30753:24;:::i;:::-;30746:5;30743:35;30733:63;;30792:1;30789;30782:12;30733:63;30680:122;:::o;30808:116::-;30878:21;30893:5;30878:21;:::i;:::-;30871:5;30868:32;30858:60;;30914:1;30911;30904:12;30858:60;30808:116;:::o;30930:120::-;31002:23;31019:5;31002:23;:::i;:::-;30995:5;30992:34;30982:62;;31040:1;31037;31030:12;30982:62;30930:120;:::o;31056:180::-;31158:53;31205:5;31158:53;:::i;:::-;31151:5;31148:64;31138:92;;31226:1;31223;31216:12;31138:92;31056:180;:::o;31242:122::-;31315:24;31333:5;31315:24;:::i;:::-;31308:5;31305:35;31295:63;;31354:1;31351;31344:12;31295:63;31242:122;:::o

Swarm Source

ipfs://e512957130f0697574991631881ea637f538cf5949f2bf6be0eca35b987c1d2d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.