ETH Price: $2,428.87 (+3.33%)

Token

PoPP Interstellar Pass Card (PoPPIPC)
 

Overview

Max Total Supply

1,000 PoPPIPC

Holders

760

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
PoPPInterstellarPassCard

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, None license
File 1 of 11 : PoPPInterstellarPassCard.sol
pragma solidity ^0.8.0;


import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

contract PoPPInterstellarPassCard is IERC721Enumerable, ERC721 {

    uint256 public nextTokenId = 1;
    uint256 public maxTotalSupply = 1000;
    string public baseURI;
    string public contractURI;
    address public admin;
    mapping(address => bool) public minter;

    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    constructor(string memory name_, string memory symbol_, string memory baseURI_, string memory contractURI_) ERC721(name_, symbol_) {
        baseURI = baseURI_;
        contractURI = contractURI_;
        minter[msg.sender] = true;
        admin = msg.sender;
    }

    function changeAdmin(address newAdmin_) public {
        require(admin == msg.sender, 'Invalid admin!');
        admin = newAdmin_;
    }

    function setMinter(address minter_, bool mint_) public {
        require(admin == msg.sender, 'Invalid admin!');
        minter[minter_] = mint_;
    }

    function mint(address owner_) public returns(uint256){
        require(minter[msg.sender], 'Invalid minter!');
        return _mint(owner_);
    }

    function airdrop(address[] calldata owners_) public {
        require(minter[msg.sender], 'Invalid minter!');
        for(uint256 i=0;i<owners_.length;i++){
            _mint(owners_[i]);
        }
    }

    function _mint(address owner_) internal returns(uint256){
        require(nextTokenId<=maxTotalSupply, 'Sold out!');
        uint256 tokenId = nextTokenId;
        _safeMint(owner_, tokenId);
        nextTokenId++;
        return tokenId;
    }

    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds!");
        return _ownedTokens[owner][index];
    }

    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        require(index < nextTokenId, "ERC721Enumerable: global index out of bounds!");
        return _allTokens[index];
    }

    function totalSupply() external view returns (uint256) {
        return _allTokens.length;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721,IERC165) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 11 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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 4 of 11 : 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 5 of 11 : 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 6 of 11 : 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 7 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 8 of 11 : 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 9 of 11 : 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 10 of 11 : 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);
}

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200,
    "details": {
      "yul": true
    }
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"string","name":"contractURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners_","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin_","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"address","name":"minter_","type":"address"},{"internalType":"bool","name":"mint_","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016006556103e86007553480156200001c57600080fd5b5060405162002015380380620020158339810160408190526200003f916200017e565b838360006200004f8382620002c6565b5060016200005e8282620002c6565b50600891506200007190508382620002c6565b506009620000808282620002c6565b5050336000818152600b60205260409020805460ff19166001179055600a80546001600160a01b03191690911790555062000392915050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620000e157600080fd5b81516001600160401b0380821115620000fe57620000fe620000b9565b604051601f8301601f19908116603f01168101908282118183101715620001295762000129620000b9565b816040528381526020925086838588010111156200014657600080fd5b600091505b838210156200016a57858201830151818301840152908201906200014b565b600093810190920192909252949350505050565b600080600080608085870312156200019557600080fd5b84516001600160401b0380821115620001ad57600080fd5b620001bb88838901620000cf565b95506020870151915080821115620001d257600080fd5b620001e088838901620000cf565b94506040870151915080821115620001f757600080fd5b6200020588838901620000cf565b935060608701519150808211156200021c57600080fd5b506200022b87828801620000cf565b91505092959194509250565b600181811c908216806200024c57607f821691505b6020821081036200026d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002c157600081815260208120601f850160051c810160208610156200029c5750805b601f850160051c820191505b81811015620002bd57828155600101620002a8565b5050505b505050565b81516001600160401b03811115620002e257620002e2620000b9565b620002fa81620002f3845462000237565b8462000273565b602080601f831160018114620003325760008415620003195750858301515b600019600386901b1c1916600185901b178555620002bd565b600085815260208120601f198616915b82811015620003635788860151825594840194600190910190840162000342565b5085821015620003825787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611c7380620003a26000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636c0360eb116100de578063a22cb46511610097578063cf456ae711610071578063cf456ae71461034b578063e8a3d4851461035e578063e985e9c514610366578063f851a440146103a257600080fd5b8063a22cb46514610312578063b88d4fde14610325578063c87b56dd1461033857600080fd5b80636c0360eb146102c057806370a08231146102c8578063729ad39e146102db57806375794a3c146102ee5780638f283970146102f757806395d89b411461030a57600080fd5b80632ab4d0521161014b57806342842e0e1161012557806342842e0e146102745780634f6ccce7146102875780636352211e1461029a5780636a627842146102ad57600080fd5b80632ab4d052146102355780632f745c591461023e5780633dd08c381461025157600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806318160ddd1461021057806323b872dd14610222575b600080fd5b6101a66101a136600461170c565b6103b5565b60405190151581526020015b60405180910390f35b6101c36103e0565b6040516101b29190611779565b6101e36101de36600461178c565b610472565b6040516001600160a01b0390911681526020016101b2565b61020e6102093660046117c1565b61050c565b005b600e545b6040519081526020016101b2565b61020e6102303660046117eb565b610621565b61021460075481565b61021461024c3660046117c1565b610652565b6101a661025f366004611827565b600b6020526000908152604090205460ff1681565b61020e6102823660046117eb565b6106e9565b61021461029536600461178c565b610704565b6101e36102a836600461178c565b610792565b6102146102bb366004611827565b610809565b6101c3610863565b6102146102d6366004611827565b6108f1565b61020e6102e9366004611842565b610978565b61021460065481565b61020e610305366004611827565b610a16565b6101c3610a83565b61020e6103203660046118b7565b610a92565b61020e610333366004611909565b610aa1565b6101c361034636600461178c565b610ad9565b61020e6103593660046118b7565b610bb4565b6101c3610c2a565b6101a66103743660046119e5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546101e3906001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b14806103da57506103da82610c37565b92915050565b6060600080546103ef90611a18565b80601f016020809104026020016040519081016040528092919081815260200182805461041b90611a18565b80156104685780601f1061043d57610100808354040283529160200191610468565b820191906000526020600020905b81548152906001019060200180831161044b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061051782610792565b9050806001600160a01b0316836001600160a01b0316036105845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104e7565b336001600160a01b03821614806105a057506105a08133610374565b6106125760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104e7565b61061c8383610c87565b505050565b61062b3382610cf5565b6106475760405162461bcd60e51b81526004016104e790611a52565b61061c838383610dec565b600061065d836108f1565b82106106c05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526b74206f6620626f756e64732160a01b60648201526084016104e7565b506001600160a01b03919091166000908152600c60209081526040808320938352929052205490565b61061c83838360405180602001604052806000815250610aa1565b6000600654821061076d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526c7574206f6620626f756e64732160981b60648201526084016104e7565b600e828154811061078057610780611aa3565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104e7565b336000908152600b602052604081205460ff1661085a5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206d696e7465722160881b60448201526064016104e7565b6103da82610f93565b6008805461087090611a18565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90611a18565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b505050505081565b60006001600160a01b03821661095c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104e7565b506001600160a01b031660009081526003602052604090205490565b336000908152600b602052604090205460ff166109c95760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206d696e7465722160881b60448201526064016104e7565b60005b8181101561061c57610a038383838181106109e9576109e9611aa3565b90506020020160208101906109fe9190611827565b610f93565b5080610a0e81611acf565b9150506109cc565b600a546001600160a01b03163314610a615760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642061646d696e2160901b60448201526064016104e7565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546103ef90611a18565b610a9d338383610ffe565b5050565b610aab3383610cf5565b610ac75760405162461bcd60e51b81526004016104e790611a52565b610ad3848484846110cc565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104e7565b6000610b626110ff565b90506000815111610b825760405180602001604052806000815250610bad565b80610b8c8461110e565b604051602001610b9d929190611ae8565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610bff5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642061646d696e2160901b60448201526064016104e7565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6009805461087090611a18565b60006001600160e01b031982166380ac58cd60e01b1480610c6857506001600160e01b03198216635b5e139f60e01b145b806103da57506301ffc9a760e01b6001600160e01b03198316146103da565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cbc82610792565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d6e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e7565b6000610d7983610792565b9050806001600160a01b0316846001600160a01b03161480610db45750836001600160a01b0316610da984610472565b6001600160a01b0316145b80610de457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610dff82610792565b6001600160a01b031614610e635760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104e7565b6001600160a01b038216610ec55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104e7565b610ed083838361120f565b610edb600082610c87565b6001600160a01b0383166000908152600360205260408120805460019290610f04908490611b17565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f32908490611b2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006007546006541115610fd55760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016104e7565b600654610fe283826112c7565b60068054906000610ff283611acf565b90915550909392505050565b816001600160a01b0316836001600160a01b03160361105f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104e7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6110d7848484610dec565b6110e3848484846112e1565b610ad35760405162461bcd60e51b81526004016104e790611b3d565b6060600880546103ef90611a18565b6060816000036111355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561115f578061114981611acf565b91506111589050600a83611ba5565b9150611139565b60008167ffffffffffffffff81111561117a5761117a6118f3565b6040519080825280601f01601f1916602001820160405280156111a4576020820181803683370190505b5090505b8415610de4576111b9600183611b17565b91506111c6600a86611bb9565b6111d1906030611b2a565b60f81b8183815181106111e6576111e6611aa3565b60200101906001600160f81b031916908160001a905350611208600a86611ba5565b94506111a8565b6001600160a01b03831661126a5761126581600e80546000838152600f60205260408120829055600182018355919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0155565b61128d565b816001600160a01b0316836001600160a01b03161461128d5761128d83826113e2565b6001600160a01b0382166112a45761061c8161147f565b826001600160a01b0316826001600160a01b03161461061c5761061c828261152e565b610a9d828260405180602001604052806000815250611572565b60006001600160a01b0384163b156113d757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611325903390899088908890600401611bcd565b6020604051808303816000875af1925050508015611360575060408051601f3d908101601f1916820190925261135d91810190611c0a565b60015b6113bd573d80801561138e576040519150601f19603f3d011682016040523d82523d6000602084013e611393565b606091505b5080516000036113b55760405162461bcd60e51b81526004016104e790611b3d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610de4565b506001949350505050565b600060016113ef846108f1565b6113f99190611b17565b6000838152600d602052604090205490915080821461144c576001600160a01b0384166000908152600c602090815260408083208584528252808320548484528184208190558352600d90915290208190555b506000918252600d602090815260408084208490556001600160a01b039094168352600c81528383209183525290812055565b600e5460009061149190600190611b17565b6000838152600f6020526040812054600e80549394509092849081106114b9576114b9611aa3565b9060005260206000200154905080600e83815481106114da576114da611aa3565b6000918252602080832090910192909255828152600f9091526040808220849055858252812055600e80548061151257611512611c27565b6001900381819060005260206000200160009055905550505050565b6000611539836108f1565b6001600160a01b039093166000908152600c602090815260408083208684528252808320859055938252600d9052919091209190915550565b61157c83836115a5565b61158960008484846112e1565b61061c5760405162461bcd60e51b81526004016104e790611b3d565b6001600160a01b0382166115fb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104e7565b6000818152600260205260409020546001600160a01b0316156116605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104e7565b61166c6000838361120f565b6001600160a01b0382166000908152600360205260408120805460019290611695908490611b2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461170957600080fd5b50565b60006020828403121561171e57600080fd5b8135610bad816116f3565b60005b8381101561174457818101518382015260200161172c565b50506000910152565b60008151808452611765816020860160208601611729565b601f01601f19169290920160200192915050565b602081526000610bad602083018461174d565b60006020828403121561179e57600080fd5b5035919050565b80356001600160a01b03811681146117bc57600080fd5b919050565b600080604083850312156117d457600080fd5b6117dd836117a5565b946020939093013593505050565b60008060006060848603121561180057600080fd5b611809846117a5565b9250611817602085016117a5565b9150604084013590509250925092565b60006020828403121561183957600080fd5b610bad826117a5565b6000806020838503121561185557600080fd5b823567ffffffffffffffff8082111561186d57600080fd5b818501915085601f83011261188157600080fd5b81358181111561189057600080fd5b8660208260051b85010111156118a557600080fd5b60209290920196919550909350505050565b600080604083850312156118ca57600080fd5b6118d3836117a5565b9150602083013580151581146118e857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561191f57600080fd5b611928856117a5565b9350611936602086016117a5565b925060408501359150606085013567ffffffffffffffff8082111561195a57600080fd5b818701915087601f83011261196e57600080fd5b813581811115611980576119806118f3565b604051601f8201601f19908116603f011681019083821181831017156119a8576119a86118f3565b816040528281528a60208487010111156119c157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119f857600080fd5b611a01836117a5565b9150611a0f602084016117a5565b90509250929050565b600181811c90821680611a2c57607f821691505b602082108103611a4c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611ae157611ae1611ab9565b5060010190565b60008351611afa818460208801611729565b835190830190611b0e818360208801611729565b01949350505050565b818103818111156103da576103da611ab9565b808201808211156103da576103da611ab9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611bb457611bb4611b8f565b500490565b600082611bc857611bc8611b8f565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c009083018461174d565b9695505050505050565b600060208284031215611c1c57600080fd5b8151610bad816116f3565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220af2e903fbb5d071027b104a9dd494a50118c6ff5838ba7df43aa27266dfcdd6964736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001b506f505020496e7465727374656c6c61722050617373204361726400000000000000000000000000000000000000000000000000000000000000000000000007506f505049504300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004568747470733a2f2f67772e706f70702e636c75622f696d2f646569642f706173732f746f6b656e2f7572692f506f5050496e7465727374656c6c617250617373436172642f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004768747470733a2f2f67772e706f70702e636c75622f696d2f646569642f706173732f636f6e74726163742f7572692f506f5050496e7465727374656c6c6172506173734361726400000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636c0360eb116100de578063a22cb46511610097578063cf456ae711610071578063cf456ae71461034b578063e8a3d4851461035e578063e985e9c514610366578063f851a440146103a257600080fd5b8063a22cb46514610312578063b88d4fde14610325578063c87b56dd1461033857600080fd5b80636c0360eb146102c057806370a08231146102c8578063729ad39e146102db57806375794a3c146102ee5780638f283970146102f757806395d89b411461030a57600080fd5b80632ab4d0521161014b57806342842e0e1161012557806342842e0e146102745780634f6ccce7146102875780636352211e1461029a5780636a627842146102ad57600080fd5b80632ab4d052146102355780632f745c591461023e5780633dd08c381461025157600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806318160ddd1461021057806323b872dd14610222575b600080fd5b6101a66101a136600461170c565b6103b5565b60405190151581526020015b60405180910390f35b6101c36103e0565b6040516101b29190611779565b6101e36101de36600461178c565b610472565b6040516001600160a01b0390911681526020016101b2565b61020e6102093660046117c1565b61050c565b005b600e545b6040519081526020016101b2565b61020e6102303660046117eb565b610621565b61021460075481565b61021461024c3660046117c1565b610652565b6101a661025f366004611827565b600b6020526000908152604090205460ff1681565b61020e6102823660046117eb565b6106e9565b61021461029536600461178c565b610704565b6101e36102a836600461178c565b610792565b6102146102bb366004611827565b610809565b6101c3610863565b6102146102d6366004611827565b6108f1565b61020e6102e9366004611842565b610978565b61021460065481565b61020e610305366004611827565b610a16565b6101c3610a83565b61020e6103203660046118b7565b610a92565b61020e610333366004611909565b610aa1565b6101c361034636600461178c565b610ad9565b61020e6103593660046118b7565b610bb4565b6101c3610c2a565b6101a66103743660046119e5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600a546101e3906001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b14806103da57506103da82610c37565b92915050565b6060600080546103ef90611a18565b80601f016020809104026020016040519081016040528092919081815260200182805461041b90611a18565b80156104685780601f1061043d57610100808354040283529160200191610468565b820191906000526020600020905b81548152906001019060200180831161044b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061051782610792565b9050806001600160a01b0316836001600160a01b0316036105845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104e7565b336001600160a01b03821614806105a057506105a08133610374565b6106125760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104e7565b61061c8383610c87565b505050565b61062b3382610cf5565b6106475760405162461bcd60e51b81526004016104e790611a52565b61061c838383610dec565b600061065d836108f1565b82106106c05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526b74206f6620626f756e64732160a01b60648201526084016104e7565b506001600160a01b03919091166000908152600c60209081526040808320938352929052205490565b61061c83838360405180602001604052806000815250610aa1565b6000600654821061076d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526c7574206f6620626f756e64732160981b60648201526084016104e7565b600e828154811061078057610780611aa3565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104e7565b336000908152600b602052604081205460ff1661085a5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206d696e7465722160881b60448201526064016104e7565b6103da82610f93565b6008805461087090611a18565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90611a18565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b505050505081565b60006001600160a01b03821661095c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104e7565b506001600160a01b031660009081526003602052604090205490565b336000908152600b602052604090205460ff166109c95760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206d696e7465722160881b60448201526064016104e7565b60005b8181101561061c57610a038383838181106109e9576109e9611aa3565b90506020020160208101906109fe9190611827565b610f93565b5080610a0e81611acf565b9150506109cc565b600a546001600160a01b03163314610a615760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642061646d696e2160901b60448201526064016104e7565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546103ef90611a18565b610a9d338383610ffe565b5050565b610aab3383610cf5565b610ac75760405162461bcd60e51b81526004016104e790611a52565b610ad3848484846110cc565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104e7565b6000610b626110ff565b90506000815111610b825760405180602001604052806000815250610bad565b80610b8c8461110e565b604051602001610b9d929190611ae8565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610bff5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642061646d696e2160901b60448201526064016104e7565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6009805461087090611a18565b60006001600160e01b031982166380ac58cd60e01b1480610c6857506001600160e01b03198216635b5e139f60e01b145b806103da57506301ffc9a760e01b6001600160e01b03198316146103da565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cbc82610792565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d6e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104e7565b6000610d7983610792565b9050806001600160a01b0316846001600160a01b03161480610db45750836001600160a01b0316610da984610472565b6001600160a01b0316145b80610de457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610dff82610792565b6001600160a01b031614610e635760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104e7565b6001600160a01b038216610ec55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104e7565b610ed083838361120f565b610edb600082610c87565b6001600160a01b0383166000908152600360205260408120805460019290610f04908490611b17565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f32908490611b2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006007546006541115610fd55760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b60448201526064016104e7565b600654610fe283826112c7565b60068054906000610ff283611acf565b90915550909392505050565b816001600160a01b0316836001600160a01b03160361105f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104e7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6110d7848484610dec565b6110e3848484846112e1565b610ad35760405162461bcd60e51b81526004016104e790611b3d565b6060600880546103ef90611a18565b6060816000036111355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561115f578061114981611acf565b91506111589050600a83611ba5565b9150611139565b60008167ffffffffffffffff81111561117a5761117a6118f3565b6040519080825280601f01601f1916602001820160405280156111a4576020820181803683370190505b5090505b8415610de4576111b9600183611b17565b91506111c6600a86611bb9565b6111d1906030611b2a565b60f81b8183815181106111e6576111e6611aa3565b60200101906001600160f81b031916908160001a905350611208600a86611ba5565b94506111a8565b6001600160a01b03831661126a5761126581600e80546000838152600f60205260408120829055600182018355919091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0155565b61128d565b816001600160a01b0316836001600160a01b03161461128d5761128d83826113e2565b6001600160a01b0382166112a45761061c8161147f565b826001600160a01b0316826001600160a01b03161461061c5761061c828261152e565b610a9d828260405180602001604052806000815250611572565b60006001600160a01b0384163b156113d757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611325903390899088908890600401611bcd565b6020604051808303816000875af1925050508015611360575060408051601f3d908101601f1916820190925261135d91810190611c0a565b60015b6113bd573d80801561138e576040519150601f19603f3d011682016040523d82523d6000602084013e611393565b606091505b5080516000036113b55760405162461bcd60e51b81526004016104e790611b3d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610de4565b506001949350505050565b600060016113ef846108f1565b6113f99190611b17565b6000838152600d602052604090205490915080821461144c576001600160a01b0384166000908152600c602090815260408083208584528252808320548484528184208190558352600d90915290208190555b506000918252600d602090815260408084208490556001600160a01b039094168352600c81528383209183525290812055565b600e5460009061149190600190611b17565b6000838152600f6020526040812054600e80549394509092849081106114b9576114b9611aa3565b9060005260206000200154905080600e83815481106114da576114da611aa3565b6000918252602080832090910192909255828152600f9091526040808220849055858252812055600e80548061151257611512611c27565b6001900381819060005260206000200160009055905550505050565b6000611539836108f1565b6001600160a01b039093166000908152600c602090815260408083208684528252808320859055938252600d9052919091209190915550565b61157c83836115a5565b61158960008484846112e1565b61061c5760405162461bcd60e51b81526004016104e790611b3d565b6001600160a01b0382166115fb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104e7565b6000818152600260205260409020546001600160a01b0316156116605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104e7565b61166c6000838361120f565b6001600160a01b0382166000908152600360205260408120805460019290611695908490611b2a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461170957600080fd5b50565b60006020828403121561171e57600080fd5b8135610bad816116f3565b60005b8381101561174457818101518382015260200161172c565b50506000910152565b60008151808452611765816020860160208601611729565b601f01601f19169290920160200192915050565b602081526000610bad602083018461174d565b60006020828403121561179e57600080fd5b5035919050565b80356001600160a01b03811681146117bc57600080fd5b919050565b600080604083850312156117d457600080fd5b6117dd836117a5565b946020939093013593505050565b60008060006060848603121561180057600080fd5b611809846117a5565b9250611817602085016117a5565b9150604084013590509250925092565b60006020828403121561183957600080fd5b610bad826117a5565b6000806020838503121561185557600080fd5b823567ffffffffffffffff8082111561186d57600080fd5b818501915085601f83011261188157600080fd5b81358181111561189057600080fd5b8660208260051b85010111156118a557600080fd5b60209290920196919550909350505050565b600080604083850312156118ca57600080fd5b6118d3836117a5565b9150602083013580151581146118e857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561191f57600080fd5b611928856117a5565b9350611936602086016117a5565b925060408501359150606085013567ffffffffffffffff8082111561195a57600080fd5b818701915087601f83011261196e57600080fd5b813581811115611980576119806118f3565b604051601f8201601f19908116603f011681019083821181831017156119a8576119a86118f3565b816040528281528a60208487010111156119c157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119f857600080fd5b611a01836117a5565b9150611a0f602084016117a5565b90509250929050565b600181811c90821680611a2c57607f821691505b602082108103611a4c57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611ae157611ae1611ab9565b5060010190565b60008351611afa818460208801611729565b835190830190611b0e818360208801611729565b01949350505050565b818103818111156103da576103da611ab9565b808201808211156103da576103da611ab9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611bb457611bb4611b8f565b500490565b600082611bc857611bc8611b8f565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c009083018461174d565b9695505050505050565b600060208284031215611c1c57600080fd5b8151610bad816116f3565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220af2e903fbb5d071027b104a9dd494a50118c6ff5838ba7df43aa27266dfcdd6964736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001b506f505020496e7465727374656c6c61722050617373204361726400000000000000000000000000000000000000000000000000000000000000000000000007506f505049504300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004568747470733a2f2f67772e706f70702e636c75622f696d2f646569642f706173732f746f6b656e2f7572692f506f5050496e7465727374656c6c617250617373436172642f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004768747470733a2f2f67772e706f70702e636c75622f696d2f646569642f706173732f636f6e74726163742f7572692f506f5050496e7465727374656c6c6172506173734361726400000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PoPP Interstellar Pass Card
Arg [1] : symbol_ (string): PoPPIPC
Arg [2] : baseURI_ (string): https://gw.popp.club/im/deid/pass/token/uri/PoPPInterstellarPassCard/
Arg [3] : contractURI_ (string): https://gw.popp.club/im/deid/pass/contract/uri/PoPPInterstellarPassCard

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [5] : 506f505020496e7465727374656c6c6172205061737320436172640000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 506f505049504300000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [9] : 68747470733a2f2f67772e706f70702e636c75622f696d2f646569642f706173
Arg [10] : 732f746f6b656e2f7572692f506f5050496e7465727374656c6c617250617373
Arg [11] : 436172642f000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000047
Arg [13] : 68747470733a2f2f67772e706f70702e636c75622f696d2f646569642f706173
Arg [14] : 732f636f6e74726163742f7572692f506f5050496e7465727374656c6c617250
Arg [15] : 6173734361726400000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

