ETH Price: $3,075.81 (-1.43%)
Gas: 2 Gwei

Token

shitpunkz.wtf (SHEESH)
 

Overview

Max Total Supply

7,000 SHEESH

Holders

2,439

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SHEESH
0xe214ef01964cac191a5330141dc189371b38f95e
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:
ShitPunkz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)


pragma solidity ^0.8.4;

/**
 * @dev Also, it 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 public _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 = 0x60e4055aB5339e0a896f183AE675AA1B6d0Fc94A;
    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 ShitPunkz is ERC721A, Owneable {

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

    uint256 public MaxPerWalletFree = 2;
    uint256 public constant MAX_PER_TX = 40;
    uint256 public constant MAX_SUPPLY = 7000;
    uint256 public price = 0.011 ether;

    bool public paused = true;

    constructor() ERC721A("shitpunkz.wtf", "SHEESH") {}

    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(_numberMinted(msg.sender) >= MaxPerWalletFree) {
            require(msg.value >= _amount * price, "Invalid funds provided");
        } else{
            uint count = _numberMinted(msg.sender) + _amount;
            if(count > MaxPerWalletFree){
                require(msg.value >= (count - MaxPerWalletFree) * price , "Insufficient funds");
            } 
        }
        payable(owner()).transfer(msg.value);
        _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 reserveBulk(address[] memory to) external onlyOwner {
        for (uint i = 0; i < to.length;i++) {
            _safeMint(to[i], 1);
        }
    }

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

    function setMaxPerWalletFree(uint256 newMaxPerWalletFree) public onlyOwner {
        MaxPerWalletFree = newMaxPerWalletFree;
    }

    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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxPerWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"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":"to","type":"address[]"}],"name":"reserveBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWalletFree","type":"uint256"}],"name":"setMaxPerWalletFree","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"}]

60806040527360e4055ab5339e0a896f183ae675aa1b6d0fc94a600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806080016040528060438152602001620045f660439139600a90805190602001906200008a92919062000273565b506002600b556627147114878000600c556001600d60006101000a81548160ff021916908315150217905550348015620000c357600080fd5b506040518060400160405280600d81526020017f7368697470756e6b7a2e777466000000000000000000000000000000000000008152506040518060400160405280600681526020017f534845455348000000000000000000000000000000000000000000000000000081525081600290805190602001906200014892919062000273565b5080600390805190602001906200016192919062000273565b5062000172620001a060201b60201c565b60008190555050506200019a6200018e620001a560201b60201c565b620001ad60201b60201c565b62000388565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002819062000323565b90600052602060002090601f016020900481019282620002a55760008555620002f1565b82601f10620002c057805160ff1916838001178555620002f1565b82800160010185558215620002f1579182015b82811115620002f0578251825591602001919060010190620002d3565b5b50905062000300919062000304565b5090565b5b808211156200031f57600081600090555060010162000305565b5090565b600060028204905060018216806200033c57607f821691505b6020821081141562000353576200035262000359565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61425e80620003986000396000f3fe6080604052600436106101f95760003560e01c806379502c551161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106c6578063cd7c032614610703578063e985e9c51461072e578063f2fde38b1461076b578063f43a22dc14610794576101f9565b8063a22cb4651461061e578063b2bdfa7b14610647578063b88d4fde14610672578063c66828621461069b576101f9565b806391b7f5ed116100dc57806391b7f5ed1461058357806395d89b41146105ac578063a035b1fe146105d7578063a0712d6814610602576101f9565b806379502c55146104ef5780637ba5b5fb146105065780637e4289631461052f5780638da5cb5b14610558576101f9565b80633ccfd60b116101905780635c975abb1161015f5780635c975abb146104085780636352211e146104335780636c0360eb1461047057806370a082311461049b578063715018a6146104d8576101f9565b80633ccfd60b1461037457806342842e0e1461038b578063483e4d2d146103b457806355f804b3146103df576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f557806323b872dd1461032057806332cb6b0c14610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061348f565b6107bf565b604051610232919061392c565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190613462565b6108a1565b005b34801561027057600080fd5b50610279610999565b6040516102869190613947565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b1919061355f565b610a2b565b6040516102c391906138c5565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee91906133d9565b610aa7565b005b34801561030157600080fd5b5061030a610bb2565b6040516103179190613ac9565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906132c3565b610bc9565b005b34801561035557600080fd5b5061035e610bd9565b60405161036b9190613ac9565b60405180910390f35b34801561038057600080fd5b50610389610bdf565b005b34801561039757600080fd5b506103b260048036038101906103ad91906132c3565b610d76565b005b3480156103c057600080fd5b506103c9610d96565b6040516103d69190613ac9565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190613516565b610d9c565b005b34801561041457600080fd5b5061041d610e91565b60405161042a919061392c565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061355f565b610ea4565b60405161046791906138c5565b60405180910390f35b34801561047c57600080fd5b50610485610eba565b6040516104929190613947565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613256565b610f48565b6040516104cf9190613ac9565b60405180910390f35b3480156104e457600080fd5b506104ed611018565b005b3480156104fb57600080fd5b506105046110a0565b005b34801561051257600080fd5b5061052d60048036038101906105289190613419565b61118f565b005b34801561053b57600080fd5b506105566004803603810190610551919061355f565b6112b2565b005b34801561056457600080fd5b5061056d611397565b60405161057a91906138c5565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a5919061355f565b6113c1565b005b3480156105b857600080fd5b506105c16114a6565b6040516105ce9190613947565b60405180910390f35b3480156105e357600080fd5b506105ec611538565b6040516105f99190613ac9565b60405180910390f35b61061c6004803603810190610617919061355f565b61153e565b005b34801561062a57600080fd5b5061064560048036038101906106409190613399565b61182a565b005b34801561065357600080fd5b5061065c6119a2565b60405161066991906138c5565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190613316565b6119c8565b005b3480156106a757600080fd5b506106b0611a44565b6040516106bd9190613947565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e8919061355f565b611a7d565b6040516106fa9190613947565b60405180910390f35b34801561070f57600080fd5b50610718611b5c565b60405161072591906138c5565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190613283565b611b74565b604051610762919061392c565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190613256565b611c68565b005b3480156107a057600080fd5b506107a9611d60565b6040516107b69190613ac9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089a575061089982611d65565b5b9050919050565b6108a9611dcf565b73ffffffffffffffffffffffffffffffffffffffff166108c7611397565b73ffffffffffffffffffffffffffffffffffffffff16148061093d57506108ec611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390613a49565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600280546109a890613dd7565b80601f01602080910402602001604051908101604052809291908181526020018280546109d490613dd7565b8015610a215780601f106109f657610100808354040283529160200191610a21565b820191906000526020600020905b815481529060010190602001808311610a0457829003601f168201915b5050505050905090565b6000610a3682611dd7565b610a6c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab282610ea4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b39611dcf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6b5750610b6981610b64611dcf565b611b74565b155b15610ba2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bad838383611e25565b505050565b6000610bbc611ed7565b6001546000540303905090565b610bd4838383611edc565b505050565b611b5881565b610be7611dcf565b73ffffffffffffffffffffffffffffffffffffffff16610c05611397565b73ffffffffffffffffffffffffffffffffffffffff161480610c7b5750610c2a611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613a49565b60405180910390fd5b60004790506000610cc9611dcf565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cec906138b0565b60006040518083038185875af1925050503d8060008114610d29576040519150601f19603f3d011682016040523d82523d6000602084013e610d2e565b606091505b5050905080610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990613a89565b60405180910390fd5b5050565b610d91838383604051806020016040528060008152506119c8565b505050565b600b5481565b610da4611dcf565b73ffffffffffffffffffffffffffffffffffffffff16610dc2611397565b73ffffffffffffffffffffffffffffffffffffffff161480610e385750610de7611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613a49565b60405180910390fd5b80600a9080519060200190610e8d929190612f74565b5050565b600d60009054906101000a900460ff1681565b6000610eaf826123cd565b600001519050919050565b600a8054610ec790613dd7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef390613dd7565b8015610f405780601f10610f1557610100808354040283529160200191610f40565b820191906000526020600020905b815481529060010190602001808311610f2357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611020611dcf565b73ffffffffffffffffffffffffffffffffffffffff1661103e611397565b73ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90613a49565b60405180910390fd5b61109e600061265c565b565b6110a8611dcf565b73ffffffffffffffffffffffffffffffffffffffff166110c6611397565b73ffffffffffffffffffffffffffffffffffffffff16148061113c57506110eb611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613a49565b60405180910390fd5b61118d611186611dcf565b6001612722565b565b611197611dcf565b73ffffffffffffffffffffffffffffffffffffffff166111b5611397565b73ffffffffffffffffffffffffffffffffffffffff16148061122b57506111da611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190613a49565b60405180910390fd5b60005b81518110156112ae5761129b82828151811061128c5761128b613f41565b5b60200260200101516001612722565b80806112a690613e3a565b91505061126d565b5050565b6112ba611dcf565b73ffffffffffffffffffffffffffffffffffffffff166112d8611397565b73ffffffffffffffffffffffffffffffffffffffff16148061134e57506112fd611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613a49565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113c9611dcf565b73ffffffffffffffffffffffffffffffffffffffff166113e7611397565b73ffffffffffffffffffffffffffffffffffffffff16148061145d575061140c611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390613a49565b60405180910390fd5b80600c8190555050565b6060600380546114b590613dd7565b80601f01602080910402602001604051908101604052809291908181526020018280546114e190613dd7565b801561152e5780601f106115035761010080835404028352916020019161152e565b820191906000526020600020905b81548152906001019060200180831161151157829003601f168201915b5050505050905090565b600c5481565b6000611548611dcf565b9050600d60009054906101000a900460ff161561159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613969565b60405180910390fd5b816115a3610bb2565b6115ad9190613bfa565b611b5810156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890613a09565b60405180910390fd5b60008211611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b906139a9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613aa9565b60405180910390fd5b81602810156116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd906139c9565b60405180910390fd5b600b546116f233612740565b1061174c57600c54826117059190613c81565b341015611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90613a69565b60405180910390fd5b6117ce565b60008261175833612740565b6117629190613bfa565b9050600b548111156117cc57600c54600b548261177f9190613cdb565b6117899190613c81565b3410156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c2906139e9565b60405180910390fd5b5b505b6117d6611397565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561181b573d6000803e3d6000fd5b506118268183612722565b5050565b611832611dcf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611897576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118a4611dcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611951611dcf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611996919061392c565b60405180910390a35050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119d3848484611edc565b6119f28373ffffffffffffffffffffffffffffffffffffffff16612810565b8015611a075750611a0584848484612833565b155b15611a3e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060611a8882611dd7565b611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613a29565b60405180910390fd5b6000600a8054611ad690613dd7565b905011611af25760405180602001604052806000815250611b55565b600a611afd83612993565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611b459392919061387f565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611bde91906138c5565b60206040518083038186803b158015611bf657600080fd5b505afa158015611c0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2e91906134e9565b73ffffffffffffffffffffffffffffffffffffffff161415611c54576001915050611c62565b611c5e8484612af4565b9150505b92915050565b611c70611dcf565b73ffffffffffffffffffffffffffffffffffffffff16611c8e611397565b73ffffffffffffffffffffffffffffffffffffffff1614611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613a49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613989565b60405180910390fd5b611d5d8161265c565b50565b602881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611de2611ed7565b11158015611df1575060005482105b8015611e1e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611ee7826123cd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f0e611dcf565b73ffffffffffffffffffffffffffffffffffffffff161480611f415750611f408260000151611f3b611dcf565b611b74565b5b80611f865750611f4f611dcf565b73ffffffffffffffffffffffffffffffffffffffff16611f6e84610a2b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fbf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612028576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561208f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61209c8585856001612b88565b6120ac6000848460000151611e25565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561235d5760005481101561235c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c68585856001612b8e565b5050505050565b6123d5612ffa565b6000829050806123e3611ed7565b111580156123f2575060005481105b15612625576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161262357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612507578092505050612657565b5b60011561262257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461261d578092505050612657565b612508565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61273c828260405180602001604052806000815250612b94565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127a8576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612859611dcf565b8786866040518563ffffffff1660e01b815260040161287b94939291906138e0565b602060405180830381600087803b15801561289557600080fd5b505af19250505080156128c657506040513d601f19601f820116820180604052508101906128c391906134bc565b60015b612940573d80600081146128f6576040519150601f19603f3d011682016040523d82523d6000602084013e6128fb565b606091505b50600081511415612938576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156129db576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aef565b600082905060005b60008214612a0d5780806129f690613e3a565b915050600a82612a069190613c50565b91506129e3565b60008167ffffffffffffffff811115612a2957612a28613f70565b5b6040519080825280601f01601f191660200182016040528015612a5b5781602001600182028036833780820191505090505b5090505b60008514612ae857600182612a749190613cdb565b9150600a85612a839190613e83565b6030612a8f9190613bfa565b60f81b818381518110612aa557612aa4613f41565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae19190613c50565b9450612a5f565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612ba18383836001612ba6565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c13576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c4e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c5b6000868387612b88565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e255750612e248773ffffffffffffffffffffffffffffffffffffffff16612810565b5b15612eeb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e9a6000888480600101955088612833565b612ed0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e2b578260005414612ee657600080fd5b612f57565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612eec575b816000819055505050612f6d6000868387612b8e565b5050505050565b828054612f8090613dd7565b90600052602060002090601f016020900481019282612fa25760008555612fe9565b82601f10612fbb57805160ff1916838001178555612fe9565b82800160010185558215612fe9579182015b82811115612fe8578251825591602001919060010190612fcd565b5b509050612ff6919061303d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561305657600081600090555060010161303e565b5090565b600061306d61306884613b09565b613ae4565b905080838252602082019050828560208602820111156130905761308f613fa4565b5b60005b858110156130c057816130a6888261314e565b845260208401935060208301925050600181019050613093565b5050509392505050565b60006130dd6130d884613b35565b613ae4565b9050828152602081018484840111156130f9576130f8613fa9565b5b613104848285613d95565b509392505050565b600061311f61311a84613b66565b613ae4565b90508281526020810184848401111561313b5761313a613fa9565b5b613146848285613d95565b509392505050565b60008135905061315d816141b5565b92915050565b600082601f83011261317857613177613f9f565b5b813561318884826020860161305a565b91505092915050565b6000813590506131a0816141cc565b92915050565b6000813590506131b5816141e3565b92915050565b6000815190506131ca816141e3565b92915050565b600082601f8301126131e5576131e4613f9f565b5b81356131f58482602086016130ca565b91505092915050565b60008151905061320d816141fa565b92915050565b600082601f83011261322857613227613f9f565b5b813561323884826020860161310c565b91505092915050565b60008135905061325081614211565b92915050565b60006020828403121561326c5761326b613fb3565b5b600061327a8482850161314e565b91505092915050565b6000806040838503121561329a57613299613fb3565b5b60006132a88582860161314e565b92505060206132b98582860161314e565b9150509250929050565b6000806000606084860312156132dc576132db613fb3565b5b60006132ea8682870161314e565b93505060206132fb8682870161314e565b925050604061330c86828701613241565b9150509250925092565b600080600080608085870312156133305761332f613fb3565b5b600061333e8782880161314e565b945050602061334f8782880161314e565b935050604061336087828801613241565b925050606085013567ffffffffffffffff81111561338157613380613fae565b5b61338d878288016131d0565b91505092959194509250565b600080604083850312156133b0576133af613fb3565b5b60006133be8582860161314e565b92505060206133cf85828601613191565b9150509250929050565b600080604083850312156133f0576133ef613fb3565b5b60006133fe8582860161314e565b925050602061340f85828601613241565b9150509250929050565b60006020828403121561342f5761342e613fb3565b5b600082013567ffffffffffffffff81111561344d5761344c613fae565b5b61345984828501613163565b91505092915050565b60006020828403121561347857613477613fb3565b5b600061348684828501613191565b91505092915050565b6000602082840312156134a5576134a4613fb3565b5b60006134b3848285016131a6565b91505092915050565b6000602082840312156134d2576134d1613fb3565b5b60006134e0848285016131bb565b91505092915050565b6000602082840312156134ff576134fe613fb3565b5b600061350d848285016131fe565b91505092915050565b60006020828403121561352c5761352b613fb3565b5b600082013567ffffffffffffffff81111561354a57613549613fae565b5b61355684828501613213565b91505092915050565b60006020828403121561357557613574613fb3565b5b600061358384828501613241565b91505092915050565b61359581613d0f565b82525050565b6135a481613d21565b82525050565b60006135b582613bac565b6135bf8185613bc2565b93506135cf818560208601613da4565b6135d881613fb8565b840191505092915050565b60006135ee82613bb7565b6135f88185613bde565b9350613608818560208601613da4565b61361181613fb8565b840191505092915050565b600061362782613bb7565b6136318185613bef565b9350613641818560208601613da4565b80840191505092915050565b6000815461365a81613dd7565b6136648186613bef565b9450600182166000811461367f5760018114613690576136c3565b60ff198316865281860193506136c3565b61369985613b97565b60005b838110156136bb5781548189015260018201915060208101905061369c565b838801955050505b50505092915050565b60006136d9600683613bde565b91506136e482613fc9565b602082019050919050565b60006136fc602683613bde565b915061370782613ff2565b604082019050919050565b600061371f600a83613bde565b915061372a82614041565b602082019050919050565b6000613742601683613bde565b915061374d8261406a565b602082019050919050565b6000613765601283613bde565b915061377082614093565b602082019050919050565b6000613788601283613bde565b9150613793826140bc565b602082019050919050565b60006137ab601583613bde565b91506137b6826140e5565b602082019050919050565b60006137ce602083613bde565b91506137d98261410e565b602082019050919050565b60006137f1601683613bde565b91506137fc82614137565b602082019050919050565b6000613814600083613bd3565b915061381f82614160565b600082019050919050565b6000613837600e83613bde565b915061384282614163565b602082019050919050565b600061385a600c83613bde565b91506138658261418c565b602082019050919050565b61387981613d8b565b82525050565b600061388b828661364d565b9150613897828561361c565b91506138a3828461361c565b9150819050949350505050565b60006138bb82613807565b9150819050919050565b60006020820190506138da600083018461358c565b92915050565b60006080820190506138f5600083018761358c565b613902602083018661358c565b61390f6040830185613870565b818103606083015261392181846135aa565b905095945050505050565b6000602082019050613941600083018461359b565b92915050565b6000602082019050818103600083015261396181846135e3565b905092915050565b60006020820190508181036000830152613982816136cc565b9050919050565b600060208201905081810360008301526139a2816136ef565b9050919050565b600060208201905081810360008301526139c281613712565b9050919050565b600060208201905081810360008301526139e281613735565b9050919050565b60006020820190508181036000830152613a0281613758565b9050919050565b60006020820190508181036000830152613a228161377b565b9050919050565b60006020820190508181036000830152613a428161379e565b9050919050565b60006020820190508181036000830152613a62816137c1565b9050919050565b60006020820190508181036000830152613a82816137e4565b9050919050565b60006020820190508181036000830152613aa28161382a565b9050919050565b60006020820190508181036000830152613ac28161384d565b9050919050565b6000602082019050613ade6000830184613870565b92915050565b6000613aee613aff565b9050613afa8282613e09565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2457613b23613f70565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b5057613b4f613f70565b5b613b5982613fb8565b9050602081019050919050565b600067ffffffffffffffff821115613b8157613b80613f70565b5b613b8a82613fb8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0582613d8b565b9150613c1083613d8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4557613c44613eb4565b5b828201905092915050565b6000613c5b82613d8b565b9150613c6683613d8b565b925082613c7657613c75613ee3565b5b828204905092915050565b6000613c8c82613d8b565b9150613c9783613d8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cd057613ccf613eb4565b5b828202905092915050565b6000613ce682613d8b565b9150613cf183613d8b565b925082821015613d0457613d03613eb4565b5b828203905092915050565b6000613d1a82613d6b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613d6482613d0f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dc2578082015181840152602081019050613da7565b83811115613dd1576000848401525b50505050565b60006002820490506001821680613def57607f821691505b60208210811415613e0357613e02613f12565b5b50919050565b613e1282613fb8565b810181811067ffffffffffffffff82111715613e3157613e30613f70565b5b80604052505050565b6000613e4582613d8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7857613e77613eb4565b5b600182019050919050565b6000613e8e82613d8b565b9150613e9983613d8b565b925082613ea957613ea8613ee3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6141be81613d0f565b81146141c957600080fd5b50565b6141d581613d21565b81146141e057600080fd5b50565b6141ec81613d2d565b81146141f757600080fd5b50565b61420381613d59565b811461420e57600080fd5b50565b61421a81613d8b565b811461422557600080fd5b5056fea2646970667358221220b48c9c25bedce96867cbb1ca3e93320edd3797c63c558e1e730ea9c4d482713964736f6c63430008070033697066733a2f2f62616679626569666c36337474346333736e65626365776a7637777978797a6379787379737935703534357864337a7168746737346e676577376d2f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806379502c551161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106c6578063cd7c032614610703578063e985e9c51461072e578063f2fde38b1461076b578063f43a22dc14610794576101f9565b8063a22cb4651461061e578063b2bdfa7b14610647578063b88d4fde14610672578063c66828621461069b576101f9565b806391b7f5ed116100dc57806391b7f5ed1461058357806395d89b41146105ac578063a035b1fe146105d7578063a0712d6814610602576101f9565b806379502c55146104ef5780637ba5b5fb146105065780637e4289631461052f5780638da5cb5b14610558576101f9565b80633ccfd60b116101905780635c975abb1161015f5780635c975abb146104085780636352211e146104335780636c0360eb1461047057806370a082311461049b578063715018a6146104d8576101f9565b80633ccfd60b1461037457806342842e0e1461038b578063483e4d2d146103b457806355f804b3146103df576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f557806323b872dd1461032057806332cb6b0c14610349576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061348f565b6107bf565b604051610232919061392c565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190613462565b6108a1565b005b34801561027057600080fd5b50610279610999565b6040516102869190613947565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b1919061355f565b610a2b565b6040516102c391906138c5565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee91906133d9565b610aa7565b005b34801561030157600080fd5b5061030a610bb2565b6040516103179190613ac9565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906132c3565b610bc9565b005b34801561035557600080fd5b5061035e610bd9565b60405161036b9190613ac9565b60405180910390f35b34801561038057600080fd5b50610389610bdf565b005b34801561039757600080fd5b506103b260048036038101906103ad91906132c3565b610d76565b005b3480156103c057600080fd5b506103c9610d96565b6040516103d69190613ac9565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190613516565b610d9c565b005b34801561041457600080fd5b5061041d610e91565b60405161042a919061392c565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061355f565b610ea4565b60405161046791906138c5565b60405180910390f35b34801561047c57600080fd5b50610485610eba565b6040516104929190613947565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190613256565b610f48565b6040516104cf9190613ac9565b60405180910390f35b3480156104e457600080fd5b506104ed611018565b005b3480156104fb57600080fd5b506105046110a0565b005b34801561051257600080fd5b5061052d60048036038101906105289190613419565b61118f565b005b34801561053b57600080fd5b506105566004803603810190610551919061355f565b6112b2565b005b34801561056457600080fd5b5061056d611397565b60405161057a91906138c5565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a5919061355f565b6113c1565b005b3480156105b857600080fd5b506105c16114a6565b6040516105ce9190613947565b60405180910390f35b3480156105e357600080fd5b506105ec611538565b6040516105f99190613ac9565b60405180910390f35b61061c6004803603810190610617919061355f565b61153e565b005b34801561062a57600080fd5b5061064560048036038101906106409190613399565b61182a565b005b34801561065357600080fd5b5061065c6119a2565b60405161066991906138c5565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190613316565b6119c8565b005b3480156106a757600080fd5b506106b0611a44565b6040516106bd9190613947565b60405180910390f35b3480156106d257600080fd5b506106ed60048036038101906106e8919061355f565b611a7d565b6040516106fa9190613947565b60405180910390f35b34801561070f57600080fd5b50610718611b5c565b60405161072591906138c5565b60405180910390f35b34801561073a57600080fd5b5061075560048036038101906107509190613283565b611b74565b604051610762919061392c565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190613256565b611c68565b005b3480156107a057600080fd5b506107a9611d60565b6040516107b69190613ac9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089a575061089982611d65565b5b9050919050565b6108a9611dcf565b73ffffffffffffffffffffffffffffffffffffffff166108c7611397565b73ffffffffffffffffffffffffffffffffffffffff16148061093d57506108ec611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390613a49565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600280546109a890613dd7565b80601f01602080910402602001604051908101604052809291908181526020018280546109d490613dd7565b8015610a215780601f106109f657610100808354040283529160200191610a21565b820191906000526020600020905b815481529060010190602001808311610a0457829003601f168201915b5050505050905090565b6000610a3682611dd7565b610a6c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab282610ea4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b39611dcf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b6b5750610b6981610b64611dcf565b611b74565b155b15610ba2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bad838383611e25565b505050565b6000610bbc611ed7565b6001546000540303905090565b610bd4838383611edc565b505050565b611b5881565b610be7611dcf565b73ffffffffffffffffffffffffffffffffffffffff16610c05611397565b73ffffffffffffffffffffffffffffffffffffffff161480610c7b5750610c2a611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613a49565b60405180910390fd5b60004790506000610cc9611dcf565b73ffffffffffffffffffffffffffffffffffffffff1682604051610cec906138b0565b60006040518083038185875af1925050503d8060008114610d29576040519150601f19603f3d011682016040523d82523d6000602084013e610d2e565b606091505b5050905080610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990613a89565b60405180910390fd5b5050565b610d91838383604051806020016040528060008152506119c8565b505050565b600b5481565b610da4611dcf565b73ffffffffffffffffffffffffffffffffffffffff16610dc2611397565b73ffffffffffffffffffffffffffffffffffffffff161480610e385750610de7611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613a49565b60405180910390fd5b80600a9080519060200190610e8d929190612f74565b5050565b600d60009054906101000a900460ff1681565b6000610eaf826123cd565b600001519050919050565b600a8054610ec790613dd7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef390613dd7565b8015610f405780601f10610f1557610100808354040283529160200191610f40565b820191906000526020600020905b815481529060010190602001808311610f2357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611020611dcf565b73ffffffffffffffffffffffffffffffffffffffff1661103e611397565b73ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90613a49565b60405180910390fd5b61109e600061265c565b565b6110a8611dcf565b73ffffffffffffffffffffffffffffffffffffffff166110c6611397565b73ffffffffffffffffffffffffffffffffffffffff16148061113c57506110eb611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613a49565b60405180910390fd5b61118d611186611dcf565b6001612722565b565b611197611dcf565b73ffffffffffffffffffffffffffffffffffffffff166111b5611397565b73ffffffffffffffffffffffffffffffffffffffff16148061122b57506111da611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190613a49565b60405180910390fd5b60005b81518110156112ae5761129b82828151811061128c5761128b613f41565b5b60200260200101516001612722565b80806112a690613e3a565b91505061126d565b5050565b6112ba611dcf565b73ffffffffffffffffffffffffffffffffffffffff166112d8611397565b73ffffffffffffffffffffffffffffffffffffffff16148061134e57506112fd611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490613a49565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113c9611dcf565b73ffffffffffffffffffffffffffffffffffffffff166113e7611397565b73ffffffffffffffffffffffffffffffffffffffff16148061145d575061140c611dcf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390613a49565b60405180910390fd5b80600c8190555050565b6060600380546114b590613dd7565b80601f01602080910402602001604051908101604052809291908181526020018280546114e190613dd7565b801561152e5780601f106115035761010080835404028352916020019161152e565b820191906000526020600020905b81548152906001019060200180831161151157829003601f168201915b5050505050905090565b600c5481565b6000611548611dcf565b9050600d60009054906101000a900460ff161561159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613969565b60405180910390fd5b816115a3610bb2565b6115ad9190613bfa565b611b5810156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890613a09565b60405180910390fd5b60008211611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b906139a9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613aa9565b60405180910390fd5b81602810156116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd906139c9565b60405180910390fd5b600b546116f233612740565b1061174c57600c54826117059190613c81565b341015611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90613a69565b60405180910390fd5b6117ce565b60008261175833612740565b6117629190613bfa565b9050600b548111156117cc57600c54600b548261177f9190613cdb565b6117899190613c81565b3410156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c2906139e9565b60405180910390fd5b5b505b6117d6611397565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801561181b573d6000803e3d6000fd5b506118268183612722565b5050565b611832611dcf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611897576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118a4611dcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611951611dcf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611996919061392c565b60405180910390a35050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119d3848484611edc565b6119f28373ffffffffffffffffffffffffffffffffffffffff16612810565b8015611a075750611a0584848484612833565b155b15611a3e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6060611a8882611dd7565b611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613a29565b60405180910390fd5b6000600a8054611ad690613dd7565b905011611af25760405180602001604052806000815250611b55565b600a611afd83612993565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611b459392919061387f565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611bde91906138c5565b60206040518083038186803b158015611bf657600080fd5b505afa158015611c0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2e91906134e9565b73ffffffffffffffffffffffffffffffffffffffff161415611c54576001915050611c62565b611c5e8484612af4565b9150505b92915050565b611c70611dcf565b73ffffffffffffffffffffffffffffffffffffffff16611c8e611397565b73ffffffffffffffffffffffffffffffffffffffff1614611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613a49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4b90613989565b60405180910390fd5b611d5d8161265c565b50565b602881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611de2611ed7565b11158015611df1575060005482105b8015611e1e575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611ee7826123cd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f0e611dcf565b73ffffffffffffffffffffffffffffffffffffffff161480611f415750611f408260000151611f3b611dcf565b611b74565b5b80611f865750611f4f611dcf565b73ffffffffffffffffffffffffffffffffffffffff16611f6e84610a2b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611fbf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612028576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561208f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61209c8585856001612b88565b6120ac6000848460000151611e25565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561235d5760005481101561235c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c68585856001612b8e565b5050505050565b6123d5612ffa565b6000829050806123e3611ed7565b111580156123f2575060005481105b15612625576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161262357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612507578092505050612657565b5b60011561262257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461261d578092505050612657565b612508565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61273c828260405180602001604052806000815250612b94565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127a8576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612859611dcf565b8786866040518563ffffffff1660e01b815260040161287b94939291906138e0565b602060405180830381600087803b15801561289557600080fd5b505af19250505080156128c657506040513d601f19601f820116820180604052508101906128c391906134bc565b60015b612940573d80600081146128f6576040519150601f19603f3d011682016040523d82523d6000602084013e6128fb565b606091505b50600081511415612938576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156129db576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aef565b600082905060005b60008214612a0d5780806129f690613e3a565b915050600a82612a069190613c50565b91506129e3565b60008167ffffffffffffffff811115612a2957612a28613f70565b5b6040519080825280601f01601f191660200182016040528015612a5b5781602001600182028036833780820191505090505b5090505b60008514612ae857600182612a749190613cdb565b9150600a85612a839190613e83565b6030612a8f9190613bfa565b60f81b818381518110612aa557612aa4613f41565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae19190613c50565b9450612a5f565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612ba18383836001612ba6565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612c13576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612c4e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c5b6000868387612b88565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e255750612e248773ffffffffffffffffffffffffffffffffffffffff16612810565b5b15612eeb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e9a6000888480600101955088612833565b612ed0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612e2b578260005414612ee657600080fd5b612f57565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612eec575b816000819055505050612f6d6000868387612b8e565b5050505050565b828054612f8090613dd7565b90600052602060002090601f016020900481019282612fa25760008555612fe9565b82601f10612fbb57805160ff1916838001178555612fe9565b82800160010185558215612fe9579182015b82811115612fe8578251825591602001919060010190612fcd565b5b509050612ff6919061303d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561305657600081600090555060010161303e565b5090565b600061306d61306884613b09565b613ae4565b905080838252602082019050828560208602820111156130905761308f613fa4565b5b60005b858110156130c057816130a6888261314e565b845260208401935060208301925050600181019050613093565b5050509392505050565b60006130dd6130d884613b35565b613ae4565b9050828152602081018484840111156130f9576130f8613fa9565b5b613104848285613d95565b509392505050565b600061311f61311a84613b66565b613ae4565b90508281526020810184848401111561313b5761313a613fa9565b5b613146848285613d95565b509392505050565b60008135905061315d816141b5565b92915050565b600082601f83011261317857613177613f9f565b5b813561318884826020860161305a565b91505092915050565b6000813590506131a0816141cc565b92915050565b6000813590506131b5816141e3565b92915050565b6000815190506131ca816141e3565b92915050565b600082601f8301126131e5576131e4613f9f565b5b81356131f58482602086016130ca565b91505092915050565b60008151905061320d816141fa565b92915050565b600082601f83011261322857613227613f9f565b5b813561323884826020860161310c565b91505092915050565b60008135905061325081614211565b92915050565b60006020828403121561326c5761326b613fb3565b5b600061327a8482850161314e565b91505092915050565b6000806040838503121561329a57613299613fb3565b5b60006132a88582860161314e565b92505060206132b98582860161314e565b9150509250929050565b6000806000606084860312156132dc576132db613fb3565b5b60006132ea8682870161314e565b93505060206132fb8682870161314e565b925050604061330c86828701613241565b9150509250925092565b600080600080608085870312156133305761332f613fb3565b5b600061333e8782880161314e565b945050602061334f8782880161314e565b935050604061336087828801613241565b925050606085013567ffffffffffffffff81111561338157613380613fae565b5b61338d878288016131d0565b91505092959194509250565b600080604083850312156133b0576133af613fb3565b5b60006133be8582860161314e565b92505060206133cf85828601613191565b9150509250929050565b600080604083850312156133f0576133ef613fb3565b5b60006133fe8582860161314e565b925050602061340f85828601613241565b9150509250929050565b60006020828403121561342f5761342e613fb3565b5b600082013567ffffffffffffffff81111561344d5761344c613fae565b5b61345984828501613163565b91505092915050565b60006020828403121561347857613477613fb3565b5b600061348684828501613191565b91505092915050565b6000602082840312156134a5576134a4613fb3565b5b60006134b3848285016131a6565b91505092915050565b6000602082840312156134d2576134d1613fb3565b5b60006134e0848285016131bb565b91505092915050565b6000602082840312156134ff576134fe613fb3565b5b600061350d848285016131fe565b91505092915050565b60006020828403121561352c5761352b613fb3565b5b600082013567ffffffffffffffff81111561354a57613549613fae565b5b61355684828501613213565b91505092915050565b60006020828403121561357557613574613fb3565b5b600061358384828501613241565b91505092915050565b61359581613d0f565b82525050565b6135a481613d21565b82525050565b60006135b582613bac565b6135bf8185613bc2565b93506135cf818560208601613da4565b6135d881613fb8565b840191505092915050565b60006135ee82613bb7565b6135f88185613bde565b9350613608818560208601613da4565b61361181613fb8565b840191505092915050565b600061362782613bb7565b6136318185613bef565b9350613641818560208601613da4565b80840191505092915050565b6000815461365a81613dd7565b6136648186613bef565b9450600182166000811461367f5760018114613690576136c3565b60ff198316865281860193506136c3565b61369985613b97565b60005b838110156136bb5781548189015260018201915060208101905061369c565b838801955050505b50505092915050565b60006136d9600683613bde565b91506136e482613fc9565b602082019050919050565b60006136fc602683613bde565b915061370782613ff2565b604082019050919050565b600061371f600a83613bde565b915061372a82614041565b602082019050919050565b6000613742601683613bde565b915061374d8261406a565b602082019050919050565b6000613765601283613bde565b915061377082614093565b602082019050919050565b6000613788601283613bde565b9150613793826140bc565b602082019050919050565b60006137ab601583613bde565b91506137b6826140e5565b602082019050919050565b60006137ce602083613bde565b91506137d98261410e565b602082019050919050565b60006137f1601683613bde565b91506137fc82614137565b602082019050919050565b6000613814600083613bd3565b915061381f82614160565b600082019050919050565b6000613837600e83613bde565b915061384282614163565b602082019050919050565b600061385a600c83613bde565b91506138658261418c565b602082019050919050565b61387981613d8b565b82525050565b600061388b828661364d565b9150613897828561361c565b91506138a3828461361c565b9150819050949350505050565b60006138bb82613807565b9150819050919050565b60006020820190506138da600083018461358c565b92915050565b60006080820190506138f5600083018761358c565b613902602083018661358c565b61390f6040830185613870565b818103606083015261392181846135aa565b905095945050505050565b6000602082019050613941600083018461359b565b92915050565b6000602082019050818103600083015261396181846135e3565b905092915050565b60006020820190508181036000830152613982816136cc565b9050919050565b600060208201905081810360008301526139a2816136ef565b9050919050565b600060208201905081810360008301526139c281613712565b9050919050565b600060208201905081810360008301526139e281613735565b9050919050565b60006020820190508181036000830152613a0281613758565b9050919050565b60006020820190508181036000830152613a228161377b565b9050919050565b60006020820190508181036000830152613a428161379e565b9050919050565b60006020820190508181036000830152613a62816137c1565b9050919050565b60006020820190508181036000830152613a82816137e4565b9050919050565b60006020820190508181036000830152613aa28161382a565b9050919050565b60006020820190508181036000830152613ac28161384d565b9050919050565b6000602082019050613ade6000830184613870565b92915050565b6000613aee613aff565b9050613afa8282613e09565b919050565b6000604051905090565b600067ffffffffffffffff821115613b2457613b23613f70565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b5057613b4f613f70565b5b613b5982613fb8565b9050602081019050919050565b600067ffffffffffffffff821115613b8157613b80613f70565b5b613b8a82613fb8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c0582613d8b565b9150613c1083613d8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4557613c44613eb4565b5b828201905092915050565b6000613c5b82613d8b565b9150613c6683613d8b565b925082613c7657613c75613ee3565b5b828204905092915050565b6000613c8c82613d8b565b9150613c9783613d8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cd057613ccf613eb4565b5b828202905092915050565b6000613ce682613d8b565b9150613cf183613d8b565b925082821015613d0457613d03613eb4565b5b828203905092915050565b6000613d1a82613d6b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613d6482613d0f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dc2578082015181840152602081019050613da7565b83811115613dd1576000848401525b50505050565b60006002820490506001821680613def57607f821691505b60208210811415613e0357613e02613f12565b5b50919050565b613e1282613fb8565b810181811067ffffffffffffffff82111715613e3157613e30613f70565b5b80604052505050565b6000613e4582613d8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7857613e77613eb4565b5b600182019050919050565b6000613e8e82613d8b565b9150613e9983613d8b565b925082613ea957613ea8613ee3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6141be81613d0f565b81146141c957600080fd5b50565b6141d581613d21565b81146141e057600080fd5b50565b6141ec81613d2d565b81146141f757600080fd5b50565b61420381613d59565b811461420e57600080fd5b50565b61421a81613d8b565b811461422557600080fd5b5056fea2646970667358221220b48c9c25bedce96867cbb1ca3e93320edd3797c63c558e1e730ea9c4d482713964736f6c63430008070033

Deployed Bytecode Sourcemap

45904:3171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28437:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48108:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31822:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33325:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32888:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27686:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34182:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46292:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47801:209;;;;;;;;;;;;;:::i;:::-;;34423:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46204:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48197:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46383:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31631:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45953:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28806:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2636:103;;;;;;;;;;;;;:::i;:::-;;48018:82;;;;;;;;;;;;;:::i;:::-;;48305:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48570:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1985:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48474:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31991:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46340:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46476:864;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33601:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1618:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34679:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46053:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48710:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46106:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47348:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2894:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46246:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28437:305;28539:4;28591:25;28576:40;;;:11;:40;;;;:105;;;;28648:33;28633:48;;;:11;:48;;;;28576:105;:158;;;;28698:36;28722:11;28698:23;:36::i;:::-;28576:158;28556:178;;28437:305;;;:::o;48108:81::-;24918:12;:10;:12::i;:::-;24907:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24944:12;:10;:12::i;:::-;24934:22;;:6;;;;;;;;;;;:22;;;24907:49;24899:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48175:6:::1;48166;;:15;;;;;;;;;;;;;;;;;;48108:81:::0;:::o;31822:100::-;31876:13;31909:5;31902:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31822:100;:::o;33325:204::-;33393:7;33418:16;33426:7;33418;:16::i;:::-;33413:64;;33443:34;;;;;;;;;;;;;;33413:64;33497:15;:24;33513:7;33497:24;;;;;;;;;;;;;;;;;;;;;33490:31;;33325:204;;;:::o;32888:371::-;32961:13;32977:24;32993:7;32977:15;:24::i;:::-;32961:40;;33022:5;33016:11;;:2;:11;;;33012:48;;;33036:24;;;;;;;;;;;;;;33012:48;33093:5;33077:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33103:37;33120:5;33127:12;:10;:12::i;:::-;33103:16;:37::i;:::-;33102:38;33077:63;33073:138;;;33164:35;;;;;;;;;;;;;;33073:138;33223:28;33232:2;33236:7;33245:5;33223:8;:28::i;:::-;32950:309;32888:371;;:::o;27686:303::-;27730:7;27955:15;:13;:15::i;:::-;27940:12;;27924:13;;:28;:46;27917:53;;27686:303;:::o;34182:170::-;34316:28;34326:4;34332:2;34336:7;34316:9;:28::i;:::-;34182:170;;;:::o;46292:41::-;46329:4;46292:41;:::o;47801:209::-;24918:12;:10;:12::i;:::-;24907:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24944:12;:10;:12::i;:::-;24934:22;;:6;;;;;;;;;;;:22;;;24907:49;24899:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47851:15:::1;47869:21;47851:39;;47902:12;47920;:10;:12::i;:::-;:17;;47945:7;47920:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47901:56;;;47976:7;47968:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47840:170;;47801:209::o:0;34423:185::-;34561:39;34578:4;34584:2;34588:7;34561:39;;;;;;;;;;;;:16;:39::i;:::-;34423:185;;;:::o;46204:35::-;;;;:::o;48197:100::-;24918:12;:10;:12::i;:::-;24907:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24944:12;:10;:12::i;:::-;24934:22;;:6;;;;;;;;;;;:22;;;24907:49;24899:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48281:8:::1;48271:7;:18;;;;;;;;;;;;:::i;:::-;;48197:100:::0;:::o;46383:25::-;;;;;;;;;;;;;:::o;31631:124::-;31695:7;31722:20;31734:7;31722:11;:20::i;:::-;:25;;;31715:32;;31631:124;;;:::o;45953:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28806:206::-;28870:7;28911:1;28894:19;;:5;:19;;;28890:60;;;28922:28;;;;;;;;;;;;;;28890:60;28976:12;:19;28989:5;28976:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28968:36;;28961:43;;28806:206;;;:::o;2636:103::-;2216:12;:10;:12::i;:::-;2205:23;;:7;:5;:7::i;:::-;:23;;;2197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2701:30:::1;2728:1;2701:18;:30::i;:::-;2636:103::o:0;48018:82::-;24918:12;:10;:12::i;:::-;24907:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24944:12;:10;:12::i;:::-;24934:22;;:6;;;;;;;;;;;:22;;;24907:49;24899:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48066:26:::1;48076:12;:10;:12::i;:::-;48090:1;48066:9;:26::i;:::-;48018:82::o:0;48305:161::-;24918:12;:10;:12::i;:::-;24907:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24944:12;:10;:12::i;:::-;24934:22;;:6;;;;;;;;;;;:22;;;24907:49;24899:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48382:6:::1;48377:82;48398:2;:9;48394:1;:13;48377:82;;;48428:19;48438:2;48441:1;48438:5;;;;;;;;:::i;:::-;;;;;;;;48445:1;48428:9;:19::i;:::-;48408:3;;;;;:::i;:::-;;;;48377:82;;;;48305:161:::0;:::o;48570:132::-;24918:12;:10;:12::i;:::-;24907:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24944:12;:10;:12::i;:::-;24934:22;;:6;;;;;;;;;;;:22;;;24907:49;24899:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48675:19:::1;48656:16;:38;;;;48570:132:::0;:::o;1985:87::-;2031:7;2058:6;;;;;;;;;;;2051:13;;1985:87;:::o;48474:88::-;24918:12;:10;:12::i;:::-;24907:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24944:12;:10;:12::i;:::-;24934:22;;:6;;;;;;;;;;;:22;;;24907:49;24899:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48546:8:::1;48538:5;:16;;;;48474:88:::0;:::o;31991:104::-;32047:13;32080:7;32073:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31991:104;:::o;46340:34::-;;;;:::o;46476:864::-;46535:15;46553:12;:10;:12::i;:::-;46535:30;;46585:6;;;;;;;;;;;46584:7;46576:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46651:7;46635:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46329:4;46621:37;;46613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46710:1;46700:7;:11;46692:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46758:7;46745:20;;:9;:20;;;46737:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46815:7;46283:2;46801:21;;46793:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46903:16;;46874:25;46888:10;46874:13;:25::i;:::-;:45;46871:377;;46967:5;;46957:7;:15;;;;:::i;:::-;46944:9;:28;;46936:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46871:377;;;47031:10;47072:7;47044:25;47058:10;47044:13;:25::i;:::-;:35;;;;:::i;:::-;47031:48;;47105:16;;47097:5;:24;47094:142;;;47191:5;;47171:16;;47163:5;:24;;;;:::i;:::-;47162:34;;;;:::i;:::-;47149:9;:47;;47141:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;47094:142;47016:232;46871:377;47266:7;:5;:7::i;:::-;47258:25;;:36;47284:9;47258:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47305:27;47315:7;47324;47305:9;:27::i;:::-;46524:816;46476:864;:::o;33601:279::-;33704:12;:10;:12::i;:::-;33692:24;;:8;:24;;;33688:54;;;33725:17;;;;;;;;;;;;;;33688:54;33800:8;33755:18;:32;33774:12;:10;:12::i;:::-;33755:32;;;;;;;;;;;;;;;:42;33788:8;33755:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33853:8;33824:48;;33839:12;:10;:12::i;:::-;33824:48;;;33863:8;33824:48;;;;;;:::i;:::-;;;;;;;;33601:279;;:::o;1618:21::-;;;;;;;;;;;;;:::o;34679:369::-;34846:28;34856:4;34862:2;34866:7;34846:9;:28::i;:::-;34889:15;:2;:13;;;:15::i;:::-;:76;;;;;34909:56;34940:4;34946:2;34950:7;34959:5;34909:30;:56::i;:::-;34908:57;34889:76;34885:156;;;34989:40;;;;;;;;;;;;;;34885:156;34679:369;;;;:::o;46053:46::-;;;;;;;;;;;;;;;;;;;:::o;48710:362::-;48776:13;48810:17;48818:8;48810:7;:17::i;:::-;48802:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48895:1;48877:7;48871:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;48953:7;48977:26;48994:8;48977:16;:26::i;:::-;49020:13;;;;;;;;;;;;;;;;;48920:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48871:193;48864:200;;48710:362;;;:::o;46106:89::-;46153:42;46106:89;:::o;47348:445::-;47473:4;47558:27;46153:42;47558:65;;47679:8;47638:49;;47646:13;:21;;;47668:5;47646:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47638:49;;;47634:93;;;47711:4;47704:11;;;;;47634:93;47746:39;47769:5;47776:8;47746:22;:39::i;:::-;47739:46;;;47348:445;;;;;:::o;2894:201::-;2216:12;:10;:12::i;:::-;2205:23;;:7;:5;:7::i;:::-;:23;;;2197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3003:1:::1;2983:22;;:8;:22;;;;2975:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3059:28;3078:8;3059:18;:28::i;:::-;2894:201:::0;:::o;46246:39::-;46283:2;46246:39;:::o;23539:157::-;23624:4;23663:25;23648:40;;;:11;:40;;;;23641:47;;23539:157;;;:::o;727:98::-;780:7;807:10;800:17;;727:98;:::o;35303:187::-;35360:4;35403:7;35384:15;:13;:15::i;:::-;:26;;:53;;;;;35424:13;;35414:7;:23;35384:53;:98;;;;;35455:11;:20;35467:7;35455:20;;;;;;;;;;;:27;;;;;;;;;;;;35454:28;35384:98;35377:105;;35303:187;;;:::o;42914:196::-;43056:2;43029:15;:24;43045:7;43029:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43094:7;43090:2;43074:28;;43083:5;43074:28;;;;;;;;;;;;42914:196;;;:::o;27410:92::-;27466:7;27410:92;:::o;38416:2112::-;38531:35;38569:20;38581:7;38569:11;:20::i;:::-;38531:58;;38602:22;38644:13;:18;;;38628:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38679:50;38696:13;:18;;;38716:12;:10;:12::i;:::-;38679:16;:50::i;:::-;38628:101;:154;;;;38770:12;:10;:12::i;:::-;38746:36;;:20;38758:7;38746:11;:20::i;:::-;:36;;;38628:154;38602:181;;38801:17;38796:66;;38827:35;;;;;;;;;;;;;;38796:66;38899:4;38877:26;;:13;:18;;;:26;;;38873:67;;38912:28;;;;;;;;;;;;;;38873:67;38969:1;38955:16;;:2;:16;;;38951:52;;;38980:23;;;;;;;;;;;;;;38951:52;39016:43;39038:4;39044:2;39048:7;39057:1;39016:21;:43::i;:::-;39124:49;39141:1;39145:7;39154:13;:18;;;39124:8;:49::i;:::-;39499:1;39469:12;:18;39482:4;39469:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39543:1;39515:12;:16;39528:2;39515:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39589:2;39561:11;:20;39573:7;39561:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39651:15;39606:11;:20;39618:7;39606:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39919:19;39951:1;39941:7;:11;39919:33;;40012:1;39971:43;;:11;:24;39983:11;39971:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39967:445;;;40196:13;;40182:11;:27;40178:219;;;40266:13;:18;;;40234:11;:24;40246:11;40234:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40349:13;:28;;;40307:11;:24;40319:11;40307:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40178:219;39967:445;39444:979;40459:7;40455:2;40440:27;;40449:4;40440:27;;;;;;;;;;;;40478:42;40499:4;40505:2;40509:7;40518:1;40478:20;:42::i;:::-;38520:2008;;38416:2112;;;:::o;30461:1108::-;30522:21;;:::i;:::-;30556:12;30571:7;30556:22;;30639:4;30620:15;:13;:15::i;:::-;:23;;:47;;;;;30654:13;;30647:4;:20;30620:47;30616:886;;;30688:31;30722:11;:17;30734:4;30722:17;;;;;;;;;;;30688:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30763:9;:16;;;30758:729;;30834:1;30808:28;;:9;:14;;;:28;;;30804:101;;30872:9;30865:16;;;;;;30804:101;31207:261;31214:4;31207:261;;;31247:6;;;;;;;;31292:11;:17;31304:4;31292:17;;;;;;;;;;;31280:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31366:1;31340:28;;:9;:14;;;:28;;;31336:109;;31408:9;31401:16;;;;;;31336:109;31207:261;;;30758:729;30669:833;30616:886;31530:31;;;;;;;;;;;;;;30461:1108;;;;:::o;3255:191::-;3329:16;3348:6;;;;;;;;;;;3329:25;;3374:8;3365:6;;:17;;;;;;;;;;;;;;;;;;3429:8;3398:40;;3419:8;3398:40;;;;;;;;;;;;3318:128;3255:191;:::o;35498:104::-;35567:27;35577:2;35581:8;35567:27;;;;;;;;;;;;:9;:27::i;:::-;35498:104;;:::o;29094:207::-;29155:7;29196:1;29179:19;;:5;:19;;;29175:59;;;29207:27;;;;;;;;;;;;;;29175:59;29260:12;:19;29273:5;29260:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29252:41;;29245:48;;29094:207;;;:::o;13316:326::-;13376:4;13633:1;13611:7;:19;;;:23;13604:30;;13316:326;;;:::o;43602:667::-;43765:4;43802:2;43786:36;;;43823:12;:10;:12::i;:::-;43837:4;43843:7;43852:5;43786:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43782:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44037:1;44020:6;:13;:18;44016:235;;;44066:40;;;;;;;;;;;;;;44016:235;44209:6;44203:13;44194:6;44190:2;44186:15;44179:38;43782:480;43915:45;;;43905:55;;;:6;:55;;;;43898:62;;;43602:667;;;;;;:::o;20936:723::-;20992:13;21222:1;21213:5;:10;21209:53;;;21240:10;;;;;;;;;;;;;;;;;;;;;21209:53;21272:12;21287:5;21272:20;;21303:14;21328:78;21343:1;21335:4;:9;21328:78;;21361:8;;;;;:::i;:::-;;;;21392:2;21384:10;;;;;:::i;:::-;;;21328:78;;;21416:19;21448:6;21438:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21416:39;;21466:154;21482:1;21473:5;:10;21466:154;;21510:1;21500:11;;;;;:::i;:::-;;;21577:2;21569:5;:10;;;;:::i;:::-;21556:2;:24;;;;:::i;:::-;21543:39;;21526:6;21533;21526:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21606:2;21597:11;;;;;:::i;:::-;;;21466:154;;;21644:6;21630:21;;;;;20936:723;;;;:::o;33951:164::-;34048:4;34072:18;:25;34091:5;34072:25;;;;;;;;;;;;;;;:35;34098:8;34072:35;;;;;;;;;;;;;;;;;;;;;;;;;34065:42;;33951:164;;;;:::o;44917:159::-;;;;;:::o;45735:158::-;;;;;:::o;35965:163::-;36088:32;36094:2;36098:8;36108:5;36115:4;36088:5;:32::i;:::-;35965:163;;;:::o;36387:1775::-;36526:20;36549:13;;36526:36;;36591:1;36577:16;;:2;:16;;;36573:48;;;36602:19;;;;;;;;;;;;;;36573:48;36648:1;36636:8;:13;36632:44;;;36658:18;;;;;;;;;;;;;;36632:44;36689:61;36719:1;36723:2;36727:12;36741:8;36689:21;:61::i;:::-;37062:8;37027:12;:16;37040:2;37027:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37126:8;37086:12;:16;37099:2;37086:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37185:2;37152:11;:25;37164:12;37152:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37252:15;37202:11;:25;37214:12;37202:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37285:20;37308:12;37285:35;;37335:11;37364:8;37349:12;:23;37335:37;;37393:4;:23;;;;;37401:15;:2;:13;;;:15::i;:::-;37393:23;37389:641;;;37437:314;37493:12;37489:2;37468:38;;37485:1;37468:38;;;;;;;;;;;;37534:69;37573:1;37577:2;37581:14;;;;;;37597:5;37534:30;:69::i;:::-;37529:174;;37639:40;;;;;;;;;;;;;;37529:174;37746:3;37730:12;:19;;37437:314;;37832:12;37815:13;;:29;37811:43;;37846:8;;;37811:43;37389:641;;;37895:120;37951:14;;;;;;37947:2;37926:40;;37943:1;37926:40;;;;;;;;;;;;38010:3;37994:12;:19;;37895:120;;37389:641;38060:12;38044:13;:28;;;;37002:1082;;38094:60;38123:1;38127:2;38131:12;38145:8;38094:20;:60::i;:::-;36515:1647;36387:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2910:201::-;2996:5;3027:6;3021:13;3012:22;;3043:62;3099:5;3043:62;:::i;:::-;2910:201;;;;:::o;3131:340::-;3187:5;3236:3;3229:4;3221:6;3217:17;3213:27;3203:122;;3244:79;;:::i;:::-;3203:122;3361:6;3348:20;3386:79;3461:3;3453:6;3446:4;3438:6;3434:17;3386:79;:::i;:::-;3377:88;;3193:278;3131:340;;;;:::o;3477:139::-;3523:5;3561:6;3548:20;3539:29;;3577:33;3604:5;3577:33;:::i;:::-;3477:139;;;;:::o;3622:329::-;3681:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:119;;;3736:79;;:::i;:::-;3698:119;3856:1;3881:53;3926:7;3917:6;3906:9;3902:22;3881:53;:::i;:::-;3871:63;;3827:117;3622:329;;;;:::o;3957:474::-;4025:6;4033;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;3957:474;;;;;:::o;4437:619::-;4514:6;4522;4530;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4832:2;4858:53;4903:7;4894:6;4883:9;4879:22;4858:53;:::i;:::-;4848:63;;4803:118;4960:2;4986:53;5031:7;5022:6;5011:9;5007:22;4986:53;:::i;:::-;4976:63;;4931:118;4437:619;;;;;:::o;5062:943::-;5157:6;5165;5173;5181;5230:3;5218:9;5209:7;5205:23;5201:33;5198:120;;;5237:79;;:::i;:::-;5198:120;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5484:2;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5455:118;5612:2;5638:53;5683:7;5674:6;5663:9;5659:22;5638:53;:::i;:::-;5628:63;;5583:118;5768:2;5757:9;5753:18;5740:32;5799:18;5791:6;5788:30;5785:117;;;5821:79;;:::i;:::-;5785:117;5926:62;5980:7;5971:6;5960:9;5956:22;5926:62;:::i;:::-;5916:72;;5711:287;5062:943;;;;;;;:::o;6011:468::-;6076:6;6084;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6386:2;6412:50;6454:7;6445:6;6434:9;6430:22;6412:50;:::i;:::-;6402:60;;6357:115;6011:468;;;;;:::o;6485:474::-;6553:6;6561;6610:2;6598:9;6589:7;6585:23;6581:32;6578:119;;;6616:79;;:::i;:::-;6578:119;6736:1;6761:53;6806:7;6797:6;6786:9;6782:22;6761:53;:::i;:::-;6751:63;;6707:117;6863:2;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6834:118;6485:474;;;;;:::o;6965:539::-;7049:6;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7252:1;7241:9;7237:17;7224:31;7282:18;7274:6;7271:30;7268:117;;;7304:79;;:::i;:::-;7268:117;7409:78;7479:7;7470:6;7459:9;7455:22;7409:78;:::i;:::-;7399:88;;7195:302;6965:539;;;;:::o;7510:323::-;7566:6;7615:2;7603:9;7594:7;7590:23;7586:32;7583:119;;;7621:79;;:::i;:::-;7583:119;7741:1;7766:50;7808:7;7799:6;7788:9;7784:22;7766:50;:::i;:::-;7756:60;;7712:114;7510:323;;;;:::o;7839:327::-;7897:6;7946:2;7934:9;7925:7;7921:23;7917:32;7914:119;;;7952:79;;:::i;:::-;7914:119;8072:1;8097:52;8141:7;8132:6;8121:9;8117:22;8097:52;:::i;:::-;8087:62;;8043:116;7839:327;;;;:::o;8172:349::-;8241:6;8290:2;8278:9;8269:7;8265:23;8261:32;8258:119;;;8296:79;;:::i;:::-;8258:119;8416:1;8441:63;8496:7;8487:6;8476:9;8472:22;8441:63;:::i;:::-;8431:73;;8387:127;8172:349;;;;:::o;8527:409::-;8626:6;8675:2;8663:9;8654:7;8650:23;8646:32;8643:119;;;8681:79;;:::i;:::-;8643:119;8801:1;8826:93;8911:7;8902:6;8891:9;8887:22;8826:93;:::i;:::-;8816:103;;8772:157;8527:409;;;;:::o;8942:509::-;9011:6;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9214:1;9203:9;9199:17;9186:31;9244:18;9236:6;9233:30;9230:117;;;9266:79;;:::i;:::-;9230:117;9371:63;9426:7;9417:6;9406:9;9402:22;9371:63;:::i;:::-;9361:73;;9157:287;8942:509;;;;:::o;9457:329::-;9516:6;9565:2;9553:9;9544:7;9540:23;9536:32;9533:119;;;9571:79;;:::i;:::-;9533:119;9691:1;9716:53;9761:7;9752:6;9741:9;9737:22;9716:53;:::i;:::-;9706:63;;9662:117;9457:329;;;;:::o;9792:118::-;9879:24;9897:5;9879:24;:::i;:::-;9874:3;9867:37;9792:118;;:::o;9916:109::-;9997:21;10012:5;9997:21;:::i;:::-;9992:3;9985:34;9916:109;;:::o;10031:360::-;10117:3;10145:38;10177:5;10145:38;:::i;:::-;10199:70;10262:6;10257:3;10199:70;:::i;:::-;10192:77;;10278:52;10323:6;10318:3;10311:4;10304:5;10300:16;10278:52;:::i;:::-;10355:29;10377:6;10355:29;:::i;:::-;10350:3;10346:39;10339:46;;10121:270;10031:360;;;;:::o;10397:364::-;10485:3;10513:39;10546:5;10513:39;:::i;:::-;10568:71;10632:6;10627:3;10568:71;:::i;:::-;10561:78;;10648:52;10693:6;10688:3;10681:4;10674:5;10670:16;10648:52;:::i;:::-;10725:29;10747:6;10725:29;:::i;:::-;10720:3;10716:39;10709:46;;10489:272;10397:364;;;;:::o;10767:377::-;10873:3;10901:39;10934:5;10901:39;:::i;:::-;10956:89;11038:6;11033:3;10956:89;:::i;:::-;10949:96;;11054:52;11099:6;11094:3;11087:4;11080:5;11076:16;11054:52;:::i;:::-;11131:6;11126:3;11122:16;11115:23;;10877:267;10767:377;;;;:::o;11174:845::-;11277:3;11314:5;11308:12;11343:36;11369:9;11343:36;:::i;:::-;11395:89;11477:6;11472:3;11395:89;:::i;:::-;11388:96;;11515:1;11504:9;11500:17;11531:1;11526:137;;;;11677:1;11672:341;;;;11493:520;;11526:137;11610:4;11606:9;11595;11591:25;11586:3;11579:38;11646:6;11641:3;11637:16;11630:23;;11526:137;;11672:341;11739:38;11771:5;11739:38;:::i;:::-;11799:1;11813:154;11827:6;11824:1;11821:13;11813:154;;;11901:7;11895:14;11891:1;11886:3;11882:11;11875:35;11951:1;11942:7;11938:15;11927:26;;11849:4;11846:1;11842:12;11837:17;;11813:154;;;11996:6;11991:3;11987:16;11980:23;;11679:334;;11493:520;;11281:738;;11174:845;;;;:::o;12025:365::-;12167:3;12188:66;12252:1;12247:3;12188:66;:::i;:::-;12181:73;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12025:365;;;:::o;12396:366::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:::-;13654:3;13675:67;13739:2;13734:3;13675:67;:::i;:::-;13668:74;;13751:93;13840:3;13751:93;:::i;:::-;13869:2;13864:3;13860:12;13853:19;;13512:366;;;:::o;13884:::-;14026:3;14047:67;14111:2;14106:3;14047:67;:::i;:::-;14040:74;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13884:366;;;:::o;14256:::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:398::-;15531:3;15552:83;15633:1;15628:3;15552:83;:::i;:::-;15545:90;;15644:93;15733:3;15644:93;:::i;:::-;15762:1;15757:3;15753:11;15746:18;;15372:398;;;:::o;15776:366::-;15918:3;15939:67;16003:2;15998:3;15939:67;:::i;:::-;15932:74;;16015:93;16104:3;16015:93;:::i;:::-;16133:2;16128:3;16124:12;16117:19;;15776:366;;;:::o;16148:::-;16290:3;16311:67;16375:2;16370:3;16311:67;:::i;:::-;16304:74;;16387:93;16476:3;16387:93;:::i;:::-;16505:2;16500:3;16496:12;16489:19;;16148:366;;;:::o;16520:118::-;16607:24;16625:5;16607:24;:::i;:::-;16602:3;16595:37;16520:118;;:::o;16644:589::-;16869:3;16891:92;16979:3;16970:6;16891:92;:::i;:::-;16884:99;;17000:95;17091:3;17082:6;17000:95;:::i;:::-;16993:102;;17112:95;17203:3;17194:6;17112:95;:::i;:::-;17105:102;;17224:3;17217:10;;16644:589;;;;;;:::o;17239:379::-;17423:3;17445:147;17588:3;17445:147;:::i;:::-;17438:154;;17609:3;17602:10;;17239:379;;;:::o;17624:222::-;17717:4;17755:2;17744:9;17740:18;17732:26;;17768:71;17836:1;17825:9;17821:17;17812:6;17768:71;:::i;:::-;17624:222;;;;:::o;17852:640::-;18047:4;18085:3;18074:9;18070:19;18062:27;;18099:71;18167:1;18156:9;18152:17;18143:6;18099:71;:::i;:::-;18180:72;18248:2;18237:9;18233:18;18224:6;18180:72;:::i;:::-;18262;18330:2;18319:9;18315:18;18306:6;18262:72;:::i;:::-;18381:9;18375:4;18371:20;18366:2;18355:9;18351:18;18344:48;18409:76;18480:4;18471:6;18409:76;:::i;:::-;18401:84;;17852:640;;;;;;;:::o;18498:210::-;18585:4;18623:2;18612:9;18608:18;18600:26;;18636:65;18698:1;18687:9;18683:17;18674:6;18636:65;:::i;:::-;18498:210;;;;:::o;18714:313::-;18827:4;18865:2;18854:9;18850:18;18842:26;;18914:9;18908:4;18904:20;18900:1;18889:9;18885:17;18878:47;18942:78;19015:4;19006:6;18942:78;:::i;:::-;18934:86;;18714:313;;;;:::o;19033:419::-;19199:4;19237:2;19226:9;19222:18;19214:26;;19286:9;19280:4;19276:20;19272:1;19261:9;19257:17;19250:47;19314:131;19440:4;19314:131;:::i;:::-;19306:139;;19033:419;;;:::o;19458:::-;19624:4;19662:2;19651:9;19647:18;19639:26;;19711:9;19705:4;19701:20;19697:1;19686:9;19682:17;19675:47;19739:131;19865:4;19739:131;:::i;:::-;19731:139;;19458:419;;;:::o;19883:::-;20049:4;20087:2;20076:9;20072:18;20064:26;;20136:9;20130:4;20126:20;20122:1;20111:9;20107:17;20100:47;20164:131;20290:4;20164:131;:::i;:::-;20156:139;;19883:419;;;:::o;20308:::-;20474:4;20512:2;20501:9;20497:18;20489:26;;20561:9;20555:4;20551:20;20547:1;20536:9;20532:17;20525:47;20589:131;20715:4;20589:131;:::i;:::-;20581:139;;20308:419;;;:::o;20733:::-;20899:4;20937:2;20926:9;20922:18;20914:26;;20986:9;20980:4;20976:20;20972:1;20961:9;20957:17;20950:47;21014:131;21140:4;21014:131;:::i;:::-;21006:139;;20733:419;;;:::o;21158:::-;21324:4;21362:2;21351:9;21347:18;21339:26;;21411:9;21405:4;21401:20;21397:1;21386:9;21382:17;21375:47;21439:131;21565:4;21439:131;:::i;:::-;21431:139;;21158:419;;;:::o;21583:::-;21749:4;21787:2;21776:9;21772:18;21764:26;;21836:9;21830:4;21826:20;21822:1;21811:9;21807:17;21800:47;21864:131;21990:4;21864:131;:::i;:::-;21856:139;;21583:419;;;:::o;22008:::-;22174:4;22212:2;22201:9;22197:18;22189:26;;22261:9;22255:4;22251:20;22247:1;22236:9;22232:17;22225:47;22289:131;22415:4;22289:131;:::i;:::-;22281:139;;22008:419;;;:::o;22433:::-;22599:4;22637:2;22626:9;22622:18;22614:26;;22686:9;22680:4;22676:20;22672:1;22661:9;22657:17;22650:47;22714:131;22840:4;22714:131;:::i;:::-;22706:139;;22433:419;;;:::o;22858:::-;23024:4;23062:2;23051:9;23047:18;23039:26;;23111:9;23105:4;23101:20;23097:1;23086:9;23082:17;23075:47;23139:131;23265:4;23139:131;:::i;:::-;23131:139;;22858:419;;;:::o;23283:::-;23449:4;23487:2;23476:9;23472:18;23464:26;;23536:9;23530:4;23526:20;23522:1;23511:9;23507:17;23500:47;23564:131;23690:4;23564:131;:::i;:::-;23556:139;;23283:419;;;:::o;23708:222::-;23801:4;23839:2;23828:9;23824:18;23816:26;;23852:71;23920:1;23909:9;23905:17;23896:6;23852:71;:::i;:::-;23708:222;;;;:::o;23936:129::-;23970:6;23997:20;;:::i;:::-;23987:30;;24026:33;24054:4;24046:6;24026:33;:::i;:::-;23936:129;;;:::o;24071:75::-;24104:6;24137:2;24131:9;24121:19;;24071:75;:::o;24152:311::-;24229:4;24319:18;24311:6;24308:30;24305:56;;;24341:18;;:::i;:::-;24305:56;24391:4;24383:6;24379:17;24371:25;;24451:4;24445;24441:15;24433:23;;24152:311;;;:::o;24469:307::-;24530:4;24620:18;24612:6;24609:30;24606:56;;;24642:18;;:::i;:::-;24606:56;24680:29;24702:6;24680:29;:::i;:::-;24672:37;;24764:4;24758;24754:15;24746:23;;24469:307;;;:::o;24782:308::-;24844:4;24934:18;24926:6;24923:30;24920:56;;;24956:18;;:::i;:::-;24920:56;24994:29;25016:6;24994:29;:::i;:::-;24986:37;;25078:4;25072;25068:15;25060:23;;24782:308;;;:::o;25096:141::-;25145:4;25168:3;25160:11;;25191:3;25188:1;25181:14;25225:4;25222:1;25212:18;25204:26;;25096:141;;;:::o;25243:98::-;25294:6;25328:5;25322:12;25312:22;;25243:98;;;:::o;25347:99::-;25399:6;25433:5;25427:12;25417:22;;25347:99;;;:::o;25452:168::-;25535:11;25569:6;25564:3;25557:19;25609:4;25604:3;25600:14;25585:29;;25452:168;;;;:::o;25626:147::-;25727:11;25764:3;25749:18;;25626:147;;;;:::o;25779:169::-;25863:11;25897:6;25892:3;25885:19;25937:4;25932:3;25928:14;25913:29;;25779:169;;;;:::o;25954:148::-;26056:11;26093:3;26078:18;;25954:148;;;;:::o;26108:305::-;26148:3;26167:20;26185:1;26167:20;:::i;:::-;26162:25;;26201:20;26219:1;26201:20;:::i;:::-;26196:25;;26355:1;26287:66;26283:74;26280:1;26277:81;26274:107;;;26361:18;;:::i;:::-;26274:107;26405:1;26402;26398:9;26391:16;;26108:305;;;;:::o;26419:185::-;26459:1;26476:20;26494:1;26476:20;:::i;:::-;26471:25;;26510:20;26528:1;26510:20;:::i;:::-;26505:25;;26549:1;26539:35;;26554:18;;:::i;:::-;26539:35;26596:1;26593;26589:9;26584:14;;26419:185;;;;:::o;26610:348::-;26650:7;26673:20;26691:1;26673:20;:::i;:::-;26668:25;;26707:20;26725:1;26707:20;:::i;:::-;26702:25;;26895:1;26827:66;26823:74;26820:1;26817:81;26812:1;26805:9;26798:17;26794:105;26791:131;;;26902:18;;:::i;:::-;26791:131;26950:1;26947;26943:9;26932:20;;26610:348;;;;:::o;26964:191::-;27004:4;27024:20;27042:1;27024:20;:::i;:::-;27019:25;;27058:20;27076:1;27058:20;:::i;:::-;27053:25;;27097:1;27094;27091:8;27088:34;;;27102:18;;:::i;:::-;27088:34;27147:1;27144;27140:9;27132:17;;26964:191;;;;:::o;27161:96::-;27198:7;27227:24;27245:5;27227:24;:::i;:::-;27216:35;;27161:96;;;:::o;27263:90::-;27297:7;27340:5;27333:13;27326:21;27315:32;;27263:90;;;:::o;27359:149::-;27395:7;27435:66;27428:5;27424:78;27413:89;;27359:149;;;:::o;27514:125::-;27580:7;27609:24;27627:5;27609:24;:::i;:::-;27598:35;;27514:125;;;:::o;27645:126::-;27682:7;27722:42;27715:5;27711:54;27700:65;;27645:126;;;:::o;27777:77::-;27814:7;27843:5;27832:16;;27777:77;;;:::o;27860:154::-;27944:6;27939:3;27934;27921:30;28006:1;27997:6;27992:3;27988:16;27981:27;27860:154;;;:::o;28020:307::-;28088:1;28098:113;28112:6;28109:1;28106:13;28098:113;;;28197:1;28192:3;28188:11;28182:18;28178:1;28173:3;28169:11;28162:39;28134:2;28131:1;28127:10;28122:15;;28098:113;;;28229:6;28226:1;28223:13;28220:101;;;28309:1;28300:6;28295:3;28291:16;28284:27;28220:101;28069:258;28020:307;;;:::o;28333:320::-;28377:6;28414:1;28408:4;28404:12;28394:22;;28461:1;28455:4;28451:12;28482:18;28472:81;;28538:4;28530:6;28526:17;28516:27;;28472:81;28600:2;28592:6;28589:14;28569:18;28566:38;28563:84;;;28619:18;;:::i;:::-;28563:84;28384:269;28333:320;;;:::o;28659:281::-;28742:27;28764:4;28742:27;:::i;:::-;28734:6;28730:40;28872:6;28860:10;28857:22;28836:18;28824:10;28821:34;28818:62;28815:88;;;28883:18;;:::i;:::-;28815:88;28923:10;28919:2;28912:22;28702:238;28659:281;;:::o;28946:233::-;28985:3;29008:24;29026:5;29008:24;:::i;:::-;28999:33;;29054:66;29047:5;29044:77;29041:103;;;29124:18;;:::i;:::-;29041:103;29171:1;29164:5;29160:13;29153:20;;28946:233;;;:::o;29185:176::-;29217:1;29234:20;29252:1;29234:20;:::i;:::-;29229:25;;29268:20;29286:1;29268:20;:::i;:::-;29263:25;;29307:1;29297:35;;29312:18;;:::i;:::-;29297:35;29353:1;29350;29346:9;29341:14;;29185:176;;;;:::o;29367:180::-;29415:77;29412:1;29405:88;29512:4;29509:1;29502:15;29536:4;29533:1;29526:15;29553:180;29601:77;29598:1;29591:88;29698:4;29695:1;29688:15;29722:4;29719:1;29712:15;29739:180;29787:77;29784:1;29777:88;29884:4;29881:1;29874:15;29908:4;29905:1;29898:15;29925:180;29973:77;29970:1;29963:88;30070:4;30067:1;30060:15;30094:4;30091:1;30084:15;30111:180;30159:77;30156:1;30149:88;30256:4;30253:1;30246:15;30280:4;30277:1;30270:15;30297:117;30406:1;30403;30396:12;30420:117;30529:1;30526;30519:12;30543:117;30652:1;30649;30642:12;30666:117;30775:1;30772;30765:12;30789:117;30898:1;30895;30888:12;30912:102;30953:6;31004:2;31000:7;30995:2;30988:5;30984:14;30980:28;30970:38;;30912:102;;;:::o;31020:156::-;31160:8;31156:1;31148:6;31144:14;31137:32;31020:156;:::o;31182:225::-;31322:34;31318:1;31310:6;31306:14;31299:58;31391:8;31386:2;31378:6;31374:15;31367:33;31182:225;:::o;31413:160::-;31553:12;31549:1;31541:6;31537:14;31530:36;31413:160;:::o;31579:172::-;31719:24;31715:1;31707:6;31703:14;31696:48;31579:172;:::o;31757:168::-;31897:20;31893:1;31885:6;31881:14;31874:44;31757:168;:::o;31931:::-;32071:20;32067:1;32059:6;32055:14;32048:44;31931:168;:::o;32105:171::-;32245:23;32241:1;32233:6;32229:14;32222:47;32105:171;:::o;32282:182::-;32422:34;32418:1;32410:6;32406:14;32399:58;32282:182;:::o;32470:172::-;32610:24;32606:1;32598:6;32594:14;32587:48;32470:172;:::o;32648:114::-;;:::o;32768:164::-;32908:16;32904:1;32896:6;32892:14;32885:40;32768:164;:::o;32938:162::-;33078:14;33074:1;33066:6;33062:14;33055:38;32938:162;:::o;33106:122::-;33179:24;33197:5;33179:24;:::i;:::-;33172:5;33169:35;33159:63;;33218:1;33215;33208:12;33159:63;33106:122;:::o;33234:116::-;33304:21;33319:5;33304:21;:::i;:::-;33297:5;33294:32;33284:60;;33340:1;33337;33330:12;33284:60;33234:116;:::o;33356:120::-;33428:23;33445:5;33428:23;:::i;:::-;33421:5;33418:34;33408:62;;33466:1;33463;33456:12;33408:62;33356:120;:::o;33482:180::-;33584:53;33631:5;33584:53;:::i;:::-;33577:5;33574:64;33564:92;;33652:1;33649;33642:12;33564:92;33482:180;:::o;33668:122::-;33741:24;33759:5;33741:24;:::i;:::-;33734:5;33731:35;33721:63;;33780:1;33777;33770:12;33721:63;33668:122;:::o

Swarm Source

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