ETH Price: $3,159.11 (+1.28%)
Gas: 2 Gwei

Token

nazgultown (NAZGUL)
 

Overview

Max Total Supply

4,141 NAZGUL

Holders

253

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
nazgultown

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// 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/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier 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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);

    // ==============================
    //        IERC721Metadata
    // ==============================

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


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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();
    }

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev 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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        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 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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/test.sol


pragma solidity ^0.8.2;





contract nazgultown is ERC721A, Ownable, ReentrancyGuard {  
    using Strings for uint256;
    string public _nazgulUri;
    bool public sale_open = true;
    uint256 public nazguls = 10000;
    uint256 public free_nazguls_per_wallet = 4; 
    uint256 public nazguls_per_wallet = 100;
    uint256 public free_nazguls = 4000;
    uint256 public price = 0.0088 ether;
    mapping(address => uint256) public howmanynazguls;
   
	constructor() ERC721A("nazgultown", "NAZGUL") {}

    function _baseURI() internal view virtual override returns (string memory) {
        return _nazgulUri;
    }

 	function mint(uint256 quantity) public payable {
        uint256 cost = price * quantity;
  	    uint256 totalnazguls = totalSupply();
        require(sale_open);
        require(totalnazguls + quantity <= nazguls);
        require(howmanynazguls[msg.sender] < nazguls_per_wallet);

        if(totalnazguls < free_nazguls && howmanynazguls[msg.sender] < free_nazguls_per_wallet) {
            if(quantity >= free_nazguls_per_wallet) {
                uint256 nazguls_to_pay = quantity - (free_nazguls_per_wallet - howmanynazguls[msg.sender]);
                cost = price * nazguls_to_pay;
            }
        }
        else {
            require(msg.value >= cost, "Not enough supply.");
        }
        _safeMint(msg.sender, quantity);
        howmanynazguls[msg.sender] += quantity;
    }

 	function mintForAnotherNazgul(address slayers, uint256 _nazguls) public onlyOwner {
  	    uint256 totalnazguls = totalSupply();
	    require(totalnazguls + _nazguls <= nazguls);
        _safeMint(slayers, _nazguls);
    }

    function openNazgulSale(bool _state) external onlyOwner {
        sale_open = _state;
    }

    function setNazguls(uint256 _nazguls) external onlyOwner {
        nazguls = _nazguls;
    }

    function setFreeNazguls(uint256 _freeNazguls) external onlyOwner {
        free_nazguls = _freeNazguls;
    }

    function setNazgulUri(string memory uri) external onlyOwner {
        _nazgulUri = uri;
    }

    function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_nazgulUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_nazguls","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_nazguls_per_wallet","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":"","type":"address"}],"name":"howmanynazguls","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"slayers","type":"address"},{"internalType":"uint256","name":"_nazguls","type":"uint256"}],"name":"mintForAnotherNazgul","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nazguls","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nazguls_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"openNazgulSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_freeNazguls","type":"uint256"}],"name":"setFreeNazguls","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setNazgulUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nazguls","type":"uint256"}],"name":"setNazguls","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":"payable","type":"function"}]

