ETH Price: $3,475.84 (+7.05%)
Gas: 10 Gwei

Token

Longzu Pass (Longzu)
 

Overview

Max Total Supply

500 Longzu

Holders

361

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0xzsc.eth
Balance
1 Longzu
0xb6f410ae7c9d68aadf6a615a3ec8b540e91e95d1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MyToken

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : mint.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.9 <0.9.0;

import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';

contract MyToken is ERC721A, Ownable, ReentrancyGuard {

    uint8 public paused = 1;
    uint8 public devWithdrawPercent = 3;

    uint256 public mintLimit;
    string public baseURI;
    string public imageURI;

    uint256 public immutable cost;
    uint256 public immutable maxSupply;

    mapping(address => uint256[]) public mintTokenIdsMap;

    mapping(address => bool) public ogAddrMap;
    mapping(address => bool) public wlAddrMap;

    constructor(
        string memory baseURI_,
        string memory imageURI_,
        uint256 mintLimit_,
        uint256 cost_,
        uint256 maxSupply_,
        string memory name,
        string memory symbol
    ) ERC721A(name, symbol) {
        cost = cost_;
        maxSupply = maxSupply_;
        mintLimit = mintLimit_;
        baseURI = baseURI_;
        imageURI = imageURI_;
    }

    function setPaused(uint8 paused_) public onlyOwner {
        paused = paused_;
    }

    function setDevWithdrawPercent(uint8 devWithdrawPercent_) public onlyOwner {
        require(devWithdrawPercent_ > 3, 'devWithdrawPercent_ invalid');
        devWithdrawPercent = devWithdrawPercent_;
    }

    function setBaseURIAndImageURI(string memory baseURI_, string memory imageURI_) public onlyOwner {
        baseURI = baseURI_;
        imageURI = imageURI_;
    }

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

    function setMintLimit(uint256 mintLimit_) public onlyOwner {
        mintLimit = mintLimit_;
    }

    function updateOgWlAddrMap(address[] memory ogAddrs, address[] memory wlAddrs) public onlyOwner {
        for (uint i; i < ogAddrs.length; i++) {
            ogAddrMap[ogAddrs[i]] = true;
        }

        for (uint i; i < wlAddrs.length; i++) {
            wlAddrMap[wlAddrs[i]] = true;
        }
    }

    function getCost(address msgSender) public view returns (uint256) {
        if (ogAddrMap[msgSender]) {
            return 0;
        }
        return cost;
    }

    function checkPaused(address msgSender) public view {
        if (!wlAddrMap[msgSender]) {
            require(paused != 1, 'The contract is paused!');
        }
    }

    function getTokenIds(address msgSender) public view returns (uint256[] memory _tokenIds) {
        _tokenIds = mintTokenIdsMap[msgSender];
    }

    function mintEntrance() external payable {
        address msgSender = _msgSender();

        require(tx.origin == msgSender, 'Only EOA');
        require(msg.value >= getCost(msgSender), 'Insufficient funds!');
        require(mintTokenIdsMap[msgSender].length < mintLimit, 'Max mints per wallet met');
        checkPaused(msgSender);

        _doMint(msgSender);
        mintTokenIdsMap[msgSender].push(totalSupply() - 1);
    }

    function _doMint(address to) private {
        require(totalSupply() < maxSupply, 'Max supply exceeded!');
        require(to != address(0), 'Cannot have a non-address as reserve.');
        _safeMint(to, 1);
    }

    function airdrop(address[] memory mintAddresses) public onlyOwner {
        for (uint i; i < mintAddresses.length; i++) {
            _doMint(mintAddresses[i]);
        }
    }

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        uint256 toDev = balance * devWithdrawPercent / 10;
        uint256 toOwner = balance - toDev;
        address dev = 0x1eb4097DB23b6960eF7f7223207a3C87B99b9125;

        payable(dev).call{value: toDev}('');
        payable(owner()).call{value: toOwner}('');
    }
}

File 2 of 6 : 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 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 4 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

