ETH Price: $2,627.15 (-0.14%)
Gas: 7 Gwei

Token

Bad Girl (BG)
 

Overview

Max Total Supply

571 BG

Holders

285

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 BG
0xa96bc0778183bacfc154aa321edb8a6a277799e1
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:
BadGirl

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : BadGirl.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";


contract BadGirl is ERC721A, Ownable {
    bool public locked = false;
    uint32 public PRE_SALE_START_DATE = 1651496390;
    uint32 public PUBLIC_SALE_DATE = 1651498190;
    uint256 public DISCOUNT_MINT_PRICE = 0.04 ether;
    uint256 public PUBLIC_MINT_PRICE = 0.05 ether;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public MAX_MINT_PER_ADDR = 5;
    string public baseURI = "https://badgirls.app/.netlify/functions/nft/";
    uint256 public mintedCount = 0;

    bytes32 public highOrderMerkleRoot;
    bytes32 public whitelistMerkleRoot;

    mapping(address => uint256) public highOrderMintCnt;
    mapping(address => uint256) public whitelistMintCnt;


    constructor(bytes32 highOrder, bytes32 whitelist) ERC721A("Bad Girl", "BG") {
        // to the deployer 
        highOrderMerkleRoot = highOrder;
        whitelistMerkleRoot = whitelist;

        _safeMint(msg.sender, 1);
    }

    function setMerkleRoot (bytes32 highOrder, bytes32 whitelist) public onlyOwner {
        highOrderMerkleRoot = highOrder;
        whitelistMerkleRoot = whitelist;
    }

    function getTreeLeaf() internal view returns (bytes32) {
        return keccak256(abi.encodePacked(msg.sender));
    }

    function airdrop (address[] calldata addrs, uint[] calldata amounts) public onlyOwner {
        for (uint i = 0; i < addrs.length; ++i) {
            _safeMint(addrs[i], amounts[i]);
            mintedCount += amounts[i];
        }
    }

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

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

    function setBaseURI(string calldata newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

    function toggleLock() public onlyOwner {
        locked = !locked;
    }

    modifier isValidMerkleProof( bytes32[] calldata merkleProof, bytes32 root, bytes32 leaf) {
        require( 
            MerkleProof.verify( merkleProof, root, leaf),
            "Address does not exist in whitelist !"
        );
        _;
    }

    function highOrderMint (bytes32[] calldata merkleProof, uint256 amount)
        public payable
        isValidMerkleProof(merkleProof, highOrderMerkleRoot, getTreeLeaf())
    {
        require(!locked, "mint entry closed !");
        require(block.timestamp >= PRE_SALE_START_DATE, "Whitelist mint has not yet started!");
        require(
            highOrderMintCnt[msg.sender] + amount <= 3,
            "Only allow to mint 3 at whitelist mint stage !"
        );

        require(
            numberMinted(msg.sender) + amount <= MAX_MINT_PER_ADDR,
            "A single wallet can at most mint 5 !"
        );

        require(mintedCount + amount <= MAX_SUPPLY, "Exceeded max mint range");

        uint256 totalPrice = DISCOUNT_MINT_PRICE * amount;
        require(msg.value >= totalPrice, "Insufficient eth");

        (bool sent, ) = owner().call{value: msg.value}("");
        require(sent, "Failed to send Ether");

        _safeMint(msg.sender, amount);
        highOrderMintCnt[msg.sender] += amount;
        mintedCount += amount;
    }

    function whitelistMint (bytes32[] calldata merkleProof, uint256 amount)
        public payable
        isValidMerkleProof(merkleProof, whitelistMerkleRoot, getTreeLeaf())
    {
        require(!locked, "mint entry closed !");
        require(block.timestamp >= PRE_SALE_START_DATE, "Whitelist mint has not yet started!");
        require(
            whitelistMintCnt[msg.sender] + amount <= 2,
            "Only allow to mint 2 in whitelist mint stage !"
        );

        require(
            numberMinted(msg.sender) + amount <= MAX_MINT_PER_ADDR,
            "A single wallet can at most mint 5 !"
        );

        require(mintedCount + amount <= MAX_SUPPLY, "Exceeded max mint range");

        uint256 totalPrice = PUBLIC_MINT_PRICE * amount;
        require(msg.value >= totalPrice, "Insufficient eth");

        (bool sent, ) = owner().call{value: msg.value}("");
        require(sent, "Failed to send Ether");

        _safeMint(msg.sender, amount);
        whitelistMintCnt[msg.sender] += amount;
        mintedCount += amount;
    }


    function batchMint(uint256 amount) public payable {
        require(!locked, "mint entry closed !");
        require(block.timestamp >= PUBLIC_SALE_DATE, "Public mint has not yet started!");
        require(
            numberMinted(msg.sender) + amount <= MAX_MINT_PER_ADDR,
            "A single wallet can at most mint 5 !"
        );
        require(mintedCount + amount <= MAX_SUPPLY, "Exceeded max mint range");

        uint256 totalPrice = PUBLIC_MINT_PRICE * amount;
        require(msg.value >= totalPrice, "Insufficient eth");

        (bool sent, ) = owner().call{value: msg.value}("");
        require(sent, "Failed to send Ether");

        _safeMint(msg.sender, amount);
        mintedCount += amount;
    }
}

File 2 of 13 : 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 3 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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.isContract() && !_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 &&
            !_ownerships[tokenId].burned;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (safe && to.isContract()) {
                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 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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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 {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == 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 {}
}

File 4 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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 10 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"highOrder","type":"bytes32"},{"internalType":"bytes32","name":"whitelist","type":"bytes32"}],"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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DISCOUNT_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_ADDR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRE_SALE_START_DATE","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_DATE","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"highOrderMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"highOrderMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"highOrderMintCnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedCount","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":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"highOrder","type":"bytes32"},{"internalType":"bytes32","name":"whitelist","type":"bytes32"}],"name":"setMerkleRoot","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":[],"name":"toggleLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintCnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526000600860146101000a81548160ff02191690831515021790555063626fd5c6600860156101000a81548163ffffffff021916908363ffffffff16021790555063626fdcce600860196101000a81548163ffffffff021916908363ffffffff160217905550668e1bc9bf04000060095566b1a2bc2ec50000600a55610d05600b556005600c556040518060600160405280602c815260200162005518602c9139600d9080519060200190620000bb92919062000893565b506000600e55348015620000ce57600080fd5b5060405162005544380380620055448339818101604052810190620000f4919062000971565b6040518060400160405280600881526020017f426164204769726c0000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f424700000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200017892919062000893565b5080600390805190602001906200019192919062000893565b50620001a2620001f360201b60201c565b6000819055505050620001ca620001be620001f860201b60201c565b6200020060201b60201c565b81600f8190555080601081905550620001eb336001620002c660201b60201c565b505062000c05565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e8828260405180602001604052806000815250620002ec60201b60201c565b5050565b6200030183838360016200030660201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000374576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415620003b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003c560008683876200070260201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156200059d57506200059c8773ffffffffffffffffffffffffffffffffffffffff166200070860201b620021761760201c565b5b1562000670575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200061b60008884806001019550886200071b60201b60201c565b62000652576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415620005a45782600054146200066a57600080fd5b620006dd565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141562000671575b816000819055505050620006fb60008683876200088d60201b60201c565b5050505050565b50505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000749620001f860201b60201c565b8786866040518563ffffffff1660e01b81526004016200076d949392919062000a41565b602060405180830381600087803b1580156200078857600080fd5b505af1925050508015620007bc57506040513d601f19601f82011682018060405250810190620007b99190620009b2565b60015b6200083a573d8060008114620007ef576040519150601f19603f3d011682016040523d82523d6000602084013e620007f4565b606091505b5060008151141562000832576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620008a19062000b5b565b90600052602060002090601f016020900481019282620008c5576000855562000911565b82601f10620008e057805160ff191683800117855562000911565b8280016001018555821562000911579182015b8281111562000910578251825591602001919060010190620008f3565b5b50905062000920919062000924565b5090565b5b808211156200093f57600081600090555060010162000925565b5090565b600081519050620009548162000bd1565b92915050565b6000815190506200096b8162000beb565b92915050565b600080604083850312156200098557600080fd5b6000620009958582860162000943565b9250506020620009a88582860162000943565b9150509250929050565b600060208284031215620009c557600080fd5b6000620009d5848285016200095a565b91505092915050565b620009e98162000ab1565b82525050565b6000620009fc8262000a95565b62000a08818562000aa0565b935062000a1a81856020860162000b25565b62000a258162000bc0565b840191505092915050565b62000a3b8162000b1b565b82525050565b600060808201905062000a586000830187620009de565b62000a676020830186620009de565b62000a76604083018562000a30565b818103606083015262000a8a8184620009ef565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b600062000abe8262000afb565b9050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b4557808201518184015260208101905062000b28565b8381111562000b55576000848401525b50505050565b6000600282049050600182168062000b7457607f821691505b6020821081141562000b8b5762000b8a62000b91565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b62000bdc8162000ac5565b811462000be857600080fd5b50565b62000bf68162000acf565b811462000c0257600080fd5b50565b6149038062000c156000396000f3fe6080604052600436106102255760003560e01c80636bde262711610123578063aa98e0c6116100ab578063cf721b151161006f578063cf721b15146107e2578063dc33e6811461080d578063e985e9c51461084a578063f2fde38b14610887578063ff9413d8146108b057610225565b8063aa98e0c6146106e9578063b88d4fde14610714578063c690b8d01461073d578063c87b56dd1461077a578063cf309012146107b757610225565b806375edcbe0116100f257806375edcbe0146106255780638467be0d1461064e5780638da5cb5b1461066a57806395d89b4114610695578063a22cb465146106c057610225565b80636bde26271461057b5780636c0360eb146105a657806370a08231146105d1578063715018a61461060e57610225565b80631f4102af116101b157806332cb6b0c1161017557806332cb6b0c1461049857806342842e0e146104c357806355f804b3146104ec5780636352211e14610515578063672434821461055257610225565b80631f4102af146103c057806323b872dd146103fd578063240a3b111461042657806327bc15b3146104515780632904e6d91461047c57610225565b80630f4188df116101f85780630f4188df146102f8578063161548621461032357806318160ddd1461034e5780631cedb8e4146103795780631e07c050146103a457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613a81565b6108c7565b60405161025e9190613f0b565b60405180910390f35b34801561027357600080fd5b5061027c6109a9565b6040516102899190613f41565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613b18565b610a3b565b6040516102c69190613ea4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061393c565b610ab7565b005b34801561030457600080fd5b5061030d610bc2565b60405161031a91906140fe565b60405180910390f35b34801561032f57600080fd5b50610338610bd8565b60405161034591906140e3565b60405180910390f35b34801561035a57600080fd5b50610363610bde565b60405161037091906140e3565b60405180910390f35b34801561038557600080fd5b5061038e610bf5565b60405161039b9190613f26565b60405180910390f35b6103be60048036038101906103b991906139ed565b610bfb565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906137d1565b611002565b6040516103f491906140e3565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613836565b61101a565b005b34801561043257600080fd5b5061043b61102a565b60405161044891906140fe565b60405180910390f35b34801561045d57600080fd5b50610466611040565b60405161047391906140e3565b60405180910390f35b610496600480360381019061049191906139ed565b611046565b005b3480156104a457600080fd5b506104ad61144d565b6040516104ba91906140e3565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613836565b611453565b005b3480156104f857600080fd5b50610513600480360381019061050e9190613ad3565b611473565b005b34801561052157600080fd5b5061053c60048036038101906105379190613b18565b611505565b6040516105499190613ea4565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613978565b61151b565b005b34801561058757600080fd5b506105906116ab565b60405161059d91906140e3565b60405180910390f35b3480156105b257600080fd5b506105bb6116b1565b6040516105c89190613f41565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f391906137d1565b61173f565b60405161060591906140e3565b60405180910390f35b34801561061a57600080fd5b5061062361180f565b005b34801561063157600080fd5b5061064c60048036038101906106479190613a45565b611897565b005b61066860048036038101906106639190613b18565b611925565b005b34801561067657600080fd5b5061067f611baa565b60405161068c9190613ea4565b60405180910390f35b3480156106a157600080fd5b506106aa611bd4565b6040516106b79190613f41565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190613900565b611c66565b005b3480156106f557600080fd5b506106fe611dde565b60405161070b9190613f26565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613885565b611de4565b005b34801561074957600080fd5b50610764600480360381019061075f91906137d1565b611e60565b60405161077191906140e3565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613b18565b611e78565b6040516107ae9190613f41565b60405180910390f35b3480156107c357600080fd5b506107cc611f17565b6040516107d99190613f0b565b60405180910390f35b3480156107ee57600080fd5b506107f7611f2a565b60405161080491906140e3565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906137d1565b611f30565b60405161084191906140e3565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c91906137fa565b611f42565b60405161087e9190613f0b565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a991906137d1565b611fd6565b005b3480156108bc57600080fd5b506108c56120ce565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a257506109a182612189565b5b9050919050565b6060600280546109b8906143a2565b80601f01602080910402602001604051908101604052809291908181526020018280546109e4906143a2565b8015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b6000610a46826121f3565b610a7c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac282611505565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b49612241565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b7b5750610b7981610b74612241565b611f42565b155b15610bb2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bbd838383612249565b505050565b600860199054906101000a900463ffffffff1681565b600c5481565b6000610be86122fb565b6001546000540303905090565b600f5481565b8282600f54610c08612300565b610c54848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050838361232e565b610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613f63565b60405180910390fd5b600860149054906101000a900460ff1615610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90614003565b60405180910390fd5b600860159054906101000a900463ffffffff1663ffffffff16421015610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d35906140c3565b60405180910390fd5b600385601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d8b91906141bd565b1115610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613fe3565b60405180910390fd5b600c5485610dd933611f30565b610de391906141bd565b1115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614043565b60405180910390fd5b600b5485600e54610e3591906141bd565b1115610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90614023565b60405180910390fd5b600085600954610e869190614244565b905080341015610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290613fa3565b60405180910390fd5b6000610ed5611baa565b73ffffffffffffffffffffffffffffffffffffffff1634604051610ef890613e8f565b60006040518083038185875af1925050503d8060008114610f35576040519150601f19603f3d011682016040523d82523d6000602084013e610f3a565b606091505b5050905080610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613fc3565b60405180910390fd5b610f883388612345565b86601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd791906141bd565b9250508190555086600e6000828254610ff091906141bd565b92505081905550505050505050505050565b60116020528060005260406000206000915090505481565b611025838383612363565b505050565b600860159054906101000a900463ffffffff1681565b60095481565b8282601054611053612300565b61109f848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050838361232e565b6110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613f63565b60405180910390fd5b600860149054906101000a900460ff161561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590614003565b60405180910390fd5b600860159054906101000a900463ffffffff1663ffffffff16421015611189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611180906140c3565b60405180910390fd5b600285601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d691906141bd565b1115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906140a3565b60405180910390fd5b600c548561122433611f30565b61122e91906141bd565b111561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614043565b60405180910390fd5b600b5485600e5461128091906141bd565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890614023565b60405180910390fd5b600085600a546112d19190614244565b905080341015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90613fa3565b60405180910390fd5b6000611320611baa565b73ffffffffffffffffffffffffffffffffffffffff163460405161134390613e8f565b60006040518083038185875af1925050503d8060008114611380576040519150601f19603f3d011682016040523d82523d6000602084013e611385565b606091505b50509050806113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613fc3565b60405180910390fd5b6113d33388612345565b86601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142291906141bd565b9250508190555086600e600082825461143b91906141bd565b92505081905550505050505050505050565b600b5481565b61146e83838360405180602001604052806000815250611de4565b505050565b61147b612241565b73ffffffffffffffffffffffffffffffffffffffff16611499611baa565b73ffffffffffffffffffffffffffffffffffffffff16146114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690614083565b60405180910390fd5b8181600d91906115009291906134dd565b505050565b600061151082612854565b600001519050919050565b611523612241565b73ffffffffffffffffffffffffffffffffffffffff16611541611baa565b73ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90614083565b60405180910390fd5b60005b848490508110156116a45761163b8585838181106115e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906115f691906137d1565b84848481811061162f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612345565b828282818110611674577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600e600082825461168c91906141bd565b925050819055508061169d90614405565b905061159a565b5050505050565b600a5481565b600d80546116be906143a2565b80601f01602080910402602001604051908101604052809291908181526020018280546116ea906143a2565b80156117375780601f1061170c57610100808354040283529160200191611737565b820191906000526020600020905b81548152906001019060200180831161171a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611817612241565b73ffffffffffffffffffffffffffffffffffffffff16611835611baa565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290614083565b60405180910390fd5b6118956000612ae3565b565b61189f612241565b73ffffffffffffffffffffffffffffffffffffffff166118bd611baa565b73ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614083565b60405180910390fd5b81600f81905550806010819055505050565b600860149054906101000a900460ff1615611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90614003565b60405180910390fd5b600860199054906101000a900463ffffffff1663ffffffff164210156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614063565b60405180910390fd5b600c54816119dd33611f30565b6119e791906141bd565b1115611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90614043565b60405180910390fd5b600b5481600e54611a3991906141bd565b1115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190614023565b60405180910390fd5b600081600a54611a8a9190614244565b905080341015611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613fa3565b60405180910390fd5b6000611ad9611baa565b73ffffffffffffffffffffffffffffffffffffffff1634604051611afc90613e8f565b60006040518083038185875af1925050503d8060008114611b39576040519150601f19603f3d011682016040523d82523d6000602084013e611b3e565b606091505b5050905080611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990613fc3565b60405180910390fd5b611b8c3384612345565b82600e6000828254611b9e91906141bd565b92505081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611be3906143a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0f906143a2565b8015611c5c5780601f10611c3157610100808354040283529160200191611c5c565b820191906000526020600020905b815481529060010190602001808311611c3f57829003601f168201915b5050505050905090565b611c6e612241565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ce0612241565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d8d612241565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd29190613f0b565b60405180910390a35050565b60105481565b611def848484612363565b611e0e8373ffffffffffffffffffffffffffffffffffffffff16612176565b8015611e235750611e2184848484612ba9565b155b15611e5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60126020528060005260406000206000915090505481565b6060611e83826121f3565b611eb9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ec3612d09565b9050600081511415611ee45760405180602001604052806000815250611f0f565b80611eee84612d9b565b604051602001611eff929190613e6b565b6040516020818303038152906040525b915050919050565b600860149054906101000a900460ff1681565b600e5481565b6000611f3b82612f48565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fde612241565b73ffffffffffffffffffffffffffffffffffffffff16611ffc611baa565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204990614083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990613f83565b60405180910390fd5b6120cb81612ae3565b50565b6120d6612241565b73ffffffffffffffffffffffffffffffffffffffff166120f4611baa565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190614083565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121fe6122fb565b1115801561220d575060005482105b801561223a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000336040516020016123139190613e24565b60405160208183030381529060405280519060200120905090565b60008261233b8584613018565b1490509392505050565b61235f8282604051806020016040528060008152506130f1565b5050565b600061236e82612854565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612395612241565b73ffffffffffffffffffffffffffffffffffffffff1614806123c857506123c782600001516123c2612241565b611f42565b5b8061240d57506123d6612241565b73ffffffffffffffffffffffffffffffffffffffff166123f584610a3b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612446576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124af576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612516576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125238585856001613103565b6125336000848460000151612249565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127e4576000548110156127e35782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461284d8585856001613109565b5050505050565b61285c613563565b60008290508061286a6122fb565b11158015612879575060005481105b15612aac576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612aaa57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461298e578092505050612ade565b5b600115612aa957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aa4578092505050612ade565b61298f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bcf612241565b8786866040518563ffffffff1660e01b8152600401612bf19493929190613ebf565b602060405180830381600087803b158015612c0b57600080fd5b505af1925050508015612c3c57506040513d601f19601f82011682018060405250810190612c399190613aaa565b60015b612cb6573d8060008114612c6c576040519150601f19603f3d011682016040523d82523d6000602084013e612c71565b606091505b50600081511415612cae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054612d18906143a2565b80601f0160208091040260200160405190810160405280929190818152602001828054612d44906143a2565b8015612d915780601f10612d6657610100808354040283529160200191612d91565b820191906000526020600020905b815481529060010190602001808311612d7457829003601f168201915b5050505050905090565b60606000821415612de3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f43565b600082905060005b60008214612e15578080612dfe90614405565b915050600a82612e0e9190614213565b9150612deb565b60008167ffffffffffffffff811115612e57577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e895781602001600182028036833780820191505090505b5090505b60008514612f3c57600182612ea2919061429e565b9150600a85612eb1919061447c565b6030612ebd91906141bd565b60f81b818381518110612ef9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f359190614213565b9450612e8d565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb0576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60008082905060005b84518110156130e6576000858281518110613065577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116130a6578281604051602001613089929190613e3f565b6040516020818303038152906040528051906020012092506130d2565b80836040516020016130b9929190613e3f565b6040516020818303038152906040528051906020012092505b5080806130de90614405565b915050613021565b508091505092915050565b6130fe838383600161310f565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561317c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131b7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131c46000868387613103565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561338e575061338d8773ffffffffffffffffffffffffffffffffffffffff16612176565b5b15613454575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134036000888480600101955088612ba9565b613439576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561339457826000541461344f57600080fd5b6134c0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613455575b8160008190555050506134d66000868387613109565b5050505050565b8280546134e9906143a2565b90600052602060002090601f01602090048101928261350b5760008555613552565b82601f1061352457803560ff1916838001178555613552565b82800160010185558215613552579182015b82811115613551578235825591602001919060010190613536565b5b50905061355f91906135a6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135bf5760008160009055506001016135a7565b5090565b60006135d66135d18461413e565b614119565b9050828152602081018484840111156135ee57600080fd5b6135f9848285614360565b509392505050565b6000813590506136108161485a565b92915050565b60008083601f84011261362857600080fd5b8235905067ffffffffffffffff81111561364157600080fd5b60208301915083602082028301111561365957600080fd5b9250929050565b60008083601f84011261367257600080fd5b8235905067ffffffffffffffff81111561368b57600080fd5b6020830191508360208202830111156136a357600080fd5b9250929050565b60008083601f8401126136bc57600080fd5b8235905067ffffffffffffffff8111156136d557600080fd5b6020830191508360208202830111156136ed57600080fd5b9250929050565b60008135905061370381614871565b92915050565b60008135905061371881614888565b92915050565b60008135905061372d8161489f565b92915050565b6000815190506137428161489f565b92915050565b600082601f83011261375957600080fd5b81356137698482602086016135c3565b91505092915050565b60008083601f84011261378457600080fd5b8235905067ffffffffffffffff81111561379d57600080fd5b6020830191508360018202830111156137b557600080fd5b9250929050565b6000813590506137cb816148b6565b92915050565b6000602082840312156137e357600080fd5b60006137f184828501613601565b91505092915050565b6000806040838503121561380d57600080fd5b600061381b85828601613601565b925050602061382c85828601613601565b9150509250929050565b60008060006060848603121561384b57600080fd5b600061385986828701613601565b935050602061386a86828701613601565b925050604061387b868287016137bc565b9150509250925092565b6000806000806080858703121561389b57600080fd5b60006138a987828801613601565b94505060206138ba87828801613601565b93505060406138cb878288016137bc565b925050606085013567ffffffffffffffff8111156138e857600080fd5b6138f487828801613748565b91505092959194509250565b6000806040838503121561391357600080fd5b600061392185828601613601565b9250506020613932858286016136f4565b9150509250929050565b6000806040838503121561394f57600080fd5b600061395d85828601613601565b925050602061396e858286016137bc565b9150509250929050565b6000806000806040858703121561398e57600080fd5b600085013567ffffffffffffffff8111156139a857600080fd5b6139b487828801613616565b9450945050602085013567ffffffffffffffff8111156139d357600080fd5b6139df878288016136aa565b925092505092959194509250565b600080600060408486031215613a0257600080fd5b600084013567ffffffffffffffff811115613a1c57600080fd5b613a2886828701613660565b93509350506020613a3b868287016137bc565b9150509250925092565b60008060408385031215613a5857600080fd5b6000613a6685828601613709565b9250506020613a7785828601613709565b9150509250929050565b600060208284031215613a9357600080fd5b6000613aa18482850161371e565b91505092915050565b600060208284031215613abc57600080fd5b6000613aca84828501613733565b91505092915050565b60008060208385031215613ae657600080fd5b600083013567ffffffffffffffff811115613b0057600080fd5b613b0c85828601613772565b92509250509250929050565b600060208284031215613b2a57600080fd5b6000613b38848285016137bc565b91505092915050565b613b4a816142d2565b82525050565b613b61613b5c826142d2565b61444e565b82525050565b613b70816142e4565b82525050565b613b7f816142f0565b82525050565b613b96613b91826142f0565b614460565b82525050565b6000613ba78261416f565b613bb18185614185565b9350613bc181856020860161436f565b613bca81614569565b840191505092915050565b6000613be08261417a565b613bea81856141a1565b9350613bfa81856020860161436f565b613c0381614569565b840191505092915050565b6000613c198261417a565b613c2381856141b2565b9350613c3381856020860161436f565b80840191505092915050565b6000613c4c6025836141a1565b9150613c5782614587565b604082019050919050565b6000613c6f6026836141a1565b9150613c7a826145d6565b604082019050919050565b6000613c926010836141a1565b9150613c9d82614625565b602082019050919050565b6000613cb56014836141a1565b9150613cc08261464e565b602082019050919050565b6000613cd8602e836141a1565b9150613ce382614677565b604082019050919050565b6000613cfb6013836141a1565b9150613d06826146c6565b602082019050919050565b6000613d1e6017836141a1565b9150613d29826146ef565b602082019050919050565b6000613d416024836141a1565b9150613d4c82614718565b604082019050919050565b6000613d646020836141a1565b9150613d6f82614767565b602082019050919050565b6000613d876020836141a1565b9150613d9282614790565b602082019050919050565b6000613daa602e836141a1565b9150613db5826147b9565b604082019050919050565b6000613dcd600083614196565b9150613dd882614808565b600082019050919050565b6000613df06023836141a1565b9150613dfb8261480b565b604082019050919050565b613e0f81614346565b82525050565b613e1e81614350565b82525050565b6000613e308284613b50565b60148201915081905092915050565b6000613e4b8285613b85565b602082019150613e5b8284613b85565b6020820191508190509392505050565b6000613e778285613c0e565b9150613e838284613c0e565b91508190509392505050565b6000613e9a82613dc0565b9150819050919050565b6000602082019050613eb96000830184613b41565b92915050565b6000608082019050613ed46000830187613b41565b613ee16020830186613b41565b613eee6040830185613e06565b8181036060830152613f008184613b9c565b905095945050505050565b6000602082019050613f206000830184613b67565b92915050565b6000602082019050613f3b6000830184613b76565b92915050565b60006020820190508181036000830152613f5b8184613bd5565b905092915050565b60006020820190508181036000830152613f7c81613c3f565b9050919050565b60006020820190508181036000830152613f9c81613c62565b9050919050565b60006020820190508181036000830152613fbc81613c85565b9050919050565b60006020820190508181036000830152613fdc81613ca8565b9050919050565b60006020820190508181036000830152613ffc81613ccb565b9050919050565b6000602082019050818103600083015261401c81613cee565b9050919050565b6000602082019050818103600083015261403c81613d11565b9050919050565b6000602082019050818103600083015261405c81613d34565b9050919050565b6000602082019050818103600083015261407c81613d57565b9050919050565b6000602082019050818103600083015261409c81613d7a565b9050919050565b600060208201905081810360008301526140bc81613d9d565b9050919050565b600060208201905081810360008301526140dc81613de3565b9050919050565b60006020820190506140f86000830184613e06565b92915050565b60006020820190506141136000830184613e15565b92915050565b6000614123614134565b905061412f82826143d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156141595761415861453a565b5b61416282614569565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141c882614346565b91506141d383614346565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614208576142076144ad565b5b828201905092915050565b600061421e82614346565b915061422983614346565b925082614239576142386144dc565b5b828204905092915050565b600061424f82614346565b915061425a83614346565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614293576142926144ad565b5b828202905092915050565b60006142a982614346565b91506142b483614346565b9250828210156142c7576142c66144ad565b5b828203905092915050565b60006142dd82614326565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b8381101561438d578082015181840152602081019050614372565b8381111561439c576000848401525b50505050565b600060028204905060018216806143ba57607f821691505b602082108114156143ce576143cd61450b565b5b50919050565b6143dd82614569565b810181811067ffffffffffffffff821117156143fc576143fb61453a565b5b80604052505050565b600061441082614346565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614443576144426144ad565b5b600182019050919050565b60006144598261446a565b9050919050565b6000819050919050565b60006144758261457a565b9050919050565b600061448782614346565b915061449283614346565b9250826144a2576144a16144dc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4164647265737320646f6573206e6f7420657869737420696e2077686974656c60008201527f6973742021000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746800000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4f6e6c7920616c6c6f7720746f206d696e7420332061742077686974656c697360008201527f74206d696e742073746167652021000000000000000000000000000000000000602082015250565b7f6d696e7420656e74727920636c6f736564202100000000000000000000000000600082015250565b7f4578636565646564206d6178206d696e742072616e6765000000000000000000600082015250565b7f412073696e676c652077616c6c65742063616e206174206d6f7374206d696e7460008201527f2035202100000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e7420686173206e6f7420796574207374617274656421600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f6e6c7920616c6c6f7720746f206d696e74203220696e2077686974656c697360008201527f74206d696e742073746167652021000000000000000000000000000000000000602082015250565b50565b7f57686974656c697374206d696e7420686173206e6f742079657420737461727460008201527f6564210000000000000000000000000000000000000000000000000000000000602082015250565b614863816142d2565b811461486e57600080fd5b50565b61487a816142e4565b811461488557600080fd5b50565b614891816142f0565b811461489c57600080fd5b50565b6148a8816142fa565b81146148b357600080fd5b50565b6148bf81614346565b81146148ca57600080fd5b5056fea264697066735822122060280f5e86d27c4f72b1097ad3610815c9da92b1d8fac44b2d71a7809b05d81b64736f6c6343000804003368747470733a2f2f6261646769726c732e6170702f2e6e65746c6966792f66756e6374696f6e732f6e66742f96e80fc7f289a0560acdea19147f7c75066126496854e30d0b1e0c9aa62509fe8bc67f691e323b2c6628e099a18ec52368be47c7d061336ecb8f34fa7ee878ba

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636bde262711610123578063aa98e0c6116100ab578063cf721b151161006f578063cf721b15146107e2578063dc33e6811461080d578063e985e9c51461084a578063f2fde38b14610887578063ff9413d8146108b057610225565b8063aa98e0c6146106e9578063b88d4fde14610714578063c690b8d01461073d578063c87b56dd1461077a578063cf309012146107b757610225565b806375edcbe0116100f257806375edcbe0146106255780638467be0d1461064e5780638da5cb5b1461066a57806395d89b4114610695578063a22cb465146106c057610225565b80636bde26271461057b5780636c0360eb146105a657806370a08231146105d1578063715018a61461060e57610225565b80631f4102af116101b157806332cb6b0c1161017557806332cb6b0c1461049857806342842e0e146104c357806355f804b3146104ec5780636352211e14610515578063672434821461055257610225565b80631f4102af146103c057806323b872dd146103fd578063240a3b111461042657806327bc15b3146104515780632904e6d91461047c57610225565b80630f4188df116101f85780630f4188df146102f8578063161548621461032357806318160ddd1461034e5780631cedb8e4146103795780631e07c050146103a457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613a81565b6108c7565b60405161025e9190613f0b565b60405180910390f35b34801561027357600080fd5b5061027c6109a9565b6040516102899190613f41565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613b18565b610a3b565b6040516102c69190613ea4565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061393c565b610ab7565b005b34801561030457600080fd5b5061030d610bc2565b60405161031a91906140fe565b60405180910390f35b34801561032f57600080fd5b50610338610bd8565b60405161034591906140e3565b60405180910390f35b34801561035a57600080fd5b50610363610bde565b60405161037091906140e3565b60405180910390f35b34801561038557600080fd5b5061038e610bf5565b60405161039b9190613f26565b60405180910390f35b6103be60048036038101906103b991906139ed565b610bfb565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906137d1565b611002565b6040516103f491906140e3565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613836565b61101a565b005b34801561043257600080fd5b5061043b61102a565b60405161044891906140fe565b60405180910390f35b34801561045d57600080fd5b50610466611040565b60405161047391906140e3565b60405180910390f35b610496600480360381019061049191906139ed565b611046565b005b3480156104a457600080fd5b506104ad61144d565b6040516104ba91906140e3565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613836565b611453565b005b3480156104f857600080fd5b50610513600480360381019061050e9190613ad3565b611473565b005b34801561052157600080fd5b5061053c60048036038101906105379190613b18565b611505565b6040516105499190613ea4565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613978565b61151b565b005b34801561058757600080fd5b506105906116ab565b60405161059d91906140e3565b60405180910390f35b3480156105b257600080fd5b506105bb6116b1565b6040516105c89190613f41565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f391906137d1565b61173f565b60405161060591906140e3565b60405180910390f35b34801561061a57600080fd5b5061062361180f565b005b34801561063157600080fd5b5061064c60048036038101906106479190613a45565b611897565b005b61066860048036038101906106639190613b18565b611925565b005b34801561067657600080fd5b5061067f611baa565b60405161068c9190613ea4565b60405180910390f35b3480156106a157600080fd5b506106aa611bd4565b6040516106b79190613f41565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190613900565b611c66565b005b3480156106f557600080fd5b506106fe611dde565b60405161070b9190613f26565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190613885565b611de4565b005b34801561074957600080fd5b50610764600480360381019061075f91906137d1565b611e60565b60405161077191906140e3565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613b18565b611e78565b6040516107ae9190613f41565b60405180910390f35b3480156107c357600080fd5b506107cc611f17565b6040516107d99190613f0b565b60405180910390f35b3480156107ee57600080fd5b506107f7611f2a565b60405161080491906140e3565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906137d1565b611f30565b60405161084191906140e3565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c91906137fa565b611f42565b60405161087e9190613f0b565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a991906137d1565b611fd6565b005b3480156108bc57600080fd5b506108c56120ce565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a257506109a182612189565b5b9050919050565b6060600280546109b8906143a2565b80601f01602080910402602001604051908101604052809291908181526020018280546109e4906143a2565b8015610a315780601f10610a0657610100808354040283529160200191610a31565b820191906000526020600020905b815481529060010190602001808311610a1457829003601f168201915b5050505050905090565b6000610a46826121f3565b610a7c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac282611505565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b49612241565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b7b5750610b7981610b74612241565b611f42565b155b15610bb2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bbd838383612249565b505050565b600860199054906101000a900463ffffffff1681565b600c5481565b6000610be86122fb565b6001546000540303905090565b600f5481565b8282600f54610c08612300565b610c54848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050838361232e565b610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613f63565b60405180910390fd5b600860149054906101000a900460ff1615610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90614003565b60405180910390fd5b600860159054906101000a900463ffffffff1663ffffffff16421015610d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d35906140c3565b60405180910390fd5b600385601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d8b91906141bd565b1115610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613fe3565b60405180910390fd5b600c5485610dd933611f30565b610de391906141bd565b1115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614043565b60405180910390fd5b600b5485600e54610e3591906141bd565b1115610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90614023565b60405180910390fd5b600085600954610e869190614244565b905080341015610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290613fa3565b60405180910390fd5b6000610ed5611baa565b73ffffffffffffffffffffffffffffffffffffffff1634604051610ef890613e8f565b60006040518083038185875af1925050503d8060008114610f35576040519150601f19603f3d011682016040523d82523d6000602084013e610f3a565b606091505b5050905080610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590613fc3565b60405180910390fd5b610f883388612345565b86601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fd791906141bd565b9250508190555086600e6000828254610ff091906141bd565b92505081905550505050505050505050565b60116020528060005260406000206000915090505481565b611025838383612363565b505050565b600860159054906101000a900463ffffffff1681565b60095481565b8282601054611053612300565b61109f848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050838361232e565b6110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613f63565b60405180910390fd5b600860149054906101000a900460ff161561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590614003565b60405180910390fd5b600860159054906101000a900463ffffffff1663ffffffff16421015611189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611180906140c3565b60405180910390fd5b600285601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d691906141bd565b1115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906140a3565b60405180910390fd5b600c548561122433611f30565b61122e91906141bd565b111561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690614043565b60405180910390fd5b600b5485600e5461128091906141bd565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890614023565b60405180910390fd5b600085600a546112d19190614244565b905080341015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90613fa3565b60405180910390fd5b6000611320611baa565b73ffffffffffffffffffffffffffffffffffffffff163460405161134390613e8f565b60006040518083038185875af1925050503d8060008114611380576040519150601f19603f3d011682016040523d82523d6000602084013e611385565b606091505b50509050806113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c090613fc3565b60405180910390fd5b6113d33388612345565b86601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142291906141bd565b9250508190555086600e600082825461143b91906141bd565b92505081905550505050505050505050565b600b5481565b61146e83838360405180602001604052806000815250611de4565b505050565b61147b612241565b73ffffffffffffffffffffffffffffffffffffffff16611499611baa565b73ffffffffffffffffffffffffffffffffffffffff16146114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690614083565b60405180910390fd5b8181600d91906115009291906134dd565b505050565b600061151082612854565b600001519050919050565b611523612241565b73ffffffffffffffffffffffffffffffffffffffff16611541611baa565b73ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e90614083565b60405180910390fd5b60005b848490508110156116a45761163b8585838181106115e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906115f691906137d1565b84848481811061162f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135612345565b828282818110611674577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600e600082825461168c91906141bd565b925050819055508061169d90614405565b905061159a565b5050505050565b600a5481565b600d80546116be906143a2565b80601f01602080910402602001604051908101604052809291908181526020018280546116ea906143a2565b80156117375780601f1061170c57610100808354040283529160200191611737565b820191906000526020600020905b81548152906001019060200180831161171a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611817612241565b73ffffffffffffffffffffffffffffffffffffffff16611835611baa565b73ffffffffffffffffffffffffffffffffffffffff161461188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290614083565b60405180910390fd5b6118956000612ae3565b565b61189f612241565b73ffffffffffffffffffffffffffffffffffffffff166118bd611baa565b73ffffffffffffffffffffffffffffffffffffffff1614611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614083565b60405180910390fd5b81600f81905550806010819055505050565b600860149054906101000a900460ff1615611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90614003565b60405180910390fd5b600860199054906101000a900463ffffffff1663ffffffff164210156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614063565b60405180910390fd5b600c54816119dd33611f30565b6119e791906141bd565b1115611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90614043565b60405180910390fd5b600b5481600e54611a3991906141bd565b1115611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190614023565b60405180910390fd5b600081600a54611a8a9190614244565b905080341015611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613fa3565b60405180910390fd5b6000611ad9611baa565b73ffffffffffffffffffffffffffffffffffffffff1634604051611afc90613e8f565b60006040518083038185875af1925050503d8060008114611b39576040519150601f19603f3d011682016040523d82523d6000602084013e611b3e565b606091505b5050905080611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990613fc3565b60405180910390fd5b611b8c3384612345565b82600e6000828254611b9e91906141bd565b92505081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611be3906143a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0f906143a2565b8015611c5c5780601f10611c3157610100808354040283529160200191611c5c565b820191906000526020600020905b815481529060010190602001808311611c3f57829003601f168201915b5050505050905090565b611c6e612241565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ce0612241565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d8d612241565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd29190613f0b565b60405180910390a35050565b60105481565b611def848484612363565b611e0e8373ffffffffffffffffffffffffffffffffffffffff16612176565b8015611e235750611e2184848484612ba9565b155b15611e5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60126020528060005260406000206000915090505481565b6060611e83826121f3565b611eb9576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ec3612d09565b9050600081511415611ee45760405180602001604052806000815250611f0f565b80611eee84612d9b565b604051602001611eff929190613e6b565b6040516020818303038152906040525b915050919050565b600860149054906101000a900460ff1681565b600e5481565b6000611f3b82612f48565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fde612241565b73ffffffffffffffffffffffffffffffffffffffff16611ffc611baa565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204990614083565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990613f83565b60405180910390fd5b6120cb81612ae3565b50565b6120d6612241565b73ffffffffffffffffffffffffffffffffffffffff166120f4611baa565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190614083565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121fe6122fb565b1115801561220d575060005482105b801561223a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000336040516020016123139190613e24565b60405160208183030381529060405280519060200120905090565b60008261233b8584613018565b1490509392505050565b61235f8282604051806020016040528060008152506130f1565b5050565b600061236e82612854565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612395612241565b73ffffffffffffffffffffffffffffffffffffffff1614806123c857506123c782600001516123c2612241565b611f42565b5b8061240d57506123d6612241565b73ffffffffffffffffffffffffffffffffffffffff166123f584610a3b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612446576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124af576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612516576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125238585856001613103565b6125336000848460000151612249565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127e4576000548110156127e35782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461284d8585856001613109565b5050505050565b61285c613563565b60008290508061286a6122fb565b11158015612879575060005481105b15612aac576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612aaa57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461298e578092505050612ade565b5b600115612aa957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aa4578092505050612ade565b61298f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bcf612241565b8786866040518563ffffffff1660e01b8152600401612bf19493929190613ebf565b602060405180830381600087803b158015612c0b57600080fd5b505af1925050508015612c3c57506040513d601f19601f82011682018060405250810190612c399190613aaa565b60015b612cb6573d8060008114612c6c576040519150601f19603f3d011682016040523d82523d6000602084013e612c71565b606091505b50600081511415612cae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054612d18906143a2565b80601f0160208091040260200160405190810160405280929190818152602001828054612d44906143a2565b8015612d915780601f10612d6657610100808354040283529160200191612d91565b820191906000526020600020905b815481529060010190602001808311612d7457829003601f168201915b5050505050905090565b60606000821415612de3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f43565b600082905060005b60008214612e15578080612dfe90614405565b915050600a82612e0e9190614213565b9150612deb565b60008167ffffffffffffffff811115612e57577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e895781602001600182028036833780820191505090505b5090505b60008514612f3c57600182612ea2919061429e565b9150600a85612eb1919061447c565b6030612ebd91906141bd565b60f81b818381518110612ef9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f359190614213565b9450612e8d565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb0576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60008082905060005b84518110156130e6576000858281518110613065577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116130a6578281604051602001613089929190613e3f565b6040516020818303038152906040528051906020012092506130d2565b80836040516020016130b9929190613e3f565b6040516020818303038152906040528051906020012092505b5080806130de90614405565b915050613021565b508091505092915050565b6130fe838383600161310f565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561317c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131b7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131c46000868387613103565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561338e575061338d8773ffffffffffffffffffffffffffffffffffffffff16612176565b5b15613454575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134036000888480600101955088612ba9565b613439576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561339457826000541461344f57600080fd5b6134c0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613455575b8160008190555050506134d66000868387613109565b5050505050565b8280546134e9906143a2565b90600052602060002090601f01602090048101928261350b5760008555613552565b82601f1061352457803560ff1916838001178555613552565b82800160010185558215613552579182015b82811115613551578235825591602001919060010190613536565b5b50905061355f91906135a6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135bf5760008160009055506001016135a7565b5090565b60006135d66135d18461413e565b614119565b9050828152602081018484840111156135ee57600080fd5b6135f9848285614360565b509392505050565b6000813590506136108161485a565b92915050565b60008083601f84011261362857600080fd5b8235905067ffffffffffffffff81111561364157600080fd5b60208301915083602082028301111561365957600080fd5b9250929050565b60008083601f84011261367257600080fd5b8235905067ffffffffffffffff81111561368b57600080fd5b6020830191508360208202830111156136a357600080fd5b9250929050565b60008083601f8401126136bc57600080fd5b8235905067ffffffffffffffff8111156136d557600080fd5b6020830191508360208202830111156136ed57600080fd5b9250929050565b60008135905061370381614871565b92915050565b60008135905061371881614888565b92915050565b60008135905061372d8161489f565b92915050565b6000815190506137428161489f565b92915050565b600082601f83011261375957600080fd5b81356137698482602086016135c3565b91505092915050565b60008083601f84011261378457600080fd5b8235905067ffffffffffffffff81111561379d57600080fd5b6020830191508360018202830111156137b557600080fd5b9250929050565b6000813590506137cb816148b6565b92915050565b6000602082840312156137e357600080fd5b60006137f184828501613601565b91505092915050565b6000806040838503121561380d57600080fd5b600061381b85828601613601565b925050602061382c85828601613601565b9150509250929050565b60008060006060848603121561384b57600080fd5b600061385986828701613601565b935050602061386a86828701613601565b925050604061387b868287016137bc565b9150509250925092565b6000806000806080858703121561389b57600080fd5b60006138a987828801613601565b94505060206138ba87828801613601565b93505060406138cb878288016137bc565b925050606085013567ffffffffffffffff8111156138e857600080fd5b6138f487828801613748565b91505092959194509250565b6000806040838503121561391357600080fd5b600061392185828601613601565b9250506020613932858286016136f4565b9150509250929050565b6000806040838503121561394f57600080fd5b600061395d85828601613601565b925050602061396e858286016137bc565b9150509250929050565b6000806000806040858703121561398e57600080fd5b600085013567ffffffffffffffff8111156139a857600080fd5b6139b487828801613616565b9450945050602085013567ffffffffffffffff8111156139d357600080fd5b6139df878288016136aa565b925092505092959194509250565b600080600060408486031215613a0257600080fd5b600084013567ffffffffffffffff811115613a1c57600080fd5b613a2886828701613660565b93509350506020613a3b868287016137bc565b9150509250925092565b60008060408385031215613a5857600080fd5b6000613a6685828601613709565b9250506020613a7785828601613709565b9150509250929050565b600060208284031215613a9357600080fd5b6000613aa18482850161371e565b91505092915050565b600060208284031215613abc57600080fd5b6000613aca84828501613733565b91505092915050565b60008060208385031215613ae657600080fd5b600083013567ffffffffffffffff811115613b0057600080fd5b613b0c85828601613772565b92509250509250929050565b600060208284031215613b2a57600080fd5b6000613b38848285016137bc565b91505092915050565b613b4a816142d2565b82525050565b613b61613b5c826142d2565b61444e565b82525050565b613b70816142e4565b82525050565b613b7f816142f0565b82525050565b613b96613b91826142f0565b614460565b82525050565b6000613ba78261416f565b613bb18185614185565b9350613bc181856020860161436f565b613bca81614569565b840191505092915050565b6000613be08261417a565b613bea81856141a1565b9350613bfa81856020860161436f565b613c0381614569565b840191505092915050565b6000613c198261417a565b613c2381856141b2565b9350613c3381856020860161436f565b80840191505092915050565b6000613c4c6025836141a1565b9150613c5782614587565b604082019050919050565b6000613c6f6026836141a1565b9150613c7a826145d6565b604082019050919050565b6000613c926010836141a1565b9150613c9d82614625565b602082019050919050565b6000613cb56014836141a1565b9150613cc08261464e565b602082019050919050565b6000613cd8602e836141a1565b9150613ce382614677565b604082019050919050565b6000613cfb6013836141a1565b9150613d06826146c6565b602082019050919050565b6000613d1e6017836141a1565b9150613d29826146ef565b602082019050919050565b6000613d416024836141a1565b9150613d4c82614718565b604082019050919050565b6000613d646020836141a1565b9150613d6f82614767565b602082019050919050565b6000613d876020836141a1565b9150613d9282614790565b602082019050919050565b6000613daa602e836141a1565b9150613db5826147b9565b604082019050919050565b6000613dcd600083614196565b9150613dd882614808565b600082019050919050565b6000613df06023836141a1565b9150613dfb8261480b565b604082019050919050565b613e0f81614346565b82525050565b613e1e81614350565b82525050565b6000613e308284613b50565b60148201915081905092915050565b6000613e4b8285613b85565b602082019150613e5b8284613b85565b6020820191508190509392505050565b6000613e778285613c0e565b9150613e838284613c0e565b91508190509392505050565b6000613e9a82613dc0565b9150819050919050565b6000602082019050613eb96000830184613b41565b92915050565b6000608082019050613ed46000830187613b41565b613ee16020830186613b41565b613eee6040830185613e06565b8181036060830152613f008184613b9c565b905095945050505050565b6000602082019050613f206000830184613b67565b92915050565b6000602082019050613f3b6000830184613b76565b92915050565b60006020820190508181036000830152613f5b8184613bd5565b905092915050565b60006020820190508181036000830152613f7c81613c3f565b9050919050565b60006020820190508181036000830152613f9c81613c62565b9050919050565b60006020820190508181036000830152613fbc81613c85565b9050919050565b60006020820190508181036000830152613fdc81613ca8565b9050919050565b60006020820190508181036000830152613ffc81613ccb565b9050919050565b6000602082019050818103600083015261401c81613cee565b9050919050565b6000602082019050818103600083015261403c81613d11565b9050919050565b6000602082019050818103600083015261405c81613d34565b9050919050565b6000602082019050818103600083015261407c81613d57565b9050919050565b6000602082019050818103600083015261409c81613d7a565b9050919050565b600060208201905081810360008301526140bc81613d9d565b9050919050565b600060208201905081810360008301526140dc81613de3565b9050919050565b60006020820190506140f86000830184613e06565b92915050565b60006020820190506141136000830184613e15565b92915050565b6000614123614134565b905061412f82826143d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156141595761415861453a565b5b61416282614569565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141c882614346565b91506141d383614346565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614208576142076144ad565b5b828201905092915050565b600061421e82614346565b915061422983614346565b925082614239576142386144dc565b5b828204905092915050565b600061424f82614346565b915061425a83614346565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614293576142926144ad565b5b828202905092915050565b60006142a982614346565b91506142b483614346565b9250828210156142c7576142c66144ad565b5b828203905092915050565b60006142dd82614326565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b8381101561438d578082015181840152602081019050614372565b8381111561439c576000848401525b50505050565b600060028204905060018216806143ba57607f821691505b602082108114156143ce576143cd61450b565b5b50919050565b6143dd82614569565b810181811067ffffffffffffffff821117156143fc576143fb61453a565b5b80604052505050565b600061441082614346565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614443576144426144ad565b5b600182019050919050565b60006144598261446a565b9050919050565b6000819050919050565b60006144758261457a565b9050919050565b600061448782614346565b915061449283614346565b9250826144a2576144a16144dc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4164647265737320646f6573206e6f7420657869737420696e2077686974656c60008201527f6973742021000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746800000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4f6e6c7920616c6c6f7720746f206d696e7420332061742077686974656c697360008201527f74206d696e742073746167652021000000000000000000000000000000000000602082015250565b7f6d696e7420656e74727920636c6f736564202100000000000000000000000000600082015250565b7f4578636565646564206d6178206d696e742072616e6765000000000000000000600082015250565b7f412073696e676c652077616c6c65742063616e206174206d6f7374206d696e7460008201527f2035202100000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e7420686173206e6f7420796574207374617274656421600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f6e6c7920616c6c6f7720746f206d696e74203220696e2077686974656c697360008201527f74206d696e742073746167652021000000000000000000000000000000000000602082015250565b50565b7f57686974656c697374206d696e7420686173206e6f742079657420737461727460008201527f6564210000000000000000000000000000000000000000000000000000000000602082015250565b614863816142d2565b811461486e57600080fd5b50565b61487a816142e4565b811461488557600080fd5b50565b614891816142f0565b811461489c57600080fd5b50565b6148a8816142fa565b81146148b357600080fd5b50565b6148bf81614346565b81146148ca57600080fd5b5056fea264697066735822122060280f5e86d27c4f72b1097ad3610815c9da92b1d8fac44b2d71a7809b05d81b64736f6c63430008040033

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

96e80fc7f289a0560acdea19147f7c75066126496854e30d0b1e0c9aa62509fe8bc67f691e323b2c6628e099a18ec52368be47c7d061336ecb8f34fa7ee878ba

-----Decoded View---------------
Arg [0] : highOrder (bytes32): 0x96e80fc7f289a0560acdea19147f7c75066126496854e30d0b1e0c9aa62509fe
Arg [1] : whitelist (bytes32): 0x8bc67f691e323b2c6628e099a18ec52368be47c7d061336ecb8f34fa7ee878ba

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 96e80fc7f289a0560acdea19147f7c75066126496854e30d0b1e0c9aa62509fe
Arg [1] : 8bc67f691e323b2c6628e099a18ec52368be47c7d061336ecb8f34fa7ee878ba


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.