60806040526001600b60006101000a81548160ff021916908315150217905550612710600c556004600d556064600e55610fa0600f55661f438daa0600006010553480156200004d57600080fd5b506040518060400160405280600a81526020017f6e617a67756c746f776e000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e415a47554c00000000000000000000000000000000000000000000000000008152508160029080519060200190620000d292919062000205565b508060039080519060200190620000eb92919062000205565b50620000fc6200013260201b60201c565b600081905550505062000124620001186200013760201b60201c565b6200013f60201b60201c565b60016009819055506200031a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021390620002b5565b90600052602060002090601f01602090048101928262000237576000855562000283565b82601f106200025257805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028257825182559160200191906001019062000265565b5b50905062000292919062000296565b5090565b5b80821115620002b157600081600090555060010162000297565b5090565b60006002820490506001821680620002ce57607f821691505b60208210811415620002e557620002e4620002eb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612efb806200032a6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063bb13417411610095578063d40efc4a11610064578063d40efc4a146106b2578063e1bc1c0a146106db578063e985e9c514610706578063f2fde38b14610743576101e3565b8063bb134174146105e4578063c05c17151461060f578063c87b56dd1461064c578063cac020f614610689576101e3565b8063a0712d68116100d1578063a0712d681461054b578063a22cb46514610567578063aaf8360614610590578063b88d4fde146105bb576101e3565b8063715018a6146104b35780638da5cb5b146104ca57806395d89b41146104f5578063a035b1fe14610520576101e3565b806323b872dd1161017a57806346e449d71161014957806346e449d7146103e55780636352211e1461041057806366da6f281461044d57806370a0823114610476576101e3565b806323b872dd146103605780633ccfd60b146103895780633e5be3801461039357806342842e0e146103bc576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780631697a8c9146102e157806318160ddd1461030a5780631bd6fd9b14610335576101e3565b806301ffc9a7146101e8578063045a26731461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906126bd565b61076c565b60405161021c9190612989565b60405180910390f35b34801561023157600080fd5b5061023a6107fe565b6040516102479190612a26565b60405180910390f35b34801561025c57600080fd5b50610265610804565b60405161027291906129a4565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612760565b610896565b6040516102af9190612922565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612650565b610912565b005b3480156102ed57600080fd5b5061030860048036038101906103039190612760565b610ab9565b005b34801561031657600080fd5b5061031f610b3f565b60405161032c9190612a26565b60405180910390f35b34801561034157600080fd5b5061034a610b56565b6040516103579190612a26565b60405180910390f35b34801561036c57600080fd5b506103876004803603810190610382919061253a565b610b5c565b005b610391610b6c565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612690565b610c61565b005b3480156103c857600080fd5b506103e360048036038101906103de919061253a565b610cfa565b005b3480156103f157600080fd5b506103fa610d1a565b60405161040791906129a4565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190612760565b610da8565b6040516104449190612922565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612650565b610dba565b005b34801561048257600080fd5b5061049d600480360381019061049891906124cd565b610e6b565b6040516104aa9190612a26565b60405180910390f35b3480156104bf57600080fd5b506104c8610f24565b005b3480156104d657600080fd5b506104df610fac565b6040516104ec9190612922565b60405180910390f35b34801561050157600080fd5b5061050a610fd6565b60405161051791906129a4565b60405180910390f35b34801561052c57600080fd5b50610535611068565b6040516105429190612a26565b60405180910390f35b61056560048036038101906105609190612760565b61106e565b005b34801561057357600080fd5b5061058e60048036038101906105899190612610565b611287565b005b34801561059c57600080fd5b506105a56113ff565b6040516105b29190612989565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd919061258d565b611412565b005b3480156105f057600080fd5b506105f9611485565b6040516106069190612a26565b60405180910390f35b34801561061b57600080fd5b50610636600480360381019061063191906124cd565b61148b565b6040516106439190612a26565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190612760565b6114a3565b60405161068091906129a4565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612760565b611542565b005b3480156106be57600080fd5b506106d960048036038101906106d49190612717565b6115c8565b005b3480156106e757600080fd5b506106f061165e565b6040516106fd9190612a26565b60405180910390f35b34801561071257600080fd5b5061072d600480360381019061072891906124fa565b611664565b60405161073a9190612989565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906124cd565b6116f8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b60606002805461081390612cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90612cb0565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b60006108a1826117f0565b6108d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091d8261184f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a461191d565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576109d0816109cb61191d565b611664565b610a06576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ac1611925565b73ffffffffffffffffffffffffffffffffffffffff16610adf610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c906129e6565b60405180910390fd5b80600f8190555050565b6000610b4961192d565b6001546000540303905090565b600f5481565b610b67838383611932565b505050565b610b74611925565b73ffffffffffffffffffffffffffffffffffffffff16610b92610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf906129e6565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c0e9061290d565b60006040518083038185875af1925050503d8060008114610c4b576040519150601f19603f3d011682016040523d82523d6000602084013e610c50565b606091505b5050905080610c5e57600080fd5b50565b610c69611925565b73ffffffffffffffffffffffffffffffffffffffff16610c87610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906129e6565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610d1583838360405180602001604052806000815250611412565b505050565b600a8054610d2790612cb0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5390612cb0565b8015610da05780601f10610d7557610100808354040283529160200191610da0565b820191906000526020600020905b815481529060010190602001808311610d8357829003601f168201915b505050505081565b6000610db38261184f565b9050919050565b610dc2611925565b73ffffffffffffffffffffffffffffffffffffffff16610de0610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d906129e6565b60405180910390fd5b6000610e40610b3f565b9050600c548282610e519190612b16565b1115610e5c57600080fd5b610e668383611cdc565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2c611925565b73ffffffffffffffffffffffffffffffffffffffff16610f4a610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f97906129e6565b60405180910390fd5b610faa6000611cfa565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fe590612cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461101190612cb0565b801561105e5780601f106110335761010080835404028352916020019161105e565b820191906000526020600020905b81548152906001019060200180831161104157829003601f168201915b5050505050905090565b60105481565b60008160105461107e9190612b6c565b9050600061108a610b3f565b9050600b60009054906101000a900460ff166110a557600080fd5b600c5483826110b49190612b16565b11156110bf57600080fd5b600e54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061110c57600080fd5b600f548110801561115d5750600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b156111de57600d5483106111d9576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546111ba9190612bc6565b846111c59190612bc6565b9050806010546111d59190612b6c565b9250505b611222565b81341015611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612a06565b60405180910390fd5b5b61122c3384611cdc565b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461127b9190612b16565b92505081905550505050565b61128f61191d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061130161191d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113ae61191d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f39190612989565b60405180910390a35050565b600b60009054906101000a900460ff1681565b61141d848484611932565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461147f5761144884848484611dc0565b61147e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b60116020528060005260406000206000915090505481565b60606114ae826117f0565b6114e4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114ee611f20565b905060008151141561150f576040518060200160405280600081525061153a565b8061151984611fb2565b60405160200161152a9291906128e9565b6040516020818303038152906040525b915050919050565b61154a611925565b73ffffffffffffffffffffffffffffffffffffffff16611568610fac565b73ffffffffffffffffffffffffffffffffffffffff16146115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b5906129e6565b60405180910390fd5b80600c8190555050565b6115d0611925565b73ffffffffffffffffffffffffffffffffffffffff166115ee610fac565b73ffffffffffffffffffffffffffffffffffffffff1614611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906129e6565b60405180910390fd5b80600a908051906020019061165a9291906122e1565b5050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611700611925565b73ffffffffffffffffffffffffffffffffffffffff1661171e610fac565b73ffffffffffffffffffffffffffffffffffffffff1614611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b906129e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906129c6565b60405180910390fd5b6117ed81611cfa565b50565b6000816117fb61192d565b1115801561180a575060005482105b8015611848575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061185e61192d565b116118e6576000548110156118e55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118e3575b60008114156118d95760046000836001900393508381526020019081526020016000205490506118ae565b8092505050611918565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b600061193d8261184f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119a4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119c561191d565b73ffffffffffffffffffffffffffffffffffffffff1614806119f457506119f3856119ee61191d565b611664565b5b80611a395750611a0261191d565b73ffffffffffffffffffffffffffffffffffffffff16611a2184610896565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a72576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ad9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ae6858585600161200c565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611be386612012565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611c6d576000600184019050600060046000838152602001908152602001600020541415611c6b576000548114611c6a578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cd5858585600161201c565b5050505050565b611cf6828260405180602001604052806000815250612022565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de661191d565b8786866040518563ffffffff1660e01b8152600401611e08949392919061293d565b602060405180830381600087803b158015611e2257600080fd5b505af1925050508015611e5357506040513d601f19601f82011682018060405250810190611e5091906126ea565b60015b611ecd573d8060008114611e83576040519150601f19603f3d011682016040523d82523d6000602084013e611e88565b606091505b50600081511415611ec5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f2f90612cb0565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5b90612cb0565b8015611fa85780601f10611f7d57610100808354040283529160200191611fa8565b820191906000526020600020905b815481529060010190602001808311611f8b57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ff857600183039250600a81066030018353600a81049050611fd8565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561208f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156120ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d7600085838661200c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161213c600185146122d7565b901b60a042901b61214c86612012565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612250575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122006000878480600101955087611dc0565b612236576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061219157826000541461224b57600080fd5b6122bb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612251575b8160008190555050506122d1600085838661201c565b50505050565b6000819050919050565b8280546122ed90612cb0565b90600052602060002090601f01602090048101928261230f5760008555612356565b82601f1061232857805160ff1916838001178555612356565b82800160010185558215612356579182015b8281111561235557825182559160200191906001019061233a565b5b5090506123639190612367565b5090565b5b80821115612380576000816000905550600101612368565b5090565b600061239761239284612a66565b612a41565b9050828152602081018484840111156123b3576123b2612da5565b5b6123be848285612c6e565b509392505050565b60006123d96123d484612a97565b612a41565b9050828152602081018484840111156123f5576123f4612da5565b5b612400848285612c6e565b509392505050565b60008135905061241781612e69565b92915050565b60008135905061242c81612e80565b92915050565b60008135905061244181612e97565b92915050565b60008151905061245681612e97565b92915050565b600082601f83011261247157612470612da0565b5b8135612481848260208601612384565b91505092915050565b600082601f83011261249f5761249e612da0565b5b81356124af8482602086016123c6565b91505092915050565b6000813590506124c781612eae565b92915050565b6000602082840312156124e3576124e2612daf565b5b60006124f184828501612408565b91505092915050565b6000806040838503121561251157612510612daf565b5b600061251f85828601612408565b925050602061253085828601612408565b9150509250929050565b60008060006060848603121561255357612552612daf565b5b600061256186828701612408565b935050602061257286828701612408565b9250506040612583868287016124b8565b9150509250925092565b600080600080608085870312156125a7576125a6612daf565b5b60006125b587828801612408565b94505060206125c687828801612408565b93505060406125d7878288016124b8565b925050606085013567ffffffffffffffff8111156125f8576125f7612daa565b5b6126048782880161245c565b91505092959194509250565b6000806040838503121561262757612626612daf565b5b600061263585828601612408565b92505060206126468582860161241d565b9150509250929050565b6000806040838503121561266757612666612daf565b5b600061267585828601612408565b9250506020612686858286016124b8565b9150509250929050565b6000602082840312156126a6576126a5612daf565b5b60006126b48482850161241d565b91505092915050565b6000602082840312156126d3576126d2612daf565b5b60006126e184828501612432565b91505092915050565b600060208284031215612700576126ff612daf565b5b600061270e84828501612447565b91505092915050565b60006020828403121561272d5761272c612daf565b5b600082013567ffffffffffffffff81111561274b5761274a612daa565b5b6127578482850161248a565b91505092915050565b60006020828403121561277657612775612daf565b5b6000612784848285016124b8565b91505092915050565b61279681612bfa565b82525050565b6127a581612c0c565b82525050565b60006127b682612ac8565b6127c08185612ade565b93506127d0818560208601612c7d565b6127d981612db4565b840191505092915050565b60006127ef82612ad3565b6127f98185612afa565b9350612809818560208601612c7d565b61281281612db4565b840191505092915050565b600061282882612ad3565b6128328185612b0b565b9350612842818560208601612c7d565b80840191505092915050565b600061285b602683612afa565b915061286682612dc5565b604082019050919050565b600061287e602083612afa565b915061288982612e14565b602082019050919050565b60006128a1600083612aef565b91506128ac82612e3d565b600082019050919050565b60006128c4601283612afa565b91506128cf82612e40565b602082019050919050565b6128e381612c64565b82525050565b60006128f5828561281d565b9150612901828461281d565b91508190509392505050565b600061291882612894565b9150819050919050565b6000602082019050612937600083018461278d565b92915050565b6000608082019050612952600083018761278d565b61295f602083018661278d565b61296c60408301856128da565b818103606083015261297e81846127ab565b905095945050505050565b600060208201905061299e600083018461279c565b92915050565b600060208201905081810360008301526129be81846127e4565b905092915050565b600060208201905081810360008301526129df8161284e565b9050919050565b600060208201905081810360008301526129ff81612871565b9050919050565b60006020820190508181036000830152612a1f816128b7565b9050919050565b6000602082019050612a3b60008301846128da565b92915050565b6000612a4b612a5c565b9050612a578282612ce2565b919050565b6000604051905090565b600067ffffffffffffffff821115612a8157612a80612d71565b5b612a8a82612db4565b9050602081019050919050565b600067ffffffffffffffff821115612ab257612ab1612d71565b5b612abb82612db4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2182612c64565b9150612b2c83612c64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6157612b60612d13565b5b828201905092915050565b6000612b7782612c64565b9150612b8283612c64565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bbb57612bba612d13565b5b828202905092915050565b6000612bd182612c64565b9150612bdc83612c64565b925082821015612bef57612bee612d13565b5b828203905092915050565b6000612c0582612c44565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c9b578082015181840152602081019050612c80565b83811115612caa576000848401525b50505050565b60006002820490506001821680612cc857607f821691505b60208210811415612cdc57612cdb612d42565b5b50919050565b612ceb82612db4565b810181811067ffffffffffffffff82111715612d0a57612d09612d71565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4e6f7420656e6f75676820737570706c792e0000000000000000000000000000600082015250565b612e7281612bfa565b8114612e7d57600080fd5b50565b612e8981612c0c565b8114612e9457600080fd5b50565b612ea081612c18565b8114612eab57600080fd5b50565b612eb781612c64565b8114612ec257600080fd5b5056fea264697066735822122080c48ca9c61a72eee3accceee89f7ebc23cac64c95613c0221c52e02b1fb0d3664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063bb13417411610095578063d40efc4a11610064578063d40efc4a146106b2578063e1bc1c0a146106db578063e985e9c514610706578063f2fde38b14610743576101e3565b8063bb134174146105e4578063c05c17151461060f578063c87b56dd1461064c578063cac020f614610689576101e3565b8063a0712d68116100d1578063a0712d681461054b578063a22cb46514610567578063aaf8360614610590578063b88d4fde146105bb576101e3565b8063715018a6146104b35780638da5cb5b146104ca57806395d89b41146104f5578063a035b1fe14610520576101e3565b806323b872dd1161017a57806346e449d71161014957806346e449d7146103e55780636352211e1461041057806366da6f281461044d57806370a0823114610476576101e3565b806323b872dd146103605780633ccfd60b146103895780633e5be3801461039357806342842e0e146103bc576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780631697a8c9146102e157806318160ddd1461030a5780631bd6fd9b14610335576101e3565b806301ffc9a7146101e8578063045a26731461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906126bd565b61076c565b60405161021c9190612989565b60405180910390f35b34801561023157600080fd5b5061023a6107fe565b6040516102479190612a26565b60405180910390f35b34801561025c57600080fd5b50610265610804565b60405161027291906129a4565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612760565b610896565b6040516102af9190612922565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612650565b610912565b005b3480156102ed57600080fd5b5061030860048036038101906103039190612760565b610ab9565b005b34801561031657600080fd5b5061031f610b3f565b60405161032c9190612a26565b60405180910390f35b34801561034157600080fd5b5061034a610b56565b6040516103579190612a26565b60405180910390f35b34801561036c57600080fd5b506103876004803603810190610382919061253a565b610b5c565b005b610391610b6c565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612690565b610c61565b005b3480156103c857600080fd5b506103e360048036038101906103de919061253a565b610cfa565b005b3480156103f157600080fd5b506103fa610d1a565b60405161040791906129a4565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190612760565b610da8565b6040516104449190612922565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f9190612650565b610dba565b005b34801561048257600080fd5b5061049d600480360381019061049891906124cd565b610e6b565b6040516104aa9190612a26565b60405180910390f35b3480156104bf57600080fd5b506104c8610f24565b005b3480156104d657600080fd5b506104df610fac565b6040516104ec9190612922565b60405180910390f35b34801561050157600080fd5b5061050a610fd6565b60405161051791906129a4565b60405180910390f35b34801561052c57600080fd5b50610535611068565b6040516105429190612a26565b60405180910390f35b61056560048036038101906105609190612760565b61106e565b005b34801561057357600080fd5b5061058e60048036038101906105899190612610565b611287565b005b34801561059c57600080fd5b506105a56113ff565b6040516105b29190612989565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd919061258d565b611412565b005b3480156105f057600080fd5b506105f9611485565b6040516106069190612a26565b60405180910390f35b34801561061b57600080fd5b50610636600480360381019061063191906124cd565b61148b565b6040516106439190612a26565b60405180910390f35b34801561065857600080fd5b50610673600480360381019061066e9190612760565b6114a3565b60405161068091906129a4565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612760565b611542565b005b3480156106be57600080fd5b506106d960048036038101906106d49190612717565b6115c8565b005b3480156106e757600080fd5b506106f061165e565b6040516106fd9190612a26565b60405180910390f35b34801561071257600080fd5b5061072d600480360381019061072891906124fa565b611664565b60405161073a9190612989565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906124cd565b6116f8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b60606002805461081390612cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90612cb0565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b60006108a1826117f0565b6108d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091d8261184f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a461191d565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576109d0816109cb61191d565b611664565b610a06576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ac1611925565b73ffffffffffffffffffffffffffffffffffffffff16610adf610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c906129e6565b60405180910390fd5b80600f8190555050565b6000610b4961192d565b6001546000540303905090565b600f5481565b610b67838383611932565b505050565b610b74611925565b73ffffffffffffffffffffffffffffffffffffffff16610b92610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf906129e6565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c0e9061290d565b60006040518083038185875af1925050503d8060008114610c4b576040519150601f19603f3d011682016040523d82523d6000602084013e610c50565b606091505b5050905080610c5e57600080fd5b50565b610c69611925565b73ffffffffffffffffffffffffffffffffffffffff16610c87610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906129e6565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b610d1583838360405180602001604052806000815250611412565b505050565b600a8054610d2790612cb0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5390612cb0565b8015610da05780601f10610d7557610100808354040283529160200191610da0565b820191906000526020600020905b815481529060010190602001808311610d8357829003601f168201915b505050505081565b6000610db38261184f565b9050919050565b610dc2611925565b73ffffffffffffffffffffffffffffffffffffffff16610de0610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d906129e6565b60405180910390fd5b6000610e40610b3f565b9050600c548282610e519190612b16565b1115610e5c57600080fd5b610e668383611cdc565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ed3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2c611925565b73ffffffffffffffffffffffffffffffffffffffff16610f4a610fac565b73ffffffffffffffffffffffffffffffffffffffff1614610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f97906129e6565b60405180910390fd5b610faa6000611cfa565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fe590612cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461101190612cb0565b801561105e5780601f106110335761010080835404028352916020019161105e565b820191906000526020600020905b81548152906001019060200180831161104157829003601f168201915b5050505050905090565b60105481565b60008160105461107e9190612b6c565b9050600061108a610b3f565b9050600b60009054906101000a900460ff166110a557600080fd5b600c5483826110b49190612b16565b11156110bf57600080fd5b600e54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061110c57600080fd5b600f548110801561115d5750600d54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b156111de57600d5483106111d9576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546111ba9190612bc6565b846111c59190612bc6565b9050806010546111d59190612b6c565b9250505b611222565b81341015611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890612a06565b60405180910390fd5b5b61122c3384611cdc565b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461127b9190612b16565b92505081905550505050565b61128f61191d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061130161191d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113ae61191d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113f39190612989565b60405180910390a35050565b600b60009054906101000a900460ff1681565b61141d848484611932565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461147f5761144884848484611dc0565b61147e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b60116020528060005260406000206000915090505481565b60606114ae826117f0565b6114e4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114ee611f20565b905060008151141561150f576040518060200160405280600081525061153a565b8061151984611fb2565b60405160200161152a9291906128e9565b6040516020818303038152906040525b915050919050565b61154a611925565b73ffffffffffffffffffffffffffffffffffffffff16611568610fac565b73ffffffffffffffffffffffffffffffffffffffff16146115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b5906129e6565b60405180910390fd5b80600c8190555050565b6115d0611925565b73ffffffffffffffffffffffffffffffffffffffff166115ee610fac565b73ffffffffffffffffffffffffffffffffffffffff1614611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906129e6565b60405180910390fd5b80600a908051906020019061165a9291906122e1565b5050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611700611925565b73ffffffffffffffffffffffffffffffffffffffff1661171e610fac565b73ffffffffffffffffffffffffffffffffffffffff1614611774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176b906129e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906129c6565b60405180910390fd5b6117ed81611cfa565b50565b6000816117fb61192d565b1115801561180a575060005482105b8015611848575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061185e61192d565b116118e6576000548110156118e55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118e3575b60008114156118d95760046000836001900393508381526020019081526020016000205490506118ae565b8092505050611918565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b600061193d8261184f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119a4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166119c561191d565b73ffffffffffffffffffffffffffffffffffffffff1614806119f457506119f3856119ee61191d565b611664565b5b80611a395750611a0261191d565b73ffffffffffffffffffffffffffffffffffffffff16611a2184610896565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a72576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ad9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ae6858585600161200c565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611be386612012565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611c6d576000600184019050600060046000838152602001908152602001600020541415611c6b576000548114611c6a578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cd5858585600161201c565b5050505050565b611cf6828260405180602001604052806000815250612022565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de661191d565b8786866040518563ffffffff1660e01b8152600401611e08949392919061293d565b602060405180830381600087803b158015611e2257600080fd5b505af1925050508015611e5357506040513d601f19601f82011682018060405250810190611e5091906126ea565b60015b611ecd573d8060008114611e83576040519150601f19603f3d011682016040523d82523d6000602084013e611e88565b606091505b50600081511415611ec5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f2f90612cb0565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5b90612cb0565b8015611fa85780601f10611f7d57610100808354040283529160200191611fa8565b820191906000526020600020905b815481529060010190602001808311611f8b57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ff857600183039250600a81066030018353600a81049050611fd8565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561208f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156120ca576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d7600085838661200c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161213c600185146122d7565b901b60a042901b61214c86612012565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612250575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122006000878480600101955087611dc0565b612236576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061219157826000541461224b57600080fd5b6122bb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612251575b8160008190555050506122d1600085838661201c565b50505050565b6000819050919050565b8280546122ed90612cb0565b90600052602060002090601f01602090048101928261230f5760008555612356565b82601f1061232857805160ff1916838001178555612356565b82800160010185558215612356579182015b8281111561235557825182559160200191906001019061233a565b5b5090506123639190612367565b5090565b5b80821115612380576000816000905550600101612368565b5090565b600061239761239284612a66565b612a41565b9050828152602081018484840111156123b3576123b2612da5565b5b6123be848285612c6e565b509392505050565b60006123d96123d484612a97565b612a41565b9050828152602081018484840111156123f5576123f4612da5565b5b612400848285612c6e565b509392505050565b60008135905061241781612e69565b92915050565b60008135905061242c81612e80565b92915050565b60008135905061244181612e97565b92915050565b60008151905061245681612e97565b92915050565b600082601f83011261247157612470612da0565b5b8135612481848260208601612384565b91505092915050565b600082601f83011261249f5761249e612da0565b5b81356124af8482602086016123c6565b91505092915050565b6000813590506124c781612eae565b92915050565b6000602082840312156124e3576124e2612daf565b5b60006124f184828501612408565b91505092915050565b6000806040838503121561251157612510612daf565b5b600061251f85828601612408565b925050602061253085828601612408565b9150509250929050565b60008060006060848603121561255357612552612daf565b5b600061256186828701612408565b935050602061257286828701612408565b9250506040612583868287016124b8565b9150509250925092565b600080600080608085870312156125a7576125a6612daf565b5b60006125b587828801612408565b94505060206125c687828801612408565b93505060406125d7878288016124b8565b925050606085013567ffffffffffffffff8111156125f8576125f7612daa565b5b6126048782880161245c565b91505092959194509250565b6000806040838503121561262757612626612daf565b5b600061263585828601612408565b92505060206126468582860161241d565b9150509250929050565b6000806040838503121561266757612666612daf565b5b600061267585828601612408565b9250506020612686858286016124b8565b9150509250929050565b6000602082840312156126a6576126a5612daf565b5b60006126b48482850161241d565b91505092915050565b6000602082840312156126d3576126d2612daf565b5b60006126e184828501612432565b91505092915050565b600060208284031215612700576126ff612daf565b5b600061270e84828501612447565b91505092915050565b60006020828403121561272d5761272c612daf565b5b600082013567ffffffffffffffff81111561274b5761274a612daa565b5b6127578482850161248a565b91505092915050565b60006020828403121561277657612775612daf565b5b6000612784848285016124b8565b91505092915050565b61279681612bfa565b82525050565b6127a581612c0c565b82525050565b60006127b682612ac8565b6127c08185612ade565b93506127d0818560208601612c7d565b6127d981612db4565b840191505092915050565b60006127ef82612ad3565b6127f98185612afa565b9350612809818560208601612c7d565b61281281612db4565b840191505092915050565b600061282882612ad3565b6128328185612b0b565b9350612842818560208601612c7d565b80840191505092915050565b600061285b602683612afa565b915061286682612dc5565b604082019050919050565b600061287e602083612afa565b915061288982612e14565b602082019050919050565b60006128a1600083612aef565b91506128ac82612e3d565b600082019050919050565b60006128c4601283612afa565b91506128cf82612e40565b602082019050919050565b6128e381612c64565b82525050565b60006128f5828561281d565b9150612901828461281d565b91508190509392505050565b600061291882612894565b9150819050919050565b6000602082019050612937600083018461278d565b92915050565b6000608082019050612952600083018761278d565b61295f602083018661278d565b61296c60408301856128da565b818103606083015261297e81846127ab565b905095945050505050565b600060208201905061299e600083018461279c565b92915050565b600060208201905081810360008301526129be81846127e4565b905092915050565b600060208201905081810360008301526129df8161284e565b9050919050565b600060208201905081810360008301526129ff81612871565b9050919050565b60006020820190508181036000830152612a1f816128b7565b9050919050565b6000602082019050612a3b60008301846128da565b92915050565b6000612a4b612a5c565b9050612a578282612ce2565b919050565b6000604051905090565b600067ffffffffffffffff821115612a8157612a80612d71565b5b612a8a82612db4565b9050602081019050919050565b600067ffffffffffffffff821115612ab257612ab1612d71565b5b612abb82612db4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2182612c64565b9150612b2c83612c64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6157612b60612d13565b5b828201905092915050565b6000612b7782612c64565b9150612b8283612c64565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bbb57612bba612d13565b5b828202905092915050565b6000612bd182612c64565b9150612bdc83612c64565b925082821015612bef57612bee612d13565b5b828203905092915050565b6000612c0582612c44565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c9b578082015181840152602081019050612c80565b83811115612caa576000848401525b50505050565b60006002820490506001821680612cc857607f821691505b60208210811415612cdc57612cdb612d42565b5b50919050565b612ceb82612db4565b810181811067ffffffffffffffff82111715612d0a57612d09612d71565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4e6f7420656e6f75676820737570706c792e0000000000000000000000000000600082015250565b612e7281612bfa565b8114612e7d57600080fd5b50565b612e8981612c0c565b8114612e9457600080fd5b50565b612ea081612c18565b8114612eab57600080fd5b50565b612eb781612c64565b8114612ec257600080fd5b5056fea264697066735822122080c48ca9c61a72eee3accceee89f7ebc23cac64c95613c0221c52e02b1fb0d3664736f6c63430008070033