File 6 of 6 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"imageURI_","type":"string"},{"internalType":"uint256","name":"mintLimit_","type":"uint256"},{"internalType":"uint256","name":"cost_","type":"uint256"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"mintAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"msgSender","type":"address"}],"name":"checkPaused","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWithdrawPercent","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"msgSender","type":"address"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"msgSender","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imageURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEntrance","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintTokenIdsMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ogAddrMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"imageURI_","type":"string"}],"name":"setBaseURIAndImageURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"devWithdrawPercent_","type":"uint8"}],"name":"setDevWithdrawPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintLimit_","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"paused_","type":"uint8"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"ogAddrs","type":"address[]"},{"internalType":"address[]","name":"wlAddrs","type":"address[]"}],"name":"updateOgWlAddrMap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlAddrMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c06040526001600a60006101000a81548160ff021916908360ff1602179055506003600a60016101000a81548160ff021916908360ff1602179055503480156200004957600080fd5b50604051620047ec380380620047ec83398181016040528101906200006f9190620003c8565b8181816002908162000082919062000738565b50806003908162000094919062000738565b50620000a56200011d60201b60201c565b6000819055505050620000cd620000c16200012260201b60201c565b6200012a60201b60201c565b600160098190555083608081815250508260a0818152505084600b8190555086600c9081620000fd919062000738565b5085600d90816200010f919062000738565b50505050505050506200081f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000259826200020e565b810181811067ffffffffffffffff821117156200027b576200027a6200021f565b5b80604052505050565b600062000290620001f0565b90506200029e82826200024e565b919050565b600067ffffffffffffffff821115620002c157620002c06200021f565b5b620002cc826200020e565b9050602081019050919050565b60005b83811015620002f9578082015181840152602081019050620002dc565b8381111562000309576000848401525b50505050565b6000620003266200032084620002a3565b62000284565b90508281526020810184848401111562000345576200034462000209565b5b62000352848285620002d9565b509392505050565b600082601f83011262000372576200037162000204565b5b8151620003848482602086016200030f565b91505092915050565b6000819050919050565b620003a2816200038d565b8114620003ae57600080fd5b50565b600081519050620003c28162000397565b92915050565b600080600080600080600060e0888a031215620003ea57620003e9620001fa565b5b600088015167ffffffffffffffff8111156200040b576200040a620001ff565b5b620004198a828b016200035a565b975050602088015167ffffffffffffffff8111156200043d576200043c620001ff565b5b6200044b8a828b016200035a565b96505060406200045e8a828b01620003b1565b9550506060620004718a828b01620003b1565b9450506080620004848a828b01620003b1565b93505060a088015167ffffffffffffffff811115620004a857620004a7620001ff565b5b620004b68a828b016200035a565b92505060c088015167ffffffffffffffff811115620004da57620004d9620001ff565b5b620004e88a828b016200035a565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200054a57607f821691505b60208210810362000560576200055f62000502565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200058b565b620005d686836200058b565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000619620006136200060d846200038d565b620005ee565b6200038d565b9050919050565b6000819050919050565b6200063583620005f8565b6200064d620006448262000620565b84845462000598565b825550505050565b600090565b6200066462000655565b620006718184846200062a565b505050565b5b8181101562000699576200068d6000826200065a565b60018101905062000677565b5050565b601f821115620006e857620006b28162000566565b620006bd846200057b565b81016020851015620006cd578190505b620006e5620006dc856200057b565b83018262000676565b50505b505050565b600082821c905092915050565b60006200070d60001984600802620006ed565b1980831691505092915050565b6000620007288383620006fa565b9150826002028217905092915050565b6200074382620004f7565b67ffffffffffffffff8111156200075f576200075e6200021f565b5b6200076b825462000531565b620007788282856200069d565b600060209050601f831160018114620007b057600084156200079b578287015190505b620007a785826200071a565b86555062000817565b601f198416620007c08662000566565b60005b82811015620007ea57848901518255600182019150602085019450602081019050620007c3565b868310156200080a578489015162000806601f891682620006fa565b8355505b6001600288020188555050505b505050505050565b60805160a051613f996200085360003960008181611cd801526124fe015260008181610cc5015261166f0152613f996000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107f8578063e985e9c514610823578063f2496ee714610860578063f2fde38b14610889578063fb09452d146108b257610225565b8063a22cb46514610722578063b83a3e671461074b578063b88d4fde14610755578063c87b56dd1461077e578063d004b036146107bb57610225565b80638b88a687116100f25780638b88a6871461063b5780638da5cb5b1461067857806395d89b41146106a3578063996517cf146106ce5780639e6a1d7d146106f957610225565b8063715018a614610595578063729ad39e146105ac5780637db426f6146105d557806389332d271461061257610225565b80632908f0dc116101b15780635c975abb116101755780635c975abb1461049c5780636352211e146104c7578063664d6972146105045780636c0360eb1461052d57806370a082311461055857610225565b80632908f0dc146103cb5780633ccfd60b146103f457806342842e0e1461040b57806351568fe5146104345780635683ffd61461045f57610225565b8063135d088d116101f8578063135d088d146102f857806313faede61461032357806318160ddd1461034e57806323b872dd1461037957806326ffaaf0146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b7b565b6108ef565b60405161025e9190612bc3565b60405180910390f35b34801561027357600080fd5b5061027c610981565b6040516102899190612c77565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ccf565b610a13565b6040516102c69190612d3d565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612d84565b610a8f565b005b34801561030457600080fd5b5061030d610c35565b60405161031a9190612c77565b60405180910390f35b34801561032f57600080fd5b50610338610cc3565b6040516103459190612dd3565b60405180910390f35b34801561035a57600080fd5b50610363610ce7565b6040516103709190612dd3565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190612dee565b610cfe565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190612f89565b610d0e565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061303a565b610eb2565b005b34801561040057600080fd5b50610409610f4c565b005b34801561041757600080fd5b50610432600480360381019061042d9190612dee565b611157565b005b34801561044057600080fd5b50610449611177565b6040516104569190613076565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612d84565b61118a565b6040516104939190612dd3565b60405180910390f35b3480156104a857600080fd5b506104b16111bb565b6040516104be9190613076565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612ccf565b6111ce565b6040516104fb9190612d3d565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613146565b6111e0565b005b34801561053957600080fd5b50610542611280565b60405161054f9190612c77565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a91906131be565b61130e565b60405161058c9190612dd3565b60405180910390f35b3480156105a157600080fd5b506105aa6113c6565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906131eb565b61144e565b005b3480156105e157600080fd5b506105fc60048036038101906105f791906131be565b611510565b6040516106099190612bc3565b60405180910390f35b34801561061e57600080fd5b506106396004803603810190610634919061303a565b611530565b005b34801561064757600080fd5b50610662600480360381019061065d91906131be565b611610565b60405161066f9190612dd3565b60405180910390f35b34801561068457600080fd5b5061068d611696565b60405161069a9190612d3d565b60405180910390f35b3480156106af57600080fd5b506106b86116c0565b6040516106c59190612c77565b60405180910390f35b3480156106da57600080fd5b506106e3611752565b6040516106f09190612dd3565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190612ccf565b611758565b005b34801561072e57600080fd5b5061074960048036038101906107449190613260565b6117de565b005b610753611955565b005b34801561076157600080fd5b5061077c60048036038101906107779190613341565b611b2e565b005b34801561078a57600080fd5b506107a560048036038101906107a09190612ccf565b611ba1565b6040516107b29190612c77565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd91906131be565b611c3f565b6040516107ef9190613482565b60405180910390f35b34801561080457600080fd5b5061080d611cd6565b60405161081a9190612dd3565b60405180910390f35b34801561082f57600080fd5b5061084a600480360381019061084591906134a4565b611cfa565b6040516108579190612bc3565b60405180910390f35b34801561086c57600080fd5b50610887600480360381019061088291906131be565b611d8e565b005b34801561089557600080fd5b506108b060048036038101906108ab91906131be565b611e38565b005b3480156108be57600080fd5b506108d960048036038101906108d491906131be565b611f2f565b6040516108e69190612bc3565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461099090613513565b80601f01602080910402602001604051908101604052809291908181526020018280546109bc90613513565b8015610a095780601f106109de57610100808354040283529160200191610a09565b820191906000526020600020905b8154815290600101906020018083116109ec57829003601f168201915b5050505050905090565b6000610a1e82611f4f565b610a54576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9a82611fae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b01576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2061207a565b73ffffffffffffffffffffffffffffffffffffffff1614610b8357610b4c81610b4761207a565b611cfa565b610b82576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d8054610c4290613513565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6e90613513565b8015610cbb5780601f10610c9057610100808354040283529160200191610cbb565b820191906000526020600020905b815481529060010190602001808311610c9e57829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610cf1612082565b6001546000540303905090565b610d09838383612087565b505050565b610d1661242e565b73ffffffffffffffffffffffffffffffffffffffff16610d34611696565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613590565b60405180910390fd5b60005b8251811015610e1b576001600f6000858481518110610daf57610dae6135b0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e139061360e565b915050610d8d565b5060005b8151811015610ead57600160106000848481518110610e4157610e406135b0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ea59061360e565b915050610e1f565b505050565b610eba61242e565b73ffffffffffffffffffffffffffffffffffffffff16610ed8611696565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613590565b60405180910390fd5b80600a60006101000a81548160ff021916908360ff16021790555050565b610f5461242e565b73ffffffffffffffffffffffffffffffffffffffff16610f72611696565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613590565b60405180910390fd5b60026009540361100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906136a2565b60405180910390fd5b600260098190555060004790506000600a8060019054906101000a900460ff1660ff168361103b91906136c2565b611045919061374b565b905060008183611055919061377c565b90506000731eb4097db23b6960ef7f7223207a3c87b99b912590508073ffffffffffffffffffffffffffffffffffffffff1683604051611094906137e1565b60006040518083038185875af1925050503d80600081146110d1576040519150601f19603f3d011682016040523d82523d6000602084013e6110d6565b606091505b5050506110e1611696565b73ffffffffffffffffffffffffffffffffffffffff1682604051611104906137e1565b60006040518083038185875af1925050503d8060008114611141576040519150601f19603f3d011682016040523d82523d6000602084013e611146565b606091505b505050505050506001600981905550565b61117283838360405180602001604052806000815250611b2e565b505050565b600a60019054906101000a900460ff1681565b600e60205281600052604060002081815481106111a657600080fd5b90600052602060002001600091509150505481565b600a60009054906101000a900460ff1681565b60006111d982611fae565b9050919050565b6111e861242e565b73ffffffffffffffffffffffffffffffffffffffff16611206611696565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613590565b60405180910390fd5b81600c908161126b91906139a2565b5080600d908161127b91906139a2565b505050565b600c805461128d90613513565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990613513565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611375576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113ce61242e565b73ffffffffffffffffffffffffffffffffffffffff166113ec611696565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990613590565b60405180910390fd5b61144c6000612436565b565b61145661242e565b73ffffffffffffffffffffffffffffffffffffffff16611474611696565b73ffffffffffffffffffffffffffffffffffffffff16146114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190613590565b60405180910390fd5b60005b815181101561150c576114f98282815181106114ec576114eb6135b0565b5b60200260200101516124fc565b80806115049061360e565b9150506114cd565b5050565b600f6020528060005260406000206000915054906101000a900460ff1681565b61153861242e565b73ffffffffffffffffffffffffffffffffffffffff16611556611696565b73ffffffffffffffffffffffffffffffffffffffff16146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613590565b60405180910390fd5b60038160ff16116115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990613ac0565b60405180910390fd5b80600a60016101000a81548160ff021916908360ff16021790555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561166d5760009050611691565b7f000000000000000000000000000000000000000000000000000000000000000090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116cf90613513565b80601f01602080910402602001604051908101604052809291908181526020018280546116fb90613513565b80156117485780601f1061171d57610100808354040283529160200191611748565b820191906000526020600020905b81548152906001019060200180831161172b57829003601f168201915b5050505050905090565b600b5481565b61176061242e565b73ffffffffffffffffffffffffffffffffffffffff1661177e611696565b73ffffffffffffffffffffffffffffffffffffffff16146117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90613590565b60405180910390fd5b80600b8190555050565b6117e661207a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061185761207a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661190461207a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119499190612bc3565b60405180910390a35050565b600061195f61242e565b90508073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690613b2c565b60405180910390fd5b6119d881611610565b341015611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613b98565b60405180910390fd5b600b54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905010611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613c04565b60405180910390fd5b611aa981611d8e565b611ab2816124fc565b600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001611afb610ce7565b611b05919061377c565b908060018154018082558091505060019003906000526020600020016000909190919091505550565b611b39848484612087565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b9b57611b64848484846125e2565b611b9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611bac82611f4f565b611be2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bec612732565b90506000815103611c0c5760405180602001604052806000815250611c37565b80611c16846127c4565b604051602001611c27929190613c60565b6040516020818303038152906040525b915050919050565b6060600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611cca57602002820191906000526020600020905b815481526020019060010190808311611cb6575b50505050509050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e35576001600a60009054906101000a900460ff1660ff1603611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90613cd0565b60405180910390fd5b5b50565b611e4061242e565b73ffffffffffffffffffffffffffffffffffffffff16611e5e611696565b73ffffffffffffffffffffffffffffffffffffffff1614611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90613590565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90613d62565b60405180910390fd5b611f2c81612436565b50565b60106020528060005260406000206000915054906101000a900460ff1681565b600081611f5a612082565b11158015611f69575060005482105b8015611fa7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611fbd612082565b11612043576000548110156120425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612040575b6000810361203657600460008360019003935083815260200190815260200160002054905061200c565b8092505050612075565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061209282611fae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120f9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661211a61207a565b73ffffffffffffffffffffffffffffffffffffffff16148061214957506121488561214361207a565b611cfa565b5b8061218e575061215761207a565b73ffffffffffffffffffffffffffffffffffffffff1661217684610a13565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121c7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361222d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61223a858585600161281e565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61233786612824565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036123bf57600060018401905060006004600083815260200190815260200160002054036123bd5760005481146123bc578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612427858585600161282e565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f0000000000000000000000000000000000000000000000000000000000000000612525610ce7565b10612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90613dce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb90613e60565b60405180910390fd5b6125df816001612834565b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261260861207a565b8786866040518563ffffffff1660e01b815260040161262a9493929190613ed5565b6020604051808303816000875af192505050801561266657506040513d601f19601f820116820180604052508101906126639190613f36565b60015b6126df573d8060008114612696576040519150601f19603f3d011682016040523d82523d6000602084013e61269b565b606091505b5060008151036126d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461274190613513565b80601f016020809104026020016040519081016040528092919081815260200182805461276d90613513565b80156127ba5780601f1061278f576101008083540402835291602001916127ba565b820191906000526020600020905b81548152906001019060200180831161279d57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561280a57600183039250600a81066030018353600a810490506127ea565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b61284e828260405180602001604052806000815250612852565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128be576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036128f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612905600085838661281e565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161296a60018514612b05565b901b60a042901b61297a86612824565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a7e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2e60008784806001019550876125e2565b612a64576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129bf578260005414612a7957600080fd5b612ae9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a7f575b816000819055505050612aff600085838661282e565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5881612b23565b8114612b6357600080fd5b50565b600081359050612b7581612b4f565b92915050565b600060208284031215612b9157612b90612b19565b5b6000612b9f84828501612b66565b91505092915050565b60008115159050919050565b612bbd81612ba8565b82525050565b6000602082019050612bd86000830184612bb4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c18578082015181840152602081019050612bfd565b83811115612c27576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c4982612bde565b612c538185612be9565b9350612c63818560208601612bfa565b612c6c81612c2d565b840191505092915050565b60006020820190508181036000830152612c918184612c3e565b905092915050565b6000819050919050565b612cac81612c99565b8114612cb757600080fd5b50565b600081359050612cc981612ca3565b92915050565b600060208284031215612ce557612ce4612b19565b5b6000612cf384828501612cba565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2782612cfc565b9050919050565b612d3781612d1c565b82525050565b6000602082019050612d526000830184612d2e565b92915050565b612d6181612d1c565b8114612d6c57600080fd5b50565b600081359050612d7e81612d58565b92915050565b60008060408385031215612d9b57612d9a612b19565b5b6000612da985828601612d6f565b9250506020612dba85828601612cba565b9150509250929050565b612dcd81612c99565b82525050565b6000602082019050612de86000830184612dc4565b92915050565b600080600060608486031215612e0757612e06612b19565b5b6000612e1586828701612d6f565b9350506020612e2686828701612d6f565b9250506040612e3786828701612cba565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e7e82612c2d565b810181811067ffffffffffffffff82111715612e9d57612e9c612e46565b5b80604052505050565b6000612eb0612b0f565b9050612ebc8282612e75565b919050565b600067ffffffffffffffff821115612edc57612edb612e46565b5b602082029050602081019050919050565b600080fd5b6000612f05612f0084612ec1565b612ea6565b90508083825260208201905060208402830185811115612f2857612f27612eed565b5b835b81811015612f515780612f3d8882612d6f565b845260208401935050602081019050612f2a565b5050509392505050565b600082601f830112612f7057612f6f612e41565b5b8135612f80848260208601612ef2565b91505092915050565b60008060408385031215612fa057612f9f612b19565b5b600083013567ffffffffffffffff811115612fbe57612fbd612b1e565b5b612fca85828601612f5b565b925050602083013567ffffffffffffffff811115612feb57612fea612b1e565b5b612ff785828601612f5b565b9150509250929050565b600060ff82169050919050565b61301781613001565b811461302257600080fd5b50565b6000813590506130348161300e565b92915050565b6000602082840312156130505761304f612b19565b5b600061305e84828501613025565b91505092915050565b61307081613001565b82525050565b600060208201905061308b6000830184613067565b92915050565b600080fd5b600067ffffffffffffffff8211156130b1576130b0612e46565b5b6130ba82612c2d565b9050602081019050919050565b82818337600083830152505050565b60006130e96130e484613096565b612ea6565b90508281526020810184848401111561310557613104613091565b5b6131108482856130c7565b509392505050565b600082601f83011261312d5761312c612e41565b5b813561313d8482602086016130d6565b91505092915050565b6000806040838503121561315d5761315c612b19565b5b600083013567ffffffffffffffff81111561317b5761317a612b1e565b5b61318785828601613118565b925050602083013567ffffffffffffffff8111156131a8576131a7612b1e565b5b6131b485828601613118565b9150509250929050565b6000602082840312156131d4576131d3612b19565b5b60006131e284828501612d6f565b91505092915050565b60006020828403121561320157613200612b19565b5b600082013567ffffffffffffffff81111561321f5761321e612b1e565b5b61322b84828501612f5b565b91505092915050565b61323d81612ba8565b811461324857600080fd5b50565b60008135905061325a81613234565b92915050565b6000806040838503121561327757613276612b19565b5b600061328585828601612d6f565b92505060206132968582860161324b565b9150509250929050565b600067ffffffffffffffff8211156132bb576132ba612e46565b5b6132c482612c2d565b9050602081019050919050565b60006132e46132df846132a0565b612ea6565b905082815260208101848484011115613300576132ff613091565b5b61330b8482856130c7565b509392505050565b600082601f83011261332857613327612e41565b5b81356133388482602086016132d1565b91505092915050565b6000806000806080858703121561335b5761335a612b19565b5b600061336987828801612d6f565b945050602061337a87828801612d6f565b935050604061338b87828801612cba565b925050606085013567ffffffffffffffff8111156133ac576133ab612b1e565b5b6133b887828801613313565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133f981612c99565b82525050565b600061340b83836133f0565b60208301905092915050565b6000602082019050919050565b600061342f826133c4565b61343981856133cf565b9350613444836133e0565b8060005b8381101561347557815161345c88826133ff565b975061346783613417565b925050600181019050613448565b5085935050505092915050565b6000602082019050818103600083015261349c8184613424565b905092915050565b600080604083850312156134bb576134ba612b19565b5b60006134c985828601612d6f565b92505060206134da85828601612d6f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352b57607f821691505b60208210810361353e5761353d6134e4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061357a602083612be9565b915061358582613544565b602082019050919050565b600060208201905081810360008301526135a98161356d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361982612c99565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361364b5761364a6135df565b5b600182019050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061368c601f83612be9565b915061369782613656565b602082019050919050565b600060208201905081810360008301526136bb8161367f565b9050919050565b60006136cd82612c99565b91506136d883612c99565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613711576137106135df565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061375682612c99565b915061376183612c99565b9250826137715761377061371c565b5b828204905092915050565b600061378782612c99565b915061379283612c99565b9250828210156137a5576137a46135df565b5b828203905092915050565b600081905092915050565b50565b60006137cb6000836137b0565b91506137d6826137bb565b600082019050919050565b60006137ec826137be565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261381b565b613862868361381b565b95508019841693508086168417925050509392505050565b6000819050919050565b600061389f61389a61389584612c99565b61387a565b612c99565b9050919050565b6000819050919050565b6138b983613884565b6138cd6138c5826138a6565b848454613828565b825550505050565b600090565b6138e26138d5565b6138ed8184846138b0565b505050565b5b81811015613911576139066000826138da565b6001810190506138f3565b5050565b601f82111561395657613927816137f6565b6139308461380b565b8101602085101561393f578190505b61395361394b8561380b565b8301826138f2565b50505b505050565b600082821c905092915050565b60006139796000198460080261395b565b1980831691505092915050565b60006139928383613968565b9150826002028217905092915050565b6139ab82612bde565b67ffffffffffffffff8111156139c4576139c3612e46565b5b6139ce8254613513565b6139d9828285613915565b600060209050601f831160018114613a0c57600084156139fa578287015190505b613a048582613986565b865550613a6c565b601f198416613a1a866137f6565b60005b82811015613a4257848901518255600182019150602085019450602081019050613a1d565b86831015613a5f5784890151613a5b601f891682613968565b8355505b6001600288020188555050505b505050505050565b7f646576576974686472617750657263656e745f20696e76616c69640000000000600082015250565b6000613aaa601b83612be9565b9150613ab582613a74565b602082019050919050565b60006020820190508181036000830152613ad981613a9d565b9050919050565b7f4f6e6c7920454f41000000000000000000000000000000000000000000000000600082015250565b6000613b16600883612be9565b9150613b2182613ae0565b602082019050919050565b60006020820190508181036000830152613b4581613b09565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613b82601383612be9565b9150613b8d82613b4c565b602082019050919050565b60006020820190508181036000830152613bb181613b75565b9050919050565b7f4d6178206d696e7473207065722077616c6c6574206d65740000000000000000600082015250565b6000613bee601883612be9565b9150613bf982613bb8565b602082019050919050565b60006020820190508181036000830152613c1d81613be1565b9050919050565b600081905092915050565b6000613c3a82612bde565b613c448185613c24565b9350613c54818560208601612bfa565b80840191505092915050565b6000613c6c8285613c2f565b9150613c788284613c2f565b91508190509392505050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613cba601783612be9565b9150613cc582613c84565b602082019050919050565b60006020820190508181036000830152613ce981613cad565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d4c602683612be9565b9150613d5782613cf0565b604082019050919050565b60006020820190508181036000830152613d7b81613d3f565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613db8601483612be9565b9150613dc382613d82565b602082019050919050565b60006020820190508181036000830152613de781613dab565b9050919050565b7f43616e6e6f7420686176652061206e6f6e2d616464726573732061732072657360008201527f657276652e000000000000000000000000000000000000000000000000000000602082015250565b6000613e4a602583612be9565b9150613e5582613dee565b604082019050919050565b60006020820190508181036000830152613e7981613e3d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ea782613e80565b613eb18185613e8b565b9350613ec1818560208601612bfa565b613eca81612c2d565b840191505092915050565b6000608082019050613eea6000830187612d2e565b613ef76020830186612d2e565b613f046040830185612dc4565b8181036060830152613f168184613e9c565b905095945050505050565b600081519050613f3081612b4f565b92915050565b600060208284031215613f4c57613f4b612b19565b5b6000613f5a84828501613f21565b9150509291505056fea2646970667358221220ee77a21249f3fdd414f0912e3c35b1fd8d83b90c936c755806f15a45e3e61fc964736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f617277656176652e6e65742f6d6358444f5f7644694d6947734e4f3959595258366f616b58646a4b38514e556131516a552d48555235632f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4c6f6e677a75205061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064c6f6e677a750000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107f8578063e985e9c514610823578063f2496ee714610860578063f2fde38b14610889578063fb09452d146108b257610225565b8063a22cb46514610722578063b83a3e671461074b578063b88d4fde14610755578063c87b56dd1461077e578063d004b036146107bb57610225565b80638b88a687116100f25780638b88a6871461063b5780638da5cb5b1461067857806395d89b41146106a3578063996517cf146106ce5780639e6a1d7d146106f957610225565b8063715018a614610595578063729ad39e146105ac5780637db426f6146105d557806389332d271461061257610225565b80632908f0dc116101b15780635c975abb116101755780635c975abb1461049c5780636352211e146104c7578063664d6972146105045780636c0360eb1461052d57806370a082311461055857610225565b80632908f0dc146103cb5780633ccfd60b146103f457806342842e0e1461040b57806351568fe5146104345780635683ffd61461045f57610225565b8063135d088d116101f8578063135d088d146102f857806313faede61461032357806318160ddd1461034e57806323b872dd1461037957806326ffaaf0146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b7b565b6108ef565b60405161025e9190612bc3565b60405180910390f35b34801561027357600080fd5b5061027c610981565b6040516102899190612c77565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ccf565b610a13565b6040516102c69190612d3d565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612d84565b610a8f565b005b34801561030457600080fd5b5061030d610c35565b60405161031a9190612c77565b60405180910390f35b34801561032f57600080fd5b50610338610cc3565b6040516103459190612dd3565b60405180910390f35b34801561035a57600080fd5b50610363610ce7565b6040516103709190612dd3565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190612dee565b610cfe565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190612f89565b610d0e565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061303a565b610eb2565b005b34801561040057600080fd5b50610409610f4c565b005b34801561041757600080fd5b50610432600480360381019061042d9190612dee565b611157565b005b34801561044057600080fd5b50610449611177565b6040516104569190613076565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612d84565b61118a565b6040516104939190612dd3565b60405180910390f35b3480156104a857600080fd5b506104b16111bb565b6040516104be9190613076565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612ccf565b6111ce565b6040516104fb9190612d3d565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613146565b6111e0565b005b34801561053957600080fd5b50610542611280565b60405161054f9190612c77565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a91906131be565b61130e565b60405161058c9190612dd3565b60405180910390f35b3480156105a157600080fd5b506105aa6113c6565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906131eb565b61144e565b005b3480156105e157600080fd5b506105fc60048036038101906105f791906131be565b611510565b6040516106099190612bc3565b60405180910390f35b34801561061e57600080fd5b506106396004803603810190610634919061303a565b611530565b005b34801561064757600080fd5b50610662600480360381019061065d91906131be565b611610565b60405161066f9190612dd3565b60405180910390f35b34801561068457600080fd5b5061068d611696565b60405161069a9190612d3d565b60405180910390f35b3480156106af57600080fd5b506106b86116c0565b6040516106c59190612c77565b60405180910390f35b3480156106da57600080fd5b506106e3611752565b6040516106f09190612dd3565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190612ccf565b611758565b005b34801561072e57600080fd5b5061074960048036038101906107449190613260565b6117de565b005b610753611955565b005b34801561076157600080fd5b5061077c60048036038101906107779190613341565b611b2e565b005b34801561078a57600080fd5b506107a560048036038101906107a09190612ccf565b611ba1565b6040516107b29190612c77565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd91906131be565b611c3f565b6040516107ef9190613482565b60405180910390f35b34801561080457600080fd5b5061080d611cd6565b60405161081a9190612dd3565b60405180910390f35b34801561082f57600080fd5b5061084a600480360381019061084591906134a4565b611cfa565b6040516108579190612bc3565b60405180910390f35b34801561086c57600080fd5b50610887600480360381019061088291906131be565b611d8e565b005b34801561089557600080fd5b506108b060048036038101906108ab91906131be565b611e38565b005b3480156108be57600080fd5b506108d960048036038101906108d491906131be565b611f2f565b6040516108e69190612bc3565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061097a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461099090613513565b80601f01602080910402602001604051908101604052809291908181526020018280546109bc90613513565b8015610a095780601f106109de57610100808354040283529160200191610a09565b820191906000526020600020905b8154815290600101906020018083116109ec57829003601f168201915b5050505050905090565b6000610a1e82611f4f565b610a54576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9a82611fae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b01576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b2061207a565b73ffffffffffffffffffffffffffffffffffffffff1614610b8357610b4c81610b4761207a565b611cfa565b610b82576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d8054610c4290613513565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6e90613513565b8015610cbb5780601f10610c9057610100808354040283529160200191610cbb565b820191906000526020600020905b815481529060010190602001808311610c9e57829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000016345785d8a000081565b6000610cf1612082565b6001546000540303905090565b610d09838383612087565b505050565b610d1661242e565b73ffffffffffffffffffffffffffffffffffffffff16610d34611696565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190613590565b60405180910390fd5b60005b8251811015610e1b576001600f6000858481518110610daf57610dae6135b0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e139061360e565b915050610d8d565b5060005b8151811015610ead57600160106000848481518110610e4157610e406135b0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ea59061360e565b915050610e1f565b505050565b610eba61242e565b73ffffffffffffffffffffffffffffffffffffffff16610ed8611696565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613590565b60405180910390fd5b80600a60006101000a81548160ff021916908360ff16021790555050565b610f5461242e565b73ffffffffffffffffffffffffffffffffffffffff16610f72611696565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613590565b60405180910390fd5b60026009540361100d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611004906136a2565b60405180910390fd5b600260098190555060004790506000600a8060019054906101000a900460ff1660ff168361103b91906136c2565b611045919061374b565b905060008183611055919061377c565b90506000731eb4097db23b6960ef7f7223207a3c87b99b912590508073ffffffffffffffffffffffffffffffffffffffff1683604051611094906137e1565b60006040518083038185875af1925050503d80600081146110d1576040519150601f19603f3d011682016040523d82523d6000602084013e6110d6565b606091505b5050506110e1611696565b73ffffffffffffffffffffffffffffffffffffffff1682604051611104906137e1565b60006040518083038185875af1925050503d8060008114611141576040519150601f19603f3d011682016040523d82523d6000602084013e611146565b606091505b505050505050506001600981905550565b61117283838360405180602001604052806000815250611b2e565b505050565b600a60019054906101000a900460ff1681565b600e60205281600052604060002081815481106111a657600080fd5b90600052602060002001600091509150505481565b600a60009054906101000a900460ff1681565b60006111d982611fae565b9050919050565b6111e861242e565b73ffffffffffffffffffffffffffffffffffffffff16611206611696565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390613590565b60405180910390fd5b81600c908161126b91906139a2565b5080600d908161127b91906139a2565b505050565b600c805461128d90613513565b80601f01602080910402602001604051908101604052809291908181526020018280546112b990613513565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611375576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113ce61242e565b73ffffffffffffffffffffffffffffffffffffffff166113ec611696565b73ffffffffffffffffffffffffffffffffffffffff1614611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990613590565b60405180910390fd5b61144c6000612436565b565b61145661242e565b73ffffffffffffffffffffffffffffffffffffffff16611474611696565b73ffffffffffffffffffffffffffffffffffffffff16146114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c190613590565b60405180910390fd5b60005b815181101561150c576114f98282815181106114ec576114eb6135b0565b5b60200260200101516124fc565b80806115049061360e565b9150506114cd565b5050565b600f6020528060005260406000206000915054906101000a900460ff1681565b61153861242e565b73ffffffffffffffffffffffffffffffffffffffff16611556611696565b73ffffffffffffffffffffffffffffffffffffffff16146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613590565b60405180910390fd5b60038160ff16116115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990613ac0565b60405180910390fd5b80600a60016101000a81548160ff021916908360ff16021790555050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561166d5760009050611691565b7f000000000000000000000000000000000000000000000000016345785d8a000090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116cf90613513565b80601f01602080910402602001604051908101604052809291908181526020018280546116fb90613513565b80156117485780601f1061171d57610100808354040283529160200191611748565b820191906000526020600020905b81548152906001019060200180831161172b57829003601f168201915b5050505050905090565b600b5481565b61176061242e565b73ffffffffffffffffffffffffffffffffffffffff1661177e611696565b73ffffffffffffffffffffffffffffffffffffffff16146117d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cb90613590565b60405180910390fd5b80600b8190555050565b6117e661207a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061185761207a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661190461207a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119499190612bc3565b60405180910390a35050565b600061195f61242e565b90508073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c690613b2c565b60405180910390fd5b6119d881611610565b341015611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613b98565b60405180910390fd5b600b54600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905010611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790613c04565b60405180910390fd5b611aa981611d8e565b611ab2816124fc565b600e60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001611afb610ce7565b611b05919061377c565b908060018154018082558091505060019003906000526020600020016000909190919091505550565b611b39848484612087565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b9b57611b64848484846125e2565b611b9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611bac82611f4f565b611be2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bec612732565b90506000815103611c0c5760405180602001604052806000815250611c37565b80611c16846127c4565b604051602001611c27929190613c60565b6040516020818303038152906040525b915050919050565b6060600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611cca57602002820191906000526020600020905b815481526020019060010190808311611cb6575b50505050509050919050565b7f00000000000000000000000000000000000000000000000000000000000001f481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e35576001600a60009054906101000a900460ff1660ff1603611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90613cd0565b60405180910390fd5b5b50565b611e4061242e565b73ffffffffffffffffffffffffffffffffffffffff16611e5e611696565b73ffffffffffffffffffffffffffffffffffffffff1614611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90613590565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90613d62565b60405180910390fd5b611f2c81612436565b50565b60106020528060005260406000206000915054906101000a900460ff1681565b600081611f5a612082565b11158015611f69575060005482105b8015611fa7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611fbd612082565b11612043576000548110156120425760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612040575b6000810361203657600460008360019003935083815260200190815260200160002054905061200c565b8092505050612075565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061209282611fae565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120f9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661211a61207a565b73ffffffffffffffffffffffffffffffffffffffff16148061214957506121488561214361207a565b611cfa565b5b8061218e575061215761207a565b73ffffffffffffffffffffffffffffffffffffffff1661217684610a13565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121c7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361222d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61223a858585600161281e565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61233786612824565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036123bf57600060018401905060006004600083815260200190815260200160002054036123bd5760005481146123bc578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612427858585600161282e565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f00000000000000000000000000000000000000000000000000000000000001f4612525610ce7565b10612565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255c90613dce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb90613e60565b60405180910390fd5b6125df816001612834565b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261260861207a565b8786866040518563ffffffff1660e01b815260040161262a9493929190613ed5565b6020604051808303816000875af192505050801561266657506040513d601f19601f820116820180604052508101906126639190613f36565b60015b6126df573d8060008114612696576040519150601f19603f3d011682016040523d82523d6000602084013e61269b565b606091505b5060008151036126d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461274190613513565b80601f016020809104026020016040519081016040528092919081815260200182805461276d90613513565b80156127ba5780601f1061278f576101008083540402835291602001916127ba565b820191906000526020600020905b81548152906001019060200180831161279d57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561280a57600183039250600a81066030018353600a810490506127ea565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b61284e828260405180602001604052806000815250612852565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128be576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036128f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612905600085838661281e565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161296a60018514612b05565b901b60a042901b61297a86612824565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a7e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2e60008784806001019550876125e2565b612a64576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129bf578260005414612a7957600080fd5b612ae9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a7f575b816000819055505050612aff600085838661282e565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b5881612b23565b8114612b6357600080fd5b50565b600081359050612b7581612b4f565b92915050565b600060208284031215612b9157612b90612b19565b5b6000612b9f84828501612b66565b91505092915050565b60008115159050919050565b612bbd81612ba8565b82525050565b6000602082019050612bd86000830184612bb4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c18578082015181840152602081019050612bfd565b83811115612c27576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c4982612bde565b612c538185612be9565b9350612c63818560208601612bfa565b612c6c81612c2d565b840191505092915050565b60006020820190508181036000830152612c918184612c3e565b905092915050565b6000819050919050565b612cac81612c99565b8114612cb757600080fd5b50565b600081359050612cc981612ca3565b92915050565b600060208284031215612ce557612ce4612b19565b5b6000612cf384828501612cba565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2782612cfc565b9050919050565b612d3781612d1c565b82525050565b6000602082019050612d526000830184612d2e565b92915050565b612d6181612d1c565b8114612d6c57600080fd5b50565b600081359050612d7e81612d58565b92915050565b60008060408385031215612d9b57612d9a612b19565b5b6000612da985828601612d6f565b9250506020612dba85828601612cba565b9150509250929050565b612dcd81612c99565b82525050565b6000602082019050612de86000830184612dc4565b92915050565b600080600060608486031215612e0757612e06612b19565b5b6000612e1586828701612d6f565b9350506020612e2686828701612d6f565b9250506040612e3786828701612cba565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e7e82612c2d565b810181811067ffffffffffffffff82111715612e9d57612e9c612e46565b5b80604052505050565b6000612eb0612b0f565b9050612ebc8282612e75565b919050565b600067ffffffffffffffff821115612edc57612edb612e46565b5b602082029050602081019050919050565b600080fd5b6000612f05612f0084612ec1565b612ea6565b90508083825260208201905060208402830185811115612f2857612f27612eed565b5b835b81811015612f515780612f3d8882612d6f565b845260208401935050602081019050612f2a565b5050509392505050565b600082601f830112612f7057612f6f612e41565b5b8135612f80848260208601612ef2565b91505092915050565b60008060408385031215612fa057612f9f612b19565b5b600083013567ffffffffffffffff811115612fbe57612fbd612b1e565b5b612fca85828601612f5b565b925050602083013567ffffffffffffffff811115612feb57612fea612b1e565b5b612ff785828601612f5b565b9150509250929050565b600060ff82169050919050565b61301781613001565b811461302257600080fd5b50565b6000813590506130348161300e565b92915050565b6000602082840312156130505761304f612b19565b5b600061305e84828501613025565b91505092915050565b61307081613001565b82525050565b600060208201905061308b6000830184613067565b92915050565b600080fd5b600067ffffffffffffffff8211156130b1576130b0612e46565b5b6130ba82612c2d565b9050602081019050919050565b82818337600083830152505050565b60006130e96130e484613096565b612ea6565b90508281526020810184848401111561310557613104613091565b5b6131108482856130c7565b509392505050565b600082601f83011261312d5761312c612e41565b5b813561313d8482602086016130d6565b91505092915050565b6000806040838503121561315d5761315c612b19565b5b600083013567ffffffffffffffff81111561317b5761317a612b1e565b5b61318785828601613118565b925050602083013567ffffffffffffffff8111156131a8576131a7612b1e565b5b6131b485828601613118565b9150509250929050565b6000602082840312156131d4576131d3612b19565b5b60006131e284828501612d6f565b91505092915050565b60006020828403121561320157613200612b19565b5b600082013567ffffffffffffffff81111561321f5761321e612b1e565b5b61322b84828501612f5b565b91505092915050565b61323d81612ba8565b811461324857600080fd5b50565b60008135905061325a81613234565b92915050565b6000806040838503121561327757613276612b19565b5b600061328585828601612d6f565b92505060206132968582860161324b565b9150509250929050565b600067ffffffffffffffff8211156132bb576132ba612e46565b5b6132c482612c2d565b9050602081019050919050565b60006132e46132df846132a0565b612ea6565b905082815260208101848484011115613300576132ff613091565b5b61330b8482856130c7565b509392505050565b600082601f83011261332857613327612e41565b5b81356133388482602086016132d1565b91505092915050565b6000806000806080858703121561335b5761335a612b19565b5b600061336987828801612d6f565b945050602061337a87828801612d6f565b935050604061338b87828801612cba565b925050606085013567ffffffffffffffff8111156133ac576133ab612b1e565b5b6133b887828801613313565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133f981612c99565b82525050565b600061340b83836133f0565b60208301905092915050565b6000602082019050919050565b600061342f826133c4565b61343981856133cf565b9350613444836133e0565b8060005b8381101561347557815161345c88826133ff565b975061346783613417565b925050600181019050613448565b5085935050505092915050565b6000602082019050818103600083015261349c8184613424565b905092915050565b600080604083850312156134bb576134ba612b19565b5b60006134c985828601612d6f565b92505060206134da85828601612d6f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352b57607f821691505b60208210810361353e5761353d6134e4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061357a602083612be9565b915061358582613544565b602082019050919050565b600060208201905081810360008301526135a98161356d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361982612c99565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361364b5761364a6135df565b5b600182019050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061368c601f83612be9565b915061369782613656565b602082019050919050565b600060208201905081810360008301526136bb8161367f565b9050919050565b60006136cd82612c99565b91506136d883612c99565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613711576137106135df565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061375682612c99565b915061376183612c99565b9250826137715761377061371c565b5b828204905092915050565b600061378782612c99565b915061379283612c99565b9250828210156137a5576137a46135df565b5b828203905092915050565b600081905092915050565b50565b60006137cb6000836137b0565b91506137d6826137bb565b600082019050919050565b60006137ec826137be565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261381b565b613862868361381b565b95508019841693508086168417925050509392505050565b6000819050919050565b600061389f61389a61389584612c99565b61387a565b612c99565b9050919050565b6000819050919050565b6138b983613884565b6138cd6138c5826138a6565b848454613828565b825550505050565b600090565b6138e26138d5565b6138ed8184846138b0565b505050565b5b81811015613911576139066000826138da565b6001810190506138f3565b5050565b601f82111561395657613927816137f6565b6139308461380b565b8101602085101561393f578190505b61395361394b8561380b565b8301826138f2565b50505b505050565b600082821c905092915050565b60006139796000198460080261395b565b1980831691505092915050565b60006139928383613968565b9150826002028217905092915050565b6139ab82612bde565b67ffffffffffffffff8111156139c4576139c3612e46565b5b6139ce8254613513565b6139d9828285613915565b600060209050601f831160018114613a0c57600084156139fa578287015190505b613a048582613986565b865550613a6c565b601f198416613a1a866137f6565b60005b82811015613a4257848901518255600182019150602085019450602081019050613a1d565b86831015613a5f5784890151613a5b601f891682613968565b8355505b6001600288020188555050505b505050505050565b7f646576576974686472617750657263656e745f20696e76616c69640000000000600082015250565b6000613aaa601b83612be9565b9150613ab582613a74565b602082019050919050565b60006020820190508181036000830152613ad981613a9d565b9050919050565b7f4f6e6c7920454f41000000000000000000000000000000000000000000000000600082015250565b6000613b16600883612be9565b9150613b2182613ae0565b602082019050919050565b60006020820190508181036000830152613b4581613b09565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613b82601383612be9565b9150613b8d82613b4c565b602082019050919050565b60006020820190508181036000830152613bb181613b75565b9050919050565b7f4d6178206d696e7473207065722077616c6c6574206d65740000000000000000600082015250565b6000613bee601883612be9565b9150613bf982613bb8565b602082019050919050565b60006020820190508181036000830152613c1d81613be1565b9050919050565b600081905092915050565b6000613c3a82612bde565b613c448185613c24565b9350613c54818560208601612bfa565b80840191505092915050565b6000613c6c8285613c2f565b9150613c788284613c2f565b91508190509392505050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613cba601783612be9565b9150613cc582613c84565b602082019050919050565b60006020820190508181036000830152613ce981613cad565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d4c602683612be9565b9150613d5782613cf0565b604082019050919050565b60006020820190508181036000830152613d7b81613d3f565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613db8601483612be9565b9150613dc382613d82565b602082019050919050565b60006020820190508181036000830152613de781613dab565b9050919050565b7f43616e6e6f7420686176652061206e6f6e2d616464726573732061732072657360008201527f657276652e000000000000000000000000000000000000000000000000000000602082015250565b6000613e4a602583612be9565b9150613e5582613dee565b604082019050919050565b60006020820190508181036000830152613e7981613e3d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ea782613e80565b613eb18185613e8b565b9350613ec1818560208601612bfa565b613eca81612c2d565b840191505092915050565b6000608082019050613eea6000830187612d2e565b613ef76020830186612d2e565b613f046040830185612dc4565b8181036060830152613f168184613e9c565b905095945050505050565b600081519050613f3081612b4f565b92915050565b600060208284031215613f4c57613f4b612b19565b5b6000613f5a84828501613f21565b9150509291505056fea2646970667358221220ee77a21249f3fdd414f0912e3c35b1fd8d83b90c936c755806f15a45e3e61fc964736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f617277656176652e6e65742f6d6358444f5f7644694d6947734e4f3959595258366f616b58646a4b38514e556131516a552d48555235632f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b4c6f6e677a75205061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064c6f6e677a750000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://arweave.net/mcXDO_vDiMiGsNO9YYRX6oakXdjK8QNUa1QjU-HUR5c/
Arg [1] : imageURI_ (string):
Arg [2] : mintLimit_ (uint256): 1
Arg [3] : cost_ (uint256): 100000000000000000
Arg [4] : maxSupply_ (uint256): 500
Arg [5] : name (string): Longzu Pass
Arg [6] : symbol (string): Longzu

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [8] : 68747470733a2f2f617277656176652e6e65742f6d6358444f5f7644694d6947
Arg [9] : 734e4f3959595258366f616b58646a4b38514e556131516a552d48555235632f
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [12] : 4c6f6e677a752050617373000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [14] : 4c6f6e677a750000000000000000000000000000000000000000000000000000


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.