165:5731:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2641:221;;;;;;:::i;:::-;;:::i;:::-;;;565:14:11;;558:22;540:41;;528:2;513:18;2641:221:10;;;;;;;;2488:98:0;;;:::i;:::-;;;;;;;:::i;3999:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:11;;;1679:51;;1667:2;1652:18;3999:217:0;1533:203:11;3537:401:0;;;;;;:::i;:::-;;:::i;:::-;;2539:96:10;2611:10;:17;2539:96;;;2324:25:11;;;2312:2;2297:18;2539:96:10;2178:177:11;4726:330:0;;;;;;:::i;:::-;;:::i;271:36:10:-;;;;;;2086:238;;;;;;:::i;:::-;;:::i;397:38::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5122:179:0;;;;;;:::i;:::-;;:::i;2330:203:10:-;;;;;;:::i;:::-;;:::i;2191:235:0:-;;;;;;:::i;:::-;;:::i;1475:146:10:-;;;;;;:::i;:::-;;:::i;313:21::-;;;:::i;1929:205:0:-;;;;;;:::i;:::-;;:::i;1627:203:10:-;;;;;;:::i;:::-;;:::i;235:30::-;;;;;;1175:137;;;;;;:::i;:::-;;:::i;2650:102:0:-;;;:::i;4283:153::-;;;;;;:::i;:::-;;:::i;5367:320::-;;;;;;:::i;:::-;;:::i;2818:329::-;;;;;;:::i;:::-;;:::i;1318:151:10:-;;;;;;:::i;:::-;;:::i;340:25::-;;;:::i;4502:162:0:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4622:25:0;;;4599:4;4622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4502:162;371:20:10;;;;;-1:-1:-1;;;;;371:20:10;;;2641:221;2742:4;-1:-1:-1;;;;;;2765:50:10;;-1:-1:-1;;;2765:50:10;;:90;;;2819:36;2843:11;2819:23;:36::i;:::-;2758:97;2641:221;-1:-1:-1;;2641:221:10:o;2488:98:0:-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;3999:217::-;4075:7;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:0;4094:73;;;;-1:-1:-1;;;4094:73:0;;5983:2:11;4094:73:0;;;5965:21:11;6022:2;6002:18;;;5995:30;6061:34;6041:18;;;6034:62;-1:-1:-1;;;6112:18:11;;;6105:42;6164:19;;4094:73:0;;;;;;;;;-1:-1:-1;4185:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;4185:24:0;;3999:217::o;3537:401::-;3617:13;3633:23;3648:7;3633:14;:23::i;:::-;3617:39;;3680:5;-1:-1:-1;;;;;3674:11:0;:2;-1:-1:-1;;;;;3674:11:0;;3666:57;;;;-1:-1:-1;;;3666:57:0;;6396:2:11;3666:57:0;;;6378:21:11;6435:2;6415:18;;;6408:30;6474:34;6454:18;;;6447:62;-1:-1:-1;;;6525:18:11;;;6518:31;6566:19;;3666:57:0;6194:397:11;3666:57:0;719:10:6;-1:-1:-1;;;;;3755:21:0;;;;:62;;-1:-1:-1;3780:37:0;3797:5;719:10:6;4502:162:0;:::i;3780:37::-;3734:165;;;;-1:-1:-1;;;3734:165:0;;6798:2:11;3734:165:0;;;6780:21:11;6837:2;6817:18;;;6810:30;6876:34;6856:18;;;6849:62;6947:26;6927:18;;;6920:54;6991:19;;3734:165:0;6596:420:11;3734:165:0;3910:21;3919:2;3923:7;3910:8;:21::i;:::-;3607:331;3537:401;;:::o;4726:330::-;4915:41;719:10:6;4948:7:0;4915:18;:41::i;:::-;4907:103;;;;-1:-1:-1;;;4907:103:0;;;;;;;:::i;:::-;5021:28;5031:4;5037:2;5041:7;5021:9;:28::i;2086:238:10:-;2174:7;2209:16;2219:5;2209:9;:16::i;:::-;2201:5;:24;2193:81;;;;-1:-1:-1;;;2193:81:10;;7641:2:11;2193:81:10;;;7623:21:11;7680:2;7660:18;;;7653:30;7719:34;7699:18;;;7692:62;-1:-1:-1;;;7770:18:11;;;7763:42;7822:19;;2193:81:10;7439:408:11;2193:81:10;-1:-1:-1;;;;;;2291:19:10;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;2086:238::o;5122:179:0:-;5255:39;5272:4;5278:2;5282:7;5255:39;;;;;;;;;;;;:16;:39::i;2330:203:10:-;2396:7;2431:11;;2423:5;:19;2415:77;;;;-1:-1:-1;;;2415:77:10;;8054:2:11;2415:77:10;;;8036:21:11;8093:2;8073:18;;;8066:30;8132:34;8112:18;;;8105:62;-1:-1:-1;;;8183:18:11;;;8176:43;8236:19;;2415:77:10;7852:409:11;2415:77:10;2509:10;2520:5;2509:17;;;;;;;;:::i;:::-;;;;;;;;;2502:24;;2330:203;;;:::o;2191:235:0:-;2263:7;2298:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2298:16:0;;2324:73;;;;-1:-1:-1;;;2324:73:0;;8600:2:11;2324:73:0;;;8582:21:11;8639:2;8619:18;;;8612:30;8678:34;8658:18;;;8651:62;-1:-1:-1;;;8729:18:11;;;8722:39;8778:19;;2324:73:0;8398:405:11;1475:146:10;1553:10;1520:7;1546:18;;;:6;:18;;;;;;;;1538:46;;;;-1:-1:-1;;;1538:46:10;;9010:2:11;1538:46:10;;;8992:21:11;9049:2;9029:18;;;9022:30;-1:-1:-1;;;9068:18:11;;;9061:45;9123:18;;1538:46:10;8808:339:11;1538:46:10;1601:13;1607:6;1601:5;:13::i;313:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1929:205:0:-;2001:7;-1:-1:-1;;;;;2028:19:0;;2020:74;;;;-1:-1:-1;;;2020:74:0;;9354:2:11;2020:74:0;;;9336:21:11;9393:2;9373:18;;;9366:30;9432:34;9412:18;;;9405:62;-1:-1:-1;;;9483:18:11;;;9476:40;9533:19;;2020:74:0;9152:406:11;2020:74:0;-1:-1:-1;;;;;;2111:16:0;;;;;:9;:16;;;;;;;1929:205::o;1627:203:10:-;1704:10;1697:18;;;;:6;:18;;;;;;;;1689:46;;;;-1:-1:-1;;;1689:46:10;;9010:2:11;1689:46:10;;;8992:21:11;9049:2;9029:18;;;9022:30;-1:-1:-1;;;9068:18:11;;;9061:45;9123:18;;1689:46:10;8808:339:11;1689:46:10;1749:9;1745:79;1761:16;;;1745:79;;;1796:17;1802:7;;1810:1;1802:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1796:5;:17::i;:::-;-1:-1:-1;1778:3:10;;;;:::i;:::-;;;;1745:79;;1175:137;1240:5;;-1:-1:-1;;;;;1240:5:10;1249:10;1240:19;1232:46;;;;-1:-1:-1;;;1232:46:10;;10037:2:11;1232:46:10;;;10019:21:11;10076:2;10056:18;;;10049:30;-1:-1:-1;;;10095:18:11;;;10088:44;10149:18;;1232:46:10;9835:338:11;1232:46:10;1288:5;:17;;-1:-1:-1;;;;;;1288:17:10;-1:-1:-1;;;;;1288:17:10;;;;;;;;;;1175:137::o;2650:102:0:-;2706:13;2738:7;2731:14;;;;;:::i;4283:153::-;4377:52;719:10:6;4410:8:0;4420;4377:18;:52::i;:::-;4283:153;;:::o;5367:320::-;5536:41;719:10:6;5569:7:0;5536:18;:41::i;:::-;5528:103;;;;-1:-1:-1;;;5528:103:0;;;;;;;:::i;:::-;5641:39;5655:4;5661:2;5665:7;5674:5;5641:13;:39::i;:::-;5367:320;;;;:::o;2818:329::-;7224:4;7247:16;;;:7;:16;;;;;;2891:13;;-1:-1:-1;;;;;7247:16:0;2916:76;;;;-1:-1:-1;;;2916:76:0;;10380:2:11;2916:76:0;;;10362:21:11;10419:2;10399:18;;;10392:30;10458:34;10438:18;;;10431:62;-1:-1:-1;;;10509:18:11;;;10502:45;10564:19;;2916:76:0;10178:411:11;2916:76:0;3003:21;3027:10;:8;:10::i;:::-;3003:34;;3078:1;3060:7;3054:21;:25;:86;;;;;;;;;;;;;;;;;3106:7;3115:18;:7;:16;:18::i;:::-;3089:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3054:86;3047:93;2818:329;-1:-1:-1;;;2818:329:0:o;1318:151:10:-;1391:5;;-1:-1:-1;;;;;1391:5:10;1400:10;1391:19;1383:46;;;;-1:-1:-1;;;1383:46:10;;10037:2:11;1383:46:10;;;10019:21:11;10076:2;10056:18;;;10049:30;-1:-1:-1;;;10095:18:11;;;10088:44;10149:18;;1383:46:10;9835:338:11;1383:46:10;-1:-1:-1;;;;;1439:15:10;;;;;;;;:6;:15;;;;;:23;;-1:-1:-1;;1439:23:10;;;;;;;;;;1318:151::o;340:25::-;;;;;;;:::i;1570:300:0:-;1672:4;-1:-1:-1;;;;;;1707:40:0;;-1:-1:-1;;;1707:40:0;;:104;;-1:-1:-1;;;;;;;1763:48:0;;-1:-1:-1;;;1763:48:0;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:8;;;1827:36:0;829:155:8;11168:171:0;11242:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11242:29:0;-1:-1:-1;;;;;11242:29:0;;;;;;;;:24;;11295:23;11242:24;11295:14;:23::i;:::-;-1:-1:-1;;;;;11286:46:0;;;;;;;;;;;11168:171;;:::o;7442:344::-;7535:4;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:0;7551:73;;;;-1:-1:-1;;;7551:73:0;;11297:2:11;7551:73:0;;;11279:21:11;11336:2;11316:18;;;11309:30;11375:34;11355:18;;;11348:62;-1:-1:-1;;;11426:18:11;;;11419:42;11478:19;;7551:73:0;11095:408:11;7551:73:0;7634:13;7650:23;7665:7;7650:14;:23::i;:::-;7634:39;;7702:5;-1:-1:-1;;;;;7691:16:0;:7;-1:-1:-1;;;;;7691:16:0;;:51;;;;7735:7;-1:-1:-1;;;;;7711:31:0;:20;7723:7;7711:11;:20::i;:::-;-1:-1:-1;;;;;7711:31:0;;7691:51;:87;;;-1:-1:-1;;;;;;4622:25:0;;;4599:4;4622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7746:32;7683:96;7442:344;-1:-1:-1;;;;7442:344:0:o;10452:605::-;10606:4;-1:-1:-1;;;;;10579:31:0;:23;10594:7;10579:14;:23::i;:::-;-1:-1:-1;;;;;10579:31:0;;10571:81;;;;-1:-1:-1;;;10571:81:0;;11710:2:11;10571:81:0;;;11692:21:11;11749:2;11729:18;;;11722:30;11788:34;11768:18;;;11761:62;-1:-1:-1;;;11839:18:11;;;11832:35;11884:19;;10571:81:0;11508:401:11;10571:81:0;-1:-1:-1;;;;;10670:16:0;;10662:65;;;;-1:-1:-1;;;10662:65:0;;12116:2:11;10662:65:0;;;12098:21:11;12155:2;12135:18;;;12128:30;12194:34;12174:18;;;12167:62;-1:-1:-1;;;12245:18:11;;;12238:34;12289:19;;10662:65:0;11914:400:11;10662:65:0;10738:39;10759:4;10765:2;10769:7;10738:20;:39::i;:::-;10839:29;10856:1;10860:7;10839:8;:29::i;:::-;-1:-1:-1;;;;;10879:15:0;;;;;;:9;:15;;;;;:20;;10898:1;;10879:15;:20;;10898:1;;10879:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10909:13:0;;;;;;:9;:13;;;;;:18;;10926:1;;10909:13;:18;;10926:1;;10909:18;:::i;:::-;;;;-1:-1:-1;;10937:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10937:21:0;-1:-1:-1;;;;;10937:21:0;;;;;;;;;10974:27;;10937:16;;10974:27;;;;;;;3607:331;3537:401;;:::o;1836:244:10:-;1884:7;1923:14;;1910:11;;:27;;1902:49;;;;-1:-1:-1;;;1902:49:10;;12784:2:11;1902:49:10;;;12766:21:11;12823:1;12803:18;;;12796:29;-1:-1:-1;;;12841:18:11;;;12834:39;12890:18;;1902:49:10;12582:332:11;1902:49:10;1979:11;;2000:26;2010:6;1979:11;2000:9;:26::i;:::-;2036:11;:13;;;:11;:13;;;:::i;:::-;;;;-1:-1:-1;2066:7:10;;1836:244;-1:-1:-1;;;1836:244:10:o;11474:307:0:-;11624:8;-1:-1:-1;;;;;11615:17:0;:5;-1:-1:-1;;;;;11615:17:0;;11607:55;;;;-1:-1:-1;;;11607:55:0;;13121:2:11;11607:55:0;;;13103:21:11;13160:2;13140:18;;;13133:30;13199:27;13179:18;;;13172:55;13244:18;;11607:55:0;12919:349:11;11607:55:0;-1:-1:-1;;;;;11672:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11672:46:0;;;;;;;;;;11733:41;;540::11;;;11733::0;;513:18:11;11733:41:0;;;;;;;11474:307;;;:::o;6549:::-;6700:28;6710:4;6716:2;6720:7;6700:9;:28::i;:::-;6746:48;6769:4;6775:2;6779:7;6788:5;6746:22;:48::i;:::-;6738:111;;;;-1:-1:-1;;;6738:111:0;;;;;;;:::i;2868:105:10:-;2928:13;2959:7;2952:14;;;;;:::i;328:703:7:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;2979:572:10;-1:-1:-1;;;;;3178:18:10;;3174:183;;3212:40;3244:7;3876:10;:17;;3849:24;;;;:15;:24;;;;;:44;;;3903:24;;;;;;;;;;;;3773:161;3212:40;3174:183;;;3281:2;-1:-1:-1;;;;;3273:10:10;:4;-1:-1:-1;;;;;3273:10:10;;3269:88;;3299:47;3332:4;3338:7;3299:32;:47::i;:::-;-1:-1:-1;;;;;3370:16:10;;3366:179;;3402:45;3439:7;3402:36;:45::i;3366:179::-;3474:4;-1:-1:-1;;;;;3468:10:10;:2;-1:-1:-1;;;;;3468:10:10;;3464:81;;3494:40;3522:2;3526:7;3494:27;:40::i;8116:108:0:-;8191:26;8201:2;8205:7;8191:26;;;;;;;;;;;;:9;:26::i;12334:778::-;12484:4;-1:-1:-1;;;;;12504:13:0;;1465:19:5;:23;12500:606:0;;12539:72;;-1:-1:-1;;;12539:72:0;;-1:-1:-1;;;;;12539:36:0;;;;;:72;;719:10:6;;12590:4:0;;12596:7;;12605:5;;12539:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12539:72:0;;;;;;;;-1:-1:-1;;12539:72:0;;;;;;;;;;;;:::i;:::-;;;12535:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12778:6;:13;12795:1;12778:18;12774:266;;12820:60;;-1:-1:-1;;;12820:60:0;;;;;;;:::i;12774:266::-;12992:6;12986:13;12977:6;12973:2;12969:15;12962:38;12535:519;-1:-1:-1;;;;;;12661:51:0;-1:-1:-1;;;12661:51:0;;-1:-1:-1;12654:58:0;;12500:606;-1:-1:-1;13091:4:0;12334:778;;;;;;:::o;3940:963:10:-;4202:22;4245:1;4227:15;4237:4;4227:9;:15::i;:::-;:19;;;;:::i;:::-;4256:18;4277:26;;;:17;:26;;;;;;4202:44;;-1:-1:-1;4407:28:10;;;4403:323;;-1:-1:-1;;;;;4473:18:10;;4451:19;4473:18;;;:12;:18;;;;;;;;:34;;;;;;;;;4522:30;;;;;;:44;;;4638:30;;:17;:30;;;;;:43;;;4403:323;-1:-1:-1;4819:26:10;;;;:17;:26;;;;;;;;4812:33;;;-1:-1:-1;;;;;4862:18:10;;;;;:12;:18;;;;;:34;;;;;;;4855:41;3940:963::o;4909:985::-;5183:10;:17;5158:22;;5183:21;;5203:1;;5183:21;:::i;:::-;5214:18;5235:24;;;:15;:24;;;;;;5603:10;:26;;5158:46;;-1:-1:-1;5235:24:10;;5158:46;;5603:26;;;;;;:::i;:::-;;;;;;;;;5581:48;;5665:11;5640:10;5651;5640:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;5744:28;;;:15;:28;;;;;;;:41;;;5837:24;;;;;5830:31;5871:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;4980:914;;;4909:985;:::o;3557:210::-;3641:14;3658:13;3668:2;3658:9;:13::i;:::-;-1:-1:-1;;;;;3681:16:10;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3725:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3557:210:10:o;8445:311:0:-;8570:18;8576:2;8580:7;8570:5;:18::i;:::-;8619:54;8650:1;8654:2;8658:7;8667:5;8619:22;:54::i;:::-;8598:151;;;;-1:-1:-1;;;8598:151:0;;;;;;;:::i;9078:427::-;-1:-1:-1;;;;;9157:16:0;;9149:61;;;;-1:-1:-1;;;9149:61:0;;15148:2:11;9149:61:0;;;15130:21:11;;;15167:18;;;15160:30;15226:34;15206:18;;;15199:62;15278:18;;9149:61:0;14946:356:11;9149:61:0;7224:4;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:0;:30;9220:58;;;;-1:-1:-1;;;9220:58:0;;15509:2:11;9220:58:0;;;15491:21:11;15548:2;15528:18;;;15521:30;15587;15567:18;;;15560:58;15635:18;;9220:58:0;15307:352:11;9220:58:0;9289:45;9318:1;9322:2;9326:7;9289:20;:45::i;:::-;-1:-1:-1;;;;;9345:13:0;;;;;;:9;:13;;;;;:18;;9362:1;;9345:13;:18;;9362:1;;9345:18;:::i;:::-;;;;-1:-1:-1;;9373:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9373:21:0;-1:-1:-1;;;;;9373:21:0;;;;;;;;9410:33;;9373:16;;;9410:33;;9373:16;;9410:33;4283:153;;:::o;14:131:11:-;-1:-1:-1;;;;;;88:32:11;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:11;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:11;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:11:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:11;;1348:180;-1:-1:-1;1348:180:11:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:11;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:11:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:615::-;2970:6;2978;3031:2;3019:9;3010:7;3006:23;3002:32;2999:52;;;3047:1;3044;3037:12;2999:52;3087:9;3074:23;3116:18;3157:2;3149:6;3146:14;3143:34;;;3173:1;3170;3163:12;3143:34;3211:6;3200:9;3196:22;3186:32;;3256:7;3249:4;3245:2;3241:13;3237:27;3227:55;;3278:1;3275;3268:12;3227:55;3318:2;3305:16;3344:2;3336:6;3333:14;3330:34;;;3360:1;3357;3350:12;3330:34;3413:7;3408:2;3398:6;3395:1;3391:14;3387:2;3383:23;3379:32;3376:45;3373:65;;;3434:1;3431;3424:12;3373:65;3465:2;3457:11;;;;;3487:6;;-1:-1:-1;2884:615:11;;-1:-1:-1;;;;2884:615:11:o;3504:347::-;3569:6;3577;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3669:29;3688:9;3669:29;:::i;:::-;3659:39;;3748:2;3737:9;3733:18;3720:32;3795:5;3788:13;3781:21;3774:5;3771:32;3761:60;;3817:1;3814;3807:12;3761:60;3840:5;3830:15;;;3504:347;;;;;:::o;3856:127::-;3917:10;3912:3;3908:20;3905:1;3898:31;3948:4;3945:1;3938:15;3972:4;3969:1;3962:15;3988:1138;4083:6;4091;4099;4107;4160:3;4148:9;4139:7;4135:23;4131:33;4128:53;;;4177:1;4174;4167:12;4128:53;4200:29;4219:9;4200:29;:::i;:::-;4190:39;;4248:38;4282:2;4271:9;4267:18;4248:38;:::i;:::-;4238:48;;4333:2;4322:9;4318:18;4305:32;4295:42;;4388:2;4377:9;4373:18;4360:32;4411:18;4452:2;4444:6;4441:14;4438:34;;;4468:1;4465;4458:12;4438:34;4506:6;4495:9;4491:22;4481:32;;4551:7;4544:4;4540:2;4536:13;4532:27;4522:55;;4573:1;4570;4563:12;4522:55;4609:2;4596:16;4631:2;4627;4624:10;4621:36;;;4637:18;;:::i;:::-;4712:2;4706:9;4680:2;4766:13;;-1:-1:-1;;4762:22:11;;;4786:2;4758:31;4754:40;4742:53;;;4810:18;;;4830:22;;;4807:46;4804:72;;;4856:18;;:::i;:::-;4896:10;4892:2;4885:22;4931:2;4923:6;4916:18;4971:7;4966:2;4961;4957;4953:11;4949:20;4946:33;4943:53;;;4992:1;4989;4982:12;4943:53;5048:2;5043;5039;5035:11;5030:2;5022:6;5018:15;5005:46;5093:1;5088:2;5083;5075:6;5071:15;5067:24;5060:35;5114:6;5104:16;;;;;;;3988:1138;;;;;;;:::o;5131:260::-;5199:6;5207;5260:2;5248:9;5239:7;5235:23;5231:32;5228:52;;;5276:1;5273;5266:12;5228:52;5299:29;5318:9;5299:29;:::i;:::-;5289:39;;5347:38;5381:2;5370:9;5366:18;5347:38;:::i;:::-;5337:48;;5131:260;;;;;:::o;5396:380::-;5475:1;5471:12;;;;5518;;;5539:61;;5593:4;5585:6;5581:17;5571:27;;5539:61;5646:2;5638:6;5635:14;5615:18;5612:38;5609:161;;5692:10;5687:3;5683:20;5680:1;5673:31;5727:4;5724:1;5717:15;5755:4;5752:1;5745:15;5609:161;;5396:380;;;:::o;7021:413::-;7223:2;7205:21;;;7262:2;7242:18;;;7235:30;7301:34;7296:2;7281:18;;7274:62;-1:-1:-1;;;7367:2:11;7352:18;;7345:47;7424:3;7409:19;;7021:413::o;8266:127::-;8327:10;8322:3;8318:20;8315:1;8308:31;8358:4;8355:1;8348:15;8382:4;8379:1;8372:15;9563:127;9624:10;9619:3;9615:20;9612:1;9605:31;9655:4;9652:1;9645:15;9679:4;9676:1;9669:15;9695:135;9734:3;9755:17;;;9752:43;;9775:18;;:::i;:::-;-1:-1:-1;9822:1:11;9811:13;;9695:135::o;10594:496::-;10773:3;10811:6;10805:13;10827:66;10886:6;10881:3;10874:4;10866:6;10862:17;10827:66;:::i;:::-;10956:13;;10915:16;;;;10978:70;10956:13;10915:16;11025:4;11013:17;;10978:70;:::i;:::-;11064:20;;10594:496;-1:-1:-1;;;;10594:496:11:o;12319:128::-;12386:9;;;12407:11;;;12404:37;;;12421:18;;:::i;12452:125::-;12517:9;;;12538:10;;;12535:36;;;12551:18;;:::i;13273:414::-;13475:2;13457:21;;;13514:2;13494:18;;;13487:30;13553:34;13548:2;13533:18;;13526:62;-1:-1:-1;;;13619:2:11;13604:18;;13597:48;13677:3;13662:19;;13273:414::o;13692:127::-;13753:10;13748:3;13744:20;13741:1;13734:31;13784:4;13781:1;13774:15;13808:4;13805:1;13798:15;13824:120;13864:1;13890;13880:35;;13895:18;;:::i;:::-;-1:-1:-1;13929:9:11;;13824:120::o;13949:112::-;13981:1;14007;13997:35;;14012:18;;:::i;:::-;-1:-1:-1;14046:9:11;;13949:112::o;14066:489::-;-1:-1:-1;;;;;14335:15:11;;;14317:34;;14387:15;;14382:2;14367:18;;14360:43;14434:2;14419:18;;14412:34;;;14482:3;14477:2;14462:18;;14455:31;;;14260:4;;14503:46;;14529:19;;14521:6;14503:46;:::i;:::-;14495:54;14066:489;-1:-1:-1;;;;;;14066:489:11:o;14560:249::-;14629:6;14682:2;14670:9;14661:7;14657:23;14653:32;14650:52;;;14698:1;14695;14688:12;14650:52;14730:9;14724:16;14749:30;14773:5;14749:30;:::i;14814:127::-;14875:10;14870:3;14866:20;14863:1;14856:31;14906:4;14903:1;14896:15;14930:4;14927:1;14920:15

Swarm Source

ipfs://af2e903fbb5d071027b104a9dd494a50118c6ff5838ba7df43aa27266dfcdd69
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.