Deployed Bytecode Sourcemap

46754:2244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21412:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46918:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26425:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28493:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27953:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48621:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20466:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47051:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29379:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48843:152;;;:::i;:::-;;48418:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29620:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46852:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26214:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48184:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22091:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26594:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47092:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47365:813;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28769:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46883:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29876:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47005:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47134:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26769:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48519:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48740:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46955:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29148:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21412:615;21497:4;21812:10;21797:25;;:11;:25;;;;:102;;;;21889:10;21874:25;;:11;:25;;;;21797:102;:179;;;;21966:10;21951:25;;:11;:25;;;;21797:179;21777:199;;21412:615;;;:::o;46918:30::-;;;;:::o;26425:100::-;26479:13;26512:5;26505:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26425:100;:::o;28493:204::-;28561:7;28586:16;28594:7;28586;:16::i;:::-;28581:64;;28611:34;;;;;;;;;;;;;;28581:64;28665:15;:24;28681:7;28665:24;;;;;;;;;;;;;;;;;;;;;28658:31;;28493:204;;;:::o;27953:474::-;28026:13;28058:27;28077:7;28058:18;:27::i;:::-;28026:61;;28108:5;28102:11;;:2;:11;;;28098:48;;;28122:24;;;;;;;;;;;;;;28098:48;28186:5;28163:28;;:19;:17;:19::i;:::-;:28;;;28159:175;;28211:44;28228:5;28235:19;:17;:19::i;:::-;28211:16;:44::i;:::-;28206:128;;28283:35;;;;;;;;;;;;;;28206:128;28159:175;28373:2;28346:15;:24;28362:7;28346:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28411:7;28407:2;28391:28;;28400:5;28391:28;;;;;;;;;;;;28015:412;27953:474;;:::o;48621:111::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48712:12:::1;48697;:27;;;;48621:111:::0;:::o;20466:315::-;20519:7;20747:15;:13;:15::i;:::-;20732:12;;20716:13;;:28;:46;20709:53;;20466:315;:::o;47051:34::-;;;;:::o;29379:170::-;29513:28;29523:4;29529:2;29533:7;29513:9;:28::i;:::-;29379:170;;;:::o;48843:152::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48893:12:::1;48919:10;48911:24;;48943:21;48911:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48892:77;;;48982:7;48974:16;;;::::0;::::1;;48888:107;48843:152::o:0;48418:93::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48497:6:::1;48485:9;;:18;;;;;;;;;;;;;;;;;;48418:93:::0;:::o;29620:185::-;29758:39;29775:4;29781:2;29785:7;29758:39;;;;;;;;;;;;:16;:39::i;:::-;29620:185;;;:::o;46852:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26214:144::-;26278:7;26321:27;26340:7;26321:18;:27::i;:::-;26298:52;;26214:144;;;:::o;48184:226::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48276:20:::1;48299:13;:11;:13::i;:::-;48276:36;;48355:7;;48343:8;48328:12;:23;;;;:::i;:::-;:34;;48320:43;;;::::0;::::1;;48374:28;48384:7;48393:8;48374:9;:28::i;:::-;48266:144;48184:226:::0;;:::o;22091:224::-;22155:7;22196:1;22179:19;;:5;:19;;;22175:60;;;22207:28;;;;;;;;;;;;;;22175:60;17430:13;22253:18;:25;22272:5;22253:25;;;;;;;;;;;;;;;;:54;22246:61;;22091:224;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;26594:104::-;26650:13;26683:7;26676:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26594:104;:::o;47092:35::-;;;;:::o;47365:813::-;47423:12;47446:8;47438:5;;:16;;;;:::i;:::-;47423:31;;47464:20;47487:13;:11;:13::i;:::-;47464:36;;47519:9;;;;;;;;;;;47511:18;;;;;;47575:7;;47563:8;47548:12;:23;;;;:::i;:::-;:34;;47540:43;;;;;;47631:18;;47602:14;:26;47617:10;47602:26;;;;;;;;;;;;;;;;:47;47594:56;;;;;;47681:12;;47666;:27;:83;;;;;47726:23;;47697:14;:26;47712:10;47697:26;;;;;;;;;;;;;;;;:52;47666:83;47663:417;;;47781:23;;47769:8;:35;47766:213;;47825:22;47888:14;:26;47903:10;47888:26;;;;;;;;;;;;;;;;47862:23;;:52;;;;:::i;:::-;47850:8;:65;;;;:::i;:::-;47825:90;;47949:14;47941:5;;:22;;;;:::i;:::-;47934:29;;47806:173;47766:213;47663:417;;;48041:4;48028:9;:17;;48020:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;47663:417;48090:31;48100:10;48112:8;48090:9;:31::i;:::-;48162:8;48132:14;:26;48147:10;48132:26;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;47412:766;;47365:813;:::o;28769:308::-;28880:19;:17;:19::i;:::-;28868:31;;:8;:31;;;28864:61;;;28908:17;;;;;;;;;;;;;;28864:61;28990:8;28938:18;:39;28957:19;:17;:19::i;:::-;28938:39;;;;;;;;;;;;;;;:49;28978:8;28938:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29050:8;29014:55;;29029:19;:17;:19::i;:::-;29014:55;;;29060:8;29014:55;;;;;;:::i;:::-;;;;;;;;28769:308;;:::o;46883:28::-;;;;;;;;;;;;;:::o;29876:396::-;30043:28;30053:4;30059:2;30063:7;30043:9;:28::i;:::-;30104:1;30086:2;:14;;;:19;30082:183;;30125:56;30156:4;30162:2;30166:7;30175:5;30125:30;:56::i;:::-;30120:145;;30209:40;;;;;;;;;;;;;;30120:145;30082:183;29876:396;;;;:::o;47005:39::-;;;;:::o;47134:49::-;;;;;;;;;;;;;;;;;:::o;26769:318::-;26842:13;26873:16;26881:7;26873;:16::i;:::-;26868:59;;26898:29;;;;;;;;;;;;;;26868:59;26940:21;26964:10;:8;:10::i;:::-;26940:34;;27017:1;26998:7;26992:21;:26;;:87;;;;;;;;;;;;;;;;;27045:7;27054:18;27064:7;27054:9;:18::i;:::-;27028:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26992:87;26985:94;;;26769:318;;;:::o;48519:94::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48597:8:::1;48587:7;:18;;;;48519:94:::0;:::o;48740:95::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48824:3:::1;48811:10;:16;;;;;;;;;;;;:::i;:::-;;48740:95:::0;:::o;46955:42::-;;;;:::o;29148:164::-;29245:4;29269:18;:25;29288:5;29269:25;;;;;;;;;;;;;;;:35;29295:8;29269:35;;;;;;;;;;;;;;;;;;;;;;;;;29262:42;;29148:164;;;;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;;;7861:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;30527:273::-;30584:4;30640:7;30621:15;:13;:15::i;:::-;:26;;:66;;;;;30674:13;;30664:7;:23;30621:66;:152;;;;;30772:1;18200:8;30725:17;:26;30743:7;30725:26;;;;;;;;;;;;:43;:48;30621:152;30601:172;;30527:273;;;:::o;23729:1129::-;23796:7;23816:12;23831:7;23816:22;;23899:4;23880:15;:13;:15::i;:::-;:23;23876:915;;23933:13;;23926:4;:20;23922:869;;;23971:14;23988:17;:23;24006:4;23988:23;;;;;;;;;;;;23971:40;;24104:1;18200:8;24077:6;:23;:28;24073:699;;;24596:113;24613:1;24603:6;:11;24596:113;;;24656:17;:25;24674:6;;;;;;;24656:25;;;;;;;;;;;;24647:34;;24596:113;;;24742:6;24735:13;;;;;;24073:699;23948:843;23922:869;23876:915;24819:31;;;;;;;;;;;;;;23729:1129;;;;:::o;44509:105::-;44569:7;44596:10;44589:17;;44509:105;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;19989:92::-;20045:7;19989:92;:::o;35766:2515::-;35881:27;35911;35930:7;35911:18;:27::i;:::-;35881:57;;35996:4;35955:45;;35971:19;35955:45;;;35951:86;;36009:28;;;;;;;;;;;;;;35951:86;36050:22;36099:4;36076:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;36120:43;36137:4;36143:19;:17;:19::i;:::-;36120:16;:43::i;:::-;36076:87;:147;;;;36204:19;:17;:19::i;:::-;36180:43;;:20;36192:7;36180:11;:20::i;:::-;:43;;;36076:147;36050:174;;36242:17;36237:66;;36268:35;;;;;;;;;;;;;;36237:66;36332:1;36318:16;;:2;:16;;;36314:52;;;36343:23;;;;;;;;;;;;;;36314:52;36379:43;36401:4;36407:2;36411:7;36420:1;36379:21;:43::i;:::-;36495:15;:24;36511:7;36495:24;;;;;;;;;;;;36488:31;;;;;;;;;;;36887:18;:24;36906:4;36887:24;;;;;;;;;;;;;;;;36885:26;;;;;;;;;;;;36956:18;:22;36975:2;36956:22;;;;;;;;;;;;;;;;36954:24;;;;;;;;;;;18482:8;18084:3;37337:15;:41;;37295:21;37313:2;37295:17;:21::i;:::-;:84;:128;37249:17;:26;37267:7;37249:26;;;;;;;;;;;:174;;;;37593:1;18482:8;37543:19;:46;:51;37539:626;;;37615:19;37647:1;37637:7;:11;37615:33;;37804:1;37770:17;:30;37788:11;37770:30;;;;;;;;;;;;:35;37766:384;;;37908:13;;37893:11;:28;37889:242;;38088:19;38055:17;:30;38073:11;38055:30;;;;;;;;;;;:52;;;;37889:242;37766:384;37596:569;37539:626;38212:7;38208:2;38193:27;;38202:4;38193:27;;;;;;;;;;;;38231:42;38252:4;38258:2;38262:7;38271:1;38231:20;:42::i;:::-;35870:2411;;35766:2515;;;:::o;30884:104::-;30953:27;30963:2;30967:8;30953:27;;;;;;;;;;;;:9;:27::i;:::-;30884:104;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;41978:716::-;42141:4;42187:2;42162:45;;;42208:19;:17;:19::i;:::-;42229:4;42235:7;42244:5;42162:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42158:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42462:1;42445:6;:13;:18;42441:235;;;42491:40;;;;;;;;;;;;;;42441:235;42634:6;42628:13;42619:6;42615:2;42611:15;42604:38;42158:529;42331:54;;;42321:64;;;:6;:64;;;;42314:71;;;41978:716;;;;;;:::o;47248:111::-;47308:13;47341:10;47334:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47248:111;:::o;44720:1959::-;44777:17;45198:3;45191:4;45185:11;45181:21;45174:28;;45289:3;45283:4;45276:17;45395:3;45852:5;45982:1;45977:3;45973:11;45966:18;;46119:2;46113:4;46109:13;46105:2;46101:22;46096:3;46088:36;46160:2;46154:4;46150:13;46142:21;;45743:682;46179:4;45743:682;;;46354:1;46349:3;46345:11;46338:18;;46405:2;46399:4;46395:13;46391:2;46387:22;46382:3;46374:36;46275:2;46269:4;46265:13;46257:21;;45743:682;;;45747:431;46476:3;46471;46467:13;46591:2;46586:3;46582:12;46575:19;;46654:6;46649:3;46642:19;44816:1856;;44720:1959;;;:::o;43342:159::-;;;;;:::o;27514:148::-;27578:14;27639:5;27629:15;;27514:148;;;:::o;44160:158::-;;;;;:::o;31361:2236::-;31484:20;31507:13;;31484:36;;31549:1;31535:16;;:2;:16;;;31531:48;;;31560:19;;;;;;;;;;;;;;31531:48;31606:1;31594:8;:13;31590:44;;;31616:18;;;;;;;;;;;;;;31590:44;31647:61;31677:1;31681:2;31685:12;31699:8;31647:21;:61::i;:::-;32251:1;17567:2;32222:1;:25;;32221:31;32209:8;:44;32183:18;:22;32202:2;32183:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18347:3;32652:29;32679:1;32667:8;:13;32652:14;:29::i;:::-;:56;;18084:3;32589:15;:41;;32547:21;32565:2;32547:17;:21::i;:::-;:84;:162;32496:17;:31;32514:12;32496:31;;;;;;;;;;;:213;;;;32726:20;32749:12;32726:35;;32776:11;32805:8;32790:12;:23;32776:37;;32852:1;32834:2;:14;;;:19;32830:635;;32874:313;32930:12;32926:2;32905:38;;32922:1;32905:38;;;;;;;;;;;;32971:69;33010:1;33014:2;33018:14;;;;;;33034:5;32971:30;:69::i;:::-;32966:174;;33076:40;;;;;;;;;;;;;;32966:174;33182:3;33167:12;:18;32874:313;;33268:12;33251:13;;:29;33247:43;;33282:8;;;33247:43;32830:635;;;33331:119;33387:14;;;;;;33383:2;33362:40;;33379:1;33362:40;;;;;;;;;;;;33445:3;33430:12;:18;33331:119;;32830:635;33495:12;33479:13;:28;;;;31960:1559;;33529:60;33558:1;33562:2;33566:12;33580:8;33529:20;:60::i;:::-;31473:2124;31361:2236;;;:::o;27749:142::-;27807:14;27868:5;27858:15;;27749:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:398::-;9748:3;9769:83;9850:1;9845:3;9769:83;:::i;:::-;9762:90;;9861:93;9950:3;9861:93;:::i;:::-;9979:1;9974:3;9970:11;9963:18;;9589:398;;;:::o;9993:366::-;10135:3;10156:67;10220:2;10215:3;10156:67;:::i;:::-;10149:74;;10232:93;10321:3;10232:93;:::i;:::-;10350:2;10345:3;10341:12;10334:19;;9993:366;;;:::o;10365:118::-;10452:24;10470:5;10452:24;:::i;:::-;10447:3;10440:37;10365:118;;:::o;10489:435::-;10669:3;10691:95;10782:3;10773:6;10691:95;:::i;:::-;10684:102;;10803:95;10894:3;10885:6;10803:95;:::i;:::-;10796:102;;10915:3;10908:10;;10489:435;;;;;:::o;10930:379::-;11114:3;11136:147;11279:3;11136:147;:::i;:::-;11129:154;;11300:3;11293:10;;10930:379;;;:::o;11315:222::-;11408:4;11446:2;11435:9;11431:18;11423:26;;11459:71;11527:1;11516:9;11512:17;11503:6;11459:71;:::i;:::-;11315:222;;;;:::o;11543:640::-;11738:4;11776:3;11765:9;11761:19;11753:27;;11790:71;11858:1;11847:9;11843:17;11834:6;11790:71;:::i;:::-;11871:72;11939:2;11928:9;11924:18;11915:6;11871:72;:::i;:::-;11953;12021:2;12010:9;12006:18;11997:6;11953:72;:::i;:::-;12072:9;12066:4;12062:20;12057:2;12046:9;12042:18;12035:48;12100:76;12171:4;12162:6;12100:76;:::i;:::-;12092:84;;11543:640;;;;;;;:::o;12189:210::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12327:65;12389:1;12378:9;12374:17;12365:6;12327:65;:::i;:::-;12189:210;;;;:::o;12405:313::-;12518:4;12556:2;12545:9;12541:18;12533:26;;12605:9;12599:4;12595:20;12591:1;12580:9;12576:17;12569:47;12633:78;12706:4;12697:6;12633:78;:::i;:::-;12625:86;;12405:313;;;;:::o;12724:419::-;12890:4;12928:2;12917:9;12913:18;12905:26;;12977:9;12971:4;12967:20;12963:1;12952:9;12948:17;12941:47;13005:131;13131:4;13005:131;:::i;:::-;12997:139;;12724:419;;;:::o;13149:::-;13315:4;13353:2;13342:9;13338:18;13330:26;;13402:9;13396:4;13392:20;13388:1;13377:9;13373:17;13366:47;13430:131;13556:4;13430:131;:::i;:::-;13422:139;;13149:419;;;:::o;13574:::-;13740:4;13778:2;13767:9;13763:18;13755:26;;13827:9;13821:4;13817:20;13813:1;13802:9;13798:17;13791:47;13855:131;13981:4;13855:131;:::i;:::-;13847:139;;13574:419;;;:::o;13999:222::-;14092:4;14130:2;14119:9;14115:18;14107:26;;14143:71;14211:1;14200:9;14196:17;14187:6;14143:71;:::i;:::-;13999:222;;;;:::o;14227:129::-;14261:6;14288:20;;:::i;:::-;14278:30;;14317:33;14345:4;14337:6;14317:33;:::i;:::-;14227:129;;;:::o;14362:75::-;14395:6;14428:2;14422:9;14412:19;;14362:75;:::o;14443:307::-;14504:4;14594:18;14586:6;14583:30;14580:56;;;14616:18;;:::i;:::-;14580:56;14654:29;14676:6;14654:29;:::i;:::-;14646:37;;14738:4;14732;14728:15;14720:23;;14443:307;;;:::o;14756:308::-;14818:4;14908:18;14900:6;14897:30;14894:56;;;14930:18;;:::i;:::-;14894:56;14968:29;14990:6;14968:29;:::i;:::-;14960:37;;15052:4;15046;15042:15;15034:23;;14756:308;;;:::o;15070:98::-;15121:6;15155:5;15149:12;15139:22;;15070:98;;;:::o;15174:99::-;15226:6;15260:5;15254:12;15244:22;;15174:99;;;:::o;15279:168::-;15362:11;15396:6;15391:3;15384:19;15436:4;15431:3;15427:14;15412:29;;15279:168;;;;:::o;15453:147::-;15554:11;15591:3;15576:18;;15453:147;;;;:::o;15606:169::-;15690:11;15724:6;15719:3;15712:19;15764:4;15759:3;15755:14;15740:29;;15606:169;;;;:::o;15781:148::-;15883:11;15920:3;15905:18;;15781:148;;;;:::o;15935:305::-;15975:3;15994:20;16012:1;15994:20;:::i;:::-;15989:25;;16028:20;16046:1;16028:20;:::i;:::-;16023:25;;16182:1;16114:66;16110:74;16107:1;16104:81;16101:107;;;16188:18;;:::i;:::-;16101:107;16232:1;16229;16225:9;16218:16;;15935:305;;;;:::o;16246:348::-;16286:7;16309:20;16327:1;16309:20;:::i;:::-;16304:25;;16343:20;16361:1;16343:20;:::i;:::-;16338:25;;16531:1;16463:66;16459:74;16456:1;16453:81;16448:1;16441:9;16434:17;16430:105;16427:131;;;16538:18;;:::i;:::-;16427:131;16586:1;16583;16579:9;16568:20;;16246:348;;;;:::o;16600:191::-;16640:4;16660:20;16678:1;16660:20;:::i;:::-;16655:25;;16694:20;16712:1;16694:20;:::i;:::-;16689:25;;16733:1;16730;16727:8;16724:34;;;16738:18;;:::i;:::-;16724:34;16783:1;16780;16776:9;16768:17;;16600:191;;;;:::o;16797:96::-;16834:7;16863:24;16881:5;16863:24;:::i;:::-;16852:35;;16797:96;;;:::o;16899:90::-;16933:7;16976:5;16969:13;16962:21;16951:32;;16899:90;;;:::o;16995:149::-;17031:7;17071:66;17064:5;17060:78;17049:89;;16995:149;;;:::o;17150:126::-;17187:7;17227:42;17220:5;17216:54;17205:65;;17150:126;;;:::o;17282:77::-;17319:7;17348:5;17337:16;;17282:77;;;:::o;17365:154::-;17449:6;17444:3;17439;17426:30;17511:1;17502:6;17497:3;17493:16;17486:27;17365:154;;;:::o;17525:307::-;17593:1;17603:113;17617:6;17614:1;17611:13;17603:113;;;17702:1;17697:3;17693:11;17687:18;17683:1;17678:3;17674:11;17667:39;17639:2;17636:1;17632:10;17627:15;;17603:113;;;17734:6;17731:1;17728:13;17725:101;;;17814:1;17805:6;17800:3;17796:16;17789:27;17725:101;17574:258;17525:307;;;:::o;17838:320::-;17882:6;17919:1;17913:4;17909:12;17899:22;;17966:1;17960:4;17956:12;17987:18;17977:81;;18043:4;18035:6;18031:17;18021:27;;17977:81;18105:2;18097:6;18094:14;18074:18;18071:38;18068:84;;;18124:18;;:::i;:::-;18068:84;17889:269;17838:320;;;:::o;18164:281::-;18247:27;18269:4;18247:27;:::i;:::-;18239:6;18235:40;18377:6;18365:10;18362:22;18341:18;18329:10;18326:34;18323:62;18320:88;;;18388:18;;:::i;:::-;18320:88;18428:10;18424:2;18417:22;18207:238;18164:281;;:::o;18451:180::-;18499:77;18496:1;18489:88;18596:4;18593:1;18586:15;18620:4;18617:1;18610:15;18637:180;18685:77;18682:1;18675:88;18782:4;18779:1;18772:15;18806:4;18803:1;18796:15;18823:180;18871:77;18868:1;18861:88;18968:4;18965:1;18958:15;18992:4;18989:1;18982:15;19009:117;19118:1;19115;19108:12;19132:117;19241:1;19238;19231:12;19255:117;19364:1;19361;19354:12;19378:117;19487:1;19484;19477:12;19501:102;19542:6;19593:2;19589:7;19584:2;19577:5;19573:14;19569:28;19559:38;;19501:102;;;:::o;19609:225::-;19749:34;19745:1;19737:6;19733:14;19726:58;19818:8;19813:2;19805:6;19801:15;19794:33;19609:225;:::o;19840:182::-;19980:34;19976:1;19968:6;19964:14;19957:58;19840:182;:::o;20028:114::-;;:::o;20148:168::-;20288:20;20284:1;20276:6;20272:14;20265:44;20148:168;:::o;20322:122::-;20395:24;20413:5;20395:24;:::i;:::-;20388:5;20385:35;20375:63;;20434:1;20431;20424:12;20375:63;20322:122;:::o;20450:116::-;20520:21;20535:5;20520:21;:::i;:::-;20513:5;20510:32;20500:60;;20556:1;20553;20546:12;20500:60;20450:116;:::o;20572:120::-;20644:23;20661:5;20644:23;:::i;:::-;20637:5;20634:34;20624:62;;20682:1;20679;20672:12;20624:62;20572:120;:::o;20698:122::-;20771:24;20789:5;20771:24;:::i;:::-;20764:5;20761:35;20751:63;;20810:1;20807;20800:12;20751:63;20698:122;:::o

Swarm Source

ipfs://80c48ca9c61a72eee3accceee89f7ebc23cac64c95613c0221c52e02b1fb0d36
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.