ETH Price: $2,544.42 (-3.89%)
Gas: 1 Gwei

Token

Cutie Pepes (CP)
 

Overview

Max Total Supply

3,333 CP

Holders

1,047

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CP
0x01a7c44aea34a9b6647439fc215bb8b8adafeb4a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cutiepepes is a collection of 3333 cute and loveable characters exploring the world on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CutiePepes

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : CutiePepes.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import {DefaultOperatorFilterer} from "./opensea/DefaultOperatorFilterer.sol";

contract CutiePepes is
    ERC721A,
    ERC2981,
    ReentrancyGuard,
    DefaultOperatorFilterer,
    Ownable
{
    uint256 public price = 0.069 ether;
    uint256 public reserved = 200;
    uint256 public maxSupply = 3333;
    uint256 public maxPerMint = 50;
    uint256 public maxPerWhitelist = 10;

    string private baseTokenURI;
    string private contractUri;

    bytes32 internal merkleRoot;

    uint64 public whitelistStartTimestamp = 1668974400;
    uint64 public whitelistEndTimestamp = 1668977999;
    uint64 public publicStartTimestamp = 1668978000;
    uint64 public publicEndTimestamp = 10000000000000;

    constructor(string memory _name, string memory _symbol)
        ERC721A(_name, _symbol)
    {
        _setDefaultRoyalty(0xE49575c1974C4Af4c475fD3e9635aCc9A573892b, 750);
    }

    // Mint functions

    function _mintTokens(
        uint256 _quantity,
        uint256 _value,
        address _receiver,
        bool isFree
    ) internal {
        require(
            _totalMinted() + _quantity + reserved <= maxSupply,
            "Max supply exceeded"
        );

        require(
            _quantity > 0 && _quantity <= maxPerMint,
            "Invalid mint amount"
        );

        if (!isFree) {
            require(
                _value >=
                    mintPricePerQuantity(_quantity + _numberMinted(_receiver)) -
                        mintPricePerQuantity(_numberMinted(_receiver)),
                "Insufficient funds"
            );
        }

        _safeMint(_receiver, _quantity);
    }

    function mint(uint256 _quantity)
        external
        payable
        nonReentrant
        isPublicSaleActive
    {
        _mintTokens(_quantity, msg.value, msg.sender, false);
    }

    function mintWhitelist(uint256 _quantity, bytes32[] memory _merkleProof)
        external
        payable
        nonReentrant
        isWhitelistSaleActive
    {
        require(
            isWhitelisted(merkleRoot, msg.sender, _merkleProof),
            "Invalid merkle proof"
        );

        require(
            _numberMinted(msg.sender) + _quantity <= maxPerWhitelist,
            "Exceeds max amount for whitelist"
        );

        _mintTokens(_quantity, msg.value, msg.sender, false);
    }

    function mintTeam(uint256 _quantity, address _receiver)
        external
        nonReentrant
        onlyOwner
    {
        require(_totalMinted() + _quantity <= maxSupply, "Max supply exceeded");
        require(_quantity <= reserved, "Max reserved exceeded");

        require(_quantity % 50 == 0, "Can only mint a multiple of 50");

        reserved = reserved - _quantity;

        uint256 numChunks = _quantity / 50;
        for (uint256 i = 0; i < numChunks; i++) {
            _mintTokens(50, 0, _receiver, true);
        }
    }

    // Helper functions

    function mintPricePerQuantity(uint256 _quantity)
        public
        view
        returns (uint256)
    {
        if (_quantity == 0) {
            return 0;
        }

        return price * (_quantity - 1);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function isWhitelisted(
        bytes32 _root,
        address _receiver,
        bytes32[] memory _proof
    ) public pure returns (bool) {
        bytes32 _leaf = keccak256(abi.encodePacked(_receiver));

        return MerkleProof.verify(_proof, _root, _leaf);
    }

    // Admin functions

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        require(_maxSupply < maxSupply, "Max supply cannot be increased");
        require(_maxSupply >= _totalMinted() + reserved, "Invalid new supply");

        maxSupply = _maxSupply;
    }

    function setWhitelistTimestamp(uint64 _startTime, uint64 _endTime)
        public
        onlyOwner
    {
        whitelistStartTimestamp = _startTime;
        whitelistEndTimestamp = _endTime;
    }

    function setPublicTimestamp(uint64 _startTime, uint64 _endTime)
        public
        onlyOwner
    {
        publicStartTimestamp = _startTime;
        publicEndTimestamp = _endTime;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

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

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function updateMaxPerMint(uint256 _maxPerMint)
        public
        onlyOwner
        nonReentrant
    {
        maxPerMint = _maxPerMint;
    }

    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) public {
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }

    // Configuration

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

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

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    // Modifiers

    modifier isPublicSaleActive() {
        require(
            (block.timestamp >= publicStartTimestamp &&
                block.timestamp < publicEndTimestamp),
            "This sale is not active"
        );
        _;
    }

    modifier isWhitelistSaleActive() {
        require(
            (block.timestamp >= whitelistStartTimestamp &&
                block.timestamp < whitelistEndTimestamp),
            "This sale is not active"
        );
        _;
    }

    // OpenSea overwrites

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 5 of 14 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
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 10000;
    }

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

File 6 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 7 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

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

