ETH Price: $3,057.01 (+1.09%)
Gas: 3 Gwei

Shiboshis Club X Bugatti Group (SCB)
 

Overview

TokenID

103

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
ShiboshisClubXBugattiGroup

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : ShiboshisClubXBugattiGroup.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {DefaultOperatorFilterer} from "./Opensea/DefaultOperatorFilterer.sol";

// ░██████╗██╗░░██╗██╗██████╗░░█████╗░░██████╗██╗░░██╗██╗░██████╗  ░█████╗░██╗░░░░░██╗░░░██╗██████╗░
// ██╔════╝██║░░██║██║██╔══██╗██╔══██╗██╔════╝██║░░██║██║██╔════╝  ██╔══██╗██║░░░░░██║░░░██║██╔══██╗
// ╚█████╗░███████║██║██████╦╝██║░░██║╚█████╗░███████║██║╚█████╗░  ██║░░╚═╝██║░░░░░██║░░░██║██████╦╝
// ░╚═══██╗██╔══██║██║██╔══██╗██║░░██║░╚═══██╗██╔══██║██║░╚═══██╗  ██║░░██╗██║░░░░░██║░░░██║██╔══██╗
// ██████╔╝██║░░██║██║██████╦╝╚█████╔╝██████╔╝██║░░██║██║██████╔╝  ╚█████╔╝███████╗╚██████╔╝██████╦╝
// ╚═════╝░╚═╝░░╚═╝╚═╝╚═════╝░░╚════╝░╚═════╝░╚═╝░░╚═╝╚═╝╚═════╝░  ░╚════╝░╚══════╝░╚═════╝░╚═════╝░
// ██╗░░██╗  ██████╗░██╗░░░██╗░██████╗░░█████╗░████████╗████████╗██╗  ░██████╗░██████╗░░█████╗░██╗░░░██╗██████╗░
// ╚██╗██╔╝  ██╔══██╗██║░░░██║██╔════╝░██╔══██╗╚══██╔══╝╚══██╔══╝██║  ██╔════╝░██╔══██╗██╔══██╗██║░░░██║██╔══██╗
// ░╚███╔╝░  ██████╦╝██║░░░██║██║░░██╗░███████║░░░██║░░░░░░██║░░░██║  ██║░░██╗░██████╔╝██║░░██║██║░░░██║██████╔╝
// ░██╔██╗░  ██╔══██╗██║░░░██║██║░░╚██╗██╔══██║░░░██║░░░░░░██║░░░██║  ██║░░╚██╗██╔══██╗██║░░██║██║░░░██║██╔═══╝░
// ██╔╝╚██╗  ██████╦╝╚██████╔╝╚██████╔╝██║░░██║░░░██║░░░░░░██║░░░██║  ╚██████╔╝██║░░██║╚█████╔╝╚██████╔╝██║░░░░░
// ╚═╝░░╚═╝  ╚═════╝░░╚═════╝░░╚═════╝░╚═╝░░╚═╝░░░╚═╝░░░░░░╚═╝░░░╚═╝  ░╚═════╝░╚═╝░░╚═╝░╚════╝░░╚═════╝░╚═╝░░░░░

// Powered by https://nalikes.com

contract ShiboshisClubXBugattiGroup is ERC721AQueryable, DefaultOperatorFilterer, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public uriSuffix = "";
    string public baseURI;
    string public claimedURI;

    uint256 public cost = 0.14 ether;
    uint256 public maxSupply = 299;
    uint256 public maxMintAmountPerTx = 5;
    
    bool public paused = false;

    mapping(uint256 => bool) public claimed;

    constructor() ERC721A("Shiboshis Club X Bugatti Group", "SCB") {}

    //******************************* MODIFIERS

    modifier mintCompliance(uint256 _mintAmount) {
        require(totalSupply() + _mintAmount <= maxSupply, "MINT: Max Supply Exceeded.");
        require(_mintAmount <= maxMintAmountPerTx, "MINT: Invalid Amount.");
        _;
    }

    modifier mintPriceCompliance(uint256 _mintAmount) {
        require(msg.value >= cost * _mintAmount, "MINT: Insufficient funds.");
        _;
    }

    modifier notPaused() {
        require(!paused, "Contract Paused.");
        _;
    }

    //******************************* MINT

    function mint(uint256 _mintAmount) public payable notPaused mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {

        require(tx.origin == msg.sender, "PUBLIC Mint: Caller is another contract.");
        _safeMint(_msgSender(), _mintAmount);
    }

    // @dev Admin mint
    function mintForAddress(address _receiver, uint256 _mintAmount) public notPaused mintCompliance(_mintAmount) onlyOwner {

        _safeMint(_receiver, _mintAmount);
    }

    //******************************* OVERRIDES

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

    function tokenURI(uint256 _tokenId) public view virtual override (ERC721A, IERC721A) returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");

        if (claimed[_tokenId]) {
            string memory currentClaimedURI = claimedURI;
            return bytes(currentClaimedURI).length > 0 ? string(abi.encodePacked(currentClaimedURI, _tokenId.toString(), uriSuffix)) : "";        
        }

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

    function transferFrom(address from, address to, uint256 tokenId) public payable override (ERC721A, IERC721A) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

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

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override (ERC721A, IERC721A) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    //******************************* CRUD

    // URI'S

    function setBaseURI(string memory _metadataURI) public onlyOwner {
        baseURI = _metadataURI;
    }

    function setClaimedUri(string memory _claimedURI) public onlyOwner {
        claimedURI = _claimedURI;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    // UINT'S

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(_newMaxSupply >= totalSupply() && _newMaxSupply <= maxSupply, "Invalid Max Supply.");
        maxSupply = _newMaxSupply;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    // BOOL's

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    // CLAIM

    function claim(uint256[] calldata _tokenIds) external notPaused onlyOwner {

        for (uint256 i = 0; i < _tokenIds.length; i ++) {
            require(!claimed[_tokenIds[i]], "CLAIM: Token Already Claimed.");
            claimed[_tokenIds[i]] = true;
        }
    }

    //******************************* WITHDRAW

    function withdraw() public onlyOwner nonReentrant {
        
        uint256 balance = address(this).balance;

        bool success;
        (success, ) = payable(0x5999d8aB90A1C460fB63fbA06bbBbe3D6aF64183).call{value: balance}("");
        require(success, "Transaction Unsuccessful");
    }
}

File 2 of 12 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

File 3 of 12 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// 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 4 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 5 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 6 of 12 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 7 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 8 of 12 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 9 of 12 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

