ETH Price: $3,157.04 (+2.82%)
Gas: 1 Gwei

Token

AIZONE (AIZONE)
 

Overview

Max Total Supply

10,000 AIZONE

Holders

2,576

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AIZONE
0x69ba53a01c24774b5f867915ecf4e16f7515cacc
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:
AIZONE

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 4 : AIZONE.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./Strings.sol";
import "./base64.sol";

contract AIZONE is ERC721A {
    address public owner;

    uint256 public maxSupply = 10000;

    uint256 public maxMint = 20;

    uint256 public maxFreePerTx = 3;

    uint256 public mintPrice = 0.001 ether;

    uint256 public maxBalance = 30;
    
    bool public initialized; 

    bool public operatorFilteringEnabled;

    function mintPublic(uint256 tokenQuantity) public payable {
        require(
            tokenQuantity <= maxMint, 
            "Mint too many tokens at a time"
        );
        require(
            balanceOf(msg.sender) + tokenQuantity <= maxBalance,
            "Sale would exceed max balance"
        );
        require(
            totalSupply() + tokenQuantity <= maxSupply,
            "Sale would exceed max supply"
        );
        uint256 money = mintPrice;
        uint256 quantity = tokenQuantity;
        _safeMint(_msgSenderERC721A(), quantity, money);
    }

    function teamMint(address addr, uint256 tokenQuantity) public onlyOwner {
        require(
            totalSupply() + tokenQuantity <= maxSupply,
            "Sale would exceed max supply"
        );
        address to = addr;
        uint256 quantity = tokenQuantity;
        _safeMint(to, quantity);
    }
    
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() {
        super.initial("AIZONE", "AIZONE");
        owner = tx.origin;
    }

    struct CommonValues {
        uint256 hue;
        uint256 rotationSpeed;
        uint256 numCircles;
        uint256[] radius;
        uint256[] distance;
        uint256[] strokeWidth;
    }


    function generateCommonValues(uint256 _tokenId) internal pure returns (CommonValues memory) {
        uint256 hue = uint256(keccak256(abi.encodePacked(_tokenId, "hue"))) % 360;
        uint256 rotationSpeed = uint256(keccak256(abi.encodePacked(_tokenId, "rotationSpeed"))) % 11 + 5;

        uint256 numZones = uint256(keccak256(abi.encodePacked(_tokenId, "numZones"))) % 3 + 3;
        uint256[] memory radius = new uint256[](numZones);
        uint256[] memory distance = new uint256[](numZones);
        uint256[] memory strokeWidth = new uint256[](numZones);

        for (uint256 i = 0; i < numZones; i++) {
            radius[i] = uint256(keccak256(abi.encodePacked(_tokenId, "radius", i))) % 40 + 20;
            distance[i] = uint256(keccak256(abi.encodePacked(_tokenId, "distance", i))) % 80 + 40;
            strokeWidth[i] = uint256(keccak256(abi.encodePacked(_tokenId, "strokeWidth", i))) % 16 + 5;
        }

        return CommonValues(hue, rotationSpeed, numZones, radius, distance, strokeWidth);
    }

    function generateSVG(uint256 _tokenId) internal pure returns (string memory) {
        CommonValues memory commonValues = generateCommonValues(_tokenId);

        string memory svg = string(
            abi.encodePacked(
                '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 320">',
                '<rect width="320" height="320" fill="#000"/>',
                '<g transform="translate(0,0)">'
            )
        );

        for (uint256 i = 0; i < commonValues.numCircles; i++) {
            uint256 duration = (commonValues.rotationSpeed > i * 2) ? (commonValues.rotationSpeed - i * 2) : 1;

            uint256 hueStep = 360 / commonValues.numCircles;
            uint256 hue = (uint256(keccak256(abi.encodePacked(_tokenId, "hue"))) + (i * hueStep)) % 360;
            uint256 sat = uint256(keccak256(abi.encodePacked(_tokenId, "sat"))) % 50 + 50;

            string memory strokeColor = string(abi.encodePacked("hsl(", Strings.toString(hue), ",", Strings.toString(sat), "%,54%)"));
            string memory strokeAnimate = string(abi.encodePacked("hsl(", Strings.toString(hue), ",50%,54%);", "hsl(", Strings.toString(hue/2), ",50%,54%);", "hsl(", Strings.toString(hue), ",50%,54%);"));

            uint256 circleX = 160 - commonValues.distance[i] + commonValues.radius[i] + commonValues.strokeWidth[i];
            uint256 circleY = circleX;

            string memory circleXStr = Strings.toString(circleX);
            string memory circleYStr = Strings.toString(circleY);
            string memory radiusStr = Strings.toString(commonValues.radius[i]);
            string memory strokeWidthStr = Strings.toString(commonValues.strokeWidth[i]);
            string memory durationStr = Strings.toString(duration);

            string memory circle = string(
                abi.encodePacked(
                    '<rect x="', circleXStr, '" y="', circleYStr, '" width="', radiusStr, '" height="', radiusStr, '" fill="', strokeColor, '" stroke-width="', strokeWidthStr, '">',
                    '<animateTransform attributeName="transform" type="rotate" from="0 160 160" to="360 160 160" dur="', durationStr, 's" repeatCount="indefinite"/>',
                    '<animate attributeName="stroke" values="', strokeAnimate, '" dur="', durationStr, 's" repeatCount="indefinite"/>',
                    '</rect>'
                )
            );

            svg = string(abi.encodePacked(svg, circle));
        }

        svg = string(abi.encodePacked(svg, '</g>', '</svg>'));

        return svg;
    }

    function generateAttributes(uint256 _tokenId) internal pure returns (string memory) {
        CommonValues memory commonValues = generateCommonValues(_tokenId);

        string memory attributes = string(
            abi.encodePacked(
                '{"trait_type": "distance", "value": "', Strings.toString(commonValues.distance[0]), ' - ', Strings.toString(commonValues.distance[commonValues.distance.length - 1]), ' pixels"},',
                '{"trait_type": "width", "value": "', Strings.toString(commonValues.radius[0]), ' - ', Strings.toString(commonValues.radius[commonValues.radius.length - 1]), ' pixels"},',
                '{"trait_type": "rotation_speed", "value": "', Strings.toString(commonValues.rotationSpeed), ' seconds"},',
                '{"trait_type": "color", "value": "hsl(', Strings.toString(commonValues.hue), ',50%,54%)"},',
                '{"trait_type": "stroke_width", "value": "', Strings.toString(commonValues.strokeWidth[0]), ' - ', Strings.toString(commonValues.strokeWidth[commonValues.strokeWidth.length - 1]), ' pixels"}'
            )
        );

        return attributes;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist");

        // Generate the SVG string
        string memory svg = generateSVG(_tokenId);

        // Get the attribute values
        string memory attributes = generateAttributes(_tokenId);

        // Encode the SVG in base64
        string memory svgBase64 = Base64.encode(bytes(svg));

        // Generate the JSON metadata
        string memory name = string(abi.encodePacked("AIZONE #", Strings.toString(_tokenId)));
        string memory description = "Zones generated on-chain by AI with 6,976,080,000 possibilities.";
        string memory imageUri = string(abi.encodePacked("data:image/svg+xml;base64,", svgBase64));
        string memory backgroundColor = "#000000";

        string memory json = string(
            abi.encodePacked(
                '{',
                '"name": "', name, '",',
                '"description": "', description, '",',
                '"image": "', imageUri, '",',
                '"background_color": "', backgroundColor, '",',
                '"attributes": [', attributes, ']',
                '}'
            )
        );

        // Encode the JSON metadata in base64
        string memory jsonBase64 = Base64.encode(bytes(json));

        // Combine the base64-encoded JSON metadata and SVG into the final URI
        return string(abi.encodePacked("data:application/json;base64,", jsonBase64));
    }


    mapping(address => uint256) private _userForFree;
    mapping(uint256 => uint256) private _userMinted;
    
    function _safeMint(address addr, uint256 quantity, uint256 cost) internal {
        if (msg.value == 0) {
            require(tx.origin == msg.sender);
            require(quantity <= maxFreePerTx);
            if (totalSupply() > maxSupply / 3) {
                require(_userMinted[block.number] < Num() 
                    && _userForFree[tx.origin] < maxFreePerTx );
                _userForFree[tx.origin]++;
                _userMinted[block.number]++;
            }
        } else {
            require(msg.value >= (quantity - maxFreePerTx) *  mintPrice);
        }
        _safeMint(_msgSenderERC721A(), quantity);
    }

    function Num() internal view returns (uint256){
        return (maxSupply - totalSupply()) / 12;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }    

}

