ETH Price: $3,427.71 (+4.40%)

Token

Naka Nikkas (NIKKA)
 

Overview

Max Total Supply

2,000 NIKKA

Holders

266

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NIKKA
0x2d29e62e83e29ac7e42c829f3c7915cf98d05644
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:
NakaNikkas

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-03
*/

// SPDX-License-Identifier: MIT



// File: @openzeppelin/contracts/utils/Strings.sol

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

pragma solidity ^0.8.0;

/**
 * @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/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// 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/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

/**
 * @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/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

/**
 * @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/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


/**
 * @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/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @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: contracts/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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..).
 *
 * 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 1;
    }

    /**
     * @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) {
        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) {
        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) {
        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 {
        _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 virtual 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;
    }

     /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721A.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 {}
}

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 onlyOwner() {
        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 onlyOwner {
        _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 onlyOwner {
        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: closedsea/src/OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}
// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Burnable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}


    pragma solidity ^0.8.13;
    
    contract NakaNikkas is ERC721A, Ownable,  OperatorFilterer, ERC721Burnable {
    using Strings for uint256;


  string private uriPrefix = "ipfs://bafybeigkeheutblaqnl27dogeofzlalx6qzi4wel5ic7jwbux3qt2kkcby/";
  string private uriSuffix = ".json";
  string private hiddenURL;

  
  

  uint256 public cost = 0.002 ether;
 
  

  uint16 public maxSupply = 4444;
  uint8 public maxMintAmountPerTx = 11;
   uint8 public maxMintAmountPerWallet = 11;
    uint8 public maxFreeMintAmountPerWallet = 1;
    uint256 public freeNFTAlreadyMinted = 0;
     uint256 public  NUM_FREE_MINTS = 4444;
     bool public operatorFilteringEnabled;
                                                             
 
  bool public paused = true;
  bool public reveal = true;


 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol
   
  ) ERC721A(_tokenName, _tokenSymbol) {
     _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  
 
 
  function Mint_Nikkas(uint256 _mintAmount)
      external
      payable
      callerIsUser
  {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");
     require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded");
    

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Excedes max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }


 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
   function seturiSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }
function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setPaused() external onlyOwner {
    paused = !paused;

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 function setmaxMintAmountPerWallet(uint8 _maxWL) external onlyOwner{
      maxMintAmountPerWallet = _maxWL;

  }

  function withdraw() public onlyOwner  {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    override
    onlyAllowedOperator(from)
  {
    ERC721A.safeTransferFrom(from, to, tokenId, data);
  }
     function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"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":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint_Nikkas","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxWL","type":"uint8"}],"name":"setmaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002d6f60a039600990620000239082620002a1565b50604080518082019091526005815264173539b7b760d91b6020820152600a906200004f9082620002a1565b5066071afd498d0000600c55600d805464ffffffffff191664010b0b115c1790556000600e5561115c600f556010805462ffff001916620101001790553480156200009957600080fd5b5060405162002db238038062002db2833981016040819052620000bc916200041c565b81816002620000cc8382620002a1565b506003620000db8282620002a1565b5050600160005550620000ee336200010d565b620000f86200015f565b50506010805460ff1916600117905562000486565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000180733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000182565b565b6001600160a01b0390911690637d3e3dbe81620001b25782620001ab5750634420e486620001b2565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620001f2578060005160e01c03620001f257600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022757607f821691505b6020821081036200024857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029c57600081815260208120601f850160051c81016020861015620002775750805b601f850160051c820191505b81811015620002985782815560010162000283565b5050505b505050565b81516001600160401b03811115620002bd57620002bd620001fc565b620002d581620002ce845462000212565b846200024e565b602080601f8311600181146200030d5760008415620002f45750858301515b600019600386901b1c1916600185901b17855562000298565b600085815260208120601f198616915b828110156200033e578886015182559484019460019091019084016200031d565b50858210156200035d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200037f57600080fd5b81516001600160401b03808211156200039c576200039c620001fc565b604051601f8301601f19908116603f01168101908282118183101715620003c757620003c7620001fc565b81604052838152602092508683858801011115620003e457600080fd5b600091505b83821015620004085785820183015181830184015290820190620003e9565b600093810190920192909252949350505050565b600080604083850312156200043057600080fd5b82516001600160401b03808211156200044857600080fd5b62000456868387016200036d565b935060208501519150808211156200046d57600080fd5b506200047c858286016200036d565b9150509250929050565b6128d980620004966000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063dd2ced5c1161007a578063dd2ced5c14610732578063e6424e6214610752578063e985e9c514610765578063f2fde38b14610785578063f8bf5172146107a5578063fb796e6c146107c757600080fd5b8063b88d4fde14610683578063bc951b91146106a3578063c87b56dd146106c4578063cffb6e20146106e4578063d5abeb011461070457600080fd5b806395d89b411161010857806395d89b41146105d8578063982d669e146105ed578063a22cb46514610603578063a475b5dd14610623578063aa06229014610643578063b7c0b8e81461066357600080fd5b806370a0823114610533578063715018a6146105535780637ec4a659146105685780638da5cb5b1461058857806394354fd0146105a657600080fd5b80632f6f98e1116101dd57806342842e0e116101a157806342842e0e1461047457806342966c681461049457806344a0d68a146104b45780634d9c1848146104d45780635c975abb146104f45780636352211e1461051357600080fd5b80632f6f98e1146103f5578063305ae7751461041557806337a66d85146104355780633bd649681461044a5780633ccfd60b1461045f57600080fd5b80630a00ae831161022f5780630a00ae831461033d5780631067fcc71461035d57806313faede61461037d57806318160ddd146103a1578063193ad7b4146103bf57806323b872dd146103d557600080fd5b806301ffc9a71461026c57806306421c2f146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046120eb565b6107e1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc36600461211f565b610833565b005b3480156102cf57600080fd5b506102d861087e565b604051610298919061218a565b3480156102f157600080fd5b5061030561030036600461219d565b610910565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046121cd565b610954565b34801561034957600080fd5b506102c161035836600461219d565b6109e1565b34801561036957600080fd5b506102c1610378366004612282565b610a10565b34801561038957600080fd5b50610393600c5481565b604051908152602001610298565b3480156103ad57600080fd5b50610393600154600054036000190190565b3480156103cb57600080fd5b50610393600e5481565b3480156103e157600080fd5b506102c16103f03660046122ca565b610a4a565b34801561040157600080fd5b506102c1610410366004612306565b610a80565b34801561042157600080fd5b506102c1610430366004612282565b610b27565b34801561044157600080fd5b506102c1610b5d565b34801561045657600080fd5b506102c1610ba4565b34801561046b57600080fd5b506102c1610bed565b34801561048057600080fd5b506102c161048f3660046122ca565b610c8b565b3480156104a057600080fd5b506102c16104af36600461219d565b610cbb565b3480156104c057600080fd5b506102c16104cf36600461219d565b610d30565b3480156104e057600080fd5b506102c16104ef36600461234a565b610d5f565b34801561050057600080fd5b5060105461028c90610100900460ff1681565b34801561051f57600080fd5b5061030561052e36600461219d565b610dab565b34801561053f57600080fd5b5061039361054e366004612365565b610dbd565b34801561055f57600080fd5b506102c1610e0b565b34801561057457600080fd5b506102c1610583366004612282565b610e41565b34801561059457600080fd5b506008546001600160a01b0316610305565b3480156105b257600080fd5b50600d546105c69062010000900460ff1681565b60405160ff9091168152602001610298565b3480156105e457600080fd5b506102d8610e77565b3480156105f957600080fd5b50610393600f5481565b34801561060f57600080fd5b506102c161061e366004612390565b610e86565b34801561062f57600080fd5b5060105461028c9062010000900460ff1681565b34801561064f57600080fd5b506102c161065e36600461234a565b610f1b565b34801561066f57600080fd5b506102c161067e3660046123ba565b610f63565b34801561068f57600080fd5b506102c161069e3660046123d5565b610fa0565b3480156106af57600080fd5b50600d546105c6906301000000900460ff1681565b3480156106d057600080fd5b506102d86106df36600461219d565b610fd8565b3480156106f057600080fd5b506102c16106ff366004612450565b61114d565b34801561071057600080fd5b50600d5461071f9061ffff1681565b60405161ffff9091168152602001610298565b34801561073e57600080fd5b506102c161074d36600461234a565b611251565b6102c161076036600461219d565b61129b565b34801561077157600080fd5b5061028c6107803660046124d5565b611588565b34801561079157600080fd5b506102c16107a0366004612365565b6115b6565b3480156107b157600080fd5b50600d546105c690640100000000900460ff1681565b3480156107d357600080fd5b5060105461028c9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061081257506001600160e01b03198216635b5e139f60e01b145b8061082d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108665760405162461bcd60e51b815260040161085d906124f1565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b60606002805461088d90612526565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990612526565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b600061091b8261164e565b610938576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061095f82610dab565b9050806001600160a01b0316836001600160a01b0316036109935760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109b357506109b18133611588565b155b156109d1576040516367d9dca160e11b815260040160405180910390fd5b6109dc838383611687565b505050565b6008546001600160a01b03163314610a0b5760405162461bcd60e51b815260040161085d906124f1565b600f55565b6008546001600160a01b03163314610a3a5760405162461bcd60e51b815260040161085d906124f1565b600b610a4682826125a6565b5050565b826001600160a01b0381163314610a6f5760105460ff1615610a6f57610a6f336116e3565b610a7a848484611727565b50505050565b6008546001600160a01b03163314610aaa5760405162461bcd60e51b815260040161085d906124f1565b6000610abd600154600054036000190190565b600d5490915061ffff16610ad1848361267b565b61ffff161115610b195760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161085d565b6109dc828461ffff16611732565b6008546001600160a01b03163314610b515760405162461bcd60e51b815260040161085d906124f1565b600a610a4682826125a6565b6008546001600160a01b03163314610b875760405162461bcd60e51b815260040161085d906124f1565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610bce5760405162461bcd60e51b815260040161085d906124f1565b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610c175760405162461bcd60e51b815260040161085d906124f1565b6000610c2b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c75576040519150601f19603f3d011682016040523d82523d6000602084013e610c7a565b606091505b5050905080610c8857600080fd5b50565b826001600160a01b0381163314610cb05760105460ff1615610cb057610cb0336116e3565b610a7a84848461174c565b610cc53382611767565b610d275760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b606482015260840161085d565b610c88816117c6565b6008546001600160a01b03163314610d5a5760405162461bcd60e51b815260040161085d906124f1565b600c55565b6008546001600160a01b03163314610d895760405162461bcd60e51b815260040161085d906124f1565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b6000610db6826117d1565b5192915050565b60006001600160a01b038216610de6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e355760405162461bcd60e51b815260040161085d906124f1565b610e3f60006118f8565b565b6008546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161085d906124f1565b6009610a4682826125a6565b60606003805461088d90612526565b336001600160a01b03831603610eaf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f455760405162461bcd60e51b815260040161085d906124f1565b600d805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b03163314610f8d5760405162461bcd60e51b815260040161085d906124f1565b6010805460ff1916911515919091179055565b836001600160a01b0381163314610fc55760105460ff1615610fc557610fc5336116e3565b610fd18585858561194a565b5050505050565b6060610fe38261164e565b6110475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085d565b60105462010000900460ff1615156000036110ee57600b805461106990612526565b80601f016020809104026020016040519081016040528092919081815260200182805461109590612526565b80156110e25780601f106110b7576101008083540402835291602001916110e2565b820191906000526020600020905b8154815290600101906020018083116110c557829003601f168201915b50505050509050919050565b60006110f8611995565b905060008151116111185760405180602001604052806000815250611146565b80611122846119a4565b600a6040516020016111369392919061269d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111775760405162461bcd60e51b815260040161085d906124f1565b600061118a600154600054036000190190565b9050600061119b8360ff871661273d565b600d5490915061ffff908116906111b59083908516612754565b11156111f95760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161085d565b60005b838110156112495761123785858381811061121957611219612767565b905060200201602081019061122e9190612365565b8760ff16611732565b806112418161277d565b9150506111fc565b505050505050565b6008546001600160a01b0316331461127b5760405162461bcd60e51b815260040161085d906124f1565b600d805460ff90921663010000000263ff00000019909216919091179055565b3233146112ea5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161085d565b601054610100900460ff16156113425760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161085d565b600d546113549061ffff16600161267b565b61ffff168161136a600154600054036000190190565b6113749190612754565b106113ab5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161085d565b600d546301000000900460ff16816113c233610dbd565b6113cc9190612754565b111561141a5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161085d565b600f5481600e5461142b9190612754565b111561148e573481600c54611440919061273d565b11156114895760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161085d565b61157e565b600d54640100000000900460ff16816114a633610dbd565b6114b09190612754565b1115611539573481600c546114c5919061273d565b111561150e5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161085d565b600d5462010000900460ff168111156114895760405162461bcd60e51b815260040161085d90612796565b600d54640100000000900460ff168111156115665760405162461bcd60e51b815260040161085d90612796565b80600e60008282546115789190612754565b90915550505b610c883382611732565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146115e05760405162461bcd60e51b815260040161085d906124f1565b6001600160a01b0381166116455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085d565b610c88816118f8565b600081600111158015611662575060005482105b801561082d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61171f573d6000803e3d6000fd5b6000603a5250565b6109dc838383611aa4565b610a46828260405180602001604052806000815250611c7d565b6109dc83838360405180602001604052806000815250610fa0565b60008061177383610dab565b9050806001600160a01b0316846001600160a01b0316148061179a575061179a8185611588565b806117be5750836001600160a01b03166117b384610910565b6001600160a01b0316145b949350505050565b610c88816000611c8a565b60408051606081018252600080825260208201819052918101919091528180600111158015611801575060005481105b156118df57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118dd5780516001600160a01b031615611874579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118d8579392505050565b611874565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611955848484611aa4565b6001600160a01b0383163b15158015611977575061197584848484611e3d565b155b15610a7a576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461088d90612526565b6060816000036119cb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f557806119df8161277d565b91506119ee9050600a836127ee565b91506119cf565b6000816001600160401b03811115611a0f57611a0f6121f7565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b5090505b84156117be57611a4e600183612802565b9150611a5b600a86612815565b611a66906030612754565b60f81b818381518110611a7b57611a7b612767565b60200101906001600160f81b031916908160001a905350611a9d600a866127ee565b9450611a3d565b6000611aaf826117d1565b9050836001600160a01b031681600001516001600160a01b031614611ae65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b045750611b048533611588565b80611b1f575033611b1484610910565b6001600160a01b0316145b905080611b3f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b6657604051633a954ecd60e21b815260040160405180910390fd5b611b7260008487611687565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c46576000548214611c4657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061288483398151915260405160405180910390a4610fd1565b6109dc8383836001611f28565b6000611c95836117d1565b80519091508215611cfb576000336001600160a01b0383161480611cbe5750611cbe8233611588565b80611cd9575033611cce86610910565b6001600160a01b0316145b905080611cf957604051632ce44b5f60e11b815260040160405180910390fd5b505b611d0760008583611687565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e05576000548214611e0557805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612884833981519152908390a4505060018054810190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e72903390899088908890600401612829565b6020604051808303816000875af1925050508015611ead575060408051601f3d908101601f19168201909252611eaa91810190612866565b60015b611f0b573d808015611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b508051600003611f03576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611f5157604051622e076360e81b815260040160405180910390fd5b83600003611f725760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561202357506001600160a01b0387163b15155b15612099575b60405182906001600160a01b03891690600090600080516020612884833981519152908290a46120626000888480600101955088611e3d565b61207f576040516368d2bf6b60e11b815260040160405180910390fd5b80820361202957826000541461209457600080fd5b6120cc565b5b6040516001830192906001600160a01b03891690600090600080516020612884833981519152908290a480820361209a575b50600055610fd1565b6001600160e01b031981168114610c8857600080fd5b6000602082840312156120fd57600080fd5b8135611146816120d5565b803561ffff8116811461211a57600080fd5b919050565b60006020828403121561213157600080fd5b61114682612108565b60005b8381101561215557818101518382015260200161213d565b50506000910152565b6000815180845261217681602086016020860161213a565b601f01601f19169290920160200192915050565b602081526000611146602083018461215e565b6000602082840312156121af57600080fd5b5035919050565b80356001600160a01b038116811461211a57600080fd5b600080604083850312156121e057600080fd5b6121e9836121b6565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612227576122276121f7565b604051601f8501601f19908116603f0116810190828211818310171561224f5761224f6121f7565b8160405280935085815286868601111561226857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561229457600080fd5b81356001600160401b038111156122aa57600080fd5b8201601f810184136122bb57600080fd5b6117be8482356020840161220d565b6000806000606084860312156122df57600080fd5b6122e8846121b6565b92506122f6602085016121b6565b9150604084013590509250925092565b6000806040838503121561231957600080fd5b61232283612108565b9150612330602084016121b6565b90509250929050565b803560ff8116811461211a57600080fd5b60006020828403121561235c57600080fd5b61114682612339565b60006020828403121561237757600080fd5b611146826121b6565b8035801515811461211a57600080fd5b600080604083850312156123a357600080fd5b6123ac836121b6565b915061233060208401612380565b6000602082840312156123cc57600080fd5b61114682612380565b600080600080608085870312156123eb57600080fd5b6123f4856121b6565b9350612402602086016121b6565b92506040850135915060608501356001600160401b0381111561242457600080fd5b8501601f8101871361243557600080fd5b6124448782356020840161220d565b91505092959194509250565b60008060006040848603121561246557600080fd5b61246e84612339565b925060208401356001600160401b038082111561248a57600080fd5b818601915086601f83011261249e57600080fd5b8135818111156124ad57600080fd5b8760208260051b85010111156124c257600080fd5b6020830194508093505050509250925092565b600080604083850312156124e857600080fd5b612322836121b6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061253a57607f821691505b60208210810361255a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109dc57600081815260208120601f850160051c810160208610156125875750805b601f850160051c820191505b8181101561124957828155600101612593565b81516001600160401b038111156125bf576125bf6121f7565b6125d3816125cd8454612526565b84612560565b602080601f83116001811461260857600084156125f05750858301515b600019600386901b1c1916600185901b178555611249565b600085815260208120601f198616915b8281101561263757888601518255948401946001909101908401612618565b50858210156126555787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561269657612696612665565b5092915050565b6000845160206126b08285838a0161213a565b8551918401916126c38184848a0161213a565b85549201916000906126d481612526565b600182811680156126ec57600181146127015761272d565b60ff198416875282151583028701945061272d565b896000528560002060005b848110156127255781548982015290830190870161270c565b505082870194505b50929a9950505050505050505050565b808202811582820484141761082d5761082d612665565b8082018082111561082d5761082d612665565b634e487b7160e01b600052603260045260246000fd5b60006001820161278f5761278f612665565b5060010190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826127fd576127fd6127d8565b500490565b8181038181111561082d5761082d612665565b600082612824576128246127d8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285c9083018461215e565b9695505050505050565b60006020828403121561287857600080fd5b8151611146816120d556feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122029d098ea85462b858834f990f356e42f3c0f62316b2f2e53d66c78217e2dea4a64736f6c63430008120033697066733a2f2f62616679626569676b6568657574626c61716e6c3237646f67656f667a6c616c7836717a693477656c356963376a77627578337174326b6b6362792f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b4e616b61204e696b6b617300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e494b4b41000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063dd2ced5c1161007a578063dd2ced5c14610732578063e6424e6214610752578063e985e9c514610765578063f2fde38b14610785578063f8bf5172146107a5578063fb796e6c146107c757600080fd5b8063b88d4fde14610683578063bc951b91146106a3578063c87b56dd146106c4578063cffb6e20146106e4578063d5abeb011461070457600080fd5b806395d89b411161010857806395d89b41146105d8578063982d669e146105ed578063a22cb46514610603578063a475b5dd14610623578063aa06229014610643578063b7c0b8e81461066357600080fd5b806370a0823114610533578063715018a6146105535780637ec4a659146105685780638da5cb5b1461058857806394354fd0146105a657600080fd5b80632f6f98e1116101dd57806342842e0e116101a157806342842e0e1461047457806342966c681461049457806344a0d68a146104b45780634d9c1848146104d45780635c975abb146104f45780636352211e1461051357600080fd5b80632f6f98e1146103f5578063305ae7751461041557806337a66d85146104355780633bd649681461044a5780633ccfd60b1461045f57600080fd5b80630a00ae831161022f5780630a00ae831461033d5780631067fcc71461035d57806313faede61461037d57806318160ddd146103a1578063193ad7b4146103bf57806323b872dd146103d557600080fd5b806301ffc9a71461026c57806306421c2f146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046120eb565b6107e1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc36600461211f565b610833565b005b3480156102cf57600080fd5b506102d861087e565b604051610298919061218a565b3480156102f157600080fd5b5061030561030036600461219d565b610910565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046121cd565b610954565b34801561034957600080fd5b506102c161035836600461219d565b6109e1565b34801561036957600080fd5b506102c1610378366004612282565b610a10565b34801561038957600080fd5b50610393600c5481565b604051908152602001610298565b3480156103ad57600080fd5b50610393600154600054036000190190565b3480156103cb57600080fd5b50610393600e5481565b3480156103e157600080fd5b506102c16103f03660046122ca565b610a4a565b34801561040157600080fd5b506102c1610410366004612306565b610a80565b34801561042157600080fd5b506102c1610430366004612282565b610b27565b34801561044157600080fd5b506102c1610b5d565b34801561045657600080fd5b506102c1610ba4565b34801561046b57600080fd5b506102c1610bed565b34801561048057600080fd5b506102c161048f3660046122ca565b610c8b565b3480156104a057600080fd5b506102c16104af36600461219d565b610cbb565b3480156104c057600080fd5b506102c16104cf36600461219d565b610d30565b3480156104e057600080fd5b506102c16104ef36600461234a565b610d5f565b34801561050057600080fd5b5060105461028c90610100900460ff1681565b34801561051f57600080fd5b5061030561052e36600461219d565b610dab565b34801561053f57600080fd5b5061039361054e366004612365565b610dbd565b34801561055f57600080fd5b506102c1610e0b565b34801561057457600080fd5b506102c1610583366004612282565b610e41565b34801561059457600080fd5b506008546001600160a01b0316610305565b3480156105b257600080fd5b50600d546105c69062010000900460ff1681565b60405160ff9091168152602001610298565b3480156105e457600080fd5b506102d8610e77565b3480156105f957600080fd5b50610393600f5481565b34801561060f57600080fd5b506102c161061e366004612390565b610e86565b34801561062f57600080fd5b5060105461028c9062010000900460ff1681565b34801561064f57600080fd5b506102c161065e36600461234a565b610f1b565b34801561066f57600080fd5b506102c161067e3660046123ba565b610f63565b34801561068f57600080fd5b506102c161069e3660046123d5565b610fa0565b3480156106af57600080fd5b50600d546105c6906301000000900460ff1681565b3480156106d057600080fd5b506102d86106df36600461219d565b610fd8565b3480156106f057600080fd5b506102c16106ff366004612450565b61114d565b34801561071057600080fd5b50600d5461071f9061ffff1681565b60405161ffff9091168152602001610298565b34801561073e57600080fd5b506102c161074d36600461234a565b611251565b6102c161076036600461219d565b61129b565b34801561077157600080fd5b5061028c6107803660046124d5565b611588565b34801561079157600080fd5b506102c16107a0366004612365565b6115b6565b3480156107b157600080fd5b50600d546105c690640100000000900460ff1681565b3480156107d357600080fd5b5060105461028c9060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061081257506001600160e01b03198216635b5e139f60e01b145b8061082d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146108665760405162461bcd60e51b815260040161085d906124f1565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b60606002805461088d90612526565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990612526565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b600061091b8261164e565b610938576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061095f82610dab565b9050806001600160a01b0316836001600160a01b0316036109935760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109b357506109b18133611588565b155b156109d1576040516367d9dca160e11b815260040160405180910390fd5b6109dc838383611687565b505050565b6008546001600160a01b03163314610a0b5760405162461bcd60e51b815260040161085d906124f1565b600f55565b6008546001600160a01b03163314610a3a5760405162461bcd60e51b815260040161085d906124f1565b600b610a4682826125a6565b5050565b826001600160a01b0381163314610a6f5760105460ff1615610a6f57610a6f336116e3565b610a7a848484611727565b50505050565b6008546001600160a01b03163314610aaa5760405162461bcd60e51b815260040161085d906124f1565b6000610abd600154600054036000190190565b600d5490915061ffff16610ad1848361267b565b61ffff161115610b195760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161085d565b6109dc828461ffff16611732565b6008546001600160a01b03163314610b515760405162461bcd60e51b815260040161085d906124f1565b600a610a4682826125a6565b6008546001600160a01b03163314610b875760405162461bcd60e51b815260040161085d906124f1565b6010805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610bce5760405162461bcd60e51b815260040161085d906124f1565b6010805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610c175760405162461bcd60e51b815260040161085d906124f1565b6000610c2b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c75576040519150601f19603f3d011682016040523d82523d6000602084013e610c7a565b606091505b5050905080610c8857600080fd5b50565b826001600160a01b0381163314610cb05760105460ff1615610cb057610cb0336116e3565b610a7a84848461174c565b610cc53382611767565b610d275760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b606482015260840161085d565b610c88816117c6565b6008546001600160a01b03163314610d5a5760405162461bcd60e51b815260040161085d906124f1565b600c55565b6008546001600160a01b03163314610d895760405162461bcd60e51b815260040161085d906124f1565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b6000610db6826117d1565b5192915050565b60006001600160a01b038216610de6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e355760405162461bcd60e51b815260040161085d906124f1565b610e3f60006118f8565b565b6008546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161085d906124f1565b6009610a4682826125a6565b60606003805461088d90612526565b336001600160a01b03831603610eaf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f455760405162461bcd60e51b815260040161085d906124f1565b600d805460ff909216620100000262ff000019909216919091179055565b6008546001600160a01b03163314610f8d5760405162461bcd60e51b815260040161085d906124f1565b6010805460ff1916911515919091179055565b836001600160a01b0381163314610fc55760105460ff1615610fc557610fc5336116e3565b610fd18585858561194a565b5050505050565b6060610fe38261164e565b6110475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085d565b60105462010000900460ff1615156000036110ee57600b805461106990612526565b80601f016020809104026020016040519081016040528092919081815260200182805461109590612526565b80156110e25780601f106110b7576101008083540402835291602001916110e2565b820191906000526020600020905b8154815290600101906020018083116110c557829003601f168201915b50505050509050919050565b60006110f8611995565b905060008151116111185760405180602001604052806000815250611146565b80611122846119a4565b600a6040516020016111369392919061269d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111775760405162461bcd60e51b815260040161085d906124f1565b600061118a600154600054036000190190565b9050600061119b8360ff871661273d565b600d5490915061ffff908116906111b59083908516612754565b11156111f95760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161085d565b60005b838110156112495761123785858381811061121957611219612767565b905060200201602081019061122e9190612365565b8760ff16611732565b806112418161277d565b9150506111fc565b505050505050565b6008546001600160a01b0316331461127b5760405162461bcd60e51b815260040161085d906124f1565b600d805460ff90921663010000000263ff00000019909216919091179055565b3233146112ea5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161085d565b601054610100900460ff16156113425760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161085d565b600d546113549061ffff16600161267b565b61ffff168161136a600154600054036000190190565b6113749190612754565b106113ab5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b604482015260640161085d565b600d546301000000900460ff16816113c233610dbd565b6113cc9190612754565b111561141a5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161085d565b600f5481600e5461142b9190612754565b111561148e573481600c54611440919061273d565b11156114895760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161085d565b61157e565b600d54640100000000900460ff16816114a633610dbd565b6114b09190612754565b1115611539573481600c546114c5919061273d565b111561150e5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b604482015260640161085d565b600d5462010000900460ff168111156114895760405162461bcd60e51b815260040161085d90612796565b600d54640100000000900460ff168111156115665760405162461bcd60e51b815260040161085d90612796565b80600e60008282546115789190612754565b90915550505b610c883382611732565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146115e05760405162461bcd60e51b815260040161085d906124f1565b6001600160a01b0381166116455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085d565b610c88816118f8565b600081600111158015611662575060005482105b801561082d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa61171f573d6000803e3d6000fd5b6000603a5250565b6109dc838383611aa4565b610a46828260405180602001604052806000815250611c7d565b6109dc83838360405180602001604052806000815250610fa0565b60008061177383610dab565b9050806001600160a01b0316846001600160a01b0316148061179a575061179a8185611588565b806117be5750836001600160a01b03166117b384610910565b6001600160a01b0316145b949350505050565b610c88816000611c8a565b60408051606081018252600080825260208201819052918101919091528180600111158015611801575060005481105b156118df57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118dd5780516001600160a01b031615611874579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118d8579392505050565b611874565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611955848484611aa4565b6001600160a01b0383163b15158015611977575061197584848484611e3d565b155b15610a7a576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461088d90612526565b6060816000036119cb5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f557806119df8161277d565b91506119ee9050600a836127ee565b91506119cf565b6000816001600160401b03811115611a0f57611a0f6121f7565b6040519080825280601f01601f191660200182016040528015611a39576020820181803683370190505b5090505b84156117be57611a4e600183612802565b9150611a5b600a86612815565b611a66906030612754565b60f81b818381518110611a7b57611a7b612767565b60200101906001600160f81b031916908160001a905350611a9d600a866127ee565b9450611a3d565b6000611aaf826117d1565b9050836001600160a01b031681600001516001600160a01b031614611ae65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611b045750611b048533611588565b80611b1f575033611b1484610910565b6001600160a01b0316145b905080611b3f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b6657604051633a954ecd60e21b815260040160405180910390fd5b611b7260008487611687565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c46576000548214611c4657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061288483398151915260405160405180910390a4610fd1565b6109dc8383836001611f28565b6000611c95836117d1565b80519091508215611cfb576000336001600160a01b0383161480611cbe5750611cbe8233611588565b80611cd9575033611cce86610910565b6001600160a01b0316145b905080611cf957604051632ce44b5f60e11b815260040160405180910390fd5b505b611d0760008583611687565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611e05576000548214611e0557805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612884833981519152908390a4505060018054810190555050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e72903390899088908890600401612829565b6020604051808303816000875af1925050508015611ead575060408051601f3d908101601f19168201909252611eaa91810190612866565b60015b611f0b573d808015611edb576040519150601f19603f3d011682016040523d82523d6000602084013e611ee0565b606091505b508051600003611f03576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611f5157604051622e076360e81b815260040160405180910390fd5b83600003611f725760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561202357506001600160a01b0387163b15155b15612099575b60405182906001600160a01b03891690600090600080516020612884833981519152908290a46120626000888480600101955088611e3d565b61207f576040516368d2bf6b60e11b815260040160405180910390fd5b80820361202957826000541461209457600080fd5b6120cc565b5b6040516001830192906001600160a01b03891690600090600080516020612884833981519152908290a480820361209a575b50600055610fd1565b6001600160e01b031981168114610c8857600080fd5b6000602082840312156120fd57600080fd5b8135611146816120d5565b803561ffff8116811461211a57600080fd5b919050565b60006020828403121561213157600080fd5b61114682612108565b60005b8381101561215557818101518382015260200161213d565b50506000910152565b6000815180845261217681602086016020860161213a565b601f01601f19169290920160200192915050565b602081526000611146602083018461215e565b6000602082840312156121af57600080fd5b5035919050565b80356001600160a01b038116811461211a57600080fd5b600080604083850312156121e057600080fd5b6121e9836121b6565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612227576122276121f7565b604051601f8501601f19908116603f0116810190828211818310171561224f5761224f6121f7565b8160405280935085815286868601111561226857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561229457600080fd5b81356001600160401b038111156122aa57600080fd5b8201601f810184136122bb57600080fd5b6117be8482356020840161220d565b6000806000606084860312156122df57600080fd5b6122e8846121b6565b92506122f6602085016121b6565b9150604084013590509250925092565b6000806040838503121561231957600080fd5b61232283612108565b9150612330602084016121b6565b90509250929050565b803560ff8116811461211a57600080fd5b60006020828403121561235c57600080fd5b61114682612339565b60006020828403121561237757600080fd5b611146826121b6565b8035801515811461211a57600080fd5b600080604083850312156123a357600080fd5b6123ac836121b6565b915061233060208401612380565b6000602082840312156123cc57600080fd5b61114682612380565b600080600080608085870312156123eb57600080fd5b6123f4856121b6565b9350612402602086016121b6565b92506040850135915060608501356001600160401b0381111561242457600080fd5b8501601f8101871361243557600080fd5b6124448782356020840161220d565b91505092959194509250565b60008060006040848603121561246557600080fd5b61246e84612339565b925060208401356001600160401b038082111561248a57600080fd5b818601915086601f83011261249e57600080fd5b8135818111156124ad57600080fd5b8760208260051b85010111156124c257600080fd5b6020830194508093505050509250925092565b600080604083850312156124e857600080fd5b612322836121b6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061253a57607f821691505b60208210810361255a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109dc57600081815260208120601f850160051c810160208610156125875750805b601f850160051c820191505b8181101561124957828155600101612593565b81516001600160401b038111156125bf576125bf6121f7565b6125d3816125cd8454612526565b84612560565b602080601f83116001811461260857600084156125f05750858301515b600019600386901b1c1916600185901b178555611249565b600085815260208120601f198616915b8281101561263757888601518255948401946001909101908401612618565b50858210156126555787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b61ffff81811683821601908082111561269657612696612665565b5092915050565b6000845160206126b08285838a0161213a565b8551918401916126c38184848a0161213a565b85549201916000906126d481612526565b600182811680156126ec57600181146127015761272d565b60ff198416875282151583028701945061272d565b896000528560002060005b848110156127255781548982015290830190870161270c565b505082870194505b50929a9950505050505050505050565b808202811582820484141761082d5761082d612665565b8082018082111561082d5761082d612665565b634e487b7160e01b600052603260045260246000fd5b60006001820161278f5761278f612665565b5060010190565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826127fd576127fd6127d8565b500490565b8181038181111561082d5761082d612665565b600082612824576128246127d8565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061285c9083018461215e565b9695505050505050565b60006020828403121561287857600080fd5b8151611146816120d556feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122029d098ea85462b858834f990f356e42f3c0f62316b2f2e53d66c78217e2dea4a64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b4e616b61204e696b6b617300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054e494b4b41000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Naka Nikkas
Arg [1] : _tokenSymbol (string): NIKKA

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 4e616b61204e696b6b6173000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4e494b4b41000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51107:6171:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24445:305;;;;;;;;;;-1:-1:-1;24445:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24445:305:0;;;;;;;;54217:97;;;;;;;;;;-1:-1:-1;54217:97:0;;;;;:::i;:::-;;:::i;:::-;;27558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29061:204::-;;;;;;;;;;-1:-1:-1;29061:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2050:32:1;;;2032:51;;2020:2;2005:18;29061:204:0;1886:203:1;28624:371:0;;;;;;;;;;-1:-1:-1;28624:371:0;;;;;:::i;:::-;;:::i;55294:129::-;;;;;;;;;;-1:-1:-1;55294:129:0;;;;;:::i;:::-;;:::i;55190:102::-;;;;;;;;;;-1:-1:-1;55190:102:0;;;;;:::i;:::-;;:::i;51404:33::-;;;;;;;;;;;;;;;;;;;3902:25:1;;;3890:2;3875:18;51404:33:0;3756:177:1;23694:303:0;;;;;;;;;;;;23551:1;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;51625:39;;;;;;;;;;;;;;;;56470:159;;;;;;;;;;-1:-1:-1;56470:159:0;;;;;:::i;:::-;;:::i;53402:326::-;;;;;;;;;;-1:-1:-1;53402:326:0;;;;;:::i;:::-;;:::i;54973:102::-;;;;;;;;;;-1:-1:-1;54973:102:0;;;;;:::i;:::-;;:::i;55429:71::-;;;;;;;;;;;;;:::i;55587:70::-;;;;;;;;;;;;;:::i;55896:463::-;;;;;;;;;;;;;:::i;56635:167::-;;;;;;;;;;-1:-1:-1;56635:167:0;;;;;:::i;:::-;;:::i;50816:242::-;;;;;;;;;;-1:-1:-1;50816:242:0;;;;;:::i;:::-;;:::i;55506:76::-;;;;;;;;;;-1:-1:-1;55506:76:0;;;;;:::i;:::-;;:::i;54826:134::-;;;;;;;;;;-1:-1:-1;54826:134:0;;;;;:::i;:::-;;:::i;51824:25::-;;;;;;;;;;-1:-1:-1;51824:25:0;;;;;;;;;;;27366:125;;;;;;;;;;-1:-1:-1;27366:125:0;;;;;:::i;:::-;;:::i;24814:206::-;;;;;;;;;;-1:-1:-1;24814:206:0;;;;;:::i;:::-;;:::i;43700:103::-;;;;;;;;;;;;;:::i;55083:102::-;;;;;;;;;;-1:-1:-1;55083:102:0;;;;;:::i;:::-;;:::i;43048:87::-;;;;;;;;;;-1:-1:-1;43121:6:0;;-1:-1:-1;;;;;43121:6:0;43048:87;;51486:36;;;;;;;;;;-1:-1:-1;51486:36:0;;;;;;;;;;;;;;5245:4:1;5233:17;;;5215:36;;5203:2;5188:18;51486:36:0;5073:184:1;27727:104:0;;;;;;;;;;;;;:::i;51672:37::-;;;;;;;;;;;;;;;;29337:287;;;;;;;;;;-1:-1:-1;29337:287:0;;;;;:::i;:::-;;:::i;51854:25::-;;;;;;;;;;-1:-1:-1;51854:25:0;;;;;;;;;;;55663:107;;;;;;;;;;-1:-1:-1;55663:107:0;;;;;:::i;:::-;;:::i;57025:117::-;;;;;;;;;;-1:-1:-1;57025:117:0;;;;;:::i;:::-;;:::i;56808:210::-;;;;;;;;;;-1:-1:-1;56808:210:0;;;;;:::i;:::-;;:::i;51528:40::-;;;;;;;;;;-1:-1:-1;51528:40:0;;;;;;;;;;;54329:490;;;;;;;;;;-1:-1:-1;54329:490:0;;;;;:::i;:::-;;:::i;53734:472::-;;;;;;;;;;-1:-1:-1;53734:472:0;;;;;:::i;:::-;;:::i;51451:30::-;;;;;;;;;;-1:-1:-1;51451:30:0;;;;;;;;;;;7407:6:1;7395:19;;;7377:38;;7365:2;7350:18;51451:30:0;7233:188:1;55775:115:0;;;;;;;;;;-1:-1:-1;55775:115:0;;;;;:::i;:::-;;:::i;52249:1147::-;;;;;;:::i;:::-;;:::i;29695:164::-;;;;;;;;;;-1:-1:-1;29695:164:0;;;;;:::i;:::-;;:::i;43958:201::-;;;;;;;;;;-1:-1:-1;43958:201:0;;;;;:::i;:::-;;:::i;51575:43::-;;;;;;;;;;-1:-1:-1;51575:43:0;;;;;;;;;;;51717:36;;;;;;;;;;-1:-1:-1;51717:36:0;;;;;;;;24445:305;24547:4;-1:-1:-1;;;;;;24584:40:0;;-1:-1:-1;;;24584:40:0;;:105;;-1:-1:-1;;;;;;;24641:48:0;;-1:-1:-1;;;24641:48:0;24584:105;:158;;;-1:-1:-1;;;;;;;;;;14479:40:0;;;24706:36;24564:178;24445:305;-1:-1:-1;;24445:305:0:o;54217:97::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;;;;;;;;;54286:9:::1;:22:::0;;-1:-1:-1;;54286:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;54217:97::o;27558:100::-;27612:13;27645:5;27638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:100;:::o;29061:204::-;29129:7;29154:16;29162:7;29154;:16::i;:::-;29149:64;;29179:34;;-1:-1:-1;;;29179:34:0;;;;;;;;;;;29149:64;-1:-1:-1;29233:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29233:24:0;;29061:204::o;28624:371::-;28697:13;28713:24;28729:7;28713:15;:24::i;:::-;28697:40;;28758:5;-1:-1:-1;;;;;28752:11:0;:2;-1:-1:-1;;;;;28752:11:0;;28748:48;;28772:24;;-1:-1:-1;;;28772:24:0;;;;;;;;;;;28748:48;2920:10;-1:-1:-1;;;;;28813:21:0;;;;;;:63;;-1:-1:-1;28839:37:0;28856:5;2920:10;29695:164;:::i;28839:37::-;28838:38;28813:63;28809:138;;;28900:35;;-1:-1:-1;;;28900:35:0;;;;;;;;;;;28809:138;28959:28;28968:2;28972:7;28981:5;28959:8;:28::i;:::-;28686:309;28624:371;;:::o;55294:129::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55387:14:::1;:30:::0;55294:129::o;55190:102::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55264:9:::1;:22;55276:10:::0;55264:9;:22:::1;:::i;:::-;;55190:102:::0;:::o;56470:159::-;56571:4;-1:-1:-1;;;;;47746:18:0;;47754:10;47746:18;47742:184;;57243:24;;;;47838:61;;;47871:28;47888:10;47871:16;:28::i;:::-;56584:39:::1;56605:4;56611:2;56615:7;56584:20;:39::i;:::-;56470:159:::0;;;;:::o;53402:326::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;53485:18:::1;53513:13;23551:1:::0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;53513:13:::1;53571:9;::::0;53485:42;;-1:-1:-1;53571:9:0::1;;53542:25;53556:11:::0;53485:42;53542:25:::1;:::i;:::-;:38;;;;53534:70;;;::::0;-1:-1:-1;;;53534:70:0;;11148:2:1;53534:70:0::1;::::0;::::1;11130:21:1::0;11187:2;11167:18;;;11160:30;-1:-1:-1;;;11206:18:1;;;11199:49;11265:18;;53534:70:0::1;10946:343:1::0;53534:70:0::1;53612:34;53622:9;53634:11;53612:34;;:9;:34::i;54973:102::-:0;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55047:9:::1;:22;55059:10:::0;55047:9;:22:::1;:::i;55429:71::-:0;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55486:6:::1;::::0;;-1:-1:-1;;55476:16:0;::::1;55486:6;::::0;;;::::1;;;55485:7;55476:16:::0;;::::1;;::::0;;55429:71::o;55587:70::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55646:6:::1;::::0;;-1:-1:-1;;55636:16:0;::::1;55646:6:::0;;;;::::1;;;55645:7;55636:16:::0;;::::1;;::::0;;55587:70::o;55896:463::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;56181:7:::1;56202;43121:6:::0;;-1:-1:-1;;;;;43121:6:0;;43048:87;56202:7:::1;-1:-1:-1::0;;;;;56194:21:0::1;56223;56194:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56180:69;;;56264:2;56256:11;;;::::0;::::1;;55934:425;55896:463::o:0;56635:167::-;56740:4;-1:-1:-1;;;;;47746:18:0;;47754:10;47746:18;47742:184;;57243:24;;;;47838:61;;;47871:28;47888:10;47871:16;:28::i;:::-;56753:43:::1;56778:4;56784:2;56788:7;56753:24;:43::i;50816:242::-:0;50934:41;2920:10;50967:7;50934:18;:41::i;:::-;50926:99;;;;-1:-1:-1;;;50926:99:0;;11706:2:1;50926:99:0;;;11688:21:1;11745:2;11725:18;;;11718:30;11784:34;11764:18;;;11757:62;-1:-1:-1;;;11835:18:1;;;11828:43;11888:19;;50926:99:0;11504:409:1;50926:99:0;51036:14;51042:7;51036:5;:14::i;55506:76::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55562:4:::1;:12:::0;55506:76::o;54826:134::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;54900:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;54900:35:0;;::::1;::::0;;;::::1;::::0;;54826:134::o;27366:125::-;27430:7;27457:21;27470:7;27457:12;:21::i;:::-;:26;;27366:125;-1:-1:-1;;27366:125:0:o;24814:206::-;24878:7;-1:-1:-1;;;;;24902:19:0;;24898:60;;24930:28;;-1:-1:-1;;;24930:28:0;;;;;;;;;;;24898:60;-1:-1:-1;;;;;;24984:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24984:27:0;;24814:206::o;43700:103::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;43765:30:::1;43792:1;43765:18;:30::i;:::-;43700:103::o:0;55083:102::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55157:9:::1;:22;55169:10:::0;55157:9;:22:::1;:::i;27727:104::-:0;27783:13;27816:7;27809:14;;;;;:::i;29337:287::-;2920:10;-1:-1:-1;;;;;29436:24:0;;;29432:54;;29469:17;;-1:-1:-1;;;29469:17:0;;;;;;;;;;;29432:54;2920:10;29499:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29499:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29499:53:0;;;;;;;;;;29568:48;;540:41:1;;;29499:42:0;;2920:10;29568:48;;513:18:1;29568:48:0;;;;;;;29337:287;;:::o;55663:107::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55735:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;55735:27:0;;::::1;::::0;;;::::1;::::0;;55663:107::o;57025:117::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;57102:24:::1;:32:::0;;-1:-1:-1;;57102:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57025:117::o;56808:210::-;56947:4;-1:-1:-1;;;;;47746:18:0;;47754:10;47746:18;47742:184;;57243:24;;;;47838:61;;;47871:28;47888:10;47871:16;:28::i;:::-;56963:49:::1;56988:4;56994:2;56998:7;57007:4;56963:24;:49::i;:::-;56808:210:::0;;;;;:::o;54329:490::-;54428:13;54469:17;54477:8;54469:7;:17::i;:::-;54453:98;;;;-1:-1:-1;;;54453:98:0;;12120:2:1;54453:98:0;;;12102:21:1;12159:2;12139:18;;;12132:30;12198:34;12178:18;;;12171:62;-1:-1:-1;;;12249:18:1;;;12242:45;12304:19;;54453:98:0;11918:411:1;54453:98:0;54569:6;;;;;;;:15;;54579:5;54569:15;54564:50;;54601:9;54594:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54329:490;;;:::o;54564:50::-;54628:28;54659:10;:8;:10::i;:::-;54628:41;;54714:1;54689:14;54683:28;:32;:130;;;;;;;;;;;;;;;;;54751:14;54767:19;:8;:17;:19::i;:::-;54788:9;54734:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54683:130;54676:137;54329:490;-1:-1:-1;;;54329:490:0:o;53734:472::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;53833:18:::1;53861:13;23551:1:::0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;53861:13:::1;53833:42:::0;-1:-1:-1;53883:16:0::1;53904:36;53924:9:::0;53904:36:::1;::::0;::::1;;:::i;:::-;53984:9;::::0;53883:57;;-1:-1:-1;53984:9:0::1;::::0;;::::1;::::0;53955:25:::1;::::0;53883:57;;53955:25;::::1;;:::i;:::-;:38;;53947:70;;;::::0;-1:-1:-1;;;53947:70:0;;11148:2:1;53947:70:0::1;::::0;::::1;11130:21:1::0;11187:2;11167:18;;;11160:30;-1:-1:-1;;;11206:18:1;;;11199:49;11265:18;;53947:70:0::1;10946:343:1::0;53947:70:0::1;54030:9;54025:116;54045:20:::0;;::::1;54025:116;;;54087:42;54097:9;;54107:1;54097:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;54111:17;54087:42;;:9;:42::i;:::-;54067:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54025:116;;;-1:-1:-1::0;;;;;;53734:472:0:o;55775:115::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;55851:22:::1;:31:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;55851:31:0;;::::1;::::0;;;::::1;::::0;;55775:115::o;52249:1147::-;52163:9;52176:10;52163:23;52155:66;;;;-1:-1:-1;;;52155:66:0;;14372:2:1;52155:66:0;;;14354:21:1;14411:2;14391:18;;;14384:30;14450:32;14430:18;;;14423:60;14500:18;;52155:66:0;14170:354:1;52155:66:0;52361:6:::1;::::0;::::1;::::0;::::1;;;52360:7;52352:43;;;::::0;-1:-1:-1;;;52352:43:0;;14731:2:1;52352:43:0::1;::::0;::::1;14713:21:1::0;14770:2;14750:18;;;14743:30;14809:25;14789:18;;;14782:53;14852:18;;52352:43:0::1;14529:347:1::0;52352:43:0::1;52440:9;::::0;:13:::1;::::0;:9:::1;;::::0;:13:::1;:::i;:::-;52410:43;;52426:11;52410:13;23551:1:::0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;52410:13:::1;:27;;;;:::i;:::-;:43;52402:63;;;::::0;-1:-1:-1;;;52402:63:0;;15083:2:1;52402:63:0::1;::::0;::::1;15065:21:1::0;15122:1;15102:18;;;15095:29;-1:-1:-1;;;15140:18:1;;;15133:37;15187:18;;52402:63:0::1;14881:330:1::0;52402:63:0::1;52521:22;::::0;;;::::1;;;52506:11:::0;52482:21:::1;52492:10;52482:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;52473:103;;;::::0;-1:-1:-1;;;52473:103:0;;15418:2:1;52473:103:0::1;::::0;::::1;15400:21:1::0;15457:2;15437:18;;;15430:30;15496;15476:18;;;15469:58;15544:18;;52473:103:0::1;15216:352:1::0;52473:103:0::1;52631:14;;52617:11;52594:20;;:34;;;;:::i;:::-;:51;52591:759;;;52703:9;52687:11;52680:4;;:18;;;;:::i;:::-;52679:33;;52657:107;;;::::0;-1:-1:-1;;;52657:107:0;;15775:2:1;52657:107:0::1;::::0;::::1;15757:21:1::0;15814:2;15794:18;;;15787:30;-1:-1:-1;;;15833:18:1;;;15826:54;15897:18;;52657:107:0::1;15573:348:1::0;52657:107:0::1;52591:759;;;52837:26;::::0;;;::::1;;;52823:11:::0;52799:21:::1;52809:10;52799:9;:21::i;:::-;:35;;;;:::i;:::-;:64;52795:548;;;52922:9;52906:11;52899:4;;:18;;;;:::i;:::-;52898:33;;52876:107;;;::::0;-1:-1:-1;;;52876:107:0;;15775:2:1;52876:107:0::1;::::0;::::1;15757:21:1::0;15814:2;15794:18;;;15787:30;-1:-1:-1;;;15833:18:1;;;15826:54;15897:18;;52876:107:0::1;15573:348:1::0;52876:107:0::1;53031:18;::::0;;;::::1;;;53016:33:::0;::::1;;52994:117;;;;-1:-1:-1::0;;;52994:117:0::1;;;;;;;:::i;52795:548::-;53185:26;::::0;;;::::1;;;53170:41:::0;::::1;;53144:137;;;;-1:-1:-1::0;;;53144:137:0::1;;;;;;;:::i;:::-;53320:11;53296:20;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;52795:548:0::1;53356:34;53366:10;53378:11;53356:9;:34::i;29695:164::-:0;-1:-1:-1;;;;;29816:25:0;;;29792:4;29816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29695:164::o;43958:201::-;43121:6;;-1:-1:-1;;;;;43121:6:0;2920:10;43268:23;43260:69;;;;-1:-1:-1;;;43260:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44047:22:0;::::1;44039:73;;;::::0;-1:-1:-1;;;44039:73:0;;16531:2:1;44039:73:0::1;::::0;::::1;16513:21:1::0;16570:2;16550:18;;;16543:30;16609:34;16589:18;;;16582:62;-1:-1:-1;;;16660:18:1;;;16653:36;16706:19;;44039:73:0::1;16329:402:1::0;44039:73:0::1;44123:28;44142:8;44123:18;:28::i;31047:187::-:0;31104:4;31147:7;23551:1;31128:26;;:53;;;;;31168:13;;31158:7;:23;31128:53;:98;;;;-1:-1:-1;;31199:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31199:27:0;;;;31198:28;;31047:187::o;39650:196::-;39765:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39765:29:0;-1:-1:-1;;;;;39765:29:0;;;;;;;;;39810:28;;39765:24;;39810:28;;;;;;;39650:196;;;:::o;48344:1359::-;48737:22;48731:4;48724:36;48830:9;48824:4;48817:23;48905:8;48899:4;48892:22;49082:4;49076;49070;49064;49037:25;49030:5;49019:68;49009:274;;49203:16;49197:4;49191;49176:44;49251:16;49245:4;49238:30;49009:274;49683:1;49677:4;49670:15;48344:1359;:::o;29926:170::-;30060:28;30070:4;30076:2;30080:7;30060:9;:28::i;31675:104::-;31744:27;31754:2;31758:8;31744:27;;;;;;;;;;;;:9;:27::i;30167:185::-;30305:39;30322:4;30328:2;30332:7;30305:39;;;;;;;;;;;;:16;:39::i;31402:265::-;31495:4;31512:13;31528:24;31544:7;31528:15;:24::i;:::-;31512:40;;31582:5;-1:-1:-1;;;;;31571:16:0;:7;-1:-1:-1;;;;;31571:16:0;;:52;;;;31591:32;31608:5;31615:7;31591:16;:32::i;:::-;31571:87;;;;31651:7;-1:-1:-1;;;;;31627:31:0;:20;31639:7;31627:11;:20::i;:::-;-1:-1:-1;;;;;31627:31:0;;31571:87;31563:96;31402:265;-1:-1:-1;;;;31402:265:0:o;36806:89::-;36866:21;36872:7;36881:5;36866;:21::i;26195:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26306:7:0;;23551:1;26355:23;;:47;;;;;26389:13;;26382:4;:20;26355:47;26351:886;;;26423:31;26457:17;;;:11;:17;;;;;;;;;26423:51;;;;;;;;;-1:-1:-1;;;;;26423:51:0;;;;-1:-1:-1;;;26423:51:0;;-1:-1:-1;;;;;26423:51:0;;;;;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;;;;26493:729;;26543:14;;-1:-1:-1;;;;;26543:28:0;;26539:101;;26607:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;26539:101::-;-1:-1:-1;;;26982:6:0;27027:17;;;;:11;:17;;;;;;;;;27015:29;;;;;;;;;-1:-1:-1;;;;;27015:29:0;;;;;-1:-1:-1;;;27015:29:0;;-1:-1:-1;;;;;27015:29:0;;;;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;;;27075:28;27071:109;;27143:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;27071:109::-;26942:261;;;26404:833;26351:886;27265:31;;-1:-1:-1;;;27265:31:0;;;;;;;;;;;44319:191;44412:6;;;-1:-1:-1;;;;;44429:17:0;;;-1:-1:-1;;;;;;44429:17:0;;;;;;;44462:40;;44412:6;;;44429:17;44412:6;;44462:40;;44393:16;;44462:40;44382:128;44319:191;:::o;30423:369::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;-1:-1:-1;;;;;30633:13:0;;4582:19;:23;;30633:76;;;;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30652:57;30633:76;30629:156;;;30733:40;;-1:-1:-1;;;30733:40:0;;;;;;;;;;;56367:97;56420:13;56449:9;56442:16;;;;;:::i;402:723::-;458:13;679:5;688:1;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;-1:-1:-1;;;;;904:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;34593:2130;34708:35;34746:21;34759:7;34746:12;:21::i;:::-;34708:59;;34806:4;-1:-1:-1;;;;;34784:26:0;:13;:18;;;-1:-1:-1;;;;;34784:26:0;;34780:67;;34819:28;;-1:-1:-1;;;34819:28:0;;;;;;;;;;;34780:67;34860:22;2920:10;-1:-1:-1;;;;;34886:20:0;;;;:73;;-1:-1:-1;34923:36:0;34940:4;2920:10;29695:164;:::i;34923:36::-;34886:126;;;-1:-1:-1;2920:10:0;34976:20;34988:7;34976:11;:20::i;:::-;-1:-1:-1;;;;;34976:36:0;;34886:126;34860:153;;35031:17;35026:66;;35057:35;;-1:-1:-1;;;35057:35:0;;;;;;;;;;;35026:66;-1:-1:-1;;;;;35107:16:0;;35103:52;;35132:23;;-1:-1:-1;;;35132:23:0;;;;;;;;;;;35103:52;35276:35;35293:1;35297:7;35306:4;35276:8;:35::i;:::-;-1:-1:-1;;;;;35607:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35607:31:0;;;-1:-1:-1;;;;;35607:31:0;;;-1:-1:-1;;35607:31:0;;;;;;;35653:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35653:29:0;;;;;;;;;;;35733:20;;;:11;:20;;;;;;35768:18;;-1:-1:-1;;;;;;35801:49:0;;;;-1:-1:-1;;;35834:15:0;35801:49;;;;;;;;;;36124:11;;36184:24;;;;;36227:13;;35733:20;;36184:24;;36227:13;36223:384;;36437:13;;36422:11;:28;36418:174;;36475:20;;36544:28;;;;-1:-1:-1;;;;;36518:54:0;-1:-1:-1;;;36518:54:0;-1:-1:-1;;;;;;36518:54:0;;;-1:-1:-1;;;;;36475:20:0;;36518:54;;;;36418:174;35582:1036;;;36654:7;36650:2;-1:-1:-1;;;;;36635:27:0;36644:4;-1:-1:-1;;;;;36635:27:0;-1:-1:-1;;;;;;;;;;;36635:27:0;;;;;;;;;36673:42;56470:159;32142:163;32265:32;32271:2;32275:8;32285:5;32292:4;32265:5;:32::i;37124:2408::-;37204:35;37242:21;37255:7;37242:12;:21::i;:::-;37291:18;;37204:59;;-1:-1:-1;37322:290:0;;;;37356:22;2920:10;-1:-1:-1;;;;;37382:20:0;;;;:77;;-1:-1:-1;37423:36:0;37440:4;2920:10;29695:164;:::i;37423:36::-;37382:134;;;-1:-1:-1;2920:10:0;37480:20;37492:7;37480:11;:20::i;:::-;-1:-1:-1;;;;;37480:36:0;;37382:134;37356:161;;37539:17;37534:66;;37565:35;;-1:-1:-1;;;37565:35:0;;;;;;;;;;;37534:66;37341:271;37322:290;37740:35;37757:1;37761:7;37770:4;37740:8;:35::i;:::-;-1:-1:-1;;;;;38105:18:0;;;38071:31;38105:18;;;:12;:18;;;;;;;;38138:24;;-1:-1:-1;;;;;;;;;;38138:24:0;;;;;;;;;-1:-1:-1;;38138:24:0;;;;38177:29;;;;;38161:1;38177:29;;;;;;;;-1:-1:-1;;38177:29:0;;;;;;;;;;38339:20;;;:11;:20;;;;;;38374;;-1:-1:-1;;;;38442:15:0;38409:49;;;-1:-1:-1;;;38409:49:0;-1:-1:-1;;;;;;38409:49:0;;;;;;;;;;38473:22;-1:-1:-1;;;38473:22:0;;;38765:11;;;38825:24;;;;;38868:13;;38105:18;;38825:24;;38868:13;38864:384;;39078:13;;39063:11;:28;39059:174;;39116:20;;39185:28;;;;-1:-1:-1;;;;;39159:54:0;-1:-1:-1;;;39159:54:0;-1:-1:-1;;;;;;39159:54:0;;;-1:-1:-1;;;;;39116:20:0;;39159:54;;;;39059:174;-1:-1:-1;;39276:35:0;;39303:7;;-1:-1:-1;39299:1:0;;-1:-1:-1;;;;;;39276:35:0;;;-1:-1:-1;;;;;;;;;;;39276:35:0;39299:1;;39276:35;-1:-1:-1;;39499:12:0;:14;;;;;;-1:-1:-1;;37124:2408:0:o;40338:667::-;40522:72;;-1:-1:-1;;;40522:72:0;;40501:4;;-1:-1:-1;;;;;40522:36:0;;;;;:72;;2920:10;;40573:4;;40579:7;;40588:5;;40522:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40522:72:0;;;;;;;;-1:-1:-1;;40522:72:0;;;;;;;;;;;;:::i;:::-;;;40518:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40756:6;:13;40773:1;40756:18;40752:235;;40802:40;;-1:-1:-1;;;40802:40:0;;;;;;;;;;;40752:235;40945:6;40939:13;40930:6;40926:2;40922:15;40915:38;40518:480;-1:-1:-1;;;;;;40641:55:0;-1:-1:-1;;;40641:55:0;;-1:-1:-1;40338:667:0;;;;;;:::o;32564:1775::-;32703:20;32726:13;-1:-1:-1;;;;;32754:16:0;;32750:48;;32779:19;;-1:-1:-1;;;32779:19:0;;;;;;;;;;;32750:48;32813:8;32825:1;32813:13;32809:44;;32835:18;;-1:-1:-1;;;32835:18:0;;;;;;;;;;;32809:44;-1:-1:-1;;;;;33204:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33263:49:0;;-1:-1:-1;;;;;33204:44:0;;;;;;;33263:49;;;;-1:-1:-1;;33204:44:0;;;;;;33263:49;;;;;;;;;;;;;;;;33329:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33379:66:0;;;;-1:-1:-1;;;33429:15:0;33379:66;;;;;;;;;;33329:25;33526:23;;;33570:4;:23;;;;-1:-1:-1;;;;;;33578:13:0;;4582:19;:23;;33578:15;33566:641;;;33614:314;33645:38;;33670:12;;-1:-1:-1;;;;;33645:38:0;;;33662:1;;-1:-1:-1;;;;;;;;;;;33645:38:0;33662:1;;33645:38;33711:69;33750:1;33754:2;33758:14;;;;;;33774:5;33711:30;:69::i;:::-;33706:174;;33816:40;;-1:-1:-1;;;33816:40:0;;;;;;;;;;;33706:174;33923:3;33907:12;:19;33614:314;;34009:12;33992:13;;:29;33988:43;;34023:8;;;33988:43;33566:641;;;34072:120;34103:40;;34128:14;;;;;-1:-1:-1;;;;;34103:40:0;;;34120:1;;-1:-1:-1;;;;;;;;;;;34103:40:0;34120:1;;34103:40;34187:3;34171:12;:19;34072:120;;33566:641;-1:-1:-1;34221:13:0;:28;34271:60;56470:159;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:159::-;659:20;;719:6;708:18;;698:29;;688:57;;741:1;738;731:12;688:57;592:159;;;:::o;756:184::-;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;906:28;924:9;906:28;:::i;945:250::-;1030:1;1040:113;1054:6;1051:1;1048:13;1040:113;;;1130:11;;;1124:18;1111:11;;;1104:39;1076:2;1069:10;1040:113;;;-1:-1:-1;;1187:1:1;1169:16;;1162:27;945:250::o;1200:271::-;1242:3;1280:5;1274:12;1307:6;1302:3;1295:19;1323:76;1392:6;1385:4;1380:3;1376:14;1369:4;1362:5;1358:16;1323:76;:::i;:::-;1453:2;1432:15;-1:-1:-1;;1428:29:1;1419:39;;;;1460:4;1415:50;;1200:271;-1:-1:-1;;1200:271:1:o;1476:220::-;1625:2;1614:9;1607:21;1588:4;1645:45;1686:2;1675:9;1671:18;1663:6;1645:45;:::i;1701:180::-;1760:6;1813:2;1801:9;1792:7;1788:23;1784:32;1781:52;;;1829:1;1826;1819:12;1781:52;-1:-1:-1;1852:23:1;;1701:180;-1:-1:-1;1701:180:1:o;2094:173::-;2162:20;;-1:-1:-1;;;;;2211:31:1;;2201:42;;2191:70;;2257:1;2254;2247:12;2272:254;2340:6;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2440:29;2459:9;2440:29;:::i;:::-;2430:39;2516:2;2501:18;;;;2488:32;;-1:-1:-1;;;2272:254:1:o;2531:127::-;2592:10;2587:3;2583:20;2580:1;2573:31;2623:4;2620:1;2613:15;2647:4;2644:1;2637:15;2663:632;2728:5;-1:-1:-1;;;;;2799:2:1;2791:6;2788:14;2785:40;;;2805:18;;:::i;:::-;2880:2;2874:9;2848:2;2934:15;;-1:-1:-1;;2930:24:1;;;2956:2;2926:33;2922:42;2910:55;;;2980:18;;;3000:22;;;2977:46;2974:72;;;3026:18;;:::i;:::-;3066:10;3062:2;3055:22;3095:6;3086:15;;3125:6;3117;3110:22;3165:3;3156:6;3151:3;3147:16;3144:25;3141:45;;;3182:1;3179;3172:12;3141:45;3232:6;3227:3;3220:4;3212:6;3208:17;3195:44;3287:1;3280:4;3271:6;3263;3259:19;3255:30;3248:41;;;;2663:632;;;;;:::o;3300:451::-;3369:6;3422:2;3410:9;3401:7;3397:23;3393:32;3390:52;;;3438:1;3435;3428:12;3390:52;3478:9;3465:23;-1:-1:-1;;;;;3503:6:1;3500:30;3497:50;;;3543:1;3540;3533:12;3497:50;3566:22;;3619:4;3611:13;;3607:27;-1:-1:-1;3597:55:1;;3648:1;3645;3638:12;3597:55;3671:74;3737:7;3732:2;3719:16;3714:2;3710;3706:11;3671:74;:::i;3938:328::-;4015:6;4023;4031;4084:2;4072:9;4063:7;4059:23;4055:32;4052:52;;;4100:1;4097;4090:12;4052:52;4123:29;4142:9;4123:29;:::i;:::-;4113:39;;4171:38;4205:2;4194:9;4190:18;4171:38;:::i;:::-;4161:48;;4256:2;4245:9;4241:18;4228:32;4218:42;;3938:328;;;;;:::o;4271:258::-;4338:6;4346;4399:2;4387:9;4378:7;4374:23;4370:32;4367:52;;;4415:1;4412;4405:12;4367:52;4438:28;4456:9;4438:28;:::i;:::-;4428:38;;4485;4519:2;4508:9;4504:18;4485:38;:::i;:::-;4475:48;;4271:258;;;;;:::o;4534:156::-;4600:20;;4660:4;4649:16;;4639:27;;4629:55;;4680:1;4677;4670:12;4695:182;4752:6;4805:2;4793:9;4784:7;4780:23;4776:32;4773:52;;;4821:1;4818;4811:12;4773:52;4844:27;4861:9;4844:27;:::i;4882:186::-;4941:6;4994:2;4982:9;4973:7;4969:23;4965:32;4962:52;;;5010:1;5007;5000:12;4962:52;5033:29;5052:9;5033:29;:::i;5262:160::-;5327:20;;5383:13;;5376:21;5366:32;;5356:60;;5412:1;5409;5402:12;5427:254;5492:6;5500;5553:2;5541:9;5532:7;5528:23;5524:32;5521:52;;;5569:1;5566;5559:12;5521:52;5592:29;5611:9;5592:29;:::i;:::-;5582:39;;5640:35;5671:2;5660:9;5656:18;5640:35;:::i;5686:180::-;5742:6;5795:2;5783:9;5774:7;5770:23;5766:32;5763:52;;;5811:1;5808;5801:12;5763:52;5834:26;5850:9;5834:26;:::i;5871:667::-;5966:6;5974;5982;5990;6043:3;6031:9;6022:7;6018:23;6014:33;6011:53;;;6060:1;6057;6050:12;6011:53;6083:29;6102:9;6083:29;:::i;:::-;6073:39;;6131:38;6165:2;6154:9;6150:18;6131:38;:::i;:::-;6121:48;;6216:2;6205:9;6201:18;6188:32;6178:42;;6271:2;6260:9;6256:18;6243:32;-1:-1:-1;;;;;6290:6:1;6287:30;6284:50;;;6330:1;6327;6320:12;6284:50;6353:22;;6406:4;6398:13;;6394:27;-1:-1:-1;6384:55:1;;6435:1;6432;6425:12;6384:55;6458:74;6524:7;6519:2;6506:16;6501:2;6497;6493:11;6458:74;:::i;:::-;6448:84;;;5871:667;;;;;;;:::o;6543:685::-;6636:6;6644;6652;6705:2;6693:9;6684:7;6680:23;6676:32;6673:52;;;6721:1;6718;6711:12;6673:52;6744:27;6761:9;6744:27;:::i;:::-;6734:37;;6822:2;6811:9;6807:18;6794:32;-1:-1:-1;;;;;6886:2:1;6878:6;6875:14;6872:34;;;6902:1;6899;6892:12;6872:34;6940:6;6929:9;6925:22;6915:32;;6985:7;6978:4;6974:2;6970:13;6966:27;6956:55;;7007:1;7004;6997:12;6956:55;7047:2;7034:16;7073:2;7065:6;7062:14;7059:34;;;7089:1;7086;7079:12;7059:34;7142:7;7137:2;7127:6;7124:1;7120:14;7116:2;7112:23;7108:32;7105:45;7102:65;;;7163:1;7160;7153:12;7102:65;7194:2;7190;7186:11;7176:21;;7216:6;7206:16;;;;;6543:685;;;;;:::o;7426:260::-;7494:6;7502;7555:2;7543:9;7534:7;7530:23;7526:32;7523:52;;;7571:1;7568;7561:12;7523:52;7594:29;7613:9;7594:29;:::i;7691:356::-;7893:2;7875:21;;;7912:18;;;7905:30;7971:34;7966:2;7951:18;;7944:62;8038:2;8023:18;;7691:356::o;8052:380::-;8131:1;8127:12;;;;8174;;;8195:61;;8249:4;8241:6;8237:17;8227:27;;8195:61;8302:2;8294:6;8291:14;8271:18;8268:38;8265:161;;8348:10;8343:3;8339:20;8336:1;8329:31;8383:4;8380:1;8373:15;8411:4;8408:1;8401:15;8265:161;;8052:380;;;:::o;8563:545::-;8665:2;8660:3;8657:11;8654:448;;;8701:1;8726:5;8722:2;8715:17;8771:4;8767:2;8757:19;8841:2;8829:10;8825:19;8822:1;8818:27;8812:4;8808:38;8877:4;8865:10;8862:20;8859:47;;;-1:-1:-1;8900:4:1;8859:47;8955:2;8950:3;8946:12;8943:1;8939:20;8933:4;8929:31;8919:41;;9010:82;9028:2;9021:5;9018:13;9010:82;;;9073:17;;;9054:1;9043:13;9010:82;;9284:1352;9410:3;9404:10;-1:-1:-1;;;;;9429:6:1;9426:30;9423:56;;;9459:18;;:::i;:::-;9488:97;9578:6;9538:38;9570:4;9564:11;9538:38;:::i;:::-;9532:4;9488:97;:::i;:::-;9640:4;;9704:2;9693:14;;9721:1;9716:663;;;;10423:1;10440:6;10437:89;;;-1:-1:-1;10492:19:1;;;10486:26;10437:89;-1:-1:-1;;9241:1:1;9237:11;;;9233:24;9229:29;9219:40;9265:1;9261:11;;;9216:57;10539:81;;9686:944;;9716:663;8510:1;8503:14;;;8547:4;8534:18;;-1:-1:-1;;9752:20:1;;;9870:236;9884:7;9881:1;9878:14;9870:236;;;9973:19;;;9967:26;9952:42;;10065:27;;;;10033:1;10021:14;;;;9900:19;;9870:236;;;9874:3;10134:6;10125:7;10122:19;10119:201;;;10195:19;;;10189:26;-1:-1:-1;;10278:1:1;10274:14;;;10290:3;10270:24;10266:37;10262:42;10247:58;10232:74;;10119:201;-1:-1:-1;;;;;10366:1:1;10350:14;;;10346:22;10333:36;;-1:-1:-1;9284:1352:1:o;10641:127::-;10702:10;10697:3;10693:20;10690:1;10683:31;10733:4;10730:1;10723:15;10757:4;10754:1;10747:15;10773:168;10840:6;10866:10;;;10878;;;10862:27;;10901:11;;;10898:37;;;10915:18;;:::i;:::-;10898:37;10773:168;;;;:::o;12334:1256::-;12558:3;12596:6;12590:13;12622:4;12635:64;12692:6;12687:3;12682:2;12674:6;12670:15;12635:64;:::i;:::-;12762:13;;12721:16;;;;12784:68;12762:13;12721:16;12819:15;;;12784:68;:::i;:::-;12941:13;;12874:20;;;12914:1;;12979:36;12941:13;12979:36;:::i;:::-;13034:1;13051:18;;;13078:141;;;;13233:1;13228:337;;;;13044:521;;13078:141;-1:-1:-1;;13113:24:1;;13099:39;;13190:16;;13183:24;13169:39;;13158:51;;;-1:-1:-1;13078:141:1;;13228:337;13259:6;13256:1;13249:17;13307:2;13304:1;13294:16;13332:1;13346:169;13360:8;13357:1;13354:15;13346:169;;;13442:14;;13427:13;;;13420:37;13485:16;;;;13377:10;;13346:169;;;13350:3;;13546:8;13539:5;13535:20;13528:27;;13044:521;-1:-1:-1;13581:3:1;;12334:1256;-1:-1:-1;;;;;;;;;;12334:1256:1:o;13595:168::-;13668:9;;;13699;;13716:15;;;13710:22;;13696:37;13686:71;;13737:18;;:::i;13768:125::-;13833:9;;;13854:10;;;13851:36;;;13867:18;;:::i;13898:127::-;13959:10;13954:3;13950:20;13947:1;13940:31;13990:4;13987:1;13980:15;14014:4;14011:1;14004:15;14030:135;14069:3;14090:17;;;14087:43;;14110:18;;:::i;:::-;-1:-1:-1;14157:1:1;14146:13;;14030:135::o;15926:398::-;16128:2;16110:21;;;16167:2;16147:18;;;16140:30;16206:34;16201:2;16186:18;;16179:62;-1:-1:-1;;;16272:2:1;16257:18;;16250:32;16314:3;16299:19;;15926:398::o;16736:127::-;16797:10;16792:3;16788:20;16785:1;16778:31;16828:4;16825:1;16818:15;16852:4;16849:1;16842:15;16868:120;16908:1;16934;16924:35;;16939:18;;:::i;:::-;-1:-1:-1;16973:9:1;;16868:120::o;16993:128::-;17060:9;;;17081:11;;;17078:37;;;17095:18;;:::i;17126:112::-;17158:1;17184;17174:35;;17189:18;;:::i;:::-;-1:-1:-1;17223:9:1;;17126:112::o;17243:489::-;-1:-1:-1;;;;;17512:15:1;;;17494:34;;17564:15;;17559:2;17544:18;;17537:43;17611:2;17596:18;;17589:34;;;17659:3;17654:2;17639:18;;17632:31;;;17437:4;;17680:46;;17706:19;;17698:6;17680:46;:::i;:::-;17672:54;17243:489;-1:-1:-1;;;;;;17243:489:1:o;17737:249::-;17806:6;17859:2;17847:9;17838:7;17834:23;17830:32;17827:52;;;17875:1;17872;17865:12;17827:52;17907:9;17901:16;17926:30;17950:5;17926:30;:::i

Swarm Source

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