File 10 of 14 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 12 of 14 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
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);
}

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPricePerQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicEndTimestamp","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStartTimestamp","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_startTime","type":"uint64"},{"internalType":"uint64","name":"_endTime","type":"uint64"}],"name":"setPublicTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_startTime","type":"uint64"},{"internalType":"uint64","name":"_endTime","type":"uint64"}],"name":"setWhitelistTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerMint","type":"uint256"}],"name":"updateMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistEndTimestamp","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStartTimestamp","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f5232269808000600c5560c8600d55610d05600e556032600f55600a60105563637a8740601460006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555063637a954f601460086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555063637a9550601460106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506509184e72a000601460186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550348015620000e757600080fd5b50604051620056a2380380620056a283398181016040528101906200010d9190620007c8565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018383816002908162000137919062000a98565b50806003908162000149919062000a98565b506200015a620003b160201b60201c565b60008190555050506001600a8190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200035f57801562000225576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001eb92919062000bc4565b600060405180830381600087803b1580156200020657600080fd5b505af11580156200021b573d6000803e3d6000fd5b505050506200035e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002df576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002a592919062000bc4565b600060405180830381600087803b158015620002c057600080fd5b505af1158015620002d5573d6000803e3d6000fd5b505050506200035d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000328919062000bf1565b600060405180830381600087803b1580156200034357600080fd5b505af115801562000358573d6000803e3d6000fd5b505050505b5b5b50506200038162000375620003ba60201b60201c565b620003c260201b60201c565b620003a973e49575c1974c4af4c475fd3e9635acc9a573892b6102ee6200048860201b60201c565b505062000d29565b60006001905090565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004986200062b60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620004f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f09062000c95565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200056b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005629062000d07565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200069e8262000653565b810181811067ffffffffffffffff82111715620006c057620006bf62000664565b5b80604052505050565b6000620006d562000635565b9050620006e3828262000693565b919050565b600067ffffffffffffffff82111562000706576200070562000664565b5b620007118262000653565b9050602081019050919050565b60005b838110156200073e57808201518184015260208101905062000721565b60008484015250505050565b6000620007616200075b84620006e8565b620006c9565b90508281526020810184848401111562000780576200077f6200064e565b5b6200078d8482856200071e565b509392505050565b600082601f830112620007ad57620007ac62000649565b5b8151620007bf8482602086016200074a565b91505092915050565b60008060408385031215620007e257620007e16200063f565b5b600083015167ffffffffffffffff81111562000803576200080262000644565b5b620008118582860162000795565b925050602083015167ffffffffffffffff81111562000835576200083462000644565b5b620008438582860162000795565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008a057607f821691505b602082108103620008b657620008b562000858565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008e1565b6200092c8683620008e1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000979620009736200096d8462000944565b6200094e565b62000944565b9050919050565b6000819050919050565b620009958362000958565b620009ad620009a48262000980565b848454620008ee565b825550505050565b600090565b620009c4620009b5565b620009d18184846200098a565b505050565b5b81811015620009f957620009ed600082620009ba565b600181019050620009d7565b5050565b601f82111562000a485762000a1281620008bc565b62000a1d84620008d1565b8101602085101562000a2d578190505b62000a4562000a3c85620008d1565b830182620009d6565b50505b505050565b600082821c905092915050565b600062000a6d6000198460080262000a4d565b1980831691505092915050565b600062000a88838362000a5a565b9150826002028217905092915050565b62000aa3826200084d565b67ffffffffffffffff81111562000abf5762000abe62000664565b5b62000acb825462000887565b62000ad8828285620009fd565b600060209050601f83116001811462000b10576000841562000afb578287015190505b62000b07858262000a7a565b86555062000b77565b601f19841662000b2086620008bc565b60005b8281101562000b4a5784890151825560018201915060208501945060208101905062000b23565b8683101562000b6a578489015162000b66601f89168262000a5a565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bac8262000b7f565b9050919050565b62000bbe8162000b9f565b82525050565b600060408201905062000bdb600083018562000bb3565b62000bea602083018462000bb3565b9392505050565b600060208201905062000c08600083018462000bb3565b92915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000c7d602a8362000c0e565b915062000c8a8262000c1f565b604082019050919050565b6000602082019050818103600083015262000cb08162000c6e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000cef60198362000c0e565b915062000cfc8262000cb7565b602082019050919050565b6000602082019050818103600083015262000d228162000ce0565b9050919050565b6149698062000d396000396000f3fe6080604052600436106102515760003560e01c80636f8b44b011610139578063a035b1fe116100b6578063c87b56dd1161007a578063c87b56dd1461084b578063d5abeb0114610888578063dc33e681146108b3578063e985e9c5146108f0578063f2fde38b1461092d578063fe60d12c1461095657610251565b8063a035b1fe14610796578063a0712d68146107c1578063a22cb465146107dd578063b88d4fde14610806578063c39c5a351461082257610251565b80638da5cb5b116100fd5780638da5cb5b146106af57806391b7f5ed146106da57806395d89b41146107035780639a8b93b51461072e5780639ecfab9b1461076b57610251565b80636f8b44b0146105e057806370a0823114610609578063715018a6146106465780637bffd7551461065d5780637cb647591461068657610251565b80631f682a59116101d257806342842e0e1161019657806342842e0e146104cb5780634547ac38146104e7578063507e094f1461052457806355f804b31461054f5780636352211e1461057857806366cc5f0d146105b557610251565b80631f682a591461040457806323b872dd1461042f5780632a55205a1461044b5780633ccfd60b146104895780633e65408a146104a057610251565b8063081812fc11610219578063081812fc1461032c578063095ea7b3146103695780630c2cd50c1461038557806318160ddd146103b05780631edd3a59146103db57610251565b806301ffc9a71461025657806304634d8d14610293578063047ec840146102bc578063061431a8146102e557806306fdde0314610301575b600080fd5b34801561026257600080fd5b5061027d6004803603810190610278919061310c565b610981565b60405161028a9190613154565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613211565b610993565b005b3480156102c857600080fd5b506102e360048036038101906102de9190613291565b6109a1565b005b6102ff60048036038101906102fa9190613496565b6109ff565b005b34801561030d57600080fd5b50610316610b97565b6040516103239190613571565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190613593565b610c29565b60405161036091906135cf565b60405180910390f35b610383600480360381019061037e91906135ea565b610ca8565b005b34801561039157600080fd5b5061039a610dec565b6040516103a79190613639565b60405180910390f35b3480156103bc57600080fd5b506103c5610e06565b6040516103d29190613663565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190613291565b610e1d565b005b34801561041057600080fd5b50610419610e7b565b6040516104269190613639565b60405180910390f35b6104496004803603810190610444919061367e565b610e95565b005b34801561045757600080fd5b50610472600480360381019061046d91906136d1565b611077565b604051610480929190613711565b60405180910390f35b34801561049557600080fd5b5061049e611261565b005b3480156104ac57600080fd5b506104b5611318565b6040516104c29190613639565b60405180910390f35b6104e560048036038101906104e0919061367e565b611332565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613593565b611514565b60405161051b9190613663565b60405180910390f35b34801561053057600080fd5b50610539611548565b6040516105469190613663565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906137ef565b61154e565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613593565b611569565b6040516105ac91906135cf565b60405180910390f35b3480156105c157600080fd5b506105ca61157b565b6040516105d79190613663565b60405180910390f35b3480156105ec57600080fd5b5061060760048036038101906106029190613593565b611581565b005b34801561061557600080fd5b50610630600480360381019061062b9190613838565b61162e565b60405161063d9190613663565b60405180910390f35b34801561065257600080fd5b5061065b6116e6565b005b34801561066957600080fd5b50610684600480360381019061067f9190613865565b6116fa565b005b34801561069257600080fd5b506106ad60048036038101906106a891906138a5565b61189a565b005b3480156106bb57600080fd5b506106c46118ac565b6040516106d191906135cf565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613593565b6118d6565b005b34801561070f57600080fd5b506107186118e8565b6040516107259190613571565b60405180910390f35b34801561073a57600080fd5b50610755600480360381019061075091906138d2565b61197a565b6040516107629190613154565b60405180910390f35b34801561077757600080fd5b506107806119bb565b60405161078d9190613639565b60405180910390f35b3480156107a257600080fd5b506107ab6119d5565b6040516107b89190613663565b60405180910390f35b6107db60048036038101906107d69190613593565b6119db565b005b3480156107e957600080fd5b5061080460048036038101906107ff919061396d565b611ace565b005b610820600480360381019061081b9190613a4e565b611bd9565b005b34801561082e57600080fd5b5061084960048036038101906108449190613593565b611dbe565b005b34801561085757600080fd5b50610872600480360381019061086d9190613593565b611e25565b60405161087f9190613571565b60405180910390f35b34801561089457600080fd5b5061089d611ec3565b6040516108aa9190613663565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190613838565b611ec9565b6040516108e79190613663565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613ad1565b611edb565b6040516109249190613154565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190613838565b611f6f565b005b34801561096257600080fd5b5061096b611ff2565b6040516109789190613663565b60405180910390f35b600061098c82611ff8565b9050919050565b61099d8282612072565b5050565b6109a9612207565b81601460006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080601460086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6002600a5403610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613b5d565b60405180910390fd5b6002600a81905550601460009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210158015610a9b5750601460089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642105b610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190613bc9565b60405180910390fd5b610ae7601354338361197a565b610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90613c35565b60405180910390fd5b60105482610b3333612285565b610b3d9190613c84565b1115610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590613d04565b60405180910390fd5b610b8b82343360006122dc565b6001600a819055505050565b606060028054610ba690613d53565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290613d53565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c3482612420565b610c6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb382611569565b90508073ffffffffffffffffffffffffffffffffffffffff16610cd461247f565b73ffffffffffffffffffffffffffffffffffffffff1614610d3757610d0081610cfb61247f565b611edb565b610d36576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601460089054906101000a900467ffffffffffffffff1681565b6000610e10612487565b6001546000540303905090565b610e25612207565b81601460106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080601460186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b601460189054906101000a900467ffffffffffffffff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611065573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f0757610f02848484612490565b611071565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f50929190613d84565b602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f919190613dc2565b801561102357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610fe1929190613d84565b602060405180830381865afa158015610ffe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110229190613dc2565b5b61106457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161105b91906135cf565b60405180910390fd5b5b611070848484612490565b5b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff160361120c5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006112166127b2565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112429190613def565b61124c9190613e60565b90508160000151819350935050509250929050565b611269612207565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161128f90613ec2565b60006040518083038185875af1925050503d80600081146112cc576040519150601f19603f3d011682016040523d82523d6000602084013e6112d1565b606091505b5050905080611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90613f23565b60405180910390fd5b50565b601460109054906101000a900467ffffffffffffffff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611502573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113a45761139f8484846127bc565b61150e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113ed929190613d84565b602060405180830381865afa15801561140a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142e9190613dc2565b80156114c057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161147e929190613d84565b602060405180830381865afa15801561149b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114bf9190613dc2565b5b61150157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114f891906135cf565b60405180910390fd5b5b61150d8484846127bc565b5b50505050565b60008082036115265760009050611543565b6001826115339190613f43565b600c546115409190613def565b90505b919050565b600f5481565b611556612207565b80601190816115659190614123565b5050565b6000611574826127dc565b9050919050565b60105481565b611589612207565b600e5481106115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490614241565b60405180910390fd5b600d546115d86128a8565b6115e29190613c84565b811015611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b906142ad565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611695576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116ee612207565b6116f860006128bb565b565b6002600a540361173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690613b5d565b60405180910390fd5b6002600a8190555061174f612207565b600e548261175b6128a8565b6117659190613c84565b11156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90614319565b60405180910390fd5b600d548211156117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e290614385565b60405180910390fd5b60006032836117fa91906143a5565b1461183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190614422565b60405180910390fd5b81600d546118489190613f43565b600d81905550600060328361185d9190613e60565b905060005b8181101561188c57611879603260008560016122dc565b808061188490614442565b915050611862565b50506001600a819055505050565b6118a2612207565b8060138190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118de612207565b80600c8190555050565b6060600380546118f790613d53565b80601f016020809104026020016040519081016040528092919081815260200182805461192390613d53565b80156119705780601f1061194557610100808354040283529160200191611970565b820191906000526020600020905b81548152906001019060200180831161195357829003601f168201915b5050505050905090565b6000808360405160200161198e91906144d2565b6040516020818303038152906040528051906020012090506119b1838683612981565b9150509392505050565b601460009054906101000a900467ffffffffffffffff1681565b600c5481565b6002600a5403611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790613b5d565b60405180910390fd5b6002600a81905550601460109054906101000a900467ffffffffffffffff1667ffffffffffffffff164210158015611a775750601460189054906101000a900467ffffffffffffffff1667ffffffffffffffff1642105b611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613bc9565b60405180910390fd5b611ac381343360006122dc565b6001600a8190555050565b8060076000611adb61247f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b8861247f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bcd9190613154565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611daa573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c4c57611c4785858585612998565b611db7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611c95929190613d84565b602060405180830381865afa158015611cb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd69190613dc2565b8015611d6857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d26929190613d84565b602060405180830381865afa158015611d43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d679190613dc2565b5b611da957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611da091906135cf565b60405180910390fd5b5b611db685858585612998565b5b5050505050565b611dc6612207565b6002600a5403611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290613b5d565b60405180910390fd5b6002600a8190555080600f819055506001600a8190555050565b6060611e3082612420565b611e66576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e70612a0b565b90506000815103611e905760405180602001604052806000815250611ebb565b80611e9a84612a9d565b604051602001611eab929190614529565b6040516020818303038152906040525b915050919050565b600e5481565b6000611ed482612285565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f77612207565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd906145bf565b60405180910390fd5b611fef816128bb565b50565b600d5481565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061206b575061206a82612aed565b5b9050919050565b61207a6127b2565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90614651565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e906146bd565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b61220f612b57565b73ffffffffffffffffffffffffffffffffffffffff1661222d6118ac565b73ffffffffffffffffffffffffffffffffffffffff1614612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90614729565b60405180910390fd5b565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600e54600d54856122eb6128a8565b6122f59190613c84565b6122ff9190613c84565b1115612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790614319565b60405180910390fd5b6000841180156123525750600f548411155b612391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238890614795565b60405180910390fd5b80612410576123a76123a283612285565b611514565b6123c36123b384612285565b866123be9190613c84565b611514565b6123cd9190613f43565b83101561240f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240690614801565b60405180910390fd5b5b61241a8285612b5f565b50505050565b60008161242b612487565b1115801561243a575060005482105b8015612478575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600061249b826127dc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612502576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061250e84612b7d565b91509150612524818761251f61247f565b612ba4565b612570576125398661253461247f565b611edb565b61256f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036125d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e38686866001612be8565b80156125ee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506126bc85612698888887612bee565b7c020000000000000000000000000000000000000000000000000000000017612c16565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612742576000600185019050600060046000838152602001908152602001600020540361274057600054811461273f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127aa8686866001612c41565b505050505050565b6000612710905090565b6127d783838360405180602001604052806000815250611bd9565b505050565b600080829050806127eb612487565b11612871576000548110156128705760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361286e575b6000810361286457600460008360019003935083815260200190815260200160002054905061283a565b80925050506128a3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006128b2612487565b60005403905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261298e8584612c47565b1490509392505050565b6129a3848484610e95565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a05576129ce84848484612c9d565b612a04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060118054612a1a90613d53565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4690613d53565b8015612a935780601f10612a6857610100808354040283529160200191612a93565b820191906000526020600020905b815481529060010190602001808311612a7657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612ad857600184039350600a81066030018453600a8104905080612ab6575b50828103602084039350808452505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612b79828260405180602001604052806000815250612ded565b5050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c05868684612e8a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008082905060005b8451811015612c9257612c7d82868381518110612c7057612c6f614821565b5b6020026020010151612e93565b91508080612c8a90614442565b915050612c50565b508091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cc361247f565b8786866040518563ffffffff1660e01b8152600401612ce594939291906148a5565b6020604051808303816000875af1925050508015612d2157506040513d601f19601f82011682018060405250810190612d1e9190614906565b60015b612d9a573d8060008114612d51576040519150601f19603f3d011682016040523d82523d6000602084013e612d56565b606091505b506000815103612d92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612df78383612ebe565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e8557600080549050600083820390505b612e376000868380600101945086612c9d565b612e6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e24578160005414612e8257600080fd5b50505b505050565b60009392505050565b6000818310612eab57612ea68284613079565b612eb6565b612eb58383613079565b5b905092915050565b60008054905060008203612efe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f0b6000848385612be8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612f8283612f736000866000612bee565b612f7c85613090565b17612c16565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461302357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612fe8565b506000820361305e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130746000848385612c41565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130e9816130b4565b81146130f457600080fd5b50565b600081359050613106816130e0565b92915050565b600060208284031215613122576131216130aa565b5b6000613130848285016130f7565b91505092915050565b60008115159050919050565b61314e81613139565b82525050565b60006020820190506131696000830184613145565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061319a8261316f565b9050919050565b6131aa8161318f565b81146131b557600080fd5b50565b6000813590506131c7816131a1565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6131ee816131cd565b81146131f957600080fd5b50565b60008135905061320b816131e5565b92915050565b60008060408385031215613228576132276130aa565b5b6000613236858286016131b8565b9250506020613247858286016131fc565b9150509250929050565b600067ffffffffffffffff82169050919050565b61326e81613251565b811461327957600080fd5b50565b60008135905061328b81613265565b92915050565b600080604083850312156132a8576132a76130aa565b5b60006132b68582860161327c565b92505060206132c78582860161327c565b9150509250929050565b6000819050919050565b6132e4816132d1565b81146132ef57600080fd5b50565b600081359050613301816132db565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133558261330c565b810181811067ffffffffffffffff821117156133745761337361331d565b5b80604052505050565b60006133876130a0565b9050613393828261334c565b919050565b600067ffffffffffffffff8211156133b3576133b261331d565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6133dc816133c9565b81146133e757600080fd5b50565b6000813590506133f9816133d3565b92915050565b600061341261340d84613398565b61337d565b90508083825260208201905060208402830185811115613435576134346133c4565b5b835b8181101561345e578061344a88826133ea565b845260208401935050602081019050613437565b5050509392505050565b600082601f83011261347d5761347c613307565b5b813561348d8482602086016133ff565b91505092915050565b600080604083850312156134ad576134ac6130aa565b5b60006134bb858286016132f2565b925050602083013567ffffffffffffffff8111156134dc576134db6130af565b5b6134e885828601613468565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561352c578082015181840152602081019050613511565b60008484015250505050565b6000613543826134f2565b61354d81856134fd565b935061355d81856020860161350e565b6135668161330c565b840191505092915050565b6000602082019050818103600083015261358b8184613538565b905092915050565b6000602082840312156135a9576135a86130aa565b5b60006135b7848285016132f2565b91505092915050565b6135c98161318f565b82525050565b60006020820190506135e460008301846135c0565b92915050565b60008060408385031215613601576136006130aa565b5b600061360f858286016131b8565b9250506020613620858286016132f2565b9150509250929050565b61363381613251565b82525050565b600060208201905061364e600083018461362a565b92915050565b61365d816132d1565b82525050565b60006020820190506136786000830184613654565b92915050565b600080600060608486031215613697576136966130aa565b5b60006136a5868287016131b8565b93505060206136b6868287016131b8565b92505060406136c7868287016132f2565b9150509250925092565b600080604083850312156136e8576136e76130aa565b5b60006136f6858286016132f2565b9250506020613707858286016132f2565b9150509250929050565b600060408201905061372660008301856135c0565b6137336020830184613654565b9392505050565b600080fd5b600067ffffffffffffffff82111561375a5761375961331d565b5b6137638261330c565b9050602081019050919050565b82818337600083830152505050565b600061379261378d8461373f565b61337d565b9050828152602081018484840111156137ae576137ad61373a565b5b6137b9848285613770565b509392505050565b600082601f8301126137d6576137d5613307565b5b81356137e684826020860161377f565b91505092915050565b600060208284031215613805576138046130aa565b5b600082013567ffffffffffffffff811115613823576138226130af565b5b61382f848285016137c1565b91505092915050565b60006020828403121561384e5761384d6130aa565b5b600061385c848285016131b8565b91505092915050565b6000806040838503121561387c5761387b6130aa565b5b600061388a858286016132f2565b925050602061389b858286016131b8565b9150509250929050565b6000602082840312156138bb576138ba6130aa565b5b60006138c9848285016133ea565b91505092915050565b6000806000606084860312156138eb576138ea6130aa565b5b60006138f9868287016133ea565b935050602061390a868287016131b8565b925050604084013567ffffffffffffffff81111561392b5761392a6130af565b5b61393786828701613468565b9150509250925092565b61394a81613139565b811461395557600080fd5b50565b60008135905061396781613941565b92915050565b60008060408385031215613984576139836130aa565b5b6000613992858286016131b8565b92505060206139a385828601613958565b9150509250929050565b600067ffffffffffffffff8211156139c8576139c761331d565b5b6139d18261330c565b9050602081019050919050565b60006139f16139ec846139ad565b61337d565b905082815260208101848484011115613a0d57613a0c61373a565b5b613a18848285613770565b509392505050565b600082601f830112613a3557613a34613307565b5b8135613a458482602086016139de565b91505092915050565b60008060008060808587031215613a6857613a676130aa565b5b6000613a76878288016131b8565b9450506020613a87878288016131b8565b9350506040613a98878288016132f2565b925050606085013567ffffffffffffffff811115613ab957613ab86130af565b5b613ac587828801613a20565b91505092959194509250565b60008060408385031215613ae857613ae76130aa565b5b6000613af6858286016131b8565b9250506020613b07858286016131b8565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b47601f836134fd565b9150613b5282613b11565b602082019050919050565b60006020820190508181036000830152613b7681613b3a565b9050919050565b7f546869732073616c65206973206e6f7420616374697665000000000000000000600082015250565b6000613bb36017836134fd565b9150613bbe82613b7d565b602082019050919050565b60006020820190508181036000830152613be281613ba6565b9050919050565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b6000613c1f6014836134fd565b9150613c2a82613be9565b602082019050919050565b60006020820190508181036000830152613c4e81613c12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c8f826132d1565b9150613c9a836132d1565b9250828201905080821115613cb257613cb1613c55565b5b92915050565b7f45786365656473206d617820616d6f756e7420666f722077686974656c697374600082015250565b6000613cee6020836134fd565b9150613cf982613cb8565b602082019050919050565b60006020820190508181036000830152613d1d81613ce1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6b57607f821691505b602082108103613d7e57613d7d613d24565b5b50919050565b6000604082019050613d9960008301856135c0565b613da660208301846135c0565b9392505050565b600081519050613dbc81613941565b92915050565b600060208284031215613dd857613dd76130aa565b5b6000613de684828501613dad565b91505092915050565b6000613dfa826132d1565b9150613e05836132d1565b9250828202613e13816132d1565b91508282048414831517613e2a57613e29613c55565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e6b826132d1565b9150613e76836132d1565b925082613e8657613e85613e31565b5b828204905092915050565b600081905092915050565b50565b6000613eac600083613e91565b9150613eb782613e9c565b600082019050919050565b6000613ecd82613e9f565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000613f0d600f836134fd565b9150613f1882613ed7565b602082019050919050565b60006020820190508181036000830152613f3c81613f00565b9050919050565b6000613f4e826132d1565b9150613f59836132d1565b9250828203905081811115613f7157613f70613c55565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fd97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f9c565b613fe38683613f9c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061402061401b614016846132d1565b613ffb565b6132d1565b9050919050565b6000819050919050565b61403a83614005565b61404e61404682614027565b848454613fa9565b825550505050565b600090565b614063614056565b61406e818484614031565b505050565b5b818110156140925761408760008261405b565b600181019050614074565b5050565b601f8211156140d7576140a881613f77565b6140b184613f8c565b810160208510156140c0578190505b6140d46140cc85613f8c565b830182614073565b50505b505050565b600082821c905092915050565b60006140fa600019846008026140dc565b1980831691505092915050565b600061411383836140e9565b9150826002028217905092915050565b61412c826134f2565b67ffffffffffffffff8111156141455761414461331d565b5b61414f8254613d53565b61415a828285614096565b600060209050601f83116001811461418d576000841561417b578287015190505b6141858582614107565b8655506141ed565b601f19841661419b86613f77565b60005b828110156141c35784890151825560018201915060208501945060208101905061419e565b868310156141e057848901516141dc601f8916826140e9565b8355505b6001600288020188555050505b505050505050565b7f4d617820737570706c792063616e6e6f7420626520696e637265617365640000600082015250565b600061422b601e836134fd565b9150614236826141f5565b602082019050919050565b6000602082019050818103600083015261425a8161421e565b9050919050565b7f496e76616c6964206e657720737570706c790000000000000000000000000000600082015250565b60006142976012836134fd565b91506142a282614261565b602082019050919050565b600060208201905081810360008301526142c68161428a565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006143036013836134fd565b915061430e826142cd565b602082019050919050565b60006020820190508181036000830152614332816142f6565b9050919050565b7f4d61782072657365727665642065786365656465640000000000000000000000600082015250565b600061436f6015836134fd565b915061437a82614339565b602082019050919050565b6000602082019050818103600083015261439e81614362565b9050919050565b60006143b0826132d1565b91506143bb836132d1565b9250826143cb576143ca613e31565b5b828206905092915050565b7f43616e206f6e6c79206d696e742061206d756c7469706c65206f662035300000600082015250565b600061440c601e836134fd565b9150614417826143d6565b602082019050919050565b6000602082019050818103600083015261443b816143ff565b9050919050565b600061444d826132d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361447f5761447e613c55565b5b600182019050919050565b60008160601b9050919050565b60006144a28261448a565b9050919050565b60006144b482614497565b9050919050565b6144cc6144c78261318f565b6144a9565b82525050565b60006144de82846144bb565b60148201915081905092915050565b600081905092915050565b6000614503826134f2565b61450d81856144ed565b935061451d81856020860161350e565b80840191505092915050565b600061453582856144f8565b915061454182846144f8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145a96026836134fd565b91506145b48261454d565b604082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061463b602a836134fd565b9150614646826145df565b604082019050919050565b6000602082019050818103600083015261466a8161462e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006146a76019836134fd565b91506146b282614671565b602082019050919050565b600060208201905081810360008301526146d68161469a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147136020836134fd565b915061471e826146dd565b602082019050919050565b6000602082019050818103600083015261474281614706565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061477f6013836134fd565b915061478a82614749565b602082019050919050565b600060208201905081810360008301526147ae81614772565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006147eb6012836134fd565b91506147f6826147b5565b602082019050919050565b6000602082019050818103600083015261481a816147de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061487782614850565b614881818561485b565b935061489181856020860161350e565b61489a8161330c565b840191505092915050565b60006080820190506148ba60008301876135c0565b6148c760208301866135c0565b6148d46040830185613654565b81810360608301526148e6818461486c565b905095945050505050565b600081519050614900816130e0565b92915050565b60006020828403121561491c5761491b6130aa565b5b600061492a848285016148f1565b9150509291505056fea2646970667358221220bef99880ebd00ed769088213d20a6032fe2a0710a0c48379e9d06e255c17079e64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b437574696520506570657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024350000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636f8b44b011610139578063a035b1fe116100b6578063c87b56dd1161007a578063c87b56dd1461084b578063d5abeb0114610888578063dc33e681146108b3578063e985e9c5146108f0578063f2fde38b1461092d578063fe60d12c1461095657610251565b8063a035b1fe14610796578063a0712d68146107c1578063a22cb465146107dd578063b88d4fde14610806578063c39c5a351461082257610251565b80638da5cb5b116100fd5780638da5cb5b146106af57806391b7f5ed146106da57806395d89b41146107035780639a8b93b51461072e5780639ecfab9b1461076b57610251565b80636f8b44b0146105e057806370a0823114610609578063715018a6146106465780637bffd7551461065d5780637cb647591461068657610251565b80631f682a59116101d257806342842e0e1161019657806342842e0e146104cb5780634547ac38146104e7578063507e094f1461052457806355f804b31461054f5780636352211e1461057857806366cc5f0d146105b557610251565b80631f682a591461040457806323b872dd1461042f5780632a55205a1461044b5780633ccfd60b146104895780633e65408a146104a057610251565b8063081812fc11610219578063081812fc1461032c578063095ea7b3146103695780630c2cd50c1461038557806318160ddd146103b05780631edd3a59146103db57610251565b806301ffc9a71461025657806304634d8d14610293578063047ec840146102bc578063061431a8146102e557806306fdde0314610301575b600080fd5b34801561026257600080fd5b5061027d6004803603810190610278919061310c565b610981565b60405161028a9190613154565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613211565b610993565b005b3480156102c857600080fd5b506102e360048036038101906102de9190613291565b6109a1565b005b6102ff60048036038101906102fa9190613496565b6109ff565b005b34801561030d57600080fd5b50610316610b97565b6040516103239190613571565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190613593565b610c29565b60405161036091906135cf565b60405180910390f35b610383600480360381019061037e91906135ea565b610ca8565b005b34801561039157600080fd5b5061039a610dec565b6040516103a79190613639565b60405180910390f35b3480156103bc57600080fd5b506103c5610e06565b6040516103d29190613663565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190613291565b610e1d565b005b34801561041057600080fd5b50610419610e7b565b6040516104269190613639565b60405180910390f35b6104496004803603810190610444919061367e565b610e95565b005b34801561045757600080fd5b50610472600480360381019061046d91906136d1565b611077565b604051610480929190613711565b60405180910390f35b34801561049557600080fd5b5061049e611261565b005b3480156104ac57600080fd5b506104b5611318565b6040516104c29190613639565b60405180910390f35b6104e560048036038101906104e0919061367e565b611332565b005b3480156104f357600080fd5b5061050e60048036038101906105099190613593565b611514565b60405161051b9190613663565b60405180910390f35b34801561053057600080fd5b50610539611548565b6040516105469190613663565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906137ef565b61154e565b005b34801561058457600080fd5b5061059f600480360381019061059a9190613593565b611569565b6040516105ac91906135cf565b60405180910390f35b3480156105c157600080fd5b506105ca61157b565b6040516105d79190613663565b60405180910390f35b3480156105ec57600080fd5b5061060760048036038101906106029190613593565b611581565b005b34801561061557600080fd5b50610630600480360381019061062b9190613838565b61162e565b60405161063d9190613663565b60405180910390f35b34801561065257600080fd5b5061065b6116e6565b005b34801561066957600080fd5b50610684600480360381019061067f9190613865565b6116fa565b005b34801561069257600080fd5b506106ad60048036038101906106a891906138a5565b61189a565b005b3480156106bb57600080fd5b506106c46118ac565b6040516106d191906135cf565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613593565b6118d6565b005b34801561070f57600080fd5b506107186118e8565b6040516107259190613571565b60405180910390f35b34801561073a57600080fd5b50610755600480360381019061075091906138d2565b61197a565b6040516107629190613154565b60405180910390f35b34801561077757600080fd5b506107806119bb565b60405161078d9190613639565b60405180910390f35b3480156107a257600080fd5b506107ab6119d5565b6040516107b89190613663565b60405180910390f35b6107db60048036038101906107d69190613593565b6119db565b005b3480156107e957600080fd5b5061080460048036038101906107ff919061396d565b611ace565b005b610820600480360381019061081b9190613a4e565b611bd9565b005b34801561082e57600080fd5b5061084960048036038101906108449190613593565b611dbe565b005b34801561085757600080fd5b50610872600480360381019061086d9190613593565b611e25565b60405161087f9190613571565b60405180910390f35b34801561089457600080fd5b5061089d611ec3565b6040516108aa9190613663565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190613838565b611ec9565b6040516108e79190613663565b60405180910390f35b3480156108fc57600080fd5b5061091760048036038101906109129190613ad1565b611edb565b6040516109249190613154565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f9190613838565b611f6f565b005b34801561096257600080fd5b5061096b611ff2565b6040516109789190613663565b60405180910390f35b600061098c82611ff8565b9050919050565b61099d8282612072565b5050565b6109a9612207565b81601460006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080601460086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6002600a5403610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90613b5d565b60405180910390fd5b6002600a81905550601460009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210158015610a9b5750601460089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642105b610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190613bc9565b60405180910390fd5b610ae7601354338361197a565b610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d90613c35565b60405180910390fd5b60105482610b3333612285565b610b3d9190613c84565b1115610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590613d04565b60405180910390fd5b610b8b82343360006122dc565b6001600a819055505050565b606060028054610ba690613d53565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290613d53565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c3482612420565b610c6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb382611569565b90508073ffffffffffffffffffffffffffffffffffffffff16610cd461247f565b73ffffffffffffffffffffffffffffffffffffffff1614610d3757610d0081610cfb61247f565b611edb565b610d36576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601460089054906101000a900467ffffffffffffffff1681565b6000610e10612487565b6001546000540303905090565b610e25612207565b81601460106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080601460186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b601460189054906101000a900467ffffffffffffffff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611065573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f0757610f02848484612490565b611071565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610f50929190613d84565b602060405180830381865afa158015610f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f919190613dc2565b801561102357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610fe1929190613d84565b602060405180830381865afa158015610ffe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110229190613dc2565b5b61106457336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161105b91906135cf565b60405180910390fd5b5b611070848484612490565b5b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff160361120c5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006112166127b2565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866112429190613def565b61124c9190613e60565b90508160000151819350935050509250929050565b611269612207565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161128f90613ec2565b60006040518083038185875af1925050503d80600081146112cc576040519150601f19603f3d011682016040523d82523d6000602084013e6112d1565b606091505b5050905080611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c90613f23565b60405180910390fd5b50565b601460109054906101000a900467ffffffffffffffff1681565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611502573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113a45761139f8484846127bc565b61150e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016113ed929190613d84565b602060405180830381865afa15801561140a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142e9190613dc2565b80156114c057506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161147e929190613d84565b602060405180830381865afa15801561149b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114bf9190613dc2565b5b61150157336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016114f891906135cf565b60405180910390fd5b5b61150d8484846127bc565b5b50505050565b60008082036115265760009050611543565b6001826115339190613f43565b600c546115409190613def565b90505b919050565b600f5481565b611556612207565b80601190816115659190614123565b5050565b6000611574826127dc565b9050919050565b60105481565b611589612207565b600e5481106115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490614241565b60405180910390fd5b600d546115d86128a8565b6115e29190613c84565b811015611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b906142ad565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611695576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116ee612207565b6116f860006128bb565b565b6002600a540361173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690613b5d565b60405180910390fd5b6002600a8190555061174f612207565b600e548261175b6128a8565b6117659190613c84565b11156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90614319565b60405180910390fd5b600d548211156117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e290614385565b60405180910390fd5b60006032836117fa91906143a5565b1461183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190614422565b60405180910390fd5b81600d546118489190613f43565b600d81905550600060328361185d9190613e60565b905060005b8181101561188c57611879603260008560016122dc565b808061188490614442565b915050611862565b50506001600a819055505050565b6118a2612207565b8060138190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118de612207565b80600c8190555050565b6060600380546118f790613d53565b80601f016020809104026020016040519081016040528092919081815260200182805461192390613d53565b80156119705780601f1061194557610100808354040283529160200191611970565b820191906000526020600020905b81548152906001019060200180831161195357829003601f168201915b5050505050905090565b6000808360405160200161198e91906144d2565b6040516020818303038152906040528051906020012090506119b1838683612981565b9150509392505050565b601460009054906101000a900467ffffffffffffffff1681565b600c5481565b6002600a5403611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790613b5d565b60405180910390fd5b6002600a81905550601460109054906101000a900467ffffffffffffffff1667ffffffffffffffff164210158015611a775750601460189054906101000a900467ffffffffffffffff1667ffffffffffffffff1642105b611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613bc9565b60405180910390fd5b611ac381343360006122dc565b6001600a8190555050565b8060076000611adb61247f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b8861247f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bcd9190613154565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611daa573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c4c57611c4785858585612998565b611db7565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611c95929190613d84565b602060405180830381865afa158015611cb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd69190613dc2565b8015611d6857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611d26929190613d84565b602060405180830381865afa158015611d43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d679190613dc2565b5b611da957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611da091906135cf565b60405180910390fd5b5b611db685858585612998565b5b5050505050565b611dc6612207565b6002600a5403611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290613b5d565b60405180910390fd5b6002600a8190555080600f819055506001600a8190555050565b6060611e3082612420565b611e66576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e70612a0b565b90506000815103611e905760405180602001604052806000815250611ebb565b80611e9a84612a9d565b604051602001611eab929190614529565b6040516020818303038152906040525b915050919050565b600e5481565b6000611ed482612285565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f77612207565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd906145bf565b60405180910390fd5b611fef816128bb565b50565b600d5481565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061206b575061206a82612aed565b5b9050919050565b61207a6127b2565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90614651565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213e906146bd565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b61220f612b57565b73ffffffffffffffffffffffffffffffffffffffff1661222d6118ac565b73ffffffffffffffffffffffffffffffffffffffff1614612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90614729565b60405180910390fd5b565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600e54600d54856122eb6128a8565b6122f59190613c84565b6122ff9190613c84565b1115612340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233790614319565b60405180910390fd5b6000841180156123525750600f548411155b612391576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238890614795565b60405180910390fd5b80612410576123a76123a283612285565b611514565b6123c36123b384612285565b866123be9190613c84565b611514565b6123cd9190613f43565b83101561240f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240690614801565b60405180910390fd5b5b61241a8285612b5f565b50505050565b60008161242b612487565b1115801561243a575060005482105b8015612478575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600061249b826127dc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612502576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061250e84612b7d565b91509150612524818761251f61247f565b612ba4565b612570576125398661253461247f565b611edb565b61256f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036125d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e38686866001612be8565b80156125ee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506126bc85612698888887612bee565b7c020000000000000000000000000000000000000000000000000000000017612c16565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612742576000600185019050600060046000838152602001908152602001600020540361274057600054811461273f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127aa8686866001612c41565b505050505050565b6000612710905090565b6127d783838360405180602001604052806000815250611bd9565b505050565b600080829050806127eb612487565b11612871576000548110156128705760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361286e575b6000810361286457600460008360019003935083815260200190815260200160002054905061283a565b80925050506128a3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60006128b2612487565b60005403905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261298e8584612c47565b1490509392505050565b6129a3848484610e95565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a05576129ce84848484612c9d565b612a04576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060118054612a1a90613d53565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4690613d53565b8015612a935780601f10612a6857610100808354040283529160200191612a93565b820191906000526020600020905b815481529060010190602001808311612a7657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612ad857600184039350600a81066030018453600a8104905080612ab6575b50828103602084039350808452505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612b79828260405180602001604052806000815250612ded565b5050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612c05868684612e8a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008082905060005b8451811015612c9257612c7d82868381518110612c7057612c6f614821565b5b6020026020010151612e93565b91508080612c8a90614442565b915050612c50565b508091505092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cc361247f565b8786866040518563ffffffff1660e01b8152600401612ce594939291906148a5565b6020604051808303816000875af1925050508015612d2157506040513d601f19601f82011682018060405250810190612d1e9190614906565b60015b612d9a573d8060008114612d51576040519150601f19603f3d011682016040523d82523d6000602084013e612d56565b606091505b506000815103612d92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612df78383612ebe565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612e8557600080549050600083820390505b612e376000868380600101945086612c9d565b612e6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e24578160005414612e8257600080fd5b50505b505050565b60009392505050565b6000818310612eab57612ea68284613079565b612eb6565b612eb58383613079565b5b905092915050565b60008054905060008203612efe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f0b6000848385612be8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612f8283612f736000866000612bee565b612f7c85613090565b17612c16565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461302357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612fe8565b506000820361305e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130746000848385612c41565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130e9816130b4565b81146130f457600080fd5b50565b600081359050613106816130e0565b92915050565b600060208284031215613122576131216130aa565b5b6000613130848285016130f7565b91505092915050565b60008115159050919050565b61314e81613139565b82525050565b60006020820190506131696000830184613145565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061319a8261316f565b9050919050565b6131aa8161318f565b81146131b557600080fd5b50565b6000813590506131c7816131a1565b92915050565b60006bffffffffffffffffffffffff82169050919050565b6131ee816131cd565b81146131f957600080fd5b50565b60008135905061320b816131e5565b92915050565b60008060408385031215613228576132276130aa565b5b6000613236858286016131b8565b9250506020613247858286016131fc565b9150509250929050565b600067ffffffffffffffff82169050919050565b61326e81613251565b811461327957600080fd5b50565b60008135905061328b81613265565b92915050565b600080604083850312156132a8576132a76130aa565b5b60006132b68582860161327c565b92505060206132c78582860161327c565b9150509250929050565b6000819050919050565b6132e4816132d1565b81146132ef57600080fd5b50565b600081359050613301816132db565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133558261330c565b810181811067ffffffffffffffff821117156133745761337361331d565b5b80604052505050565b60006133876130a0565b9050613393828261334c565b919050565b600067ffffffffffffffff8211156133b3576133b261331d565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6133dc816133c9565b81146133e757600080fd5b50565b6000813590506133f9816133d3565b92915050565b600061341261340d84613398565b61337d565b90508083825260208201905060208402830185811115613435576134346133c4565b5b835b8181101561345e578061344a88826133ea565b845260208401935050602081019050613437565b5050509392505050565b600082601f83011261347d5761347c613307565b5b813561348d8482602086016133ff565b91505092915050565b600080604083850312156134ad576134ac6130aa565b5b60006134bb858286016132f2565b925050602083013567ffffffffffffffff8111156134dc576134db6130af565b5b6134e885828601613468565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561352c578082015181840152602081019050613511565b60008484015250505050565b6000613543826134f2565b61354d81856134fd565b935061355d81856020860161350e565b6135668161330c565b840191505092915050565b6000602082019050818103600083015261358b8184613538565b905092915050565b6000602082840312156135a9576135a86130aa565b5b60006135b7848285016132f2565b91505092915050565b6135c98161318f565b82525050565b60006020820190506135e460008301846135c0565b92915050565b60008060408385031215613601576136006130aa565b5b600061360f858286016131b8565b9250506020613620858286016132f2565b9150509250929050565b61363381613251565b82525050565b600060208201905061364e600083018461362a565b92915050565b61365d816132d1565b82525050565b60006020820190506136786000830184613654565b92915050565b600080600060608486031215613697576136966130aa565b5b60006136a5868287016131b8565b93505060206136b6868287016131b8565b92505060406136c7868287016132f2565b9150509250925092565b600080604083850312156136e8576136e76130aa565b5b60006136f6858286016132f2565b9250506020613707858286016132f2565b9150509250929050565b600060408201905061372660008301856135c0565b6137336020830184613654565b9392505050565b600080fd5b600067ffffffffffffffff82111561375a5761375961331d565b5b6137638261330c565b9050602081019050919050565b82818337600083830152505050565b600061379261378d8461373f565b61337d565b9050828152602081018484840111156137ae576137ad61373a565b5b6137b9848285613770565b509392505050565b600082601f8301126137d6576137d5613307565b5b81356137e684826020860161377f565b91505092915050565b600060208284031215613805576138046130aa565b5b600082013567ffffffffffffffff811115613823576138226130af565b5b61382f848285016137c1565b91505092915050565b60006020828403121561384e5761384d6130aa565b5b600061385c848285016131b8565b91505092915050565b6000806040838503121561387c5761387b6130aa565b5b600061388a858286016132f2565b925050602061389b858286016131b8565b9150509250929050565b6000602082840312156138bb576138ba6130aa565b5b60006138c9848285016133ea565b91505092915050565b6000806000606084860312156138eb576138ea6130aa565b5b60006138f9868287016133ea565b935050602061390a868287016131b8565b925050604084013567ffffffffffffffff81111561392b5761392a6130af565b5b61393786828701613468565b9150509250925092565b61394a81613139565b811461395557600080fd5b50565b60008135905061396781613941565b92915050565b60008060408385031215613984576139836130aa565b5b6000613992858286016131b8565b92505060206139a385828601613958565b9150509250929050565b600067ffffffffffffffff8211156139c8576139c761331d565b5b6139d18261330c565b9050602081019050919050565b60006139f16139ec846139ad565b61337d565b905082815260208101848484011115613a0d57613a0c61373a565b5b613a18848285613770565b509392505050565b600082601f830112613a3557613a34613307565b5b8135613a458482602086016139de565b91505092915050565b60008060008060808587031215613a6857613a676130aa565b5b6000613a76878288016131b8565b9450506020613a87878288016131b8565b9350506040613a98878288016132f2565b925050606085013567ffffffffffffffff811115613ab957613ab86130af565b5b613ac587828801613a20565b91505092959194509250565b60008060408385031215613ae857613ae76130aa565b5b6000613af6858286016131b8565b9250506020613b07858286016131b8565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b47601f836134fd565b9150613b5282613b11565b602082019050919050565b60006020820190508181036000830152613b7681613b3a565b9050919050565b7f546869732073616c65206973206e6f7420616374697665000000000000000000600082015250565b6000613bb36017836134fd565b9150613bbe82613b7d565b602082019050919050565b60006020820190508181036000830152613be281613ba6565b9050919050565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b6000613c1f6014836134fd565b9150613c2a82613be9565b602082019050919050565b60006020820190508181036000830152613c4e81613c12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c8f826132d1565b9150613c9a836132d1565b9250828201905080821115613cb257613cb1613c55565b5b92915050565b7f45786365656473206d617820616d6f756e7420666f722077686974656c697374600082015250565b6000613cee6020836134fd565b9150613cf982613cb8565b602082019050919050565b60006020820190508181036000830152613d1d81613ce1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6b57607f821691505b602082108103613d7e57613d7d613d24565b5b50919050565b6000604082019050613d9960008301856135c0565b613da660208301846135c0565b9392505050565b600081519050613dbc81613941565b92915050565b600060208284031215613dd857613dd76130aa565b5b6000613de684828501613dad565b91505092915050565b6000613dfa826132d1565b9150613e05836132d1565b9250828202613e13816132d1565b91508282048414831517613e2a57613e29613c55565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e6b826132d1565b9150613e76836132d1565b925082613e8657613e85613e31565b5b828204905092915050565b600081905092915050565b50565b6000613eac600083613e91565b9150613eb782613e9c565b600082019050919050565b6000613ecd82613e9f565b9150819050919050565b7f5769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000613f0d600f836134fd565b9150613f1882613ed7565b602082019050919050565b60006020820190508181036000830152613f3c81613f00565b9050919050565b6000613f4e826132d1565b9150613f59836132d1565b9250828203905081811115613f7157613f70613c55565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613fd97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f9c565b613fe38683613f9c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061402061401b614016846132d1565b613ffb565b6132d1565b9050919050565b6000819050919050565b61403a83614005565b61404e61404682614027565b848454613fa9565b825550505050565b600090565b614063614056565b61406e818484614031565b505050565b5b818110156140925761408760008261405b565b600181019050614074565b5050565b601f8211156140d7576140a881613f77565b6140b184613f8c565b810160208510156140c0578190505b6140d46140cc85613f8c565b830182614073565b50505b505050565b600082821c905092915050565b60006140fa600019846008026140dc565b1980831691505092915050565b600061411383836140e9565b9150826002028217905092915050565b61412c826134f2565b67ffffffffffffffff8111156141455761414461331d565b5b61414f8254613d53565b61415a828285614096565b600060209050601f83116001811461418d576000841561417b578287015190505b6141858582614107565b8655506141ed565b601f19841661419b86613f77565b60005b828110156141c35784890151825560018201915060208501945060208101905061419e565b868310156141e057848901516141dc601f8916826140e9565b8355505b6001600288020188555050505b505050505050565b7f4d617820737570706c792063616e6e6f7420626520696e637265617365640000600082015250565b600061422b601e836134fd565b9150614236826141f5565b602082019050919050565b6000602082019050818103600083015261425a8161421e565b9050919050565b7f496e76616c6964206e657720737570706c790000000000000000000000000000600082015250565b60006142976012836134fd565b91506142a282614261565b602082019050919050565b600060208201905081810360008301526142c68161428a565b9050919050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b60006143036013836134fd565b915061430e826142cd565b602082019050919050565b60006020820190508181036000830152614332816142f6565b9050919050565b7f4d61782072657365727665642065786365656465640000000000000000000000600082015250565b600061436f6015836134fd565b915061437a82614339565b602082019050919050565b6000602082019050818103600083015261439e81614362565b9050919050565b60006143b0826132d1565b91506143bb836132d1565b9250826143cb576143ca613e31565b5b828206905092915050565b7f43616e206f6e6c79206d696e742061206d756c7469706c65206f662035300000600082015250565b600061440c601e836134fd565b9150614417826143d6565b602082019050919050565b6000602082019050818103600083015261443b816143ff565b9050919050565b600061444d826132d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361447f5761447e613c55565b5b600182019050919050565b60008160601b9050919050565b60006144a28261448a565b9050919050565b60006144b482614497565b9050919050565b6144cc6144c78261318f565b6144a9565b82525050565b60006144de82846144bb565b60148201915081905092915050565b600081905092915050565b6000614503826134f2565b61450d81856144ed565b935061451d81856020860161350e565b80840191505092915050565b600061453582856144f8565b915061454182846144f8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145a96026836134fd565b91506145b48261454d565b604082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061463b602a836134fd565b9150614646826145df565b604082019050919050565b6000602082019050818103600083015261466a8161462e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006146a76019836134fd565b91506146b282614671565b602082019050919050565b600060208201905081810360008301526146d68161469a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006147136020836134fd565b915061471e826146dd565b602082019050919050565b6000602082019050818103600083015261474281614706565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061477f6013836134fd565b915061478a82614749565b602082019050919050565b600060208201905081810360008301526147ae81614772565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006147eb6012836134fd565b91506147f6826147b5565b602082019050919050565b6000602082019050818103600083015261481a816147de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061487782614850565b614881818561485b565b935061489181856020860161350e565b61489a8161330c565b840191505092915050565b60006080820190506148ba60008301876135c0565b6148c760208301866135c0565b6148d46040830185613654565b81810360608301526148e6818461486c565b905095945050505050565b600081519050614900816130e0565b92915050565b60006020828403121561491c5761491b6130aa565b5b600061492a848285016148f1565b9150509291505056fea2646970667358221220bef99880ebd00ed769088213d20a6032fe2a0710a0c48379e9d06e255c17079e64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b437574696520506570657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024350000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Cutie Pepes
Arg [1] : _symbol (string): CP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 4375746965205065706573000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4350000000000000000000000000000000000000000000000000000000000000


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.