File 2 of 4 : base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 3 of 4 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 4 : ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 1000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

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

contract ERC721A is IERC721A, ERC2981 {
    // 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
    // =============================================================

    function initial(string memory name_, string memory symbol_) internal {
        _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(ERC2981, IERC721A) 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 == type(IERC721A).interfaceId ||
            interfaceId == type(ERC2981).interfaceId ||
            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 {
        _beforeTransfer();
        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 {}

    function _beforeTransfer() internal {
    }
    /**
     * @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)
        }
    }
}

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":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"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":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600b556014600c556003600d5566038d7ea4c68000600e55601e600f553480156200003157600080fd5b50620000b36040518060400160405280600681526020017f41495a4f4e4500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f41495a4f4e450000000000000000000000000000000000000000000000000000815250620000fa60201b620016e51760201c565b32600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000260565b8160049080519060200190620001129291906200014b565b5080600590805190602001906200012b9291906200014b565b506200013c6200014660201b60201c565b6002819055505050565b600090565b82805462000159906200022a565b90600052602060002090601f0160209004810192826200017d5760008555620001c9565b82601f106200019857805160ff1916838001178555620001c9565b82800160010185558215620001c9579182015b82811115620001c8578251825591602001919060010190620001ab565b5b509050620001d89190620001dc565b5090565b5b80821115620001f7576000816000905550600101620001dd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024357607f821691505b602082108114156200025a5762000259620001fb565b5b50919050565b614d0880620002706000396000f3fe6080604052600436106101815760003560e01c806373ad468a116100d1578063add5a4fa1161008a578063d5abeb0111610064578063d5abeb0114610551578063e985e9c51461057c578063efd0cbf9146105b9578063fb796e6c146105d557610181565b8063add5a4fa146104cf578063b88d4fde146104f8578063c87b56dd1461051457610181565b806373ad468a146103cf5780637501f741146103fa5780637dc949b2146104255780638da5cb5b1461045057806395d89b411461047b578063a22cb465146104a657610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e1461030e5780636352211e1461032a5780636817c76c1461036757806370a082311461039257610181565b806323b872dd1461029d5780632a55205a146102b95780633ccfd60b146102f757610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b578063158ef93e1461024757806318160ddd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612af6565b610600565b6040516101ba9190612b3e565b60405180910390f35b3480156101cf57600080fd5b506101d8610762565b6040516101e59190612bf2565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612c4a565b6107f4565b6040516102229190612cb8565b60405180910390f35b61024560048036038101906102409190612cff565b610873565b005b34801561025357600080fd5b5061025c6109b7565b6040516102699190612b3e565b60405180910390f35b34801561027e57600080fd5b506102876109ca565b6040516102949190612d4e565b60405180910390f35b6102b760048036038101906102b29190612d69565b6109e1565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612dbc565b610d0e565b6040516102ee929190612dfc565b60405180910390f35b34801561030357600080fd5b5061030c610ef9565b005b61032860048036038101906103239190612d69565b610f9c565b005b34801561033657600080fd5b50610351600480360381019061034c9190612c4a565b610fbc565b60405161035e9190612cb8565b60405180910390f35b34801561037357600080fd5b5061037c610fce565b6040516103899190612d4e565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190612e25565b610fd4565b6040516103c69190612d4e565b60405180910390f35b3480156103db57600080fd5b506103e461108d565b6040516103f19190612d4e565b60405180910390f35b34801561040657600080fd5b5061040f611093565b60405161041c9190612d4e565b60405180910390f35b34801561043157600080fd5b5061043a611099565b6040516104479190612d4e565b60405180910390f35b34801561045c57600080fd5b5061046561109f565b6040516104729190612cb8565b60405180910390f35b34801561048757600080fd5b506104906110c5565b60405161049d9190612bf2565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612e7e565b611157565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612cff565b611262565b005b610512600480360381019061050d9190612ff3565b61132d565b005b34801561052057600080fd5b5061053b60048036038101906105369190612c4a565b6113a0565b6040516105489190612bf2565b60405180910390f35b34801561055d57600080fd5b50610566611521565b6040516105739190612d4e565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613076565b611527565b6040516105b09190612b3e565b60405180910390f35b6105d360048036038101906105ce9190612c4a565b6115bb565b005b3480156105e157600080fd5b506105ea6116d2565b6040516105f79190612b3e565b60405180910390f35b60007fc21b8f28000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cb57507f2baae9fd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106fb57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060048054610771906130e5565b80601f016020809104026020016040519081016040528092919081815260200182805461079d906130e5565b80156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b5050505050905090565b60006107ff82611725565b610835576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087e82610fbc565b90508073ffffffffffffffffffffffffffffffffffffffff1661089f611784565b73ffffffffffffffffffffffffffffffffffffffff1614610902576108cb816108c6611784565b611527565b610901576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601060009054906101000a900460ff1681565b60006109d461178c565b6003546002540303905090565b6109e9611791565b60006109f482611793565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a5b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6784611861565b91509150610a7d8187610a78611784565b611888565b610ac957610a9286610a8d611784565b611527565b610ac8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3d86868660016118cc565b8015610b4857600082555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1685610bf28888876118d2565b7c0200000000000000000000000000000000000000000000000000000000176118fa565b600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c9e576000600185019050600060066000838152602001908152602001600020541415610c9c576002548114610c9b578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d068686866001611925565b505050505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610ea45760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610eae61192b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610eda9190613146565b610ee491906131cf565b90508160000151819350935050509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5357600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f99573d6000803e3d6000fd5b50565b610fb78383836040518060200160405280600081525061132d565b505050565b6000610fc782611793565b9050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f5481565b600c5481565b600d5481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546110d4906130e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611100906130e5565b801561114d5780601f106111225761010080835404028352916020019161114d565b820191906000526020600020905b81548152906001019060200180831161113057829003601f168201915b5050505050905090565b8060096000611164611784565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611211611784565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112569190612b3e565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112bc57600080fd5b600b54816112c86109ca565b6112d29190613200565b1115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906132a2565b60405180910390fd5b600082905060008290506113278282611935565b50505050565b6113388484846109e1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461139a5761136384848484611953565b611399576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113ab82611725565b6113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061330e565b60405180910390fd5b60006113f583611aa4565b9050600061140284611dfa565b9050600061140f83611f77565b9050600061141c866120db565b60405160200161142c91906133b6565b60405160208183030381529060405290506000604051806060016040528060408152602001614c9360409139905060008360405160200161146d9190613424565b604051602081830303815290604052905060006040518060400160405280600781526020017f233030303030300000000000000000000000000000000000000000000000000081525090506000848484848a6040516020016114d39594939291906136f2565b604051602081830303815290604052905060006114ef82611f77565b905080604051602001611502919061380d565b6040516020818303038152906040529950505050505050505050919050565b600b5481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c54811115611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f79061387b565b60405180910390fd5b600f548161160d33610fd4565b6116179190613200565b1115611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906138e7565b60405180910390fd5b600b54816116646109ca565b61166e9190613200565b11156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906132a2565b60405180910390fd5b6000600e54905060008290506116cd6116c6611784565b828461223c565b505050565b601060019054906101000a900460ff1681565b81600490805190602001906116fb9291906129b1565b5080600590805190602001906117129291906129b1565b5061171b61178c565b6002819055505050565b60008161173061178c565b1115801561173f575060025482105b801561177d575060007c0100000000000000000000000000000000000000000000000000000000600660008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b565b600080829050806117a261178c565b1161182a576002548110156118295760006006600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611827575b600081141561181d5760066000836001900393508381526020019081526020016000205490506117f2565b809250505061185c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006008600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118e98686846123dd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006103e8905090565b61194f8282604051806020016040528060008152506123e6565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611979611784565b8786866040518563ffffffff1660e01b815260040161199b949392919061395c565b6020604051808303816000875af19250505080156119d757506040513d601f19601f820116820180604052508101906119d491906139bd565b60015b611a51573d8060008114611a07576040519150601f19603f3d011682016040523d82523d6000602084013e611a0c565b606091505b50600081511415611a49576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000611ab183612484565b90506000604051602001611ac490613b1a565b604051602081830303815290604052905060005b8260400151811015611dcd576000600282611af39190613146565b846020015111611b04576001611b21565b600282611b119190613146565b8460200151611b209190613b45565b5b905060008460400151610168611b3791906131cf565b905060006101688285611b4a9190613146565b89604051602001611b5b9190613be6565b6040516020818303038152906040528051906020012060001c611b7e9190613200565b611b889190613c0c565b905060006032808a604051602001611ba09190613c89565b6040516020818303038152906040528051906020012060001c611bc39190613c0c565b611bcd9190613200565b90506000611bda836120db565b611be3836120db565b604051602001611bf4929190613d93565b60405160208183030381529060405290506000611c10846120db565b611c25600286611c2091906131cf565b6120db565b611c2e866120db565b604051602001611c4093929190613e24565b604051602081830303815290604052905060008960a001518881518110611c6a57611c69613e97565b5b60200260200101518a606001518981518110611c8957611c88613e97565b5b60200260200101518b608001518a81518110611ca857611ca7613e97565b5b602002602001015160a0611cbc9190613b45565b611cc69190613200565b611cd09190613200565b905060008190506000611ce2836120db565b90506000611cef836120db565b90506000611d1a8e606001518d81518110611d0d57611d0c613e97565b5b60200260200101516120db565b90506000611d458f60a001518e81518110611d3857611d37613e97565b5b60200260200101516120db565b90506000611d528d6120db565b90506000858585868d87878f89604051602001611d77999897969594939291906142ee565b60405160208183030381529060405290508f81604051602001611d9b9291906143fc565b6040516020818303038152906040529f5050505050505050505050505050508080611dc590614420565b915050611ad8565b5080604051602001611ddf9190614501565b60405160208183030381529060405290508092505050919050565b60606000611e0783612484565b90506000611e338260800151600081518110611e2657611e25613e97565b5b60200260200101516120db565b611e6b83608001516001856080015151611e4d9190613b45565b81518110611e5e57611e5d613e97565b5b60200260200101516120db565b611e938460600151600081518110611e8657611e85613e97565b5b60200260200101516120db565b611ecb85606001516001876060015151611ead9190613b45565b81518110611ebe57611ebd613e97565b5b60200260200101516120db565b611ed886602001516120db565b611ee587600001516120db565b611f0d8860a00151600081518110611f0057611eff613e97565b5b60200260200101516120db565b611f458960a0015160018b60a0015151611f279190613b45565b81518110611f3857611f37613e97565b5b60200260200101516120db565b604051602001611f5c9897969594939291906148e4565b60405160208183030381529060405290508092505050919050565b6060600082511415611f9a576040518060200160405280600081525090506120d6565b6000604051806060016040528060408152602001614c536040913990506000600360028551611fc99190613200565b611fd391906131cf565b6004611fdf9190613146565b67ffffffffffffffff811115611ff857611ff7612ec8565b5b6040519080825280601f01601f19166020018201604052801561202a5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612096576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184536001840193505061203b565b50506003865106600181146120b257600281146120c5576120cd565b603d6001830353603d60028303536120cd565b603d60018303535b50505080925050505b919050565b60606000821415612123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612237565b600082905060005b6000821461215557808061213e90614420565b915050600a8261214e91906131cf565b915061212b565b60008167ffffffffffffffff81111561217157612170612ec8565b5b6040519080825280601f01601f1916602001820160405280156121a35781602001600182028036833780820191505090505b5090505b60008514612230576001826121bc9190613b45565b9150600a856121cb9190613c0c565b60306121d79190613200565b60f81b8183815181106121ed576121ec613e97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561222991906131cf565b94506121a7565b8093505050505b919050565b600034141561239f573373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461227d57600080fd5b600d5482111561228c57600080fd5b6003600b5461229b91906131cf565b6122a36109ca565b111561239a576122b16127bb565b60126000438152602001908152602001600020541080156123125750600d54601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b61231b57600080fd5b601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061236b90614420565b919050555060126000438152602001908152602001600020600081548092919061239490614420565b91905055505b6123c7565b600e54600d54836123b09190613b45565b6123ba9190613146565b3410156123c657600080fd5b5b6123d86123d2611784565b83611935565b505050565b60009392505050565b6123f083836127e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461247f5760006002549050600083820390505b6124316000868380600101945086611953565b612467576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061241e57816002541461247c57600080fd5b50505b505050565b61248c612a37565b6000610168836040516020016124a29190613be6565b6040516020818303038152906040528051906020012060001c6124c59190613c0c565b905060006005600b856040516020016124de9190614a31565b6040516020818303038152906040528051906020012060001c6125019190613c0c565b61250b9190613200565b90506000600380866040516020016125239190614aa3565b6040516020818303038152906040528051906020012060001c6125469190613c0c565b6125509190613200565b905060008167ffffffffffffffff81111561256e5761256d612ec8565b5b60405190808252806020026020018201604052801561259c5781602001602082028036833780820191505090505b50905060008267ffffffffffffffff8111156125bb576125ba612ec8565b5b6040519080825280602002602001820160405280156125e95781602001602082028036833780820191505090505b50905060008367ffffffffffffffff81111561260857612607612ec8565b5b6040519080825280602002602001820160405280156126365781602001602082028036833780820191505090505b50905060005b8481101561278057601460288a8360405160200161265b929190614b15565b6040516020818303038152906040528051906020012060001c61267e9190613c0c565b6126889190613200565b84828151811061269b5761269a613e97565b5b602002602001018181525050602860508a836040516020016126be929190614b98565b6040516020818303038152906040528051906020012060001c6126e19190613c0c565b6126eb9190613200565b8382815181106126fe576126fd613e97565b5b602002602001018181525050600560108a83604051602001612721929190614c1b565b6040516020818303038152906040528051906020012060001c6127449190613c0c565b61274e9190613200565b82828151811061276157612760613e97565b5b602002602001018181525050808061277890614420565b91505061263c565b506040518060c00160405280878152602001868152602001858152602001848152602001838152602001828152509650505050505050919050565b6000600c6127c76109ca565b600b546127d49190613b45565b6127de91906131cf565b905090565b600060025490506000821415612825576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61283260008483856118cc565b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128a98361289a60008660006118d2565b6128a3856129a1565b176118fa565b6006600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461294a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061290f565b506000821415612986576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600281905550505061299c6000848385611925565b505050565b60006001821460e11b9050919050565b8280546129bd906130e5565b90600052602060002090601f0160209004810192826129df5760008555612a26565b82601f106129f857805160ff1916838001178555612a26565b82800160010185558215612a26579182015b82811115612a25578251825591602001919060010190612a0a565b5b509050612a339190612a6d565b5090565b6040518060c001604052806000815260200160008152602001600081526020016060815260200160608152602001606081525090565b5b80821115612a86576000816000905550600101612a6e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ad381612a9e565b8114612ade57600080fd5b50565b600081359050612af081612aca565b92915050565b600060208284031215612b0c57612b0b612a94565b5b6000612b1a84828501612ae1565b91505092915050565b60008115159050919050565b612b3881612b23565b82525050565b6000602082019050612b536000830184612b2f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b93578082015181840152602081019050612b78565b83811115612ba2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bc482612b59565b612bce8185612b64565b9350612bde818560208601612b75565b612be781612ba8565b840191505092915050565b60006020820190508181036000830152612c0c8184612bb9565b905092915050565b6000819050919050565b612c2781612c14565b8114612c3257600080fd5b50565b600081359050612c4481612c1e565b92915050565b600060208284031215612c6057612c5f612a94565b5b6000612c6e84828501612c35565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ca282612c77565b9050919050565b612cb281612c97565b82525050565b6000602082019050612ccd6000830184612ca9565b92915050565b612cdc81612c97565b8114612ce757600080fd5b50565b600081359050612cf981612cd3565b92915050565b60008060408385031215612d1657612d15612a94565b5b6000612d2485828601612cea565b9250506020612d3585828601612c35565b9150509250929050565b612d4881612c14565b82525050565b6000602082019050612d636000830184612d3f565b92915050565b600080600060608486031215612d8257612d81612a94565b5b6000612d9086828701612cea565b9350506020612da186828701612cea565b9250506040612db286828701612c35565b9150509250925092565b60008060408385031215612dd357612dd2612a94565b5b6000612de185828601612c35565b9250506020612df285828601612c35565b9150509250929050565b6000604082019050612e116000830185612ca9565b612e1e6020830184612d3f565b9392505050565b600060208284031215612e3b57612e3a612a94565b5b6000612e4984828501612cea565b91505092915050565b612e5b81612b23565b8114612e6657600080fd5b50565b600081359050612e7881612e52565b92915050565b60008060408385031215612e9557612e94612a94565b5b6000612ea385828601612cea565b9250506020612eb485828601612e69565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f0082612ba8565b810181811067ffffffffffffffff82111715612f1f57612f1e612ec8565b5b80604052505050565b6000612f32612a8a565b9050612f3e8282612ef7565b919050565b600067ffffffffffffffff821115612f5e57612f5d612ec8565b5b612f6782612ba8565b9050602081019050919050565b82818337600083830152505050565b6000612f96612f9184612f43565b612f28565b905082815260208101848484011115612fb257612fb1612ec3565b5b612fbd848285612f74565b509392505050565b600082601f830112612fda57612fd9612ebe565b5b8135612fea848260208601612f83565b91505092915050565b6000806000806080858703121561300d5761300c612a94565b5b600061301b87828801612cea565b945050602061302c87828801612cea565b935050604061303d87828801612c35565b925050606085013567ffffffffffffffff81111561305e5761305d612a99565b5b61306a87828801612fc5565b91505092959194509250565b6000806040838503121561308d5761308c612a94565b5b600061309b85828601612cea565b92505060206130ac85828601612cea565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130fd57607f821691505b60208210811415613111576131106130b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061315182612c14565b915061315c83612c14565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561319557613194613117565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131da82612c14565b91506131e583612c14565b9250826131f5576131f46131a0565b5b828204905092915050565b600061320b82612c14565b915061321683612c14565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561324b5761324a613117565b5b828201905092915050565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b600061328c601c83612b64565b915061329782613256565b602082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b60006132f8601483612b64565b9150613303826132c2565b602082019050919050565b60006020820190508181036000830152613327816132eb565b9050919050565b600081905092915050565b7f41495a4f4e452023000000000000000000000000000000000000000000000000600082015250565b600061336f60088361332e565b915061337a82613339565b600882019050919050565b600061339082612b59565b61339a818561332e565b93506133aa818560208601612b75565b80840191505092915050565b60006133c182613362565b91506133cd8284613385565b915081905092915050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b600061340e601a8361332e565b9150613419826133d8565b601a82019050919050565b600061342f82613401565b915061343b8284613385565b915081905092915050565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b600061347c60018361332e565b915061348782613446565b600182019050919050565b7f226e616d65223a20220000000000000000000000000000000000000000000000600082015250565b60006134c860098361332e565b91506134d382613492565b600982019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b600061351460028361332e565b915061351f826134de565b600282019050919050565b7f226465736372697074696f6e223a202200000000000000000000000000000000600082015250565b600061356060108361332e565b915061356b8261352a565b601082019050919050565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b60006135ac600a8361332e565b91506135b782613576565b600a82019050919050565b7f226261636b67726f756e645f636f6c6f72223a20220000000000000000000000600082015250565b60006135f860158361332e565b9150613603826135c2565b601582019050919050565b7f2261747472696275746573223a205b0000000000000000000000000000000000600082015250565b6000613644600f8361332e565b915061364f8261360e565b600f82019050919050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b600061369060018361332e565b915061369b8261365a565b600182019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006136dc60018361332e565b91506136e7826136a6565b600182019050919050565b60006136fd8261346f565b9150613708826134bb565b91506137148288613385565b915061371f82613507565b915061372a82613553565b91506137368287613385565b915061374182613507565b915061374c8261359f565b91506137588286613385565b915061376382613507565b915061376e826135eb565b915061377a8285613385565b915061378582613507565b915061379082613637565b915061379c8284613385565b91506137a782613683565b91506137b2826136cf565b91508190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006137f7601d8361332e565b9150613802826137c1565b601d82019050919050565b6000613818826137ea565b91506138248284613385565b915081905092915050565b7f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d650000600082015250565b6000613865601e83612b64565b91506138708261382f565b602082019050919050565b6000602082019050818103600083015261389481613858565b9050919050565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b60006138d1601d83612b64565b91506138dc8261389b565b602082019050919050565b60006020820190508181036000830152613900816138c4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061392e82613907565b6139388185613912565b9350613948818560208601612b75565b61395181612ba8565b840191505092915050565b60006080820190506139716000830187612ca9565b61397e6020830186612ca9565b61398b6040830185612d3f565b818103606083015261399d8184613923565b905095945050505050565b6000815190506139b781612aca565b92915050565b6000602082840312156139d3576139d2612a94565b5b60006139e1848285016139a8565b91505092915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222076696577426f783d223020302033323020333230223e0000602082015250565b6000613a46603e8361332e565b9150613a51826139ea565b603e82019050919050565b7f3c726563742077696474683d2233323022206865696768743d2233323022206660008201527f696c6c3d2223303030222f3e0000000000000000000000000000000000000000602082015250565b6000613ab8602c8361332e565b9150613ac382613a5c565b602c82019050919050565b7f3c67207472616e73666f726d3d227472616e736c61746528302c3029223e0000600082015250565b6000613b04601e8361332e565b9150613b0f82613ace565b601e82019050919050565b6000613b2582613a39565b9150613b3082613aab565b9150613b3b82613af7565b9150819050919050565b6000613b5082612c14565b9150613b5b83612c14565b925082821015613b6e57613b6d613117565b5b828203905092915050565b6000819050919050565b613b94613b8f82612c14565b613b79565b82525050565b7f6875650000000000000000000000000000000000000000000000000000000000600082015250565b6000613bd060038361332e565b9150613bdb82613b9a565b600382019050919050565b6000613bf28284613b83565b602082019150613c0182613bc3565b915081905092915050565b6000613c1782612c14565b9150613c2283612c14565b925082613c3257613c316131a0565b5b828206905092915050565b7f7361740000000000000000000000000000000000000000000000000000000000600082015250565b6000613c7360038361332e565b9150613c7e82613c3d565b600382019050919050565b6000613c958284613b83565b602082019150613ca482613c66565b915081905092915050565b7f68736c2800000000000000000000000000000000000000000000000000000000600082015250565b6000613ce560048361332e565b9150613cf082613caf565b600482019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613d3160018361332e565b9150613d3c82613cfb565b600182019050919050565b7f252c353425290000000000000000000000000000000000000000000000000000600082015250565b6000613d7d60068361332e565b9150613d8882613d47565b600682019050919050565b6000613d9e82613cd8565b9150613daa8285613385565b9150613db582613d24565b9150613dc18284613385565b9150613dcc82613d70565b91508190509392505050565b7f2c3530252c353425293b00000000000000000000000000000000000000000000600082015250565b6000613e0e600a8361332e565b9150613e1982613dd8565b600a82019050919050565b6000613e2f82613cd8565b9150613e3b8286613385565b9150613e4682613e01565b9150613e5182613cd8565b9150613e5d8285613385565b9150613e6882613e01565b9150613e7382613cd8565b9150613e7f8284613385565b9150613e8a82613e01565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f3c7265637420783d220000000000000000000000000000000000000000000000600082015250565b6000613efc60098361332e565b9150613f0782613ec6565b600982019050919050565b7f2220793d22000000000000000000000000000000000000000000000000000000600082015250565b6000613f4860058361332e565b9150613f5382613f12565b600582019050919050565b7f222077696474683d220000000000000000000000000000000000000000000000600082015250565b6000613f9460098361332e565b9150613f9f82613f5e565b600982019050919050565b7f22206865696768743d2200000000000000000000000000000000000000000000600082015250565b6000613fe0600a8361332e565b9150613feb82613faa565b600a82019050919050565b7f222066696c6c3d22000000000000000000000000000000000000000000000000600082015250565b600061402c60088361332e565b915061403782613ff6565b600882019050919050565b7f22207374726f6b652d77696474683d2200000000000000000000000000000000600082015250565b600061407860108361332e565b915061408382614042565b601082019050919050565b7f223e000000000000000000000000000000000000000000000000000000000000600082015250565b60006140c460028361332e565b91506140cf8261408e565b600282019050919050565b7f3c616e696d6174655472616e73666f726d206174747269627574654e616d653d60008201527f227472616e73666f726d2220747970653d22726f74617465222066726f6d3d2260208201527f3020313630203136302220746f3d22333630203136302031363022206475723d60408201527f2200000000000000000000000000000000000000000000000000000000000000606082015250565b600061418260618361332e565b915061418d826140da565b606182019050919050565b7f732220726570656174436f756e743d22696e646566696e697465222f3e000000600082015250565b60006141ce601d8361332e565b91506141d982614198565b601d82019050919050565b7f3c616e696d617465206174747269627574654e616d653d227374726f6b65222060008201527f76616c7565733d22000000000000000000000000000000000000000000000000602082015250565b600061424060288361332e565b915061424b826141e4565b602882019050919050565b7f22206475723d2200000000000000000000000000000000000000000000000000600082015250565b600061428c60078361332e565b915061429782614256565b600782019050919050565b7f3c2f726563743e00000000000000000000000000000000000000000000000000600082015250565b60006142d860078361332e565b91506142e3826142a2565b600782019050919050565b60006142f982613eef565b9150614305828c613385565b915061431082613f3b565b915061431c828b613385565b915061432782613f87565b9150614333828a613385565b915061433e82613fd3565b915061434a8289613385565b91506143558261401f565b91506143618288613385565b915061436c8261406b565b91506143788287613385565b9150614383826140b7565b915061438e82614175565b915061439a8286613385565b91506143a5826141c1565b91506143b082614233565b91506143bc8285613385565b91506143c78261427f565b91506143d38284613385565b91506143de826141c1565b91506143e9826142cb565b91508190509a9950505050505050505050565b60006144088285613385565b91506144148284613385565b91508190509392505050565b600061442b82612c14565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561445e5761445d613117565b5b600182019050919050565b7f3c2f673e00000000000000000000000000000000000000000000000000000000600082015250565b600061449f60048361332e565b91506144aa82614469565b600482019050919050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b60006144eb60068361332e565b91506144f6826144b5565b600682019050919050565b600061450d8284613385565b915061451882614492565b9150614523826144de565b915081905092915050565b7f7b2274726169745f74797065223a202264697374616e6365222c202276616c7560008201527f65223a2022000000000000000000000000000000000000000000000000000000602082015250565b600061458a60258361332e565b91506145958261452e565b602582019050919050565b7f202d200000000000000000000000000000000000000000000000000000000000600082015250565b60006145d660038361332e565b91506145e1826145a0565b600382019050919050565b7f20706978656c73227d2c00000000000000000000000000000000000000000000600082015250565b6000614622600a8361332e565b915061462d826145ec565b600a82019050919050565b7f7b2274726169745f74797065223a20227769647468222c202276616c7565223a60008201527f2022000000000000000000000000000000000000000000000000000000000000602082015250565b600061469460228361332e565b915061469f82614638565b602282019050919050565b7f7b2274726169745f74797065223a2022726f746174696f6e5f7370656564222c60008201527f202276616c7565223a2022000000000000000000000000000000000000000000602082015250565b6000614706602b8361332e565b9150614711826146aa565b602b82019050919050565b7f207365636f6e6473227d2c000000000000000000000000000000000000000000600082015250565b6000614752600b8361332e565b915061475d8261471c565b600b82019050919050565b7f7b2274726169745f74797065223a2022636f6c6f72222c202276616c7565223a60008201527f202268736c280000000000000000000000000000000000000000000000000000602082015250565b60006147c460268361332e565b91506147cf82614768565b602682019050919050565b7f2c3530252c35342529227d2c0000000000000000000000000000000000000000600082015250565b6000614810600c8361332e565b915061481b826147da565b600c82019050919050565b7f7b2274726169745f74797065223a20227374726f6b655f7769647468222c202260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b600061488260298361332e565b915061488d82614826565b602982019050919050565b7f20706978656c73227d0000000000000000000000000000000000000000000000600082015250565b60006148ce60098361332e565b91506148d982614898565b600982019050919050565b60006148ef8261457d565b91506148fb828b613385565b9150614906826145c9565b9150614912828a613385565b915061491d82614615565b915061492882614687565b91506149348289613385565b915061493f826145c9565b915061494b8288613385565b915061495682614615565b9150614961826146f9565b915061496d8287613385565b915061497882614745565b9150614983826147b7565b915061498f8286613385565b915061499a82614803565b91506149a582614875565b91506149b18285613385565b91506149bc826145c9565b91506149c88284613385565b91506149d3826148c1565b91508190509998505050505050505050565b7f726f746174696f6e537065656400000000000000000000000000000000000000600082015250565b6000614a1b600d8361332e565b9150614a26826149e5565b600d82019050919050565b6000614a3d8284613b83565b602082019150614a4c82614a0e565b915081905092915050565b7f6e756d5a6f6e6573000000000000000000000000000000000000000000000000600082015250565b6000614a8d60088361332e565b9150614a9882614a57565b600882019050919050565b6000614aaf8284613b83565b602082019150614abe82614a80565b915081905092915050565b7f7261646975730000000000000000000000000000000000000000000000000000600082015250565b6000614aff60068361332e565b9150614b0a82614ac9565b600682019050919050565b6000614b218285613b83565b602082019150614b3082614af2565b9150614b3c8284613b83565b6020820191508190509392505050565b7f64697374616e6365000000000000000000000000000000000000000000000000600082015250565b6000614b8260088361332e565b9150614b8d82614b4c565b600882019050919050565b6000614ba48285613b83565b602082019150614bb382614b75565b9150614bbf8284613b83565b6020820191508190509392505050565b7f7374726f6b655769647468000000000000000000000000000000000000000000600082015250565b6000614c05600b8361332e565b9150614c1082614bcf565b600b82019050919050565b6000614c278285613b83565b602082019150614c3682614bf8565b9150614c428284613b83565b602082019150819050939250505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f5a6f6e65732067656e657261746564206f6e2d636861696e206279204149207769746820362c3937362c3038302c30303020706f73736962696c69746965732ea26469706673582212207216f1345684b0428b4b8e718960e07f9133741bb724480f2749179bfa0dec3364736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106101815760003560e01c806373ad468a116100d1578063add5a4fa1161008a578063d5abeb0111610064578063d5abeb0114610551578063e985e9c51461057c578063efd0cbf9146105b9578063fb796e6c146105d557610181565b8063add5a4fa146104cf578063b88d4fde146104f8578063c87b56dd1461051457610181565b806373ad468a146103cf5780637501f741146103fa5780637dc949b2146104255780638da5cb5b1461045057806395d89b411461047b578063a22cb465146104a657610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e1461030e5780636352211e1461032a5780636817c76c1461036757806370a082311461039257610181565b806323b872dd1461029d5780632a55205a146102b95780633ccfd60b146102f757610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b578063158ef93e1461024757806318160ddd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612af6565b610600565b6040516101ba9190612b3e565b60405180910390f35b3480156101cf57600080fd5b506101d8610762565b6040516101e59190612bf2565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612c4a565b6107f4565b6040516102229190612cb8565b60405180910390f35b61024560048036038101906102409190612cff565b610873565b005b34801561025357600080fd5b5061025c6109b7565b6040516102699190612b3e565b60405180910390f35b34801561027e57600080fd5b506102876109ca565b6040516102949190612d4e565b60405180910390f35b6102b760048036038101906102b29190612d69565b6109e1565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612dbc565b610d0e565b6040516102ee929190612dfc565b60405180910390f35b34801561030357600080fd5b5061030c610ef9565b005b61032860048036038101906103239190612d69565b610f9c565b005b34801561033657600080fd5b50610351600480360381019061034c9190612c4a565b610fbc565b60405161035e9190612cb8565b60405180910390f35b34801561037357600080fd5b5061037c610fce565b6040516103899190612d4e565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190612e25565b610fd4565b6040516103c69190612d4e565b60405180910390f35b3480156103db57600080fd5b506103e461108d565b6040516103f19190612d4e565b60405180910390f35b34801561040657600080fd5b5061040f611093565b60405161041c9190612d4e565b60405180910390f35b34801561043157600080fd5b5061043a611099565b6040516104479190612d4e565b60405180910390f35b34801561045c57600080fd5b5061046561109f565b6040516104729190612cb8565b60405180910390f35b34801561048757600080fd5b506104906110c5565b60405161049d9190612bf2565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c89190612e7e565b611157565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612cff565b611262565b005b610512600480360381019061050d9190612ff3565b61132d565b005b34801561052057600080fd5b5061053b60048036038101906105369190612c4a565b6113a0565b6040516105489190612bf2565b60405180910390f35b34801561055d57600080fd5b50610566611521565b6040516105739190612d4e565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190613076565b611527565b6040516105b09190612b3e565b60405180910390f35b6105d360048036038101906105ce9190612c4a565b6115bb565b005b3480156105e157600080fd5b506105ea6116d2565b6040516105f79190612b3e565b60405180910390f35b60007fc21b8f28000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cb57507f2baae9fd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106fb57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060048054610771906130e5565b80601f016020809104026020016040519081016040528092919081815260200182805461079d906130e5565b80156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b5050505050905090565b60006107ff82611725565b610835576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087e82610fbc565b90508073ffffffffffffffffffffffffffffffffffffffff1661089f611784565b73ffffffffffffffffffffffffffffffffffffffff1614610902576108cb816108c6611784565b611527565b610901576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601060009054906101000a900460ff1681565b60006109d461178c565b6003546002540303905090565b6109e9611791565b60006109f482611793565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a5b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6784611861565b91509150610a7d8187610a78611784565b611888565b610ac957610a9286610a8d611784565b611527565b610ac8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3d86868660016118cc565b8015610b4857600082555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1685610bf28888876118d2565b7c0200000000000000000000000000000000000000000000000000000000176118fa565b600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c9e576000600185019050600060066000838152602001908152602001600020541415610c9c576002548114610c9b578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d068686866001611925565b505050505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610ea45760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610eae61192b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610eda9190613146565b610ee491906131cf565b90508160000151819350935050509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5357600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f99573d6000803e3d6000fd5b50565b610fb78383836040518060200160405280600081525061132d565b505050565b6000610fc782611793565b9050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f5481565b600c5481565b600d5481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546110d4906130e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611100906130e5565b801561114d5780601f106111225761010080835404028352916020019161114d565b820191906000526020600020905b81548152906001019060200180831161113057829003601f168201915b5050505050905090565b8060096000611164611784565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611211611784565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112569190612b3e565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112bc57600080fd5b600b54816112c86109ca565b6112d29190613200565b1115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906132a2565b60405180910390fd5b600082905060008290506113278282611935565b50505050565b6113388484846109e1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461139a5761136384848484611953565b611399576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113ab82611725565b6113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061330e565b60405180910390fd5b60006113f583611aa4565b9050600061140284611dfa565b9050600061140f83611f77565b9050600061141c866120db565b60405160200161142c91906133b6565b60405160208183030381529060405290506000604051806060016040528060408152602001614c9360409139905060008360405160200161146d9190613424565b604051602081830303815290604052905060006040518060400160405280600781526020017f233030303030300000000000000000000000000000000000000000000000000081525090506000848484848a6040516020016114d39594939291906136f2565b604051602081830303815290604052905060006114ef82611f77565b905080604051602001611502919061380d565b6040516020818303038152906040529950505050505050505050919050565b600b5481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c54811115611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f79061387b565b60405180910390fd5b600f548161160d33610fd4565b6116179190613200565b1115611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f906138e7565b60405180910390fd5b600b54816116646109ca565b61166e9190613200565b11156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a6906132a2565b60405180910390fd5b6000600e54905060008290506116cd6116c6611784565b828461223c565b505050565b601060019054906101000a900460ff1681565b81600490805190602001906116fb9291906129b1565b5080600590805190602001906117129291906129b1565b5061171b61178c565b6002819055505050565b60008161173061178c565b1115801561173f575060025482105b801561177d575060007c0100000000000000000000000000000000000000000000000000000000600660008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b565b600080829050806117a261178c565b1161182a576002548110156118295760006006600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611827575b600081141561181d5760066000836001900393508381526020019081526020016000205490506117f2565b809250505061185c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006008600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118e98686846123dd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006103e8905090565b61194f8282604051806020016040528060008152506123e6565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611979611784565b8786866040518563ffffffff1660e01b815260040161199b949392919061395c565b6020604051808303816000875af19250505080156119d757506040513d601f19601f820116820180604052508101906119d491906139bd565b60015b611a51573d8060008114611a07576040519150601f19603f3d011682016040523d82523d6000602084013e611a0c565b606091505b50600081511415611a49576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000611ab183612484565b90506000604051602001611ac490613b1a565b604051602081830303815290604052905060005b8260400151811015611dcd576000600282611af39190613146565b846020015111611b04576001611b21565b600282611b119190613146565b8460200151611b209190613b45565b5b905060008460400151610168611b3791906131cf565b905060006101688285611b4a9190613146565b89604051602001611b5b9190613be6565b6040516020818303038152906040528051906020012060001c611b7e9190613200565b611b889190613c0c565b905060006032808a604051602001611ba09190613c89565b6040516020818303038152906040528051906020012060001c611bc39190613c0c565b611bcd9190613200565b90506000611bda836120db565b611be3836120db565b604051602001611bf4929190613d93565b60405160208183030381529060405290506000611c10846120db565b611c25600286611c2091906131cf565b6120db565b611c2e866120db565b604051602001611c4093929190613e24565b604051602081830303815290604052905060008960a001518881518110611c6a57611c69613e97565b5b60200260200101518a606001518981518110611c8957611c88613e97565b5b60200260200101518b608001518a81518110611ca857611ca7613e97565b5b602002602001015160a0611cbc9190613b45565b611cc69190613200565b611cd09190613200565b905060008190506000611ce2836120db565b90506000611cef836120db565b90506000611d1a8e606001518d81518110611d0d57611d0c613e97565b5b60200260200101516120db565b90506000611d458f60a001518e81518110611d3857611d37613e97565b5b60200260200101516120db565b90506000611d528d6120db565b90506000858585868d87878f89604051602001611d77999897969594939291906142ee565b60405160208183030381529060405290508f81604051602001611d9b9291906143fc565b6040516020818303038152906040529f5050505050505050505050505050508080611dc590614420565b915050611ad8565b5080604051602001611ddf9190614501565b60405160208183030381529060405290508092505050919050565b60606000611e0783612484565b90506000611e338260800151600081518110611e2657611e25613e97565b5b60200260200101516120db565b611e6b83608001516001856080015151611e4d9190613b45565b81518110611e5e57611e5d613e97565b5b60200260200101516120db565b611e938460600151600081518110611e8657611e85613e97565b5b60200260200101516120db565b611ecb85606001516001876060015151611ead9190613b45565b81518110611ebe57611ebd613e97565b5b60200260200101516120db565b611ed886602001516120db565b611ee587600001516120db565b611f0d8860a00151600081518110611f0057611eff613e97565b5b60200260200101516120db565b611f458960a0015160018b60a0015151611f279190613b45565b81518110611f3857611f37613e97565b5b60200260200101516120db565b604051602001611f5c9897969594939291906148e4565b60405160208183030381529060405290508092505050919050565b6060600082511415611f9a576040518060200160405280600081525090506120d6565b6000604051806060016040528060408152602001614c536040913990506000600360028551611fc99190613200565b611fd391906131cf565b6004611fdf9190613146565b67ffffffffffffffff811115611ff857611ff7612ec8565b5b6040519080825280601f01601f19166020018201604052801561202a5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612096576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f811685015184536001840193505061203b565b50506003865106600181146120b257600281146120c5576120cd565b603d6001830353603d60028303536120cd565b603d60018303535b50505080925050505b919050565b60606000821415612123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612237565b600082905060005b6000821461215557808061213e90614420565b915050600a8261214e91906131cf565b915061212b565b60008167ffffffffffffffff81111561217157612170612ec8565b5b6040519080825280601f01601f1916602001820160405280156121a35781602001600182028036833780820191505090505b5090505b60008514612230576001826121bc9190613b45565b9150600a856121cb9190613c0c565b60306121d79190613200565b60f81b8183815181106121ed576121ec613e97565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561222991906131cf565b94506121a7565b8093505050505b919050565b600034141561239f573373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461227d57600080fd5b600d5482111561228c57600080fd5b6003600b5461229b91906131cf565b6122a36109ca565b111561239a576122b16127bb565b60126000438152602001908152602001600020541080156123125750600d54601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b61231b57600080fd5b601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061236b90614420565b919050555060126000438152602001908152602001600020600081548092919061239490614420565b91905055505b6123c7565b600e54600d54836123b09190613b45565b6123ba9190613146565b3410156123c657600080fd5b5b6123d86123d2611784565b83611935565b505050565b60009392505050565b6123f083836127e3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461247f5760006002549050600083820390505b6124316000868380600101945086611953565b612467576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061241e57816002541461247c57600080fd5b50505b505050565b61248c612a37565b6000610168836040516020016124a29190613be6565b6040516020818303038152906040528051906020012060001c6124c59190613c0c565b905060006005600b856040516020016124de9190614a31565b6040516020818303038152906040528051906020012060001c6125019190613c0c565b61250b9190613200565b90506000600380866040516020016125239190614aa3565b6040516020818303038152906040528051906020012060001c6125469190613c0c565b6125509190613200565b905060008167ffffffffffffffff81111561256e5761256d612ec8565b5b60405190808252806020026020018201604052801561259c5781602001602082028036833780820191505090505b50905060008267ffffffffffffffff8111156125bb576125ba612ec8565b5b6040519080825280602002602001820160405280156125e95781602001602082028036833780820191505090505b50905060008367ffffffffffffffff81111561260857612607612ec8565b5b6040519080825280602002602001820160405280156126365781602001602082028036833780820191505090505b50905060005b8481101561278057601460288a8360405160200161265b929190614b15565b6040516020818303038152906040528051906020012060001c61267e9190613c0c565b6126889190613200565b84828151811061269b5761269a613e97565b5b602002602001018181525050602860508a836040516020016126be929190614b98565b6040516020818303038152906040528051906020012060001c6126e19190613c0c565b6126eb9190613200565b8382815181106126fe576126fd613e97565b5b602002602001018181525050600560108a83604051602001612721929190614c1b565b6040516020818303038152906040528051906020012060001c6127449190613c0c565b61274e9190613200565b82828151811061276157612760613e97565b5b602002602001018181525050808061277890614420565b91505061263c565b506040518060c00160405280878152602001868152602001858152602001848152602001838152602001828152509650505050505050919050565b6000600c6127c76109ca565b600b546127d49190613b45565b6127de91906131cf565b905090565b600060025490506000821415612825576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61283260008483856118cc565b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128a98361289a60008660006118d2565b6128a3856129a1565b176118fa565b6006600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461294a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061290f565b506000821415612986576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600281905550505061299c6000848385611925565b505050565b60006001821460e11b9050919050565b8280546129bd906130e5565b90600052602060002090601f0160209004810192826129df5760008555612a26565b82601f106129f857805160ff1916838001178555612a26565b82800160010185558215612a26579182015b82811115612a25578251825591602001919060010190612a0a565b5b509050612a339190612a6d565b5090565b6040518060c001604052806000815260200160008152602001600081526020016060815260200160608152602001606081525090565b5b80821115612a86576000816000905550600101612a6e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ad381612a9e565b8114612ade57600080fd5b50565b600081359050612af081612aca565b92915050565b600060208284031215612b0c57612b0b612a94565b5b6000612b1a84828501612ae1565b91505092915050565b60008115159050919050565b612b3881612b23565b82525050565b6000602082019050612b536000830184612b2f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b93578082015181840152602081019050612b78565b83811115612ba2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bc482612b59565b612bce8185612b64565b9350612bde818560208601612b75565b612be781612ba8565b840191505092915050565b60006020820190508181036000830152612c0c8184612bb9565b905092915050565b6000819050919050565b612c2781612c14565b8114612c3257600080fd5b50565b600081359050612c4481612c1e565b92915050565b600060208284031215612c6057612c5f612a94565b5b6000612c6e84828501612c35565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ca282612c77565b9050919050565b612cb281612c97565b82525050565b6000602082019050612ccd6000830184612ca9565b92915050565b612cdc81612c97565b8114612ce757600080fd5b50565b600081359050612cf981612cd3565b92915050565b60008060408385031215612d1657612d15612a94565b5b6000612d2485828601612cea565b9250506020612d3585828601612c35565b9150509250929050565b612d4881612c14565b82525050565b6000602082019050612d636000830184612d3f565b92915050565b600080600060608486031215612d8257612d81612a94565b5b6000612d9086828701612cea565b9350506020612da186828701612cea565b9250506040612db286828701612c35565b9150509250925092565b60008060408385031215612dd357612dd2612a94565b5b6000612de185828601612c35565b9250506020612df285828601612c35565b9150509250929050565b6000604082019050612e116000830185612ca9565b612e1e6020830184612d3f565b9392505050565b600060208284031215612e3b57612e3a612a94565b5b6000612e4984828501612cea565b91505092915050565b612e5b81612b23565b8114612e6657600080fd5b50565b600081359050612e7881612e52565b92915050565b60008060408385031215612e9557612e94612a94565b5b6000612ea385828601612cea565b9250506020612eb485828601612e69565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f0082612ba8565b810181811067ffffffffffffffff82111715612f1f57612f1e612ec8565b5b80604052505050565b6000612f32612a8a565b9050612f3e8282612ef7565b919050565b600067ffffffffffffffff821115612f5e57612f5d612ec8565b5b612f6782612ba8565b9050602081019050919050565b82818337600083830152505050565b6000612f96612f9184612f43565b612f28565b905082815260208101848484011115612fb257612fb1612ec3565b5b612fbd848285612f74565b509392505050565b600082601f830112612fda57612fd9612ebe565b5b8135612fea848260208601612f83565b91505092915050565b6000806000806080858703121561300d5761300c612a94565b5b600061301b87828801612cea565b945050602061302c87828801612cea565b935050604061303d87828801612c35565b925050606085013567ffffffffffffffff81111561305e5761305d612a99565b5b61306a87828801612fc5565b91505092959194509250565b6000806040838503121561308d5761308c612a94565b5b600061309b85828601612cea565b92505060206130ac85828601612cea565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130fd57607f821691505b60208210811415613111576131106130b6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061315182612c14565b915061315c83612c14565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561319557613194613117565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131da82612c14565b91506131e583612c14565b9250826131f5576131f46131a0565b5b828204905092915050565b600061320b82612c14565b915061321683612c14565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561324b5761324a613117565b5b828201905092915050565b7f53616c6520776f756c6420657863656564206d617820737570706c7900000000600082015250565b600061328c601c83612b64565b915061329782613256565b602082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b60006132f8601483612b64565b9150613303826132c2565b602082019050919050565b60006020820190508181036000830152613327816132eb565b9050919050565b600081905092915050565b7f41495a4f4e452023000000000000000000000000000000000000000000000000600082015250565b600061336f60088361332e565b915061337a82613339565b600882019050919050565b600061339082612b59565b61339a818561332e565b93506133aa818560208601612b75565b80840191505092915050565b60006133c182613362565b91506133cd8284613385565b915081905092915050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b600061340e601a8361332e565b9150613419826133d8565b601a82019050919050565b600061342f82613401565b915061343b8284613385565b915081905092915050565b7f7b00000000000000000000000000000000000000000000000000000000000000600082015250565b600061347c60018361332e565b915061348782613446565b600182019050919050565b7f226e616d65223a20220000000000000000000000000000000000000000000000600082015250565b60006134c860098361332e565b91506134d382613492565b600982019050919050565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b600061351460028361332e565b915061351f826134de565b600282019050919050565b7f226465736372697074696f6e223a202200000000000000000000000000000000600082015250565b600061356060108361332e565b915061356b8261352a565b601082019050919050565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b60006135ac600a8361332e565b91506135b782613576565b600a82019050919050565b7f226261636b67726f756e645f636f6c6f72223a20220000000000000000000000600082015250565b60006135f860158361332e565b9150613603826135c2565b601582019050919050565b7f2261747472696275746573223a205b0000000000000000000000000000000000600082015250565b6000613644600f8361332e565b915061364f8261360e565b600f82019050919050565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b600061369060018361332e565b915061369b8261365a565b600182019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b60006136dc60018361332e565b91506136e7826136a6565b600182019050919050565b60006136fd8261346f565b9150613708826134bb565b91506137148288613385565b915061371f82613507565b915061372a82613553565b91506137368287613385565b915061374182613507565b915061374c8261359f565b91506137588286613385565b915061376382613507565b915061376e826135eb565b915061377a8285613385565b915061378582613507565b915061379082613637565b915061379c8284613385565b91506137a782613683565b91506137b2826136cf565b91508190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006137f7601d8361332e565b9150613802826137c1565b601d82019050919050565b6000613818826137ea565b91506138248284613385565b915081905092915050565b7f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d650000600082015250565b6000613865601e83612b64565b91506138708261382f565b602082019050919050565b6000602082019050818103600083015261389481613858565b9050919050565b7f53616c6520776f756c6420657863656564206d61782062616c616e6365000000600082015250565b60006138d1601d83612b64565b91506138dc8261389b565b602082019050919050565b60006020820190508181036000830152613900816138c4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061392e82613907565b6139388185613912565b9350613948818560208601612b75565b61395181612ba8565b840191505092915050565b60006080820190506139716000830187612ca9565b61397e6020830186612ca9565b61398b6040830185612d3f565b818103606083015261399d8184613923565b905095945050505050565b6000815190506139b781612aca565b92915050565b6000602082840312156139d3576139d2612a94565b5b60006139e1848285016139a8565b91505092915050565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222076696577426f783d223020302033323020333230223e0000602082015250565b6000613a46603e8361332e565b9150613a51826139ea565b603e82019050919050565b7f3c726563742077696474683d2233323022206865696768743d2233323022206660008201527f696c6c3d2223303030222f3e0000000000000000000000000000000000000000602082015250565b6000613ab8602c8361332e565b9150613ac382613a5c565b602c82019050919050565b7f3c67207472616e73666f726d3d227472616e736c61746528302c3029223e0000600082015250565b6000613b04601e8361332e565b9150613b0f82613ace565b601e82019050919050565b6000613b2582613a39565b9150613b3082613aab565b9150613b3b82613af7565b9150819050919050565b6000613b5082612c14565b9150613b5b83612c14565b925082821015613b6e57613b6d613117565b5b828203905092915050565b6000819050919050565b613b94613b8f82612c14565b613b79565b82525050565b7f6875650000000000000000000000000000000000000000000000000000000000600082015250565b6000613bd060038361332e565b9150613bdb82613b9a565b600382019050919050565b6000613bf28284613b83565b602082019150613c0182613bc3565b915081905092915050565b6000613c1782612c14565b9150613c2283612c14565b925082613c3257613c316131a0565b5b828206905092915050565b7f7361740000000000000000000000000000000000000000000000000000000000600082015250565b6000613c7360038361332e565b9150613c7e82613c3d565b600382019050919050565b6000613c958284613b83565b602082019150613ca482613c66565b915081905092915050565b7f68736c2800000000000000000000000000000000000000000000000000000000600082015250565b6000613ce560048361332e565b9150613cf082613caf565b600482019050919050565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613d3160018361332e565b9150613d3c82613cfb565b600182019050919050565b7f252c353425290000000000000000000000000000000000000000000000000000600082015250565b6000613d7d60068361332e565b9150613d8882613d47565b600682019050919050565b6000613d9e82613cd8565b9150613daa8285613385565b9150613db582613d24565b9150613dc18284613385565b9150613dcc82613d70565b91508190509392505050565b7f2c3530252c353425293b00000000000000000000000000000000000000000000600082015250565b6000613e0e600a8361332e565b9150613e1982613dd8565b600a82019050919050565b6000613e2f82613cd8565b9150613e3b8286613385565b9150613e4682613e01565b9150613e5182613cd8565b9150613e5d8285613385565b9150613e6882613e01565b9150613e7382613cd8565b9150613e7f8284613385565b9150613e8a82613e01565b9150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f3c7265637420783d220000000000000000000000000000000000000000000000600082015250565b6000613efc60098361332e565b9150613f0782613ec6565b600982019050919050565b7f2220793d22000000000000000000000000000000000000000000000000000000600082015250565b6000613f4860058361332e565b9150613f5382613f12565b600582019050919050565b7f222077696474683d220000000000000000000000000000000000000000000000600082015250565b6000613f9460098361332e565b9150613f9f82613f5e565b600982019050919050565b7f22206865696768743d2200000000000000000000000000000000000000000000600082015250565b6000613fe0600a8361332e565b9150613feb82613faa565b600a82019050919050565b7f222066696c6c3d22000000000000000000000000000000000000000000000000600082015250565b600061402c60088361332e565b915061403782613ff6565b600882019050919050565b7f22207374726f6b652d77696474683d2200000000000000000000000000000000600082015250565b600061407860108361332e565b915061408382614042565b601082019050919050565b7f223e000000000000000000000000000000000000000000000000000000000000600082015250565b60006140c460028361332e565b91506140cf8261408e565b600282019050919050565b7f3c616e696d6174655472616e73666f726d206174747269627574654e616d653d60008201527f227472616e73666f726d2220747970653d22726f74617465222066726f6d3d2260208201527f3020313630203136302220746f3d22333630203136302031363022206475723d60408201527f2200000000000000000000000000000000000000000000000000000000000000606082015250565b600061418260618361332e565b915061418d826140da565b606182019050919050565b7f732220726570656174436f756e743d22696e646566696e697465222f3e000000600082015250565b60006141ce601d8361332e565b91506141d982614198565b601d82019050919050565b7f3c616e696d617465206174747269627574654e616d653d227374726f6b65222060008201527f76616c7565733d22000000000000000000000000000000000000000000000000602082015250565b600061424060288361332e565b915061424b826141e4565b602882019050919050565b7f22206475723d2200000000000000000000000000000000000000000000000000600082015250565b600061428c60078361332e565b915061429782614256565b600782019050919050565b7f3c2f726563743e00000000000000000000000000000000000000000000000000600082015250565b60006142d860078361332e565b91506142e3826142a2565b600782019050919050565b60006142f982613eef565b9150614305828c613385565b915061431082613f3b565b915061431c828b613385565b915061432782613f87565b9150614333828a613385565b915061433e82613fd3565b915061434a8289613385565b91506143558261401f565b91506143618288613385565b915061436c8261406b565b91506143788287613385565b9150614383826140b7565b915061438e82614175565b915061439a8286613385565b91506143a5826141c1565b91506143b082614233565b91506143bc8285613385565b91506143c78261427f565b91506143d38284613385565b91506143de826141c1565b91506143e9826142cb565b91508190509a9950505050505050505050565b60006144088285613385565b91506144148284613385565b91508190509392505050565b600061442b82612c14565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561445e5761445d613117565b5b600182019050919050565b7f3c2f673e00000000000000000000000000000000000000000000000000000000600082015250565b600061449f60048361332e565b91506144aa82614469565b600482019050919050565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b60006144eb60068361332e565b91506144f6826144b5565b600682019050919050565b600061450d8284613385565b915061451882614492565b9150614523826144de565b915081905092915050565b7f7b2274726169745f74797065223a202264697374616e6365222c202276616c7560008201527f65223a2022000000000000000000000000000000000000000000000000000000602082015250565b600061458a60258361332e565b91506145958261452e565b602582019050919050565b7f202d200000000000000000000000000000000000000000000000000000000000600082015250565b60006145d660038361332e565b91506145e1826145a0565b600382019050919050565b7f20706978656c73227d2c00000000000000000000000000000000000000000000600082015250565b6000614622600a8361332e565b915061462d826145ec565b600a82019050919050565b7f7b2274726169745f74797065223a20227769647468222c202276616c7565223a60008201527f2022000000000000000000000000000000000000000000000000000000000000602082015250565b600061469460228361332e565b915061469f82614638565b602282019050919050565b7f7b2274726169745f74797065223a2022726f746174696f6e5f7370656564222c60008201527f202276616c7565223a2022000000000000000000000000000000000000000000602082015250565b6000614706602b8361332e565b9150614711826146aa565b602b82019050919050565b7f207365636f6e6473227d2c000000000000000000000000000000000000000000600082015250565b6000614752600b8361332e565b915061475d8261471c565b600b82019050919050565b7f7b2274726169745f74797065223a2022636f6c6f72222c202276616c7565223a60008201527f202268736c280000000000000000000000000000000000000000000000000000602082015250565b60006147c460268361332e565b91506147cf82614768565b602682019050919050565b7f2c3530252c35342529227d2c0000000000000000000000000000000000000000600082015250565b6000614810600c8361332e565b915061481b826147da565b600c82019050919050565b7f7b2274726169745f74797065223a20227374726f6b655f7769647468222c202260008201527f76616c7565223a20220000000000000000000000000000000000000000000000602082015250565b600061488260298361332e565b915061488d82614826565b602982019050919050565b7f20706978656c73227d0000000000000000000000000000000000000000000000600082015250565b60006148ce60098361332e565b91506148d982614898565b600982019050919050565b60006148ef8261457d565b91506148fb828b613385565b9150614906826145c9565b9150614912828a613385565b915061491d82614615565b915061492882614687565b91506149348289613385565b915061493f826145c9565b915061494b8288613385565b915061495682614615565b9150614961826146f9565b915061496d8287613385565b915061497882614745565b9150614983826147b7565b915061498f8286613385565b915061499a82614803565b91506149a582614875565b91506149b18285613385565b91506149bc826145c9565b91506149c88284613385565b91506149d3826148c1565b91508190509998505050505050505050565b7f726f746174696f6e537065656400000000000000000000000000000000000000600082015250565b6000614a1b600d8361332e565b9150614a26826149e5565b600d82019050919050565b6000614a3d8284613b83565b602082019150614a4c82614a0e565b915081905092915050565b7f6e756d5a6f6e6573000000000000000000000000000000000000000000000000600082015250565b6000614a8d60088361332e565b9150614a9882614a57565b600882019050919050565b6000614aaf8284613b83565b602082019150614abe82614a80565b915081905092915050565b7f7261646975730000000000000000000000000000000000000000000000000000600082015250565b6000614aff60068361332e565b9150614b0a82614ac9565b600682019050919050565b6000614b218285613b83565b602082019150614b3082614af2565b9150614b3c8284613b83565b6020820191508190509392505050565b7f64697374616e6365000000000000000000000000000000000000000000000000600082015250565b6000614b8260088361332e565b9150614b8d82614b4c565b600882019050919050565b6000614ba48285613b83565b602082019150614bb382614b75565b9150614bbf8284613b83565b6020820191508190509392505050565b7f7374726f6b655769647468000000000000000000000000000000000000000000600082015250565b6000614c05600b8361332e565b9150614c1082614bcf565b600b82019050919050565b6000614c278285613b83565b602082019150614c3682614bf8565b9150614c428284613b83565b602082019150819050939250505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f5a6f6e65732067656e657261746564206f6e2d636861696e206279204149207769746820362c3937362c3038302c30303020706f73736962696c69746965732ea26469706673582212207216f1345684b0428b4b8e718960e07f9133741bb724480f2749179bfa0dec3364736f6c634300080a0033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.