ETH Price: $2,453.84 (+1.48%)

Token

DISSECTED goblintown (GOBLIN)
 

Overview

Max Total Supply

82 GOBLIN

Holders

12

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
3headscreating.eth
Balance
3 GOBLIN
0x7eb2266dbbcaa7690290cbff0932fcf008002fb3
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:
DISSECTEDgoblintown

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

pragma solidity ^0.8.4;

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

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


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


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



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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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


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


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



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

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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



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

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

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

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

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


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


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

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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

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


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1;
    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 DISSECTEDgoblintown is ERC721A, Owneable {

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

    uint256 public constant MAX_PER_TX_FREE = 3;
    uint256 public FREE_MAX_SUPPLY = 444;
    uint256 public constant MAX_PER_TX = 20;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public price = 0.002 ether;

    bool public paused = false;

    constructor() ERC721A("DISSECTED goblintown", "GOBLIN") {}

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


        _safeMint(_caller, _amount);
    }

  

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

        return super.isApprovedForAll(owner, operator);
    }

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

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

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

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

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

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

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

    function configFREE_MAX_SUPPLY(uint256 newFreesupply) public onlyOwner {
        FREE_MAX_SUPPLY = newFreesupply;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configFREE_MAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"configure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603681526020016200459360369139600a90805190602001906200008a929190620002ac565b506040518060600160405280603581526020016200455e60359139600b9080519060200190620000bc929190620002ac565b506101bc600c55610d05600d5566071afd498d0000600e556000600f60006101000a81548160ff021916908315150217905550348015620000fc57600080fd5b506040518060400160405280601481526020017f44495353454354454420676f626c696e746f776e0000000000000000000000008152506040518060400160405280600681526020017f474f424c494e0000000000000000000000000000000000000000000000000000815250816002908051906020019062000181929190620002ac565b5080600390805190602001906200019a929190620002ac565b50620001ab620001d960201b60201c565b6000819055505050620001d3620001c7620001de60201b60201c565b620001e660201b60201c565b620003c0565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ba906200038b565b90600052602060002090601f016020900481019282620002de57600085556200032a565b82601f10620002f957805160ff19168380011785556200032a565b828001600101855582156200032a579182015b82811115620003295782518255916020019190600101906200030c565b5b5090506200033991906200033d565b5090565b5b80821115620003585760008160009055506001016200033e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003a457607f821691505b602082108103620003ba57620003b96200035c565b5b50919050565b61418e80620003d06000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c6682862116100a0578063e8a3d4851161006f578063e8a3d48514610744578063e985e9c51461076f578063edbb99bf146107ac578063f2fde38b146107d5578063f43a22dc146107fe5761020f565b8063c668286214610688578063c87b56dd146106b3578063cd7c0326146106f0578063db4a0f611461071b5761020f565b806395d89b41116100e757806395d89b41146105c4578063a035b1fe146105ef578063a0712d681461061a578063a22cb46514610636578063b88d4fde1461065f5761020f565b8063715018a61461052e5780638069876d146105455780638da5cb5b14610570578063938e3d7b1461059b5761020f565b80633d2abb991161019b57806355f804b31161016a57806355f804b3146104355780635c975abb1461045e5780636352211e146104895780636c0360eb146104c657806370a08231146104f15761020f565b80633d2abb99146103a15780633e0b1a23146103ca57806342842e0e146103e1578063463fff791461040a5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd1461033657806332cb6b0c1461035f5780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613110565b610829565b6040516102489190613158565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061319f565b61090b565b005b34801561028657600080fd5b5061028f610a03565b60405161029c9190613265565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906132bd565b610a95565b6040516102d9919061332b565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613372565b610b11565b005b34801561031757600080fd5b50610320610c1b565b60405161032d91906133c1565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906133dc565b610c32565b005b34801561036b57600080fd5b50610374610c42565b60405161038191906133c1565b60405180910390f35b34801561039657600080fd5b5061039f610c48565b005b3480156103ad57600080fd5b506103c860048036038101906103c391906132bd565b610ddf565b005b3480156103d657600080fd5b506103df610ec4565b005b3480156103ed57600080fd5b50610408600480360381019061040391906133dc565b610fb3565b005b34801561041657600080fd5b5061041f610fd3565b60405161042c91906133c1565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613564565b610fd8565b005b34801561046a57600080fd5b506104736110cd565b6040516104809190613158565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906132bd565b6110e0565b6040516104bd919061332b565b60405180910390f35b3480156104d257600080fd5b506104db6110f6565b6040516104e89190613265565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906135ad565b611184565b60405161052591906133c1565b60405180910390f35b34801561053a57600080fd5b50610543611253565b005b34801561055157600080fd5b5061055a6112db565b60405161056791906133c1565b60405180910390f35b34801561057c57600080fd5b506105856112e1565b604051610592919061332b565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613564565b61130b565b005b3480156105d057600080fd5b506105d9611400565b6040516105e69190613265565b60405180910390f35b3480156105fb57600080fd5b50610604611492565b60405161061191906133c1565b60405180910390f35b610634600480360381019061062f91906132bd565b611498565b005b34801561064257600080fd5b5061065d600480360381019061065891906135da565b61173b565b005b34801561066b57600080fd5b50610686600480360381019061068191906136bb565b6118b2565b005b34801561069457600080fd5b5061069d61192e565b6040516106aa9190613265565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906132bd565b611967565b6040516106e79190613265565b60405180910390f35b3480156106fc57600080fd5b50610705611a46565b604051610712919061332b565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906132bd565b611a5e565b005b34801561075057600080fd5b50610759611b43565b6040516107669190613265565b60405180910390f35b34801561077b57600080fd5b506107966004803603810190610791919061373e565b611bd1565b6040516107a39190613158565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906132bd565b611cb5565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906135ad565b611d9a565b005b34801561080a57600080fd5b50610813611e91565b60405161082091906133c1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611e96565b5b9050919050565b610913611f00565b73ffffffffffffffffffffffffffffffffffffffff166109316112e1565b73ffffffffffffffffffffffffffffffffffffffff1614806109a75750610956611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd906137ca565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a1290613819565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613819565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa082611f08565b610ad6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1c826110e0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba2611f00565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd45750610bd281610bcd611f00565b611bd1565b155b15610c0b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c16838383611f56565b505050565b6000610c25612008565b6001546000540303905090565b610c3d83838361200d565b505050565b600d5481565b610c50611f00565b73ffffffffffffffffffffffffffffffffffffffff16610c6e6112e1565b73ffffffffffffffffffffffffffffffffffffffff161480610ce45750610c93611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a906137ca565b60405180910390fd5b60004790506000610d32611f00565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d559061387b565b60006040518083038185875af1925050503d8060008114610d92576040519150601f19603f3d011682016040523d82523d6000602084013e610d97565b606091505b5050905080610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906138dc565b60405180910390fd5b5050565b610de7611f00565b73ffffffffffffffffffffffffffffffffffffffff16610e056112e1565b73ffffffffffffffffffffffffffffffffffffffff161480610e7b5750610e2a611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906137ca565b60405180910390fd5b80600c8190555050565b610ecc611f00565b73ffffffffffffffffffffffffffffffffffffffff16610eea6112e1565b73ffffffffffffffffffffffffffffffffffffffff161480610f605750610f0f611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906137ca565b60405180910390fd5b610fb1610faa611f00565b60016124fc565b565b610fce838383604051806020016040528060008152506118b2565b505050565b600381565b610fe0611f00565b73ffffffffffffffffffffffffffffffffffffffff16610ffe6112e1565b73ffffffffffffffffffffffffffffffffffffffff1614806110745750611023611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906137ca565b60405180910390fd5b80600a90805190602001906110c9929190612fbe565b5050565b600f60009054906101000a900460ff1681565b60006110eb8261251a565b600001519050919050565b600a805461110390613819565b80601f016020809104026020016040519081016040528092919081815260200182805461112f90613819565b801561117c5780601f106111515761010080835404028352916020019161117c565b820191906000526020600020905b81548152906001019060200180831161115f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111eb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61125b611f00565b73ffffffffffffffffffffffffffffffffffffffff166112796112e1565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906137ca565b60405180910390fd5b6112d960006127a9565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611313611f00565b73ffffffffffffffffffffffffffffffffffffffff166113316112e1565b73ffffffffffffffffffffffffffffffffffffffff1614806113a75750611356611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906137ca565b60405180910390fd5b80600b90805190602001906113fc929190612fbe565b5050565b60606003805461140f90613819565b80601f016020809104026020016040519081016040528092919081815260200182805461143b90613819565b80156114885780601f1061145d57610100808354040283529160200191611488565b820191906000526020600020905b81548152906001019060200180831161146b57829003601f168201915b5050505050905090565b600e5481565b60006114a2611f00565b9050600f60009054906101000a900460ff16156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90613948565b60405180910390fd5b816114fd610c1b565b6115079190613997565b600d54101561154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290613a39565b60405180910390fd5b6000821161158e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158590613aa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f390613b11565b60405180910390fd5b8160141015611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790613b7d565b60405180910390fd5b611648610c1b565b600c5410611699578160031015611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613be9565b60405180910390fd5b61172d565b81601410156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613b7d565b60405180910390fd5b34600e54836116ec9190613c09565b1461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390613caf565b60405180910390fd5b5b61173781836124fc565b5050565b611743611f00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117b4611f00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611861611f00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a69190613158565b60405180910390a35050565b6118bd84848461200d565b6118dc8373ffffffffffffffffffffffffffffffffffffffff1661286f565b80156118f157506118ef84848484612892565b155b15611928576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061197282611f08565b6119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613d1b565b60405180910390fd5b6000600a80546119c090613819565b9050116119dc5760405180602001604052806000815250611a3f565b600a6119e7836129e2565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611a2f93929190613e0b565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611a66611f00565b73ffffffffffffffffffffffffffffffffffffffff16611a846112e1565b73ffffffffffffffffffffffffffffffffffffffff161480611afa5750611aa9611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b30906137ca565b60405180910390fd5b80600e8190555050565b600b8054611b5090613819565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7c90613819565b8015611bc95780601f10611b9e57610100808354040283529160200191611bc9565b820191906000526020600020905b815481529060010190602001808311611bac57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611c3b919061332b565b602060405180830381865afa158015611c58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7c9190613e7a565b73ffffffffffffffffffffffffffffffffffffffff1603611ca1576001915050611caf565b611cab8484612b42565b9150505b92915050565b611cbd611f00565b73ffffffffffffffffffffffffffffffffffffffff16611cdb6112e1565b73ffffffffffffffffffffffffffffffffffffffff161480611d515750611d00611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d87906137ca565b60405180910390fd5b80600d8190555050565b611da2611f00565b73ffffffffffffffffffffffffffffffffffffffff16611dc06112e1565b73ffffffffffffffffffffffffffffffffffffffff1614611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d906137ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90613f19565b60405180910390fd5b611e8e816127a9565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611f13612008565b11158015611f22575060005482105b8015611f4f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006120188261251a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661203f611f00565b73ffffffffffffffffffffffffffffffffffffffff1614806120725750612071826000015161206c611f00565b611bd1565b5b806120b75750612080611f00565b73ffffffffffffffffffffffffffffffffffffffff1661209f84610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612159576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121bf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cc8585856001612bd6565b6121dc6000848460000151611f56565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361248c5760005481101561248b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f58585856001612bdc565b5050505050565b612516828260405180602001604052806000815250612be2565b5050565b612522613044565b600082905080612530612008565b1115801561253f575060005481105b15612772576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161277057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126545780925050506127a4565b5b60011561276f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461276a5780925050506127a4565b612655565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b8611f00565b8786866040518563ffffffff1660e01b81526004016128da9493929190613f8e565b6020604051808303816000875af192505050801561291657506040513d601f19601f820116820180604052508101906129139190613fef565b60015b61298f573d8060008114612946576040519150601f19603f3d011682016040523d82523d6000602084013e61294b565b606091505b506000815103612987576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612a29576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b3d565b600082905060005b60008214612a5b578080612a449061401c565b915050600a82612a549190614093565b9150612a31565b60008167ffffffffffffffff811115612a7757612a76613439565b5b6040519080825280601f01601f191660200182016040528015612aa95781602001600182028036833780820191505090505b5090505b60008514612b3657600182612ac291906140c4565b9150600a85612ad191906140f8565b6030612add9190613997565b60f81b818381518110612af357612af2614129565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b2f9190614093565b9450612aad565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612bef8383836001612bf4565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c60576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612c9a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ca76000868387612bd6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e715750612e708773ffffffffffffffffffffffffffffffffffffffff1661286f565b5b15612f36575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ee66000888480600101955088612892565b612f1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612e77578260005414612f3157600080fd5b612fa1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612f37575b816000819055505050612fb76000868387612bdc565b5050505050565b828054612fca90613819565b90600052602060002090601f016020900481019282612fec5760008555613033565b82601f1061300557805160ff1916838001178555613033565b82800160010185558215613033579182015b82811115613032578251825591602001919060010190613017565b5b5090506130409190613087565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130a0576000816000905550600101613088565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130ed816130b8565b81146130f857600080fd5b50565b60008135905061310a816130e4565b92915050565b600060208284031215613126576131256130ae565b5b6000613134848285016130fb565b91505092915050565b60008115159050919050565b6131528161313d565b82525050565b600060208201905061316d6000830184613149565b92915050565b61317c8161313d565b811461318757600080fd5b50565b60008135905061319981613173565b92915050565b6000602082840312156131b5576131b46130ae565b5b60006131c38482850161318a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132065780820151818401526020810190506131eb565b83811115613215576000848401525b50505050565b6000601f19601f8301169050919050565b6000613237826131cc565b61324181856131d7565b93506132518185602086016131e8565b61325a8161321b565b840191505092915050565b6000602082019050818103600083015261327f818461322c565b905092915050565b6000819050919050565b61329a81613287565b81146132a557600080fd5b50565b6000813590506132b781613291565b92915050565b6000602082840312156132d3576132d26130ae565b5b60006132e1848285016132a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613315826132ea565b9050919050565b6133258161330a565b82525050565b6000602082019050613340600083018461331c565b92915050565b61334f8161330a565b811461335a57600080fd5b50565b60008135905061336c81613346565b92915050565b60008060408385031215613389576133886130ae565b5b60006133978582860161335d565b92505060206133a8858286016132a8565b9150509250929050565b6133bb81613287565b82525050565b60006020820190506133d660008301846133b2565b92915050565b6000806000606084860312156133f5576133f46130ae565b5b60006134038682870161335d565b93505060206134148682870161335d565b9250506040613425868287016132a8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134718261321b565b810181811067ffffffffffffffff821117156134905761348f613439565b5b80604052505050565b60006134a36130a4565b90506134af8282613468565b919050565b600067ffffffffffffffff8211156134cf576134ce613439565b5b6134d88261321b565b9050602081019050919050565b82818337600083830152505050565b6000613507613502846134b4565b613499565b90508281526020810184848401111561352357613522613434565b5b61352e8482856134e5565b509392505050565b600082601f83011261354b5761354a61342f565b5b813561355b8482602086016134f4565b91505092915050565b60006020828403121561357a576135796130ae565b5b600082013567ffffffffffffffff811115613598576135976130b3565b5b6135a484828501613536565b91505092915050565b6000602082840312156135c3576135c26130ae565b5b60006135d18482850161335d565b91505092915050565b600080604083850312156135f1576135f06130ae565b5b60006135ff8582860161335d565b92505060206136108582860161318a565b9150509250929050565b600067ffffffffffffffff82111561363557613634613439565b5b61363e8261321b565b9050602081019050919050565b600061365e6136598461361a565b613499565b90508281526020810184848401111561367a57613679613434565b5b6136858482856134e5565b509392505050565b600082601f8301126136a2576136a161342f565b5b81356136b284826020860161364b565b91505092915050565b600080600080608085870312156136d5576136d46130ae565b5b60006136e38782880161335d565b94505060206136f48782880161335d565b9350506040613705878288016132a8565b925050606085013567ffffffffffffffff811115613726576137256130b3565b5b6137328782880161368d565b91505092959194509250565b60008060408385031215613755576137546130ae565b5b60006137638582860161335d565b92505060206137748582860161335d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137b46020836131d7565b91506137bf8261377e565b602082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061383157607f821691505b602082108103613844576138436137ea565b5b50919050565b600081905092915050565b50565b600061386560008361384a565b915061387082613855565b600082019050919050565b600061388682613858565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006138c6600e836131d7565b91506138d182613890565b602082019050919050565b600060208201905081810360008301526138f5816138b9565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006139326006836131d7565b915061393d826138fc565b602082019050919050565b6000602082019050818103600083015261396181613925565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139a282613287565b91506139ad83613287565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139e2576139e1613968565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613a236012836131d7565b9150613a2e826139ed565b602082019050919050565b60006020820190508181036000830152613a5281613a16565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613a8f600a836131d7565b9150613a9a82613a59565b602082019050919050565b60006020820190508181036000830152613abe81613a82565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613afb600c836131d7565b9150613b0682613ac5565b602082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613b676016836131d7565b9150613b7282613b31565b602082019050919050565b60006020820190508181036000830152613b9681613b5a565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613bd36016836131d7565b9150613bde82613b9d565b602082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b6000613c1482613287565b9150613c1f83613287565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c5857613c57613968565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613c996016836131d7565b9150613ca482613c63565b602082019050919050565b60006020820190508181036000830152613cc881613c8c565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613d056015836131d7565b9150613d1082613ccf565b602082019050919050565b60006020820190508181036000830152613d3481613cf8565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613d6881613819565b613d728186613d3b565b94506001821660008114613d8d5760018114613d9e57613dd1565b60ff19831686528186019350613dd1565b613da785613d46565b60005b83811015613dc957815481890152600182019150602081019050613daa565b838801955050505b50505092915050565b6000613de5826131cc565b613def8185613d3b565b9350613dff8185602086016131e8565b80840191505092915050565b6000613e178286613d5b565b9150613e238285613dda565b9150613e2f8284613dda565b9150819050949350505050565b6000613e478261330a565b9050919050565b613e5781613e3c565b8114613e6257600080fd5b50565b600081519050613e7481613e4e565b92915050565b600060208284031215613e9057613e8f6130ae565b5b6000613e9e84828501613e65565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f036026836131d7565b9150613f0e82613ea7565b604082019050919050565b60006020820190508181036000830152613f3281613ef6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f6082613f39565b613f6a8185613f44565b9350613f7a8185602086016131e8565b613f838161321b565b840191505092915050565b6000608082019050613fa3600083018761331c565b613fb0602083018661331c565b613fbd60408301856133b2565b8181036060830152613fcf8184613f55565b905095945050505050565b600081519050613fe9816130e4565b92915050565b600060208284031215614005576140046130ae565b5b600061401384828501613fda565b91505092915050565b600061402782613287565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361405957614058613968565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061409e82613287565b91506140a983613287565b9250826140b9576140b8614064565b5b828204905092915050565b60006140cf82613287565b91506140da83613287565b9250828210156140ed576140ec613968565b5b828203905092915050565b600061410382613287565b915061410e83613287565b92508261411e5761411d614064565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bb49853f74da5d02822c3696290ad8b5ede3038a76398d5d0d7ccc95bb710ea464736f6c634300080e0033697066733a2f2f516d635965583158536b62377373453231784b31505a3169373833747755663653784c6a77333865474476706362697066733a2f2f516d5935626e764c71585857415a776d6f5642356b50356e73395262553761427a78736d646f35655969337371512f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063c6682862116100a0578063e8a3d4851161006f578063e8a3d48514610744578063e985e9c51461076f578063edbb99bf146107ac578063f2fde38b146107d5578063f43a22dc146107fe5761020f565b8063c668286214610688578063c87b56dd146106b3578063cd7c0326146106f0578063db4a0f611461071b5761020f565b806395d89b41116100e757806395d89b41146105c4578063a035b1fe146105ef578063a0712d681461061a578063a22cb46514610636578063b88d4fde1461065f5761020f565b8063715018a61461052e5780638069876d146105455780638da5cb5b14610570578063938e3d7b1461059b5761020f565b80633d2abb991161019b57806355f804b31161016a57806355f804b3146104355780635c975abb1461045e5780636352211e146104895780636c0360eb146104c657806370a08231146104f15761020f565b80633d2abb99146103a15780633e0b1a23146103ca57806342842e0e146103e1578063463fff791461040a5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd1461033657806332cb6b0c1461035f5780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613110565b610829565b6040516102489190613158565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061319f565b61090b565b005b34801561028657600080fd5b5061028f610a03565b60405161029c9190613265565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906132bd565b610a95565b6040516102d9919061332b565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613372565b610b11565b005b34801561031757600080fd5b50610320610c1b565b60405161032d91906133c1565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906133dc565b610c32565b005b34801561036b57600080fd5b50610374610c42565b60405161038191906133c1565b60405180910390f35b34801561039657600080fd5b5061039f610c48565b005b3480156103ad57600080fd5b506103c860048036038101906103c391906132bd565b610ddf565b005b3480156103d657600080fd5b506103df610ec4565b005b3480156103ed57600080fd5b50610408600480360381019061040391906133dc565b610fb3565b005b34801561041657600080fd5b5061041f610fd3565b60405161042c91906133c1565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613564565b610fd8565b005b34801561046a57600080fd5b506104736110cd565b6040516104809190613158565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906132bd565b6110e0565b6040516104bd919061332b565b60405180910390f35b3480156104d257600080fd5b506104db6110f6565b6040516104e89190613265565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906135ad565b611184565b60405161052591906133c1565b60405180910390f35b34801561053a57600080fd5b50610543611253565b005b34801561055157600080fd5b5061055a6112db565b60405161056791906133c1565b60405180910390f35b34801561057c57600080fd5b506105856112e1565b604051610592919061332b565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613564565b61130b565b005b3480156105d057600080fd5b506105d9611400565b6040516105e69190613265565b60405180910390f35b3480156105fb57600080fd5b50610604611492565b60405161061191906133c1565b60405180910390f35b610634600480360381019061062f91906132bd565b611498565b005b34801561064257600080fd5b5061065d600480360381019061065891906135da565b61173b565b005b34801561066b57600080fd5b50610686600480360381019061068191906136bb565b6118b2565b005b34801561069457600080fd5b5061069d61192e565b6040516106aa9190613265565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906132bd565b611967565b6040516106e79190613265565b60405180910390f35b3480156106fc57600080fd5b50610705611a46565b604051610712919061332b565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906132bd565b611a5e565b005b34801561075057600080fd5b50610759611b43565b6040516107669190613265565b60405180910390f35b34801561077b57600080fd5b506107966004803603810190610791919061373e565b611bd1565b6040516107a39190613158565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906132bd565b611cb5565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906135ad565b611d9a565b005b34801561080a57600080fd5b50610813611e91565b60405161082091906133c1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611e96565b5b9050919050565b610913611f00565b73ffffffffffffffffffffffffffffffffffffffff166109316112e1565b73ffffffffffffffffffffffffffffffffffffffff1614806109a75750610956611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd906137ca565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a1290613819565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613819565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa082611f08565b610ad6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1c826110e0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba2611f00565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd45750610bd281610bcd611f00565b611bd1565b155b15610c0b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c16838383611f56565b505050565b6000610c25612008565b6001546000540303905090565b610c3d83838361200d565b505050565b600d5481565b610c50611f00565b73ffffffffffffffffffffffffffffffffffffffff16610c6e6112e1565b73ffffffffffffffffffffffffffffffffffffffff161480610ce45750610c93611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a906137ca565b60405180910390fd5b60004790506000610d32611f00565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d559061387b565b60006040518083038185875af1925050503d8060008114610d92576040519150601f19603f3d011682016040523d82523d6000602084013e610d97565b606091505b5050905080610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906138dc565b60405180910390fd5b5050565b610de7611f00565b73ffffffffffffffffffffffffffffffffffffffff16610e056112e1565b73ffffffffffffffffffffffffffffffffffffffff161480610e7b5750610e2a611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906137ca565b60405180910390fd5b80600c8190555050565b610ecc611f00565b73ffffffffffffffffffffffffffffffffffffffff16610eea6112e1565b73ffffffffffffffffffffffffffffffffffffffff161480610f605750610f0f611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906137ca565b60405180910390fd5b610fb1610faa611f00565b60016124fc565b565b610fce838383604051806020016040528060008152506118b2565b505050565b600381565b610fe0611f00565b73ffffffffffffffffffffffffffffffffffffffff16610ffe6112e1565b73ffffffffffffffffffffffffffffffffffffffff1614806110745750611023611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906137ca565b60405180910390fd5b80600a90805190602001906110c9929190612fbe565b5050565b600f60009054906101000a900460ff1681565b60006110eb8261251a565b600001519050919050565b600a805461110390613819565b80601f016020809104026020016040519081016040528092919081815260200182805461112f90613819565b801561117c5780601f106111515761010080835404028352916020019161117c565b820191906000526020600020905b81548152906001019060200180831161115f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111eb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61125b611f00565b73ffffffffffffffffffffffffffffffffffffffff166112796112e1565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906137ca565b60405180910390fd5b6112d960006127a9565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611313611f00565b73ffffffffffffffffffffffffffffffffffffffff166113316112e1565b73ffffffffffffffffffffffffffffffffffffffff1614806113a75750611356611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd906137ca565b60405180910390fd5b80600b90805190602001906113fc929190612fbe565b5050565b60606003805461140f90613819565b80601f016020809104026020016040519081016040528092919081815260200182805461143b90613819565b80156114885780601f1061145d57610100808354040283529160200191611488565b820191906000526020600020905b81548152906001019060200180831161146b57829003601f168201915b5050505050905090565b600e5481565b60006114a2611f00565b9050600f60009054906101000a900460ff16156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90613948565b60405180910390fd5b816114fd610c1b565b6115079190613997565b600d54101561154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290613a39565b60405180910390fd5b6000821161158e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158590613aa5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f390613b11565b60405180910390fd5b8160141015611640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163790613b7d565b60405180910390fd5b611648610c1b565b600c5410611699578160031015611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613be9565b60405180910390fd5b61172d565b81601410156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613b7d565b60405180910390fd5b34600e54836116ec9190613c09565b1461172c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172390613caf565b60405180910390fd5b5b61173781836124fc565b5050565b611743611f00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117b4611f00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611861611f00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a69190613158565b60405180910390a35050565b6118bd84848461200d565b6118dc8373ffffffffffffffffffffffffffffffffffffffff1661286f565b80156118f157506118ef84848484612892565b155b15611928576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061197282611f08565b6119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613d1b565b60405180910390fd5b6000600a80546119c090613819565b9050116119dc5760405180602001604052806000815250611a3f565b600a6119e7836129e2565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611a2f93929190613e0b565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611a66611f00565b73ffffffffffffffffffffffffffffffffffffffff16611a846112e1565b73ffffffffffffffffffffffffffffffffffffffff161480611afa5750611aa9611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b30906137ca565b60405180910390fd5b80600e8190555050565b600b8054611b5090613819565b80601f0160208091040260200160405190810160405280929190818152602001828054611b7c90613819565b8015611bc95780601f10611b9e57610100808354040283529160200191611bc9565b820191906000526020600020905b815481529060010190602001808311611bac57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611c3b919061332b565b602060405180830381865afa158015611c58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7c9190613e7a565b73ffffffffffffffffffffffffffffffffffffffff1603611ca1576001915050611caf565b611cab8484612b42565b9150505b92915050565b611cbd611f00565b73ffffffffffffffffffffffffffffffffffffffff16611cdb6112e1565b73ffffffffffffffffffffffffffffffffffffffff161480611d515750611d00611f00565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d87906137ca565b60405180910390fd5b80600d8190555050565b611da2611f00565b73ffffffffffffffffffffffffffffffffffffffff16611dc06112e1565b73ffffffffffffffffffffffffffffffffffffffff1614611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d906137ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90613f19565b60405180910390fd5b611e8e816127a9565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611f13612008565b11158015611f22575060005482105b8015611f4f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006120188261251a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661203f611f00565b73ffffffffffffffffffffffffffffffffffffffff1614806120725750612071826000015161206c611f00565b611bd1565b5b806120b75750612080611f00565b73ffffffffffffffffffffffffffffffffffffffff1661209f84610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120f0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612159576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121bf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121cc8585856001612bd6565b6121dc6000848460000151611f56565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361248c5760005481101561248b5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124f58585856001612bdc565b5050505050565b612516828260405180602001604052806000815250612be2565b5050565b612522613044565b600082905080612530612008565b1115801561253f575060005481105b15612772576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161277057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126545780925050506127a4565b5b60011561276f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461276a5780925050506127a4565b612655565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b8611f00565b8786866040518563ffffffff1660e01b81526004016128da9493929190613f8e565b6020604051808303816000875af192505050801561291657506040513d601f19601f820116820180604052508101906129139190613fef565b60015b61298f573d8060008114612946576040519150601f19603f3d011682016040523d82523d6000602084013e61294b565b606091505b506000815103612987576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612a29576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b3d565b600082905060005b60008214612a5b578080612a449061401c565b915050600a82612a549190614093565b9150612a31565b60008167ffffffffffffffff811115612a7757612a76613439565b5b6040519080825280601f01601f191660200182016040528015612aa95781602001600182028036833780820191505090505b5090505b60008514612b3657600182612ac291906140c4565b9150600a85612ad191906140f8565b6030612add9190613997565b60f81b818381518110612af357612af2614129565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b2f9190614093565b9450612aad565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612bef8383836001612bf4565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c60576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612c9a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ca76000868387612bd6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e715750612e708773ffffffffffffffffffffffffffffffffffffffff1661286f565b5b15612f36575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ee66000888480600101955088612892565b612f1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612e77578260005414612f3157600080fd5b612fa1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612f37575b816000819055505050612fb76000868387612bdc565b5050505050565b828054612fca90613819565b90600052602060002090601f016020900481019282612fec5760008555613033565b82601f1061300557805160ff1916838001178555613033565b82800160010185558215613033579182015b82811115613032578251825591602001919060010190613017565b5b5090506130409190613087565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130a0576000816000905550600101613088565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130ed816130b8565b81146130f857600080fd5b50565b60008135905061310a816130e4565b92915050565b600060208284031215613126576131256130ae565b5b6000613134848285016130fb565b91505092915050565b60008115159050919050565b6131528161313d565b82525050565b600060208201905061316d6000830184613149565b92915050565b61317c8161313d565b811461318757600080fd5b50565b60008135905061319981613173565b92915050565b6000602082840312156131b5576131b46130ae565b5b60006131c38482850161318a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156132065780820151818401526020810190506131eb565b83811115613215576000848401525b50505050565b6000601f19601f8301169050919050565b6000613237826131cc565b61324181856131d7565b93506132518185602086016131e8565b61325a8161321b565b840191505092915050565b6000602082019050818103600083015261327f818461322c565b905092915050565b6000819050919050565b61329a81613287565b81146132a557600080fd5b50565b6000813590506132b781613291565b92915050565b6000602082840312156132d3576132d26130ae565b5b60006132e1848285016132a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613315826132ea565b9050919050565b6133258161330a565b82525050565b6000602082019050613340600083018461331c565b92915050565b61334f8161330a565b811461335a57600080fd5b50565b60008135905061336c81613346565b92915050565b60008060408385031215613389576133886130ae565b5b60006133978582860161335d565b92505060206133a8858286016132a8565b9150509250929050565b6133bb81613287565b82525050565b60006020820190506133d660008301846133b2565b92915050565b6000806000606084860312156133f5576133f46130ae565b5b60006134038682870161335d565b93505060206134148682870161335d565b9250506040613425868287016132a8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134718261321b565b810181811067ffffffffffffffff821117156134905761348f613439565b5b80604052505050565b60006134a36130a4565b90506134af8282613468565b919050565b600067ffffffffffffffff8211156134cf576134ce613439565b5b6134d88261321b565b9050602081019050919050565b82818337600083830152505050565b6000613507613502846134b4565b613499565b90508281526020810184848401111561352357613522613434565b5b61352e8482856134e5565b509392505050565b600082601f83011261354b5761354a61342f565b5b813561355b8482602086016134f4565b91505092915050565b60006020828403121561357a576135796130ae565b5b600082013567ffffffffffffffff811115613598576135976130b3565b5b6135a484828501613536565b91505092915050565b6000602082840312156135c3576135c26130ae565b5b60006135d18482850161335d565b91505092915050565b600080604083850312156135f1576135f06130ae565b5b60006135ff8582860161335d565b92505060206136108582860161318a565b9150509250929050565b600067ffffffffffffffff82111561363557613634613439565b5b61363e8261321b565b9050602081019050919050565b600061365e6136598461361a565b613499565b90508281526020810184848401111561367a57613679613434565b5b6136858482856134e5565b509392505050565b600082601f8301126136a2576136a161342f565b5b81356136b284826020860161364b565b91505092915050565b600080600080608085870312156136d5576136d46130ae565b5b60006136e38782880161335d565b94505060206136f48782880161335d565b9350506040613705878288016132a8565b925050606085013567ffffffffffffffff811115613726576137256130b3565b5b6137328782880161368d565b91505092959194509250565b60008060408385031215613755576137546130ae565b5b60006137638582860161335d565b92505060206137748582860161335d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137b46020836131d7565b91506137bf8261377e565b602082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061383157607f821691505b602082108103613844576138436137ea565b5b50919050565b600081905092915050565b50565b600061386560008361384a565b915061387082613855565b600082019050919050565b600061388682613858565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006138c6600e836131d7565b91506138d182613890565b602082019050919050565b600060208201905081810360008301526138f5816138b9565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006139326006836131d7565b915061393d826138fc565b602082019050919050565b6000602082019050818103600083015261396181613925565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139a282613287565b91506139ad83613287565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139e2576139e1613968565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613a236012836131d7565b9150613a2e826139ed565b602082019050919050565b60006020820190508181036000830152613a5281613a16565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613a8f600a836131d7565b9150613a9a82613a59565b602082019050919050565b60006020820190508181036000830152613abe81613a82565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613afb600c836131d7565b9150613b0682613ac5565b602082019050919050565b60006020820190508181036000830152613b2a81613aee565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613b676016836131d7565b9150613b7282613b31565b602082019050919050565b60006020820190508181036000830152613b9681613b5a565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613bd36016836131d7565b9150613bde82613b9d565b602082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b6000613c1482613287565b9150613c1f83613287565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c5857613c57613968565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613c996016836131d7565b9150613ca482613c63565b602082019050919050565b60006020820190508181036000830152613cc881613c8c565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613d056015836131d7565b9150613d1082613ccf565b602082019050919050565b60006020820190508181036000830152613d3481613cf8565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613d6881613819565b613d728186613d3b565b94506001821660008114613d8d5760018114613d9e57613dd1565b60ff19831686528186019350613dd1565b613da785613d46565b60005b83811015613dc957815481890152600182019150602081019050613daa565b838801955050505b50505092915050565b6000613de5826131cc565b613def8185613d3b565b9350613dff8185602086016131e8565b80840191505092915050565b6000613e178286613d5b565b9150613e238285613dda565b9150613e2f8284613dda565b9150819050949350505050565b6000613e478261330a565b9050919050565b613e5781613e3c565b8114613e6257600080fd5b50565b600081519050613e7481613e4e565b92915050565b600060208284031215613e9057613e8f6130ae565b5b6000613e9e84828501613e65565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f036026836131d7565b9150613f0e82613ea7565b604082019050919050565b60006020820190508181036000830152613f3281613ef6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f6082613f39565b613f6a8185613f44565b9350613f7a8185602086016131e8565b613f838161321b565b840191505092915050565b6000608082019050613fa3600083018761331c565b613fb0602083018661331c565b613fbd60408301856133b2565b8181036060830152613fcf8184613f55565b905095945050505050565b600081519050613fe9816130e4565b92915050565b600060208284031215614005576140046130ae565b5b600061401384828501613fda565b91505092915050565b600061402782613287565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361405957614058613968565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061409e82613287565b91506140a983613287565b9250826140b9576140b8614064565b5b828204905092915050565b60006140cf82613287565b91506140da83613287565b9250828210156140ed576140ec613968565b5b828203905092915050565b600061410382613287565b915061410e83613287565b92508261411e5761411d614064565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220bb49853f74da5d02822c3696290ad8b5ede3038a76398d5d0d7ccc95bb710ea464736f6c634300080e0033

Deployed Bytecode Sourcemap

45920:3244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28453:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48139:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31838:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33341:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32904:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27702:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34198:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46446:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47829:209;;;;;;;;;;;;;:::i;:::-;;48670:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48046:85;;;;;;;;;;;;;:::i;:::-;;34439:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46307:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48228:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46528:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31647:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45979:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28822:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2650:103;;;;;;;;;;;;;:::i;:::-;;46357:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1999:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48336:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32007:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46485:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46629:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33617:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34695:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46156:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48799:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46209:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48460:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46066:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47376:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48559:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2908:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46400:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28453:305;28555:4;28607:25;28592:40;;;:11;:40;;;;:105;;;;28664:33;28649:48;;;:11;:48;;;;28592:105;:158;;;;28714:36;28738:11;28714:23;:36::i;:::-;28592:158;28572:178;;28453:305;;;:::o;48139:81::-;24932:12;:10;:12::i;:::-;24921:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24958:12;:10;:12::i;:::-;24948:22;;:6;;;;;;;;;;;:22;;;24921:49;24913:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48206:6:::1;48197;;:15;;;;;;;;;;;;;;;;;;48139:81:::0;:::o;31838:100::-;31892:13;31925:5;31918:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31838:100;:::o;33341:204::-;33409:7;33434:16;33442:7;33434;:16::i;:::-;33429:64;;33459:34;;;;;;;;;;;;;;33429:64;33513:15;:24;33529:7;33513:24;;;;;;;;;;;;;;;;;;;;;33506:31;;33341:204;;;:::o;32904:371::-;32977:13;32993:24;33009:7;32993:15;:24::i;:::-;32977:40;;33038:5;33032:11;;:2;:11;;;33028:48;;33052:24;;;;;;;;;;;;;;33028:48;33109:5;33093:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33119:37;33136:5;33143:12;:10;:12::i;:::-;33119:16;:37::i;:::-;33118:38;33093:63;33089:138;;;33180:35;;;;;;;;;;;;;;33089:138;33239:28;33248:2;33252:7;33261:5;33239:8;:28::i;:::-;32966:309;32904:371;;:::o;27702:303::-;27746:7;27971:15;:13;:15::i;:::-;27956:12;;27940:13;;:28;:46;27933:53;;27702:303;:::o;34198:170::-;34332:28;34342:4;34348:2;34352:7;34332:9;:28::i;:::-;34198:170;;;:::o;46446:32::-;;;;:::o;47829:209::-;24932:12;:10;:12::i;:::-;24921:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24958:12;:10;:12::i;:::-;24948:22;;:6;;;;;;;;;;;:22;;;24921:49;24913:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47879:15:::1;47897:21;47879:39;;47930:12;47948;:10;:12::i;:::-;:17;;47973:7;47948:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47929:56;;;48004:7;47996:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47868:170;;47829:209::o:0;48670:121::-;24932:12;:10;:12::i;:::-;24921:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24958:12;:10;:12::i;:::-;24948:22;;:6;;;;;;;;;;;:22;;;24921:49;24913:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48770:13:::1;48752:15;:31;;;;48670:121:::0;:::o;48046:85::-;24932:12;:10;:12::i;:::-;24921:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24958:12;:10;:12::i;:::-;24948:22;;:6;;;;;;;;;;;:22;;;24921:49;24913:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48097:26:::1;48107:12;:10;:12::i;:::-;48121:1;48097:9;:26::i;:::-;48046:85::o:0;34439:185::-;34577:39;34594:4;34600:2;34604:7;34577:39;;;;;;;;;;;;:16;:39::i;:::-;34439:185;;;:::o;46307:43::-;46349:1;46307:43;:::o;48228:100::-;24932:12;:10;:12::i;:::-;24921:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24958:12;:10;:12::i;:::-;24948:22;;:6;;;;;;;;;;;:22;;;24921:49;24913:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48312:8:::1;48302:7;:18;;;;;;;;;;;;:::i;:::-;;48228:100:::0;:::o;46528:26::-;;;;;;;;;;;;;:::o;31647:124::-;31711:7;31738:20;31750:7;31738:11;:20::i;:::-;:25;;;31731:32;;31647:124;;;:::o;45979:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28822:206::-;28886:7;28927:1;28910:19;;:5;:19;;;28906:60;;28938:28;;;;;;;;;;;;;;28906:60;28992:12;:19;29005:5;28992:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28984:36;;28977:43;;28822:206;;;:::o;2650:103::-;2230:12;:10;:12::i;:::-;2219:23;;:7;:5;:7::i;:::-;:23;;;2211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2715:30:::1;2742:1;2715:18;:30::i;:::-;2650:103::o:0;46357:36::-;;;;:::o;1999:87::-;2045:7;2072:6;;;;;;;;;;;2065:13;;1999:87;:::o;48336:116::-;24932:12;:10;:12::i;:::-;24921:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24958:12;:10;:12::i;:::-;24948:22;;:6;;;;;;;;;;;:22;;;24921:49;24913:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48432:12:::1;48418:11;:26;;;;;;;;;;;;:::i;:::-;;48336:116:::0;:::o;32007:104::-;32063:13;32096:7;32089:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32007:104;:::o;46485:34::-;;;;:::o;46629:733::-;46688:15;46706:12;:10;:12::i;:::-;46688:30;;46738:6;;;;;;;;;;;46737:7;46729:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46804:7;46788:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46774:10;;:37;;46766:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46863:1;46853:7;:11;46845:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46911:7;46898:20;;:9;:20;;;46890:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46968:7;46437:2;46954:21;;46946:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47044:13;:11;:13::i;:::-;47025:15;;:32;47022:291;;47100:7;46349:1;47081:26;;47073:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47022:291;;;47188:7;46437:2;47174:21;;47166:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47265:9;47256:5;;47246:7;:15;;;;:::i;:::-;:28;47238:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47022:291;47327:27;47337:7;47346;47327:9;:27::i;:::-;46677:685;46629:733;:::o;33617:279::-;33720:12;:10;:12::i;:::-;33708:24;;:8;:24;;;33704:54;;33741:17;;;;;;;;;;;;;;33704:54;33816:8;33771:18;:32;33790:12;:10;:12::i;:::-;33771:32;;;;;;;;;;;;;;;:42;33804:8;33771:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33869:8;33840:48;;33855:12;:10;:12::i;:::-;33840:48;;;33879:8;33840:48;;;;;;:::i;:::-;;;;;;;;33617:279;;:::o;34695:369::-;34862:28;34872:4;34878:2;34882:7;34862:9;:28::i;:::-;34905:15;:2;:13;;;:15::i;:::-;:76;;;;;34925:56;34956:4;34962:2;34966:7;34975:5;34925:30;:56::i;:::-;34924:57;34905:76;34901:156;;;35005:40;;;;;;;;;;;;;;34901:156;34695:369;;;;:::o;46156:46::-;;;;;;;;;;;;;;;;;;;:::o;48799:362::-;48865:13;48899:17;48907:8;48899:7;:17::i;:::-;48891:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48984:1;48966:7;48960:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49042:7;49066:26;49083:8;49066:16;:26::i;:::-;49109:13;;;;;;;;;;;;;;;;;49009:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48960:193;48953:200;;48799:362;;;:::o;46209:89::-;46256:42;46209:89;:::o;48460:91::-;24932:12;:10;:12::i;:::-;24921:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24958:12;:10;:12::i;:::-;24948:22;;:6;;;;;;;;;;;:22;;;24921:49;24913:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48535:8:::1;48527:5;:16;;;;48460:91:::0;:::o;46066:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47376:445::-;47501:4;47586:27;46256:42;47586:65;;47707:8;47666:49;;47674:13;:21;;;47696:5;47674:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47666:49;;;47662:93;;47739:4;47732:11;;;;;47662:93;47774:39;47797:5;47804:8;47774:22;:39::i;:::-;47767:46;;;47376:445;;;;;:::o;48559:103::-;24932:12;:10;:12::i;:::-;24921:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24958:12;:10;:12::i;:::-;24948:22;;:6;;;;;;;;;;;:22;;;24921:49;24913:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48645:9:::1;48632:10;:22;;;;48559:103:::0;:::o;2908:201::-;2230:12;:10;:12::i;:::-;2219:23;;:7;:5;:7::i;:::-;:23;;;2211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3017:1:::1;2997:22;;:8;:22;;::::0;2989:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3073:28;3092:8;3073:18;:28::i;:::-;2908:201:::0;:::o;46400:39::-;46437:2;46400:39;:::o;23553:157::-;23638:4;23677:25;23662:40;;;:11;:40;;;;23655:47;;23553:157;;;:::o;740:98::-;793:7;820:10;813:17;;740:98;:::o;35319:187::-;35376:4;35419:7;35400:15;:13;:15::i;:::-;:26;;:53;;;;;35440:13;;35430:7;:23;35400:53;:98;;;;;35471:11;:20;35483:7;35471:20;;;;;;;;;;;:27;;;;;;;;;;;;35470:28;35400:98;35393:105;;35319:187;;;:::o;42930:196::-;43072:2;43045:15;:24;43061:7;43045:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43110:7;43106:2;43090:28;;43099:5;43090:28;;;;;;;;;;;;42930:196;;;:::o;27426:92::-;27482:7;27426:92;:::o;38432:2112::-;38547:35;38585:20;38597:7;38585:11;:20::i;:::-;38547:58;;38618:22;38660:13;:18;;;38644:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38695:50;38712:13;:18;;;38732:12;:10;:12::i;:::-;38695:16;:50::i;:::-;38644:101;:154;;;;38786:12;:10;:12::i;:::-;38762:36;;:20;38774:7;38762:11;:20::i;:::-;:36;;;38644:154;38618:181;;38817:17;38812:66;;38843:35;;;;;;;;;;;;;;38812:66;38915:4;38893:26;;:13;:18;;;:26;;;38889:67;;38928:28;;;;;;;;;;;;;;38889:67;38985:1;38971:16;;:2;:16;;;38967:52;;38996:23;;;;;;;;;;;;;;38967:52;39032:43;39054:4;39060:2;39064:7;39073:1;39032:21;:43::i;:::-;39140:49;39157:1;39161:7;39170:13;:18;;;39140:8;:49::i;:::-;39515:1;39485:12;:18;39498:4;39485:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39559:1;39531:12;:16;39544:2;39531:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39605:2;39577:11;:20;39589:7;39577:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39667:15;39622:11;:20;39634:7;39622:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39935:19;39967:1;39957:7;:11;39935:33;;40028:1;39987:43;;:11;:24;39999:11;39987:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39983:445;;40212:13;;40198:11;:27;40194:219;;;40282:13;:18;;;40250:11;:24;40262:11;40250:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40365:13;:28;;;40323:11;:24;40335:11;40323:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40194:219;39983:445;39460:979;40475:7;40471:2;40456:27;;40465:4;40456:27;;;;;;;;;;;;40494:42;40515:4;40521:2;40525:7;40534:1;40494:20;:42::i;:::-;38536:2008;;38432:2112;;;:::o;35514:104::-;35583:27;35593:2;35597:8;35583:27;;;;;;;;;;;;:9;:27::i;:::-;35514:104;;:::o;30477:1108::-;30538:21;;:::i;:::-;30572:12;30587:7;30572:22;;30655:4;30636:15;:13;:15::i;:::-;:23;;:47;;;;;30670:13;;30663:4;:20;30636:47;30632:886;;;30704:31;30738:11;:17;30750:4;30738:17;;;;;;;;;;;30704:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30779:9;:16;;;30774:729;;30850:1;30824:28;;:9;:14;;;:28;;;30820:101;;30888:9;30881:16;;;;;;30820:101;31223:261;31230:4;31223:261;;;31263:6;;;;;;;;31308:11;:17;31320:4;31308:17;;;;;;;;;;;31296:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31382:1;31356:28;;:9;:14;;;:28;;;31352:109;;31424:9;31417:16;;;;;;31352:109;31223:261;;;30774:729;30685:833;30632:886;31546:31;;;;;;;;;;;;;;30477:1108;;;;:::o;3269:191::-;3343:16;3362:6;;;;;;;;;;;3343:25;;3388:8;3379:6;;:17;;;;;;;;;;;;;;;;;;3443:8;3412:40;;3433:8;3412:40;;;;;;;;;;;;3332:128;3269:191;:::o;13330:326::-;13390:4;13647:1;13625:7;:19;;;:23;13618:30;;13330:326;;;:::o;43618:667::-;43781:4;43818:2;43802:36;;;43839:12;:10;:12::i;:::-;43853:4;43859:7;43868:5;43802:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43798:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44053:1;44036:6;:13;:18;44032:235;;44082:40;;;;;;;;;;;;;;44032:235;44225:6;44219:13;44210:6;44206:2;44202:15;44195:38;43798:480;43931:45;;;43921:55;;;:6;:55;;;;43914:62;;;43618:667;;;;;;:::o;20950:723::-;21006:13;21236:1;21227:5;:10;21223:53;;21254:10;;;;;;;;;;;;;;;;;;;;;21223:53;21286:12;21301:5;21286:20;;21317:14;21342:78;21357:1;21349:4;:9;21342:78;;21375:8;;;;;:::i;:::-;;;;21406:2;21398:10;;;;;:::i;:::-;;;21342:78;;;21430:19;21462:6;21452:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21430:39;;21480:154;21496:1;21487:5;:10;21480:154;;21524:1;21514:11;;;;;:::i;:::-;;;21591:2;21583:5;:10;;;;:::i;:::-;21570:2;:24;;;;:::i;:::-;21557:39;;21540:6;21547;21540:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21620:2;21611:11;;;;;:::i;:::-;;;21480:154;;;21658:6;21644:21;;;;;20950:723;;;;:::o;33967:164::-;34064:4;34088:18;:25;34107:5;34088:25;;;;;;;;;;;;;;;:35;34114:8;34088:35;;;;;;;;;;;;;;;;;;;;;;;;;34081:42;;33967:164;;;;:::o;44933:159::-;;;;;:::o;45751:158::-;;;;;:::o;35981:163::-;36104:32;36110:2;36114:8;36124:5;36131:4;36104:5;:32::i;:::-;35981:163;;;:::o;36403:1775::-;36542:20;36565:13;;36542:36;;36607:1;36593:16;;:2;:16;;;36589:48;;36618:19;;;;;;;;;;;;;;36589:48;36664:1;36652:8;:13;36648:44;;36674:18;;;;;;;;;;;;;;36648:44;36705:61;36735:1;36739:2;36743:12;36757:8;36705:21;:61::i;:::-;37078:8;37043:12;:16;37056:2;37043:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37142:8;37102:12;:16;37115:2;37102:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37201:2;37168:11;:25;37180:12;37168:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37268:15;37218:11;:25;37230:12;37218:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37301:20;37324:12;37301:35;;37351:11;37380:8;37365:12;:23;37351:37;;37409:4;:23;;;;;37417:15;:2;:13;;;:15::i;:::-;37409:23;37405:641;;;37453:314;37509:12;37505:2;37484:38;;37501:1;37484:38;;;;;;;;;;;;37550:69;37589:1;37593:2;37597:14;;;;;;37613:5;37550:30;:69::i;:::-;37545:174;;37655:40;;;;;;;;;;;;;;37545:174;37762:3;37746:12;:19;37453:314;;37848:12;37831:13;;:29;37827:43;;37862:8;;;37827:43;37405:641;;;37911:120;37967:14;;;;;;37963:2;37942:40;;37959:1;37942:40;;;;;;;;;;;;38026:3;38010:12;:19;37911:120;;37405:641;38076:12;38060:13;:28;;;;37018:1082;;38110:60;38139:1;38143:2;38147:12;38161:8;38110:20;:60::i;:::-;36531:1647;36403:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:164::-;15149:16;15145:1;15137:6;15133:14;15126:40;15009:164;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:156::-;16116:8;16112:1;16104:6;16100:14;16093:32;15976:156;:::o;16138:365::-;16280:3;16301:66;16365:1;16360:3;16301:66;:::i;:::-;16294:73;;16376:93;16465:3;16376:93;:::i;:::-;16494:2;16489:3;16485:12;16478:19;;16138:365;;;:::o;16509:419::-;16675:4;16713:2;16702:9;16698:18;16690:26;;16762:9;16756:4;16752:20;16748:1;16737:9;16733:17;16726:47;16790:131;16916:4;16790:131;:::i;:::-;16782:139;;16509:419;;;:::o;16934:180::-;16982:77;16979:1;16972:88;17079:4;17076:1;17069:15;17103:4;17100:1;17093:15;17120:305;17160:3;17179:20;17197:1;17179:20;:::i;:::-;17174:25;;17213:20;17231:1;17213:20;:::i;:::-;17208:25;;17367:1;17299:66;17295:74;17292:1;17289:81;17286:107;;;17373:18;;:::i;:::-;17286:107;17417:1;17414;17410:9;17403:16;;17120:305;;;;:::o;17431:168::-;17571:20;17567:1;17559:6;17555:14;17548:44;17431:168;:::o;17605:366::-;17747:3;17768:67;17832:2;17827:3;17768:67;:::i;:::-;17761:74;;17844:93;17933:3;17844:93;:::i;:::-;17962:2;17957:3;17953:12;17946:19;;17605:366;;;:::o;17977:419::-;18143:4;18181:2;18170:9;18166:18;18158:26;;18230:9;18224:4;18220:20;18216:1;18205:9;18201:17;18194:47;18258:131;18384:4;18258:131;:::i;:::-;18250:139;;17977:419;;;:::o;18402:160::-;18542:12;18538:1;18530:6;18526:14;18519:36;18402:160;:::o;18568:366::-;18710:3;18731:67;18795:2;18790:3;18731:67;:::i;:::-;18724:74;;18807:93;18896:3;18807:93;:::i;:::-;18925:2;18920:3;18916:12;18909:19;;18568:366;;;:::o;18940:419::-;19106:4;19144:2;19133:9;19129:18;19121:26;;19193:9;19187:4;19183:20;19179:1;19168:9;19164:17;19157:47;19221:131;19347:4;19221:131;:::i;:::-;19213:139;;18940:419;;;:::o;19365:162::-;19505:14;19501:1;19493:6;19489:14;19482:38;19365:162;:::o;19533:366::-;19675:3;19696:67;19760:2;19755:3;19696:67;:::i;:::-;19689:74;;19772:93;19861:3;19772:93;:::i;:::-;19890:2;19885:3;19881:12;19874:19;;19533:366;;;:::o;19905:419::-;20071:4;20109:2;20098:9;20094:18;20086:26;;20158:9;20152:4;20148:20;20144:1;20133:9;20129:17;20122:47;20186:131;20312:4;20186:131;:::i;:::-;20178:139;;19905:419;;;:::o;20330:172::-;20470:24;20466:1;20458:6;20454:14;20447:48;20330:172;:::o;20508:366::-;20650:3;20671:67;20735:2;20730:3;20671:67;:::i;:::-;20664:74;;20747:93;20836:3;20747:93;:::i;:::-;20865:2;20860:3;20856:12;20849:19;;20508:366;;;:::o;20880:419::-;21046:4;21084:2;21073:9;21069:18;21061:26;;21133:9;21127:4;21123:20;21119:1;21108:9;21104:17;21097:47;21161:131;21287:4;21161:131;:::i;:::-;21153:139;;20880:419;;;:::o;21305:172::-;21445:24;21441:1;21433:6;21429:14;21422:48;21305:172;:::o;21483:366::-;21625:3;21646:67;21710:2;21705:3;21646:67;:::i;:::-;21639:74;;21722:93;21811:3;21722:93;:::i;:::-;21840:2;21835:3;21831:12;21824:19;;21483:366;;;:::o;21855:419::-;22021:4;22059:2;22048:9;22044:18;22036:26;;22108:9;22102:4;22098:20;22094:1;22083:9;22079:17;22072:47;22136:131;22262:4;22136:131;:::i;:::-;22128:139;;21855:419;;;:::o;22280:348::-;22320:7;22343:20;22361:1;22343:20;:::i;:::-;22338:25;;22377:20;22395:1;22377:20;:::i;:::-;22372:25;;22565:1;22497:66;22493:74;22490:1;22487:81;22482:1;22475:9;22468:17;22464:105;22461:131;;;22572:18;;:::i;:::-;22461:131;22620:1;22617;22613:9;22602:20;;22280:348;;;;:::o;22634:172::-;22774:24;22770:1;22762:6;22758:14;22751:48;22634:172;:::o;22812:366::-;22954:3;22975:67;23039:2;23034:3;22975:67;:::i;:::-;22968:74;;23051:93;23140:3;23051:93;:::i;:::-;23169:2;23164:3;23160:12;23153:19;;22812:366;;;:::o;23184:419::-;23350:4;23388:2;23377:9;23373:18;23365:26;;23437:9;23431:4;23427:20;23423:1;23412:9;23408:17;23401:47;23465:131;23591:4;23465:131;:::i;:::-;23457:139;;23184:419;;;:::o;23609:171::-;23749:23;23745:1;23737:6;23733:14;23726:47;23609:171;:::o;23786:366::-;23928:3;23949:67;24013:2;24008:3;23949:67;:::i;:::-;23942:74;;24025:93;24114:3;24025:93;:::i;:::-;24143:2;24138:3;24134:12;24127:19;;23786:366;;;:::o;24158:419::-;24324:4;24362:2;24351:9;24347:18;24339:26;;24411:9;24405:4;24401:20;24397:1;24386:9;24382:17;24375:47;24439:131;24565:4;24439:131;:::i;:::-;24431:139;;24158:419;;;:::o;24583:148::-;24685:11;24722:3;24707:18;;24583:148;;;;:::o;24737:141::-;24786:4;24809:3;24801:11;;24832:3;24829:1;24822:14;24866:4;24863:1;24853:18;24845:26;;24737:141;;;:::o;24908:845::-;25011:3;25048:5;25042:12;25077:36;25103:9;25077:36;:::i;:::-;25129:89;25211:6;25206:3;25129:89;:::i;:::-;25122:96;;25249:1;25238:9;25234:17;25265:1;25260:137;;;;25411:1;25406:341;;;;25227:520;;25260:137;25344:4;25340:9;25329;25325:25;25320:3;25313:38;25380:6;25375:3;25371:16;25364:23;;25260:137;;25406:341;25473:38;25505:5;25473:38;:::i;:::-;25533:1;25547:154;25561:6;25558:1;25555:13;25547:154;;;25635:7;25629:14;25625:1;25620:3;25616:11;25609:35;25685:1;25676:7;25672:15;25661:26;;25583:4;25580:1;25576:12;25571:17;;25547:154;;;25730:6;25725:3;25721:16;25714:23;;25413:334;;25227:520;;25015:738;;24908:845;;;;:::o;25759:377::-;25865:3;25893:39;25926:5;25893:39;:::i;:::-;25948:89;26030:6;26025:3;25948:89;:::i;:::-;25941:96;;26046:52;26091:6;26086:3;26079:4;26072:5;26068:16;26046:52;:::i;:::-;26123:6;26118:3;26114:16;26107:23;;25869:267;25759:377;;;;:::o;26142:589::-;26367:3;26389:92;26477:3;26468:6;26389:92;:::i;:::-;26382:99;;26498:95;26589:3;26580:6;26498:95;:::i;:::-;26491:102;;26610:95;26701:3;26692:6;26610:95;:::i;:::-;26603:102;;26722:3;26715:10;;26142:589;;;;;;:::o;26737:125::-;26803:7;26832:24;26850:5;26832:24;:::i;:::-;26821:35;;26737:125;;;:::o;26868:180::-;26970:53;27017:5;26970:53;:::i;:::-;26963:5;26960:64;26950:92;;27038:1;27035;27028:12;26950:92;26868:180;:::o;27054:201::-;27140:5;27171:6;27165:13;27156:22;;27187:62;27243:5;27187:62;:::i;:::-;27054:201;;;;:::o;27261:409::-;27360:6;27409:2;27397:9;27388:7;27384:23;27380:32;27377:119;;;27415:79;;:::i;:::-;27377:119;27535:1;27560:93;27645:7;27636:6;27625:9;27621:22;27560:93;:::i;:::-;27550:103;;27506:157;27261:409;;;;:::o;27676:225::-;27816:34;27812:1;27804:6;27800:14;27793:58;27885:8;27880:2;27872:6;27868:15;27861:33;27676:225;:::o;27907:366::-;28049:3;28070:67;28134:2;28129:3;28070:67;:::i;:::-;28063:74;;28146:93;28235:3;28146:93;:::i;:::-;28264:2;28259:3;28255:12;28248:19;;27907:366;;;:::o;28279:419::-;28445:4;28483:2;28472:9;28468:18;28460:26;;28532:9;28526:4;28522:20;28518:1;28507:9;28503:17;28496:47;28560:131;28686:4;28560:131;:::i;:::-;28552:139;;28279:419;;;:::o;28704:98::-;28755:6;28789:5;28783:12;28773:22;;28704:98;;;:::o;28808:168::-;28891:11;28925:6;28920:3;28913:19;28965:4;28960:3;28956:14;28941:29;;28808:168;;;;:::o;28982:360::-;29068:3;29096:38;29128:5;29096:38;:::i;:::-;29150:70;29213:6;29208:3;29150:70;:::i;:::-;29143:77;;29229:52;29274:6;29269:3;29262:4;29255:5;29251:16;29229:52;:::i;:::-;29306:29;29328:6;29306:29;:::i;:::-;29301:3;29297:39;29290:46;;29072:270;28982:360;;;;:::o;29348:640::-;29543:4;29581:3;29570:9;29566:19;29558:27;;29595:71;29663:1;29652:9;29648:17;29639:6;29595:71;:::i;:::-;29676:72;29744:2;29733:9;29729:18;29720:6;29676:72;:::i;:::-;29758;29826:2;29815:9;29811:18;29802:6;29758:72;:::i;:::-;29877:9;29871:4;29867:20;29862:2;29851:9;29847:18;29840:48;29905:76;29976:4;29967:6;29905:76;:::i;:::-;29897:84;;29348:640;;;;;;;:::o;29994:141::-;30050:5;30081:6;30075:13;30066:22;;30097:32;30123:5;30097:32;:::i;:::-;29994:141;;;;:::o;30141:349::-;30210:6;30259:2;30247:9;30238:7;30234:23;30230:32;30227:119;;;30265:79;;:::i;:::-;30227:119;30385:1;30410:63;30465:7;30456:6;30445:9;30441:22;30410:63;:::i;:::-;30400:73;;30356:127;30141:349;;;;:::o;30496:233::-;30535:3;30558:24;30576:5;30558:24;:::i;:::-;30549:33;;30604:66;30597:5;30594:77;30591:103;;30674:18;;:::i;:::-;30591:103;30721:1;30714:5;30710:13;30703:20;;30496:233;;;:::o;30735:180::-;30783:77;30780:1;30773:88;30880:4;30877:1;30870:15;30904:4;30901:1;30894:15;30921:185;30961:1;30978:20;30996:1;30978:20;:::i;:::-;30973:25;;31012:20;31030:1;31012:20;:::i;:::-;31007:25;;31051:1;31041:35;;31056:18;;:::i;:::-;31041:35;31098:1;31095;31091:9;31086:14;;30921:185;;;;:::o;31112:191::-;31152:4;31172:20;31190:1;31172:20;:::i;:::-;31167:25;;31206:20;31224:1;31206:20;:::i;:::-;31201:25;;31245:1;31242;31239:8;31236:34;;;31250:18;;:::i;:::-;31236:34;31295:1;31292;31288:9;31280:17;;31112:191;;;;:::o;31309:176::-;31341:1;31358:20;31376:1;31358:20;:::i;:::-;31353:25;;31392:20;31410:1;31392:20;:::i;:::-;31387:25;;31431:1;31421:35;;31436:18;;:::i;:::-;31421:35;31477:1;31474;31470:9;31465:14;;31309:176;;;;:::o;31491:180::-;31539:77;31536:1;31529:88;31636:4;31633:1;31626:15;31660:4;31657:1;31650:15

Swarm Source

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

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