File 10 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// 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 11 of 12 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 12 of 12 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_claimedURI","type":"string"}],"name":"setClaimedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90816200002491906200069a565b506701f161421c8e0000600d5561012b600e556005600f556000601060006101000a81548160ff0219169083151502179055503480156200006457600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601e81526020017f536869626f7368697320436c7562205820427567617474692047726f757000008152506040518060400160405280600381526020017f53434200000000000000000000000000000000000000000000000000000000008152508160029081620000f991906200069a565b5080600390816200010b91906200069a565b506200011c6200034960201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000319578015620001df576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001a5929190620007c6565b600060405180830381600087803b158015620001c057600080fd5b505af1158015620001d5573d6000803e3d6000fd5b5050505062000318565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000299576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025f929190620007c6565b600060405180830381600087803b1580156200027a57600080fd5b505af11580156200028f573d6000803e3d6000fd5b5050505062000317565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e29190620007f3565b600060405180830381600087803b158015620002fd57600080fd5b505af115801562000312573d6000803e3d6000fd5b505050505b5b5b50506200033b6200032f6200035260201b60201c565b6200035a60201b60201c565b600160098190555062000810565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004a257607f821691505b602082108103620004b857620004b76200045a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004e3565b6200052e8683620004e3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200057b620005756200056f8462000546565b62000550565b62000546565b9050919050565b6000819050919050565b62000597836200055a565b620005af620005a68262000582565b848454620004f0565b825550505050565b600090565b620005c6620005b7565b620005d38184846200058c565b505050565b5b81811015620005fb57620005ef600082620005bc565b600181019050620005d9565b5050565b601f8211156200064a576200061481620004be565b6200061f84620004d3565b810160208510156200062f578190505b620006476200063e85620004d3565b830182620005d8565b50505b505050565b600082821c905092915050565b60006200066f600019846008026200064f565b1980831691505092915050565b60006200068a83836200065c565b9150826002028217905092915050565b620006a58262000420565b67ffffffffffffffff811115620006c157620006c06200042b565b5b620006cd825462000489565b620006da828285620005ff565b600060209050601f831160018114620007125760008415620006fd578287015190505b6200070985826200067c565b86555062000779565b601f1984166200072286620004be565b60005b828110156200074c5784890151825560018201915060208501945060208101905062000725565b868310156200076c578489015162000768601f8916826200065c565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007ae8262000781565b9050919050565b620007c081620007a1565b82525050565b6000604082019050620007dd6000830185620007b5565b620007ec6020830184620007b5565b9392505050565b60006020820190506200080a6000830184620007b5565b92915050565b61499280620008206000396000f3fe60806040526004361061023b5760003560e01c80636f8b44b01161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461083e578063dbe7e3bd14610869578063e985e9c5146108a6578063f254933d146108e3578063f2fde38b1461090c5761023b565b8063a22cb46514610756578063b071401b1461077f578063b88d4fde146107a8578063c23dc68f146107c4578063c87b56dd146108015761023b565b806394354fd0116100f257806394354fd01461067e57806395d89b41146106a957806398d5b9c4146106d457806399a2557a146106fd578063a0712d681461073a5761023b565b80636f8b44b01461059957806370a08231146105c2578063715018a6146105ff5780638462151c146106165780638da5cb5b146106535761023b565b80633ccfd60b116101bc5780635bbb2177116101805780635bbb2177146104a05780635c975abb146104dd5780636352211e146105085780636ba4c138146105455780636c0360eb1461056e5761023b565b80633ccfd60b146103f057806342842e0e1461040757806344a0d68a146104235780635503a0e81461044c57806355f804b3146104775761023b565b806316ba10e01161020357806316ba10e01461032c57806316c38b3c1461035557806318160ddd1461037e5780631f0953b6146103a957806323b872dd146103d45761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede614610301575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613283565b610935565b60405161027491906132cb565b60405180910390f35b34801561028957600080fd5b506102926109c7565b60405161029f9190613376565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906133ce565b610a59565b6040516102dc919061343c565b60405180910390f35b6102ff60048036038101906102fa9190613483565b610ad8565b005b34801561030d57600080fd5b50610316610c1c565b60405161032391906134d2565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190613622565b610c22565b005b34801561036157600080fd5b5061037c60048036038101906103779190613697565b610c3d565b005b34801561038a57600080fd5b50610393610c62565b6040516103a091906134d2565b60405180910390f35b3480156103b557600080fd5b506103be610c79565b6040516103cb9190613376565b60405180910390f35b6103ee60048036038101906103e991906136c4565b610d07565b005b3480156103fc57600080fd5b50610405610ee9565b005b610421600480360381019061041c91906136c4565b611011565b005b34801561042f57600080fd5b5061044a600480360381019061044591906133ce565b6111f3565b005b34801561045857600080fd5b50610461611205565b60405161046e9190613376565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190613622565b611293565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613777565b6112ae565b6040516104d49190613927565b60405180910390f35b3480156104e957600080fd5b506104f2611371565b6040516104ff91906132cb565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a91906133ce565b611384565b60405161053c919061343c565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613777565b611396565b005b34801561057a57600080fd5b506105836114d3565b6040516105909190613376565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb91906133ce565b611561565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190613949565b6115cb565b6040516105f691906134d2565b60405180910390f35b34801561060b57600080fd5b50610614611683565b005b34801561062257600080fd5b5061063d60048036038101906106389190613949565b611697565b60405161064a9190613a34565b60405180910390f35b34801561065f57600080fd5b506106686117da565b604051610675919061343c565b60405180910390f35b34801561068a57600080fd5b50610693611804565b6040516106a091906134d2565b60405180910390f35b3480156106b557600080fd5b506106be61180a565b6040516106cb9190613376565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190613622565b61189c565b005b34801561070957600080fd5b50610724600480360381019061071f9190613a56565b6118b7565b6040516107319190613a34565b60405180910390f35b610754600480360381019061074f91906133ce565b611ac3565b005b34801561076257600080fd5b5061077d60048036038101906107789190613aa9565b611c85565b005b34801561078b57600080fd5b506107a660048036038101906107a191906133ce565b611d90565b005b6107c260048036038101906107bd9190613b8a565b611da2565b005b3480156107d057600080fd5b506107eb60048036038101906107e691906133ce565b611f87565b6040516107f89190613c62565b60405180910390f35b34801561080d57600080fd5b50610828600480360381019061082391906133ce565b611ff1565b6040516108359190613376565b60405180910390f35b34801561084a57600080fd5b506108536121a5565b60405161086091906134d2565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b91906133ce565b6121ab565b60405161089d91906132cb565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c89190613c7d565b6121cb565b6040516108da91906132cb565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613483565b61225f565b005b34801561091857600080fd5b50610933600480360381019061092e9190613949565b612363565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109d690613cec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0290613cec565b8015610a4f5780601f10610a2457610100808354040283529160200191610a4f565b820191906000526020600020905b815481529060010190602001808311610a3257829003601f168201915b5050505050905090565b6000610a64826123e6565b610a9a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae382611384565b90508073ffffffffffffffffffffffffffffffffffffffff16610b04612445565b73ffffffffffffffffffffffffffffffffffffffff1614610b6757610b3081610b2b612445565b6121cb565b610b66576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c2a61244d565b80600a9081610c399190613ec9565b5050565b610c4561244d565b80601060006101000a81548160ff02191690831515021790555050565b6000610c6c6124cb565b6001546000540303905090565b600c8054610c8690613cec565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb290613cec565b8015610cff5780601f10610cd457610100808354040283529160200191610cff565b820191906000526020600020905b815481529060010190602001808311610ce257829003601f168201915b505050505081565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ed7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7957610d748484846124d4565b610ee3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dc2929190613f9b565b602060405180830381865afa158015610ddf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e039190613fd9565b8015610e9557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e53929190613f9b565b602060405180830381865afa158015610e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e949190613fd9565b5b610ed657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ecd919061343c565b60405180910390fd5b5b610ee28484846124d4565b5b50505050565b610ef161244d565b600260095403610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90614052565b60405180910390fd5b600260098190555060004790506000735999d8ab90a1c460fb63fba06bbbbe3d6af6418373ffffffffffffffffffffffffffffffffffffffff1682604051610f7d906140a3565b60006040518083038185875af1925050503d8060008114610fba576040519150601f19603f3d011682016040523d82523d6000602084013e610fbf565b606091505b50508091505080611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90614104565b60405180910390fd5b50506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111e1573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110835761107e8484846127f6565b6111ed565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110cc929190613f9b565b602060405180830381865afa1580156110e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110d9190613fd9565b801561119f57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161115d929190613f9b565b602060405180830381865afa15801561117a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119e9190613fd9565b5b6111e057336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111d7919061343c565b60405180910390fd5b5b6111ec8484846127f6565b5b50505050565b6111fb61244d565b80600d8190555050565b600a805461121290613cec565b80601f016020809104026020016040519081016040528092919081815260200182805461123e90613cec565b801561128b5780601f106112605761010080835404028352916020019161128b565b820191906000526020600020905b81548152906001019060200180831161126e57829003601f168201915b505050505081565b61129b61244d565b80600b90816112aa9190613ec9565b5050565b6060600083839050905060008167ffffffffffffffff8111156112d4576112d36134f7565b5b60405190808252806020026020018201604052801561130d57816020015b6112fa6131c8565b8152602001906001900390816112f25790505b50905060005b8281146113655761133c8686838181106113305761132f614124565b5b90506020020135611f87565b82828151811061134f5761134e614124565b5b6020026020010181905250806001019050611313565b50809250505092915050565b601060009054906101000a900460ff1681565b600061138f82612816565b9050919050565b601060009054906101000a900460ff16156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061419f565b60405180910390fd5b6113ee61244d565b60005b828290508110156114ce576011600084848481811061141357611412614124565b5b90506020020135815260200190815260200160002060009054906101000a900460ff1615611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d9061420b565b60405180910390fd5b60016011600085858581811061148f5761148e614124565b5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555080806114c69061425a565b9150506113f1565b505050565b600b80546114e090613cec565b80601f016020809104026020016040519081016040528092919081815260200182805461150c90613cec565b80156115595780601f1061152e57610100808354040283529160200191611559565b820191906000526020600020905b81548152906001019060200180831161153c57829003601f168201915b505050505081565b61156961244d565b611571610c62565b81101580156115825750600e548111155b6115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906142ee565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611632576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61168b61244d565b61169560006128e2565b565b606060008060006116a7856115cb565b905060008167ffffffffffffffff8111156116c5576116c46134f7565b5b6040519080825280602002602001820160405280156116f35781602001602082028036833780820191505090505b5090506116fe6131c8565b60006117086124cb565b90505b8386146117cc5761171b816129a8565b915081604001516117c157600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461176657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117c057808387806001019850815181106117b3576117b2614124565b5b6020026020010181815250505b5b80600101905061170b565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461181990613cec565b80601f016020809104026020016040519081016040528092919081815260200182805461184590613cec565b80156118925780601f1061186757610100808354040283529160200191611892565b820191906000526020600020905b81548152906001019060200180831161187557829003601f168201915b5050505050905090565b6118a461244d565b80600c90816118b39190613ec9565b5050565b60608183106118f2576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806118fd6129d3565b90506119076124cb565b851015611919576119166124cb565b94505b80841115611925578093505b6000611930876115cb565b90508486101561195357600086860390508181101561194d578091505b50611958565b600090505b60008167ffffffffffffffff811115611974576119736134f7565b5b6040519080825280602002602001820160405280156119a25781602001602082028036833780820191505090505b509050600082036119b95780945050505050611abc565b60006119c488611f87565b9050600081604001516119d957816000015190505b60008990505b8881141580156119ef5750848714155b15611aae576119fd816129a8565b92508260400151611aa357600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611a4857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aa25780848880600101995081518110611a9557611a94614124565b5b6020026020010181815250505b5b8060010190506119df565b508583528296505050505050505b9392505050565b601060009054906101000a900460ff1615611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a9061419f565b60405180910390fd5b80600e5481611b20610c62565b611b2a919061430e565b1115611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b629061438e565b60405180910390fd5b600f54811115611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906143fa565b60405180910390fd5b8180600d54611bbf919061441a565b341015611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf8906144a8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c669061453a565b60405180910390fd5b611c80611c7a6129dc565b846129e4565b505050565b8060076000611c92612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d3f612445565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8491906132cb565b60405180910390a35050565b611d9861244d565b80600f8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f73573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e1557611e1085858585612a02565b611f80565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611e5e929190613f9b565b602060405180830381865afa158015611e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9f9190613fd9565b8015611f3157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611eef929190613f9b565b602060405180830381865afa158015611f0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f309190613fd9565b5b611f7257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611f69919061343c565b60405180910390fd5b5b611f7f85858585612a02565b5b5050505050565b611f8f6131c8565b611f976131c8565b611f9f6124cb565b831080611fb35750611faf6129d3565b8310155b15611fc15780915050611fec565b611fca836129a8565b9050806040015115611fdf5780915050611fec565b611fe883612a75565b9150505b919050565b6060611ffc826123e6565b61203b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612032906145a6565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff1615612144576000600c805461207090613cec565b80601f016020809104026020016040519081016040528092919081815260200182805461209c90613cec565b80156120e95780601f106120be576101008083540402835291602001916120e9565b820191906000526020600020905b8154815290600101906020018083116120cc57829003601f168201915b50505050509050600081511161210e576040518060200160405280600081525061213c565b8061211884612a95565b600a60405160200161212c93929190614685565b6040516020818303038152906040525b9150506121a0565b600061214e612bf5565b9050600081511161216e576040518060200160405280600081525061219c565b8061217884612a95565b600a60405160200161218c93929190614685565b6040516020818303038152906040525b9150505b919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff16156122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a69061419f565b60405180910390fd5b80600e54816122bc610c62565b6122c6919061430e565b1115612307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fe9061438e565b60405180910390fd5b600f5481111561234c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612343906143fa565b60405180910390fd5b61235461244d565b61235e83836129e4565b505050565b61236b61244d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614728565b60405180910390fd5b6123e3816128e2565b50565b6000816123f16124cb565b11158015612400575060005482105b801561243e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6124556129dc565b73ffffffffffffffffffffffffffffffffffffffff166124736117da565b73ffffffffffffffffffffffffffffffffffffffff16146124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614794565b60405180910390fd5b565b60006001905090565b60006124df82612816565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612546576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061255284612c87565b915091506125688187612563612445565b612cae565b6125b45761257d86612578612445565b6121cb565b6125b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361261a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126278686866001612cf2565b801561263257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612700856126dc888887612cf8565b7c020000000000000000000000000000000000000000000000000000000017612d20565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036127865760006001850190506000600460008381526020019081526020016000205403612784576000548114612783578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127ee8686866001612d4b565b505050505050565b61281183838360405180602001604052806000815250611da2565b505050565b600080829050806128256124cb565b116128ab576000548110156128aa5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036128a8575b6000810361289e576004600083600190039350838152602001908152602001600020549050612874565b80925050506128dd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129b06131c8565b6129cc6004600084815260200190815260200160002054612d51565b9050919050565b60008054905090565b600033905090565b6129fe828260405180602001604052806000815250612e07565b5050565b612a0d848484610d07565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a6f57612a3884848484612ea4565b612a6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612a7d6131c8565b612a8e612a8983612816565b612d51565b9050919050565b606060008203612adc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bf0565b600082905060005b60008214612b0e578080612af79061425a565b915050600a82612b0791906147e3565b9150612ae4565b60008167ffffffffffffffff811115612b2a57612b296134f7565b5b6040519080825280601f01601f191660200182016040528015612b5c5781602001600182028036833780820191505090505b5090505b60008514612be957600182612b759190614814565b9150600a85612b849190614848565b6030612b90919061430e565b60f81b818381518110612ba657612ba5614124565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612be291906147e3565b9450612b60565b8093505050505b919050565b6060600b8054612c0490613cec565b80601f0160208091040260200160405190810160405280929190818152602001828054612c3090613cec565b8015612c7d5780601f10612c5257610100808354040283529160200191612c7d565b820191906000526020600020905b815481529060010190602001808311612c6057829003601f168201915b5050505050905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d0f868684612ff4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612d596131c8565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612e118383612ffd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e9f57600080549050600083820390505b612e516000868380600101945086612ea4565b612e87576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e3e578160005414612e9c57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eca612445565b8786866040518563ffffffff1660e01b8152600401612eec94939291906148ce565b6020604051808303816000875af1925050508015612f2857506040513d601f19601f82011682018060405250810190612f25919061492f565b60015b612fa1573d8060008114612f58576040519150601f19603f3d011682016040523d82523d6000602084013e612f5d565b606091505b506000815103612f99576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361303d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61304a6000848385612cf2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506130c1836130b26000866000612cf8565b6130bb856131b8565b17612d20565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461316257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613127565b506000820361319d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506131b36000848385612d4b565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132608161322b565b811461326b57600080fd5b50565b60008135905061327d81613257565b92915050565b60006020828403121561329957613298613221565b5b60006132a78482850161326e565b91505092915050565b60008115159050919050565b6132c5816132b0565b82525050565b60006020820190506132e060008301846132bc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613320578082015181840152602081019050613305565b60008484015250505050565b6000601f19601f8301169050919050565b6000613348826132e6565b61335281856132f1565b9350613362818560208601613302565b61336b8161332c565b840191505092915050565b60006020820190508181036000830152613390818461333d565b905092915050565b6000819050919050565b6133ab81613398565b81146133b657600080fd5b50565b6000813590506133c8816133a2565b92915050565b6000602082840312156133e4576133e3613221565b5b60006133f2848285016133b9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613426826133fb565b9050919050565b6134368161341b565b82525050565b6000602082019050613451600083018461342d565b92915050565b6134608161341b565b811461346b57600080fd5b50565b60008135905061347d81613457565b92915050565b6000806040838503121561349a57613499613221565b5b60006134a88582860161346e565b92505060206134b9858286016133b9565b9150509250929050565b6134cc81613398565b82525050565b60006020820190506134e760008301846134c3565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61352f8261332c565b810181811067ffffffffffffffff8211171561354e5761354d6134f7565b5b80604052505050565b6000613561613217565b905061356d8282613526565b919050565b600067ffffffffffffffff82111561358d5761358c6134f7565b5b6135968261332c565b9050602081019050919050565b82818337600083830152505050565b60006135c56135c084613572565b613557565b9050828152602081018484840111156135e1576135e06134f2565b5b6135ec8482856135a3565b509392505050565b600082601f830112613609576136086134ed565b5b81356136198482602086016135b2565b91505092915050565b60006020828403121561363857613637613221565b5b600082013567ffffffffffffffff81111561365657613655613226565b5b613662848285016135f4565b91505092915050565b613674816132b0565b811461367f57600080fd5b50565b6000813590506136918161366b565b92915050565b6000602082840312156136ad576136ac613221565b5b60006136bb84828501613682565b91505092915050565b6000806000606084860312156136dd576136dc613221565b5b60006136eb8682870161346e565b93505060206136fc8682870161346e565b925050604061370d868287016133b9565b9150509250925092565b600080fd5b600080fd5b60008083601f840112613737576137366134ed565b5b8235905067ffffffffffffffff81111561375457613753613717565b5b6020830191508360208202830111156137705761376f61371c565b5b9250929050565b6000806020838503121561378e5761378d613221565b5b600083013567ffffffffffffffff8111156137ac576137ab613226565b5b6137b885828601613721565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137f98161341b565b82525050565b600067ffffffffffffffff82169050919050565b61381c816137ff565b82525050565b61382b816132b0565b82525050565b600062ffffff82169050919050565b61384981613831565b82525050565b60808201600082015161386560008501826137f0565b5060208201516138786020850182613813565b50604082015161388b6040850182613822565b50606082015161389e6060850182613840565b50505050565b60006138b0838361384f565b60808301905092915050565b6000602082019050919050565b60006138d4826137c4565b6138de81856137cf565b93506138e9836137e0565b8060005b8381101561391a57815161390188826138a4565b975061390c836138bc565b9250506001810190506138ed565b5085935050505092915050565b6000602082019050818103600083015261394181846138c9565b905092915050565b60006020828403121561395f5761395e613221565b5b600061396d8482850161346e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139ab81613398565b82525050565b60006139bd83836139a2565b60208301905092915050565b6000602082019050919050565b60006139e182613976565b6139eb8185613981565b93506139f683613992565b8060005b83811015613a27578151613a0e88826139b1565b9750613a19836139c9565b9250506001810190506139fa565b5085935050505092915050565b60006020820190508181036000830152613a4e81846139d6565b905092915050565b600080600060608486031215613a6f57613a6e613221565b5b6000613a7d8682870161346e565b9350506020613a8e868287016133b9565b9250506040613a9f868287016133b9565b9150509250925092565b60008060408385031215613ac057613abf613221565b5b6000613ace8582860161346e565b9250506020613adf85828601613682565b9150509250929050565b600067ffffffffffffffff821115613b0457613b036134f7565b5b613b0d8261332c565b9050602081019050919050565b6000613b2d613b2884613ae9565b613557565b905082815260208101848484011115613b4957613b486134f2565b5b613b548482856135a3565b509392505050565b600082601f830112613b7157613b706134ed565b5b8135613b81848260208601613b1a565b91505092915050565b60008060008060808587031215613ba457613ba3613221565b5b6000613bb28782880161346e565b9450506020613bc38782880161346e565b9350506040613bd4878288016133b9565b925050606085013567ffffffffffffffff811115613bf557613bf4613226565b5b613c0187828801613b5c565b91505092959194509250565b608082016000820151613c2360008501826137f0565b506020820151613c366020850182613813565b506040820151613c496040850182613822565b506060820151613c5c6060850182613840565b50505050565b6000608082019050613c776000830184613c0d565b92915050565b60008060408385031215613c9457613c93613221565b5b6000613ca28582860161346e565b9250506020613cb38582860161346e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d0457607f821691505b602082108103613d1757613d16613cbd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613d7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d42565b613d898683613d42565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613dc6613dc1613dbc84613398565b613da1565b613398565b9050919050565b6000819050919050565b613de083613dab565b613df4613dec82613dcd565b848454613d4f565b825550505050565b600090565b613e09613dfc565b613e14818484613dd7565b505050565b5b81811015613e3857613e2d600082613e01565b600181019050613e1a565b5050565b601f821115613e7d57613e4e81613d1d565b613e5784613d32565b81016020851015613e66578190505b613e7a613e7285613d32565b830182613e19565b50505b505050565b600082821c905092915050565b6000613ea060001984600802613e82565b1980831691505092915050565b6000613eb98383613e8f565b9150826002028217905092915050565b613ed2826132e6565b67ffffffffffffffff811115613eeb57613eea6134f7565b5b613ef58254613cec565b613f00828285613e3c565b600060209050601f831160018114613f335760008415613f21578287015190505b613f2b8582613ead565b865550613f93565b601f198416613f4186613d1d565b60005b82811015613f6957848901518255600182019150602085019450602081019050613f44565b86831015613f865784890151613f82601f891682613e8f565b8355505b6001600288020188555050505b505050505050565b6000604082019050613fb0600083018561342d565b613fbd602083018461342d565b9392505050565b600081519050613fd38161366b565b92915050565b600060208284031215613fef57613fee613221565b5b6000613ffd84828501613fc4565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061403c601f836132f1565b915061404782614006565b602082019050919050565b6000602082019050818103600083015261406b8161402f565b9050919050565b600081905092915050565b50565b600061408d600083614072565b91506140988261407d565b600082019050919050565b60006140ae82614080565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006140ee6018836132f1565b91506140f9826140b8565b602082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b60006141896010836132f1565b915061419482614153565b602082019050919050565b600060208201905081810360008301526141b88161417c565b9050919050565b7f434c41494d3a20546f6b656e20416c726561647920436c61696d65642e000000600082015250565b60006141f5601d836132f1565b9150614200826141bf565b602082019050919050565b60006020820190508181036000830152614224816141e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061426582613398565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142975761429661422b565b5b600182019050919050565b7f496e76616c6964204d617820537570706c792e00000000000000000000000000600082015250565b60006142d86013836132f1565b91506142e3826142a2565b602082019050919050565b60006020820190508181036000830152614307816142cb565b9050919050565b600061431982613398565b915061432483613398565b925082820190508082111561433c5761433b61422b565b5b92915050565b7f4d494e543a204d617820537570706c792045786365656465642e000000000000600082015250565b6000614378601a836132f1565b915061438382614342565b602082019050919050565b600060208201905081810360008301526143a78161436b565b9050919050565b7f4d494e543a20496e76616c696420416d6f756e742e0000000000000000000000600082015250565b60006143e46015836132f1565b91506143ef826143ae565b602082019050919050565b60006020820190508181036000830152614413816143d7565b9050919050565b600061442582613398565b915061443083613398565b925082820261443e81613398565b915082820484148315176144555761445461422b565b5b5092915050565b7f4d494e543a20496e73756666696369656e742066756e64732e00000000000000600082015250565b60006144926019836132f1565b915061449d8261445c565b602082019050919050565b600060208201905081810360008301526144c181614485565b9050919050565b7f5055424c4943204d696e743a2043616c6c657220697320616e6f74686572206360008201527f6f6e74726163742e000000000000000000000000000000000000000000000000602082015250565b60006145246028836132f1565b915061452f826144c8565b604082019050919050565b6000602082019050818103600083015261455381614517565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000614590601f836132f1565b915061459b8261455a565b602082019050919050565b600060208201905081810360008301526145bf81614583565b9050919050565b600081905092915050565b60006145dc826132e6565b6145e681856145c6565b93506145f6818560208601613302565b80840191505092915050565b6000815461460f81613cec565b61461981866145c6565b9450600182166000811461463457600181146146495761467c565b60ff198316865281151582028601935061467c565b61465285613d1d565b60005b8381101561467457815481890152600182019150602081019050614655565b838801955050505b50505092915050565b600061469182866145d1565b915061469d82856145d1565b91506146a98284614602565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147126026836132f1565b915061471d826146b6565b604082019050919050565b6000602082019050818103600083015261474181614705565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061477e6020836132f1565b915061478982614748565b602082019050919050565b600060208201905081810360008301526147ad81614771565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147ee82613398565b91506147f983613398565b925082614809576148086147b4565b5b828204905092915050565b600061481f82613398565b915061482a83613398565b92508282039050818111156148425761484161422b565b5b92915050565b600061485382613398565b915061485e83613398565b92508261486e5761486d6147b4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148a082614879565b6148aa8185614884565b93506148ba818560208601613302565b6148c38161332c565b840191505092915050565b60006080820190506148e3600083018761342d565b6148f0602083018661342d565b6148fd60408301856134c3565b818103606083015261490f8184614895565b905095945050505050565b60008151905061492981613257565b92915050565b60006020828403121561494557614944613221565b5b60006149538482850161491a565b9150509291505056fea264697066735822122038da7dfb9d960ed7ffdf8cadc345c602beb3fc51ff5598946caf80ba014d75c064736f6c63430008110033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636f8b44b01161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461083e578063dbe7e3bd14610869578063e985e9c5146108a6578063f254933d146108e3578063f2fde38b1461090c5761023b565b8063a22cb46514610756578063b071401b1461077f578063b88d4fde146107a8578063c23dc68f146107c4578063c87b56dd146108015761023b565b806394354fd0116100f257806394354fd01461067e57806395d89b41146106a957806398d5b9c4146106d457806399a2557a146106fd578063a0712d681461073a5761023b565b80636f8b44b01461059957806370a08231146105c2578063715018a6146105ff5780638462151c146106165780638da5cb5b146106535761023b565b80633ccfd60b116101bc5780635bbb2177116101805780635bbb2177146104a05780635c975abb146104dd5780636352211e146105085780636ba4c138146105455780636c0360eb1461056e5761023b565b80633ccfd60b146103f057806342842e0e1461040757806344a0d68a146104235780635503a0e81461044c57806355f804b3146104775761023b565b806316ba10e01161020357806316ba10e01461032c57806316c38b3c1461035557806318160ddd1461037e5780631f0953b6146103a957806323b872dd146103d45761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede614610301575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613283565b610935565b60405161027491906132cb565b60405180910390f35b34801561028957600080fd5b506102926109c7565b60405161029f9190613376565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906133ce565b610a59565b6040516102dc919061343c565b60405180910390f35b6102ff60048036038101906102fa9190613483565b610ad8565b005b34801561030d57600080fd5b50610316610c1c565b60405161032391906134d2565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190613622565b610c22565b005b34801561036157600080fd5b5061037c60048036038101906103779190613697565b610c3d565b005b34801561038a57600080fd5b50610393610c62565b6040516103a091906134d2565b60405180910390f35b3480156103b557600080fd5b506103be610c79565b6040516103cb9190613376565b60405180910390f35b6103ee60048036038101906103e991906136c4565b610d07565b005b3480156103fc57600080fd5b50610405610ee9565b005b610421600480360381019061041c91906136c4565b611011565b005b34801561042f57600080fd5b5061044a600480360381019061044591906133ce565b6111f3565b005b34801561045857600080fd5b50610461611205565b60405161046e9190613376565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190613622565b611293565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613777565b6112ae565b6040516104d49190613927565b60405180910390f35b3480156104e957600080fd5b506104f2611371565b6040516104ff91906132cb565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a91906133ce565b611384565b60405161053c919061343c565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613777565b611396565b005b34801561057a57600080fd5b506105836114d3565b6040516105909190613376565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb91906133ce565b611561565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190613949565b6115cb565b6040516105f691906134d2565b60405180910390f35b34801561060b57600080fd5b50610614611683565b005b34801561062257600080fd5b5061063d60048036038101906106389190613949565b611697565b60405161064a9190613a34565b60405180910390f35b34801561065f57600080fd5b506106686117da565b604051610675919061343c565b60405180910390f35b34801561068a57600080fd5b50610693611804565b6040516106a091906134d2565b60405180910390f35b3480156106b557600080fd5b506106be61180a565b6040516106cb9190613376565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f69190613622565b61189c565b005b34801561070957600080fd5b50610724600480360381019061071f9190613a56565b6118b7565b6040516107319190613a34565b60405180910390f35b610754600480360381019061074f91906133ce565b611ac3565b005b34801561076257600080fd5b5061077d60048036038101906107789190613aa9565b611c85565b005b34801561078b57600080fd5b506107a660048036038101906107a191906133ce565b611d90565b005b6107c260048036038101906107bd9190613b8a565b611da2565b005b3480156107d057600080fd5b506107eb60048036038101906107e691906133ce565b611f87565b6040516107f89190613c62565b60405180910390f35b34801561080d57600080fd5b50610828600480360381019061082391906133ce565b611ff1565b6040516108359190613376565b60405180910390f35b34801561084a57600080fd5b506108536121a5565b60405161086091906134d2565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b91906133ce565b6121ab565b60405161089d91906132cb565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c89190613c7d565b6121cb565b6040516108da91906132cb565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613483565b61225f565b005b34801561091857600080fd5b50610933600480360381019061092e9190613949565b612363565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109d690613cec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0290613cec565b8015610a4f5780601f10610a2457610100808354040283529160200191610a4f565b820191906000526020600020905b815481529060010190602001808311610a3257829003601f168201915b5050505050905090565b6000610a64826123e6565b610a9a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae382611384565b90508073ffffffffffffffffffffffffffffffffffffffff16610b04612445565b73ffffffffffffffffffffffffffffffffffffffff1614610b6757610b3081610b2b612445565b6121cb565b610b66576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c2a61244d565b80600a9081610c399190613ec9565b5050565b610c4561244d565b80601060006101000a81548160ff02191690831515021790555050565b6000610c6c6124cb565b6001546000540303905090565b600c8054610c8690613cec565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb290613cec565b8015610cff5780601f10610cd457610100808354040283529160200191610cff565b820191906000526020600020905b815481529060010190602001808311610ce257829003601f168201915b505050505081565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610ed7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d7957610d748484846124d4565b610ee3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610dc2929190613f9b565b602060405180830381865afa158015610ddf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e039190613fd9565b8015610e9557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e53929190613f9b565b602060405180830381865afa158015610e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e949190613fd9565b5b610ed657336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610ecd919061343c565b60405180910390fd5b5b610ee28484846124d4565b5b50505050565b610ef161244d565b600260095403610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90614052565b60405180910390fd5b600260098190555060004790506000735999d8ab90a1c460fb63fba06bbbbe3d6af6418373ffffffffffffffffffffffffffffffffffffffff1682604051610f7d906140a3565b60006040518083038185875af1925050503d8060008114610fba576040519150601f19603f3d011682016040523d82523d6000602084013e610fbf565b606091505b50508091505080611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90614104565b60405180910390fd5b50506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111e1573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110835761107e8484846127f6565b6111ed565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016110cc929190613f9b565b602060405180830381865afa1580156110e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110d9190613fd9565b801561119f57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161115d929190613f9b565b602060405180830381865afa15801561117a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061119e9190613fd9565b5b6111e057336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111d7919061343c565b60405180910390fd5b5b6111ec8484846127f6565b5b50505050565b6111fb61244d565b80600d8190555050565b600a805461121290613cec565b80601f016020809104026020016040519081016040528092919081815260200182805461123e90613cec565b801561128b5780601f106112605761010080835404028352916020019161128b565b820191906000526020600020905b81548152906001019060200180831161126e57829003601f168201915b505050505081565b61129b61244d565b80600b90816112aa9190613ec9565b5050565b6060600083839050905060008167ffffffffffffffff8111156112d4576112d36134f7565b5b60405190808252806020026020018201604052801561130d57816020015b6112fa6131c8565b8152602001906001900390816112f25790505b50905060005b8281146113655761133c8686838181106113305761132f614124565b5b90506020020135611f87565b82828151811061134f5761134e614124565b5b6020026020010181905250806001019050611313565b50809250505092915050565b601060009054906101000a900460ff1681565b600061138f82612816565b9050919050565b601060009054906101000a900460ff16156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061419f565b60405180910390fd5b6113ee61244d565b60005b828290508110156114ce576011600084848481811061141357611412614124565b5b90506020020135815260200190815260200160002060009054906101000a900460ff1615611476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146d9061420b565b60405180910390fd5b60016011600085858581811061148f5761148e614124565b5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555080806114c69061425a565b9150506113f1565b505050565b600b80546114e090613cec565b80601f016020809104026020016040519081016040528092919081815260200182805461150c90613cec565b80156115595780601f1061152e57610100808354040283529160200191611559565b820191906000526020600020905b81548152906001019060200180831161153c57829003601f168201915b505050505081565b61156961244d565b611571610c62565b81101580156115825750600e548111155b6115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b8906142ee565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611632576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61168b61244d565b61169560006128e2565b565b606060008060006116a7856115cb565b905060008167ffffffffffffffff8111156116c5576116c46134f7565b5b6040519080825280602002602001820160405280156116f35781602001602082028036833780820191505090505b5090506116fe6131c8565b60006117086124cb565b90505b8386146117cc5761171b816129a8565b915081604001516117c157600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461176657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117c057808387806001019850815181106117b3576117b2614124565b5b6020026020010181815250505b5b80600101905061170b565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461181990613cec565b80601f016020809104026020016040519081016040528092919081815260200182805461184590613cec565b80156118925780601f1061186757610100808354040283529160200191611892565b820191906000526020600020905b81548152906001019060200180831161187557829003601f168201915b5050505050905090565b6118a461244d565b80600c90816118b39190613ec9565b5050565b60608183106118f2576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806118fd6129d3565b90506119076124cb565b851015611919576119166124cb565b94505b80841115611925578093505b6000611930876115cb565b90508486101561195357600086860390508181101561194d578091505b50611958565b600090505b60008167ffffffffffffffff811115611974576119736134f7565b5b6040519080825280602002602001820160405280156119a25781602001602082028036833780820191505090505b509050600082036119b95780945050505050611abc565b60006119c488611f87565b9050600081604001516119d957816000015190505b60008990505b8881141580156119ef5750848714155b15611aae576119fd816129a8565b92508260400151611aa357600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611a4857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611aa25780848880600101995081518110611a9557611a94614124565b5b6020026020010181815250505b5b8060010190506119df565b508583528296505050505050505b9392505050565b601060009054906101000a900460ff1615611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a9061419f565b60405180910390fd5b80600e5481611b20610c62565b611b2a919061430e565b1115611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b629061438e565b60405180910390fd5b600f54811115611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906143fa565b60405180910390fd5b8180600d54611bbf919061441a565b341015611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf8906144a8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c669061453a565b60405180910390fd5b611c80611c7a6129dc565b846129e4565b505050565b8060076000611c92612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d3f612445565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8491906132cb565b60405180910390a35050565b611d9861244d565b80600f8190555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611f73573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e1557611e1085858585612a02565b611f80565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611e5e929190613f9b565b602060405180830381865afa158015611e7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9f9190613fd9565b8015611f3157506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611eef929190613f9b565b602060405180830381865afa158015611f0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f309190613fd9565b5b611f7257336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611f69919061343c565b60405180910390fd5b5b611f7f85858585612a02565b5b5050505050565b611f8f6131c8565b611f976131c8565b611f9f6124cb565b831080611fb35750611faf6129d3565b8310155b15611fc15780915050611fec565b611fca836129a8565b9050806040015115611fdf5780915050611fec565b611fe883612a75565b9150505b919050565b6060611ffc826123e6565b61203b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612032906145a6565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff1615612144576000600c805461207090613cec565b80601f016020809104026020016040519081016040528092919081815260200182805461209c90613cec565b80156120e95780601f106120be576101008083540402835291602001916120e9565b820191906000526020600020905b8154815290600101906020018083116120cc57829003601f168201915b50505050509050600081511161210e576040518060200160405280600081525061213c565b8061211884612a95565b600a60405160200161212c93929190614685565b6040516020818303038152906040525b9150506121a0565b600061214e612bf5565b9050600081511161216e576040518060200160405280600081525061219c565b8061217884612a95565b600a60405160200161218c93929190614685565b6040516020818303038152906040525b9150505b919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff16156122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a69061419f565b60405180910390fd5b80600e54816122bc610c62565b6122c6919061430e565b1115612307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fe9061438e565b60405180910390fd5b600f5481111561234c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612343906143fa565b60405180910390fd5b61235461244d565b61235e83836129e4565b505050565b61236b61244d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614728565b60405180910390fd5b6123e3816128e2565b50565b6000816123f16124cb565b11158015612400575060005482105b801561243e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6124556129dc565b73ffffffffffffffffffffffffffffffffffffffff166124736117da565b73ffffffffffffffffffffffffffffffffffffffff16146124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614794565b60405180910390fd5b565b60006001905090565b60006124df82612816565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612546576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061255284612c87565b915091506125688187612563612445565b612cae565b6125b45761257d86612578612445565b6121cb565b6125b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361261a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126278686866001612cf2565b801561263257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612700856126dc888887612cf8565b7c020000000000000000000000000000000000000000000000000000000017612d20565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036127865760006001850190506000600460008381526020019081526020016000205403612784576000548114612783578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127ee8686866001612d4b565b505050505050565b61281183838360405180602001604052806000815250611da2565b505050565b600080829050806128256124cb565b116128ab576000548110156128aa5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036128a8575b6000810361289e576004600083600190039350838152602001908152602001600020549050612874565b80925050506128dd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129b06131c8565b6129cc6004600084815260200190815260200160002054612d51565b9050919050565b60008054905090565b600033905090565b6129fe828260405180602001604052806000815250612e07565b5050565b612a0d848484610d07565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a6f57612a3884848484612ea4565b612a6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612a7d6131c8565b612a8e612a8983612816565b612d51565b9050919050565b606060008203612adc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bf0565b600082905060005b60008214612b0e578080612af79061425a565b915050600a82612b0791906147e3565b9150612ae4565b60008167ffffffffffffffff811115612b2a57612b296134f7565b5b6040519080825280601f01601f191660200182016040528015612b5c5781602001600182028036833780820191505090505b5090505b60008514612be957600182612b759190614814565b9150600a85612b849190614848565b6030612b90919061430e565b60f81b818381518110612ba657612ba5614124565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612be291906147e3565b9450612b60565b8093505050505b919050565b6060600b8054612c0490613cec565b80601f0160208091040260200160405190810160405280929190818152602001828054612c3090613cec565b8015612c7d5780601f10612c5257610100808354040283529160200191612c7d565b820191906000526020600020905b815481529060010190602001808311612c6057829003601f168201915b5050505050905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d0f868684612ff4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612d596131c8565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b612e118383612ffd565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e9f57600080549050600083820390505b612e516000868380600101945086612ea4565b612e87576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e3e578160005414612e9c57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eca612445565b8786866040518563ffffffff1660e01b8152600401612eec94939291906148ce565b6020604051808303816000875af1925050508015612f2857506040513d601f19601f82011682018060405250810190612f25919061492f565b60015b612fa1573d8060008114612f58576040519150601f19603f3d011682016040523d82523d6000602084013e612f5d565b606091505b506000815103612f99576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000805490506000820361303d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61304a6000848385612cf2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506130c1836130b26000866000612cf8565b6130bb856131b8565b17612d20565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461316257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613127565b506000820361319d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506131b36000848385612d4b565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132608161322b565b811461326b57600080fd5b50565b60008135905061327d81613257565b92915050565b60006020828403121561329957613298613221565b5b60006132a78482850161326e565b91505092915050565b60008115159050919050565b6132c5816132b0565b82525050565b60006020820190506132e060008301846132bc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613320578082015181840152602081019050613305565b60008484015250505050565b6000601f19601f8301169050919050565b6000613348826132e6565b61335281856132f1565b9350613362818560208601613302565b61336b8161332c565b840191505092915050565b60006020820190508181036000830152613390818461333d565b905092915050565b6000819050919050565b6133ab81613398565b81146133b657600080fd5b50565b6000813590506133c8816133a2565b92915050565b6000602082840312156133e4576133e3613221565b5b60006133f2848285016133b9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613426826133fb565b9050919050565b6134368161341b565b82525050565b6000602082019050613451600083018461342d565b92915050565b6134608161341b565b811461346b57600080fd5b50565b60008135905061347d81613457565b92915050565b6000806040838503121561349a57613499613221565b5b60006134a88582860161346e565b92505060206134b9858286016133b9565b9150509250929050565b6134cc81613398565b82525050565b60006020820190506134e760008301846134c3565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61352f8261332c565b810181811067ffffffffffffffff8211171561354e5761354d6134f7565b5b80604052505050565b6000613561613217565b905061356d8282613526565b919050565b600067ffffffffffffffff82111561358d5761358c6134f7565b5b6135968261332c565b9050602081019050919050565b82818337600083830152505050565b60006135c56135c084613572565b613557565b9050828152602081018484840111156135e1576135e06134f2565b5b6135ec8482856135a3565b509392505050565b600082601f830112613609576136086134ed565b5b81356136198482602086016135b2565b91505092915050565b60006020828403121561363857613637613221565b5b600082013567ffffffffffffffff81111561365657613655613226565b5b613662848285016135f4565b91505092915050565b613674816132b0565b811461367f57600080fd5b50565b6000813590506136918161366b565b92915050565b6000602082840312156136ad576136ac613221565b5b60006136bb84828501613682565b91505092915050565b6000806000606084860312156136dd576136dc613221565b5b60006136eb8682870161346e565b93505060206136fc8682870161346e565b925050604061370d868287016133b9565b9150509250925092565b600080fd5b600080fd5b60008083601f840112613737576137366134ed565b5b8235905067ffffffffffffffff81111561375457613753613717565b5b6020830191508360208202830111156137705761376f61371c565b5b9250929050565b6000806020838503121561378e5761378d613221565b5b600083013567ffffffffffffffff8111156137ac576137ab613226565b5b6137b885828601613721565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137f98161341b565b82525050565b600067ffffffffffffffff82169050919050565b61381c816137ff565b82525050565b61382b816132b0565b82525050565b600062ffffff82169050919050565b61384981613831565b82525050565b60808201600082015161386560008501826137f0565b5060208201516138786020850182613813565b50604082015161388b6040850182613822565b50606082015161389e6060850182613840565b50505050565b60006138b0838361384f565b60808301905092915050565b6000602082019050919050565b60006138d4826137c4565b6138de81856137cf565b93506138e9836137e0565b8060005b8381101561391a57815161390188826138a4565b975061390c836138bc565b9250506001810190506138ed565b5085935050505092915050565b6000602082019050818103600083015261394181846138c9565b905092915050565b60006020828403121561395f5761395e613221565b5b600061396d8482850161346e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139ab81613398565b82525050565b60006139bd83836139a2565b60208301905092915050565b6000602082019050919050565b60006139e182613976565b6139eb8185613981565b93506139f683613992565b8060005b83811015613a27578151613a0e88826139b1565b9750613a19836139c9565b9250506001810190506139fa565b5085935050505092915050565b60006020820190508181036000830152613a4e81846139d6565b905092915050565b600080600060608486031215613a6f57613a6e613221565b5b6000613a7d8682870161346e565b9350506020613a8e868287016133b9565b9250506040613a9f868287016133b9565b9150509250925092565b60008060408385031215613ac057613abf613221565b5b6000613ace8582860161346e565b9250506020613adf85828601613682565b9150509250929050565b600067ffffffffffffffff821115613b0457613b036134f7565b5b613b0d8261332c565b9050602081019050919050565b6000613b2d613b2884613ae9565b613557565b905082815260208101848484011115613b4957613b486134f2565b5b613b548482856135a3565b509392505050565b600082601f830112613b7157613b706134ed565b5b8135613b81848260208601613b1a565b91505092915050565b60008060008060808587031215613ba457613ba3613221565b5b6000613bb28782880161346e565b9450506020613bc38782880161346e565b9350506040613bd4878288016133b9565b925050606085013567ffffffffffffffff811115613bf557613bf4613226565b5b613c0187828801613b5c565b91505092959194509250565b608082016000820151613c2360008501826137f0565b506020820151613c366020850182613813565b506040820151613c496040850182613822565b506060820151613c5c6060850182613840565b50505050565b6000608082019050613c776000830184613c0d565b92915050565b60008060408385031215613c9457613c93613221565b5b6000613ca28582860161346e565b9250506020613cb38582860161346e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d0457607f821691505b602082108103613d1757613d16613cbd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613d7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d42565b613d898683613d42565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613dc6613dc1613dbc84613398565b613da1565b613398565b9050919050565b6000819050919050565b613de083613dab565b613df4613dec82613dcd565b848454613d4f565b825550505050565b600090565b613e09613dfc565b613e14818484613dd7565b505050565b5b81811015613e3857613e2d600082613e01565b600181019050613e1a565b5050565b601f821115613e7d57613e4e81613d1d565b613e5784613d32565b81016020851015613e66578190505b613e7a613e7285613d32565b830182613e19565b50505b505050565b600082821c905092915050565b6000613ea060001984600802613e82565b1980831691505092915050565b6000613eb98383613e8f565b9150826002028217905092915050565b613ed2826132e6565b67ffffffffffffffff811115613eeb57613eea6134f7565b5b613ef58254613cec565b613f00828285613e3c565b600060209050601f831160018114613f335760008415613f21578287015190505b613f2b8582613ead565b865550613f93565b601f198416613f4186613d1d565b60005b82811015613f6957848901518255600182019150602085019450602081019050613f44565b86831015613f865784890151613f82601f891682613e8f565b8355505b6001600288020188555050505b505050505050565b6000604082019050613fb0600083018561342d565b613fbd602083018461342d565b9392505050565b600081519050613fd38161366b565b92915050565b600060208284031215613fef57613fee613221565b5b6000613ffd84828501613fc4565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061403c601f836132f1565b915061404782614006565b602082019050919050565b6000602082019050818103600083015261406b8161402f565b9050919050565b600081905092915050565b50565b600061408d600083614072565b91506140988261407d565b600082019050919050565b60006140ae82614080565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006140ee6018836132f1565b91506140f9826140b8565b602082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f436f6e7472616374205061757365642e00000000000000000000000000000000600082015250565b60006141896010836132f1565b915061419482614153565b602082019050919050565b600060208201905081810360008301526141b88161417c565b9050919050565b7f434c41494d3a20546f6b656e20416c726561647920436c61696d65642e000000600082015250565b60006141f5601d836132f1565b9150614200826141bf565b602082019050919050565b60006020820190508181036000830152614224816141e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061426582613398565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142975761429661422b565b5b600182019050919050565b7f496e76616c6964204d617820537570706c792e00000000000000000000000000600082015250565b60006142d86013836132f1565b91506142e3826142a2565b602082019050919050565b60006020820190508181036000830152614307816142cb565b9050919050565b600061431982613398565b915061432483613398565b925082820190508082111561433c5761433b61422b565b5b92915050565b7f4d494e543a204d617820537570706c792045786365656465642e000000000000600082015250565b6000614378601a836132f1565b915061438382614342565b602082019050919050565b600060208201905081810360008301526143a78161436b565b9050919050565b7f4d494e543a20496e76616c696420416d6f756e742e0000000000000000000000600082015250565b60006143e46015836132f1565b91506143ef826143ae565b602082019050919050565b60006020820190508181036000830152614413816143d7565b9050919050565b600061442582613398565b915061443083613398565b925082820261443e81613398565b915082820484148315176144555761445461422b565b5b5092915050565b7f4d494e543a20496e73756666696369656e742066756e64732e00000000000000600082015250565b60006144926019836132f1565b915061449d8261445c565b602082019050919050565b600060208201905081810360008301526144c181614485565b9050919050565b7f5055424c4943204d696e743a2043616c6c657220697320616e6f74686572206360008201527f6f6e74726163742e000000000000000000000000000000000000000000000000602082015250565b60006145246028836132f1565b915061452f826144c8565b604082019050919050565b6000602082019050818103600083015261455381614517565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000614590601f836132f1565b915061459b8261455a565b602082019050919050565b600060208201905081810360008301526145bf81614583565b9050919050565b600081905092915050565b60006145dc826132e6565b6145e681856145c6565b93506145f6818560208601613302565b80840191505092915050565b6000815461460f81613cec565b61461981866145c6565b9450600182166000811461463457600181146146495761467c565b60ff198316865281151582028601935061467c565b61465285613d1d565b60005b8381101561467457815481890152600182019150602081019050614655565b838801955050505b50505092915050565b600061469182866145d1565b915061469d82856145d1565b91506146a98284614602565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147126026836132f1565b915061471d826146b6565b604082019050919050565b6000602082019050818103600083015261474181614705565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061477e6020836132f1565b915061478982614748565b602082019050919050565b600060208201905081810360008301526147ad81614771565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147ee82613398565b91506147f983613398565b925082614809576148086147b4565b5b828204905092915050565b600061481f82613398565b915061482a83613398565b92508282039050818111156148425761484161422b565b5b92915050565b600061485382613398565b915061485e83613398565b92508261486e5761486d6147b4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006148a082614879565b6148aa8185614884565b93506148ba818560208601613302565b6148c38161332c565b840191505092915050565b60006080820190506148e3600083018761342d565b6148f0602083018661342d565b6148fd60408301856134c3565b818103606083015261490f8184614895565b905095945050505050565b60008151905061492981613257565b92915050565b60006020828403121561494557614944613221565b5b60006149538482850161491a565b9150509291505056fea264697066735822122038da7dfb9d960ed7ffdf8cadc345c602beb3fc51ff5598946caf80ba014d75c064736f6c63430008110033

Loading...
Loading
Loading...
Loading
[ 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.