ETH Price: $3,414.88 (+3.60%)

Token

The Boring Bucket Hat (BORING)
 

Overview

Max Total Supply

0 BORING

Holders

103

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sonnyf.eth
Balance
1 BORING
0x35F0686c63F50707Ea3b5baCe186938E4E19f03a
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:
ERC721

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-15
*/

// File: contracts/interface/IERC165.sol

/**
 * @title IERC165
 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
 */
interface IERC165 {

  /**
   *
   *                                                                               
   *                                               ,,,,,,,,                         
   *                                              ,,,,,,,,,,,                       
   *                                              ,,,,,,,,,,,,                     
   *                                              ,,,,,,,,,,,,,                    
   *                                              ,,,,,,,,,,,,,,                   
   *                                              ,,,,,,,,,,,,,,,                   
   *                                              ,,,,,,,,,,,,,,,,                  
   *                                              ,,,,,,,,,,,,,,,,                  
   *                                             ,,,,,,,,,,,,,,,,,,                 
   *                                             ,,,,,,,,,,,,,,,,,,                 
   *                                             ,,,,,,,,,,,,,,,,,,                 
   *                                            ,,,,,,,,,,,,,,,,,,,                 
   *                                 &/////////,,,,,,,,,,,,,,,,,,,,                 
   *                             &////////////,,,,,,,,,,,,,,,,,,,,,                 
   *                           %//&%**************,,,,,,,,,,,,,,,,                  
   *                        &************************,,,,,,,,,,,,*                  
   *                     (*****************************%,,,,,,,,,***&               
   *                  &**********************************(,,,,,,********            
   *               &************************((&//////////(//&&,&**********          
   *             &*******************((#////////////////(/////&(&**********         
   *           &***************&((,#//////////////////(//////#((((**********        
   *          ***********%((#    (//////////////////(///////&  %((&*********&       
   *           #%&(##         &///////////////////(////////     (((**********       
   *                       &///////////////////(/////////&       ((**********%      
   *                    /////////////////////(//////////         &(&**********      
   *                &/twitter: [at]alexandraparfen //            ((**********      
   *            ///////opeansea: [at]parfene ///////             &(********&     
   *       &//////alexandraparfene[at]me.com/////                &(********     
   *      %%%&/////////////////////////////&                      &(((((&    
   *       %%%&///////////////////////&                                             
   *             &/////////%&%                                                      
   *  
   *
   * @notice Query if a contract implements an interface
   * @param interfaceId The interface identifier, as specified in ERC-165
   * @dev Interface identification is specified in ERC-165. This function
   * uses less than 30,000 gas.
   */
  function supportsInterface(bytes4 interfaceId)
    external
    view
    returns (bool);
}

// File: contracts/interface/IERC721.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: contracts/interface/IERC721Receiver.sol

/**
 * @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: contracts/interface/IERC721Metadata.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: contracts/util/Context.sol

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

// File: contracts/util/Strings.sol

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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);
    }

}

// File: contracts/standard/ERC165.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: contracts/core/ERC721.sol

/**
 * @dev Implementation of Non-Fungible Token.           
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    
    // The artist associated with the collection.
    string private _creator;

    address public immutable _owner;

    // Token name.
    string private _name;

    // Minting process state.
    bool public _finalized;

    // Token symbol.
    string private _symbol;

    string private _baseURI;

    uint256 public immutable _operand;

    uint256 public immutable _typeCount;

    // Mapping from type to name of token.
    mapping(uint256 => string) private _typeName;

    // Mapping from type to IPFS hash of canonical artifcat file.
    mapping(uint256 => string) private _typeIPFSHashes;

    // Mapping from type to token artifact location.
    mapping(uint256 => string) private _typeURI;

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

    // Mapping owner address to token count, by aggregating all _typeCount NFTs in the contact.
    mapping (address => uint256) internal _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 token collection.
     */
    constructor() {
        _name = "The Boring Bucket Hat";
        _symbol = "BORING";
        _creator = "Alexandra Parfene";

        _owner = msg.sender;
       
        _typeCount = 5;
        _operand = 10000;

        _baseURI = "https://gist.githubusercontent.com/parfene/";

        _typeName[1] = "Unit P4";
        _typeIPFSHashes[1] = "QmSFdYSXWSczFqTuwjjvbjzb9kDME1xXWHHopZoXDJDb4B";
        _typeURI[1] = "b98d6ff7b0cc6c0e911d3954e29dd090/raw/258e588039400689dc4901e28c04563b392ecd6e/unit_p4.json";

        _typeName[2] = "Unit P3";
        _typeIPFSHashes[2] = "QmQaGqyUxW8WzbGm77ehm9pp8iSz5af18BPoJb6hji3WX4";
        _typeURI[2] = "f0247e710fa364f2e7c43d5844068bbf/raw/9ca1d517ccbe85820eac5a6203fc7bc295a25bff/unit_p3.json";

        _typeName[3] = "Unit R3";
        _typeIPFSHashes[3] = "QmfTAZyyv7HYecKmBEvPbPsP6uKkgZsRbdH8bz7xq6N5W1";
        _typeURI[3] = "faa5e1a3915979fd8cb43c41fdc43a30/raw/fbdc8275312761c1c78d1433560ec2dab0b2a60b/unit_r3.json";

        _typeName[4] = "Unit W3";
        _typeIPFSHashes[4] = "QmdAYsrnuWL1NdvpaMvZnWU7TVpWQoqsfhZobWANMBFJZ8";
        _typeURI[4] = "2d59ea3e82d6c1475acbf98ad0395a18/raw/d96129be81c79b88277d121ced88a88b3c491247/unit_w3.json";

        _typeName[5] = "Unit B3";
        _typeIPFSHashes[5] = "Qme6U9zacbpCfgyGwwyFiyUFYWD9ZHMMMdEnBMwrETrwxR";
        _typeURI[5] = "081c2f2e29a459f46d04731e9e02bee7/raw/caefd2620d5d7feb7492417ff2e92bc47ccd2a1b/unit_b3.json";
    }

    modifier onlyOwner() {
        require(msg.sender == _owner);
        _;
    }

    /**
     * @dev Prevent the minting of additional NFTs.
     */
    function setFinalized() public onlyOwner {
        require(_finalized == false, "ERC721: only finalizable once");
        _finalized = true;
    }

    /**
     * @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 The artist of this collection.
     */
    function creator() public view virtual returns (string memory) {
        return _creator;
    }

    /**
     * @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 Returns an IPFS hash for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query.
     * @return IPFS hash for this (_typeCount) NFT. 
     */
    function tokenIPFSHash(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: IPFS hash query for nonexistent token");
        uint256 countType = _getTypeId(tokenId);
        return _typeIPFSHashes[countType];
    }

    /**
     * @dev Returns the link to artificat location for a given token by 'tokenId'.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query.
     * @return The location where the artifact assets are stored.
     */
    function tokenURI(uint256 tokenId) external view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        uint256 countType = _getTypeId(tokenId);
        return string(abi.encodePacked(_baseURI, _typeURI[countType]));
    }

    /**
     * @dev Determine which NFT in the contract (_typeCount) is associated 
     * with this 'tokenId'.
     */
    function _getTypeId(uint256 tokenId) private view returns (uint256) {
        return uint256(tokenId / _operand);
    }

    /**
     * @dev Returns the Name for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenName(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Name query for nonexistent token");
        uint256 countType = _getTypeId(tokenId);
        return _typeName[countType];
    }

    /**
     * @dev Base URI for computing {tokenURI}.
     */
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURI = baseURI_;
    }

    /**
     * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //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 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);

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

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

        emit Transfer(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 of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

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

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

        emit Transfer(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 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 (isContract(to)) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Start with 10000, or 10001
     *
     */
    function mint(address[] memory owners, uint256 typeCount) public onlyOwner {
        require(!_finalized, "ERC721: minting concluded");

        for(uint8 index = 0; index < owners.length; index++) {
            
            uint256 token_0001 = typeCount + index;
            address owner_0001 = owners[index];
            _owners[token_0001] = owner_0001;
            _balances[owner_0001] = 1;
            emit Transfer(address(0), owner_0001, token_0001);
        }
    }

    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"_finalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_operand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_typeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creator","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":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256","name":"typeCount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFinalized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIPFSHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60e06040523480156200001157600080fd5b506040805180820190915260158082527f54686520426f72696e67204275636b6574204861740000000000000000000000602090920191825262000058916001916200063e565b5060408051808201909152600680825265424f52494e4760d01b602090920191825262000088916003916200063e565b5060408051808201909152601180825270416c6578616e6472612050617266656e6560781b6020909201918252620000c3916000916200063e565b5033606090811b608052600560c05261271060a052604080519182019052602b808252620026086020830139805162000105916004916020909101906200063e565b50604080518082019091526007815266155b9a5d08140d60ca1b602080830191825260016000526005905290516200015f917f1471eb6eb2c5e789fc3de43f8ce62938c7d1836ec861730447e2ada8fd81017b916200063e565b506040518060600160405280602e815260200162002470602e91396001600052600660209081528151620001b7927f3e5fec24aa4dc4e5aee2e025e51e1392c72a2500577559fae9665c6d52bd6a319201906200063e565b506040518060800160405280605a8152602001620024f8605a913960016000526007602090815281516200020f927fb39221ace053465ec3453ce2b36430bd138b997ecea25c1043da0c366812b8289201906200063e565b50604080518082019091526007815266556e697420503360c81b6020808301918252600260005260059052905162000269917f89832631fb3c3307a103ba2c84ab569c64d6182a18893dcd163f0f1c2090733a916200063e565b506040518060600160405280602e815260200162002442602e91396002600052600660209081528151620002c1927f8819ef417987f8ae7a81f42cdfb18815282fe989326fbff903d13cf0e03ace299201906200063e565b506040518060800160405280605a81526020016200249e605a9139600260005260076020908152815162000319927fb7c774451310d1be4108bc180d1b52823cb0ee0274a6c0081bcaf94f115fb96d9201906200063e565b50604080518082019091526007815266556e697420523360c81b6020808301918252600360005260059052905162000373917fa9bc9a3a348c357ba16b37005d7e6b3236198c0e939f4af8c5f19b8deeb8ebc0916200063e565b506040518060600160405280602e815260200162002552602e91396003600052600660209081528151620003cb927f75f96ab15d697e93042dc45b5c896c4b27e89bb6eaf39475c5c371cb2513f7d29201906200063e565b506040518060800160405280605a815260200162002633605a9139600360005260076020908152815162000423927f3be6fd20d5acfde5b873b48692cd31f4d3c7e8ee8a813af4696af8859e5ca6c69201906200063e565b50604080518082019091526007815266556e697420573360c81b602080830191825260046000526005905290516200047d917f3eec716f11ba9e820c81ca75eb978ffb45831ef8b7a53e5e422c26008e1ca6d5916200063e565b506040518060600160405280602e815260200162002580602e91396004600052600660209081528151620004d5927fc5069e24aaadb2addc3e52e868fcf3f4f8acf5a87e24300992fd4540c2a87eed9201906200063e565b506040518060800160405280605a8152602001620023e8605a913960046000526007602090815281516200052d927fb805995a7ec585a251200611a61d179cfd7fb105e1ab17dc415a7336783786f79201906200063e565b50604080518082019091526007815266556e697420423360c81b6020808301918252600560008190529052905162000587917f458b30c2d72bfd2c6317304a4594ecbafe5f729d3111b65fdc3a33bd48e5432d916200063e565b506040518060600160405280602e8152602001620023ba602e91396005600052600660209081528151620005df927fbfd358e93f18da3ed276c3afdbdba00b8f0b6008a03476a6a86bd6320ee6938b9201906200063e565b506040518060800160405280605a8152602001620025ae605a9139600560005260076020908152815162000637927fbcdda56b5d08466ec462cbbe0adfa57cb0a15fcc8940ef68f702f21b787bc9359201906200063e565b5062000721565b8280546200064c90620006e4565b90600052602060002090601f016020900481019282620006705760008555620006bb565b82601f106200068b57805160ff1916838001178555620006bb565b82800160010185558215620006bb579182015b82811115620006bb5782518255916020019190600101906200069e565b50620006c9929150620006cd565b5090565b5b80821115620006c95760008155600101620006ce565b600181811c90821680620006f957607f821691505b602082108114156200071b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c051611c4a62000770600039600061022f015260008181610277015261143f01526000818161032501528181610708015281816108c90152610e630152611c4a6000f3fe608060405234801561001057600080fd5b50600436106101985760003560e01c80636352211e116100e3578063b88d4fde1161008c578063e725f87711610066578063e725f87714610380578063e985e9c514610393578063ea66696c146103cf57600080fd5b8063b88d4fde14610347578063c87b56dd1461035a578063d37166301461036d57600080fd5b806395d89b41116100bd57806395d89b4114610305578063a22cb4651461030d578063b2bdfa7b1461032057600080fd5b80636352211e146102d25780636aa6fe56146102e557806370a08231146102f257600080fd5b80632276f3f21161014557806342842e0e1161011f57806342842e0e1461029957806342966c68146102ac57806355f804b3146102bf57600080fd5b80632276f3f21461022a57806323b872dd1461025f5780632aeb0c3e1461027257600080fd5b8063081812fc11610176578063081812fc146101e2578063095ea7b31461020d5780631de772531461022257600080fd5b806301ffc9a71461019d57806302d05d3f146101c557806306fdde03146101da575b600080fd5b6101b06101ab3660046118f8565b6103e2565b60405190151581526020015b60405180910390f35b6101cd61047f565b6040516101bc9190611acc565b6101cd610511565b6101f56101f036600461197b565b610520565b6040516001600160a01b0390911681526020016101bc565b61022061021b366004611814565b6105cb565b005b6102206106fd565b6102517f000000000000000000000000000000000000000000000000000000000000000081565b6040519081526020016101bc565b61022061026d366004611720565b610794565b6102517f000000000000000000000000000000000000000000000000000000000000000081565b6102206102a7366004611720565b61081c565b6102206102ba36600461197b565b610837565b6102206102cd366004611932565b6108be565b6101f56102e036600461197b565b61090a565b6002546101b09060ff1681565b6102516103003660046116cb565b610995565b6101cd610a2f565b61022061031b3660046117d8565b610a3e565b6101f57f000000000000000000000000000000000000000000000000000000000000000081565b61022061035536600461175c565b610b03565b6101cd61036836600461197b565b610b91565b6101cd61037b36600461197b565b610c68565b6101cd61038e36600461197b565b610da3565b6101b06103a13660046116ed565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205460ff1690565b6102206103dd36600461183e565b610e58565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061044557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061047957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461048e90611b61565b80601f01602080910402602001604051908101604052809291908181526020018280546104ba90611b61565b80156105075780601f106104dc57610100808354040283529160200191610507565b820191906000526020600020905b8154815290600101906020018083116104ea57829003601f168201915b5050505050905090565b60606001805461048e90611b61565b6000818152600860205260408120546001600160a01b03166105af5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600a60205260409020546001600160a01b031690565b60006105d68261090a565b9050806001600160a01b0316836001600160a01b031614156106605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016105a6565b336001600160a01b038216148061067c575061067c81336103a1565b6106ee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a6565b6106f88383610faa565b505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461073257600080fd5b60025460ff16156107855760405162461bcd60e51b815260206004820152601d60248201527f4552433732313a206f6e6c792066696e616c697a61626c65206f6e636500000060448201526064016105a6565b6002805460ff19166001179055565b61079f335b82611025565b6108115760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105a6565b6106f883838361112d565b6106f883838360405180602001604052806000815250610b03565b61084033610799565b6108b25760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016105a6565b6108bb81611307565b50565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146108f357600080fd5b80516109069060049060208401906115be565b5050565b6000818152600860205260408120546001600160a01b0316806104795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016105a6565b60006001600160a01b038216610a135760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016105a6565b506001600160a01b031660009081526009602052604090205490565b60606003805461048e90611b61565b6001600160a01b038216331415610a975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a6565b336000818152600b602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b0d3383611025565b610b7f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105a6565b610b8b848484846113af565b50505050565b6000818152600860205260409020546060906001600160a01b0316610c1e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016105a6565b6000610c2983611438565b9050600460076000838152602001908152602001600020604051602001610c51929190611a7b565b604051602081830303815290604052915050919050565b6000818152600860205260409020546060906001600160a01b0316610cf55760405162461bcd60e51b815260206004820152603560248201527f4552433732314d657461646174613a204950465320686173682071756572792060448201527f666f72206e6f6e6578697374656e7420746f6b656e000000000000000000000060648201526084016105a6565b6000610d0083611438565b6000818152600660205260409020805491925090610d1d90611b61565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4990611b61565b8015610d965780601f10610d6b57610100808354040283529160200191610d96565b820191906000526020600020905b815481529060010190602001808311610d7957829003601f168201915b5050505050915050919050565b6000818152600860205260409020546060906001600160a01b0316610e305760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a204e616d6520717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e0000000000000000000000000000000060648201526084016105a6565b6000610e3b83611438565b6000818152600560205260409020805491925090610d1d90611b61565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610e8d57600080fd5b60025460ff1615610ee05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a206d696e74696e6720636f6e636c756465640000000000000060448201526064016105a6565b60005b82518160ff1610156106f8576000610efe60ff831684611b10565b90506000848360ff1681518110610f1757610f17611bd2565b6020908102919091018101516000848152600883526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038516908117909155808352600990945280822060019055519193508492917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a450508080610fa290611b9c565b915050610ee3565b6000818152600a60205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610fec8261090a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600860205260408120546001600160a01b03166110af5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016105a6565b60006110ba8361090a565b9050806001600160a01b0316846001600160a01b031614806110f55750836001600160a01b03166110ea84610520565b6001600160a01b0316145b8061112557506001600160a01b038082166000908152600b602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111408261090a565b6001600160a01b0316146111bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016105a6565b6001600160a01b0382166112375760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105a6565b611242600082610faa565b6001600160a01b038316600090815260096020526040812080546001929061126b908490611b4a565b90915550506001600160a01b0382166000908152600960205260408120805460019290611299908490611b10565b9091555050600081815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113128261090a565b905061131f600083610faa565b6001600160a01b0381166000908152600960205260408120805460019290611348908490611b4a565b9091555050600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6113ba84848461112d565b6113c684848484611464565b610b8b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a6565b60006104797f000000000000000000000000000000000000000000000000000000000000000083611b28565b6000833b156115b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061149f903390899088908890600401611a90565b602060405180830381600087803b1580156114b957600080fd5b505af19250505080156114e9575060408051601f3d908101601f191682019092526114e691810190611915565b60015b611599573d808015611517576040519150601f19603f3d011682016040523d82523d6000602084013e61151c565b606091505b5080516115915760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611125565b506001949350505050565b8280546115ca90611b61565b90600052602060002090601f0160209004810192826115ec5760008555611632565b82601f1061160557805160ff1916838001178555611632565b82800160010185558215611632579182015b82811115611632578251825591602001919060010190611617565b5061163e929150611642565b5090565b5b8082111561163e5760008155600101611643565b600067ffffffffffffffff83111561167157611671611be8565b611684601f8401601f1916602001611adf565b905082815283838301111561169857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146116c657600080fd5b919050565b6000602082840312156116dd57600080fd5b6116e6826116af565b9392505050565b6000806040838503121561170057600080fd5b611709836116af565b9150611717602084016116af565b90509250929050565b60008060006060848603121561173557600080fd5b61173e846116af565b925061174c602085016116af565b9150604084013590509250925092565b6000806000806080858703121561177257600080fd5b61177b856116af565b9350611789602086016116af565b925060408501359150606085013567ffffffffffffffff8111156117ac57600080fd5b8501601f810187136117bd57600080fd5b6117cc87823560208401611657565b91505092959194509250565b600080604083850312156117eb57600080fd5b6117f4836116af565b91506020830135801515811461180957600080fd5b809150509250929050565b6000806040838503121561182757600080fd5b611830836116af565b946020939093013593505050565b6000806040838503121561185157600080fd5b823567ffffffffffffffff8082111561186957600080fd5b818501915085601f83011261187d57600080fd5b813560208282111561189157611891611be8565b8160051b92506118a2818401611adf565b8281528181019085830185870184018b10156118bd57600080fd5b600096505b848710156118e7576118d3816116af565b8352600196909601959183019183016118c2565b509997909101359750505050505050565b60006020828403121561190a57600080fd5b81356116e681611bfe565b60006020828403121561192757600080fd5b81516116e681611bfe565b60006020828403121561194457600080fd5b813567ffffffffffffffff81111561195b57600080fd5b8201601f8101841361196c57600080fd5b61112584823560208401611657565b60006020828403121561198d57600080fd5b5035919050565b6000815180845260005b818110156119ba5760208185018101518683018201520161199e565b818111156119cc576000602083870101525b50601f01601f19169290920160200192915050565b8054600090600181811c90808316806119fb57607f831692505b6020808410821415611a1d57634e487b7160e01b600052602260045260246000fd5b818015611a315760018114611a4257611a6f565b60ff19861689528489019650611a6f565b60008881526020902060005b86811015611a675781548b820152908501908301611a4e565b505084890196505b50505050505092915050565b6000611125611a8a83866119e1565b846119e1565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611ac26080830184611994565b9695505050505050565b6020815260006116e66020830184611994565b604051601f8201601f1916810167ffffffffffffffff81118282101715611b0857611b08611be8565b604052919050565b60008219821115611b2357611b23611bbc565b500190565b600082611b4557634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611b5c57611b5c611bbc565b500390565b600181811c90821680611b7557607f821691505b60208210811415611b9657634e487b7160e01b600052602260045260246000fd5b50919050565b600060ff821660ff811415611bb357611bb3611bbc565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108bb57600080fdfea2646970667358221220ca2a4a765d006c7b43a95a1df2f43265c503d6f89b7b2014ab9a1fd2990a0e2c64736f6c63430008060033516d653655397a6163627043666779477777794669795546595744395a484d4d4d64456e424d777245547277785232643539656133653832643663313437356163626639386164303339356131382f7261772f643936313239626538316337396238383237376431323163656438386138386233633439313234372f756e69745f77332e6a736f6e516d516147717955785738577a62476d373765686d3970703869537a356166313842506f4a6236686a6933575834516d5346645953585753637a46715475776a6a76626a7a62396b444d453178585748486f705a6f58444a4462344266303234376537313066613336346632653763343364353834343036386262662f7261772f396361316435313763636265383538323065616335613632303366633762633239356132356266662f756e69745f70332e6a736f6e62393864366666376230636336633065393131643339353465323964643039302f7261772f323538653538383033393430303638396463343930316532386330343536336233393265636436652f756e69745f70342e6a736f6e516d6654415a79797637485965634b6d424576506250735036754b6b675a735262644838627a377871364e355731516d64415973726e75574c314e647670614d765a6e57553754567057516f717366685a6f6257414e4d42464a5a3830383163326632653239613435396634366430343733316539653032626565372f7261772f636165666432363230643564376665623734393234313766663265393262633437636364326131622f756e69745f62332e6a736f6e68747470733a2f2f676973742e67697468756275736572636f6e74656e742e636f6d2f70617266656e652f66616135653161333931353937396664386362343363343166646334336133302f7261772f666264633832373533313237363163316337386431343333353630656332646162306232613630622f756e69745f72332e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101985760003560e01c80636352211e116100e3578063b88d4fde1161008c578063e725f87711610066578063e725f87714610380578063e985e9c514610393578063ea66696c146103cf57600080fd5b8063b88d4fde14610347578063c87b56dd1461035a578063d37166301461036d57600080fd5b806395d89b41116100bd57806395d89b4114610305578063a22cb4651461030d578063b2bdfa7b1461032057600080fd5b80636352211e146102d25780636aa6fe56146102e557806370a08231146102f257600080fd5b80632276f3f21161014557806342842e0e1161011f57806342842e0e1461029957806342966c68146102ac57806355f804b3146102bf57600080fd5b80632276f3f21461022a57806323b872dd1461025f5780632aeb0c3e1461027257600080fd5b8063081812fc11610176578063081812fc146101e2578063095ea7b31461020d5780631de772531461022257600080fd5b806301ffc9a71461019d57806302d05d3f146101c557806306fdde03146101da575b600080fd5b6101b06101ab3660046118f8565b6103e2565b60405190151581526020015b60405180910390f35b6101cd61047f565b6040516101bc9190611acc565b6101cd610511565b6101f56101f036600461197b565b610520565b6040516001600160a01b0390911681526020016101bc565b61022061021b366004611814565b6105cb565b005b6102206106fd565b6102517f000000000000000000000000000000000000000000000000000000000000000581565b6040519081526020016101bc565b61022061026d366004611720565b610794565b6102517f000000000000000000000000000000000000000000000000000000000000271081565b6102206102a7366004611720565b61081c565b6102206102ba36600461197b565b610837565b6102206102cd366004611932565b6108be565b6101f56102e036600461197b565b61090a565b6002546101b09060ff1681565b6102516103003660046116cb565b610995565b6101cd610a2f565b61022061031b3660046117d8565b610a3e565b6101f57f0000000000000000000000006427f6b47b3b649a453c1f66b9bec0f01d44152881565b61022061035536600461175c565b610b03565b6101cd61036836600461197b565b610b91565b6101cd61037b36600461197b565b610c68565b6101cd61038e36600461197b565b610da3565b6101b06103a13660046116ed565b6001600160a01b039182166000908152600b6020908152604080832093909416825291909152205460ff1690565b6102206103dd36600461183e565b610e58565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061044557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061047957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461048e90611b61565b80601f01602080910402602001604051908101604052809291908181526020018280546104ba90611b61565b80156105075780601f106104dc57610100808354040283529160200191610507565b820191906000526020600020905b8154815290600101906020018083116104ea57829003601f168201915b5050505050905090565b60606001805461048e90611b61565b6000818152600860205260408120546001600160a01b03166105af5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600a60205260409020546001600160a01b031690565b60006105d68261090a565b9050806001600160a01b0316836001600160a01b031614156106605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016105a6565b336001600160a01b038216148061067c575061067c81336103a1565b6106ee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a6565b6106f88383610faa565b505050565b336001600160a01b037f0000000000000000000000006427f6b47b3b649a453c1f66b9bec0f01d441528161461073257600080fd5b60025460ff16156107855760405162461bcd60e51b815260206004820152601d60248201527f4552433732313a206f6e6c792066696e616c697a61626c65206f6e636500000060448201526064016105a6565b6002805460ff19166001179055565b61079f335b82611025565b6108115760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105a6565b6106f883838361112d565b6106f883838360405180602001604052806000815250610b03565b61084033610799565b6108b25760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f7665640000000000000000000000000000000060648201526084016105a6565b6108bb81611307565b50565b336001600160a01b037f0000000000000000000000006427f6b47b3b649a453c1f66b9bec0f01d44152816146108f357600080fd5b80516109069060049060208401906115be565b5050565b6000818152600860205260408120546001600160a01b0316806104795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016105a6565b60006001600160a01b038216610a135760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016105a6565b506001600160a01b031660009081526009602052604090205490565b60606003805461048e90611b61565b6001600160a01b038216331415610a975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a6565b336000818152600b602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b0d3383611025565b610b7f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016105a6565b610b8b848484846113af565b50505050565b6000818152600860205260409020546060906001600160a01b0316610c1e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016105a6565b6000610c2983611438565b9050600460076000838152602001908152602001600020604051602001610c51929190611a7b565b604051602081830303815290604052915050919050565b6000818152600860205260409020546060906001600160a01b0316610cf55760405162461bcd60e51b815260206004820152603560248201527f4552433732314d657461646174613a204950465320686173682071756572792060448201527f666f72206e6f6e6578697374656e7420746f6b656e000000000000000000000060648201526084016105a6565b6000610d0083611438565b6000818152600660205260409020805491925090610d1d90611b61565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4990611b61565b8015610d965780601f10610d6b57610100808354040283529160200191610d96565b820191906000526020600020905b815481529060010190602001808311610d7957829003601f168201915b5050505050915050919050565b6000818152600860205260409020546060906001600160a01b0316610e305760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a204e616d6520717565727920666f72206e60448201527f6f6e6578697374656e7420746f6b656e0000000000000000000000000000000060648201526084016105a6565b6000610e3b83611438565b6000818152600560205260409020805491925090610d1d90611b61565b336001600160a01b037f0000000000000000000000006427f6b47b3b649a453c1f66b9bec0f01d4415281614610e8d57600080fd5b60025460ff1615610ee05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a206d696e74696e6720636f6e636c756465640000000000000060448201526064016105a6565b60005b82518160ff1610156106f8576000610efe60ff831684611b10565b90506000848360ff1681518110610f1757610f17611bd2565b6020908102919091018101516000848152600883526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038516908117909155808352600990945280822060019055519193508492917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a450508080610fa290611b9c565b915050610ee3565b6000818152600a60205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190610fec8261090a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600860205260408120546001600160a01b03166110af5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016105a6565b60006110ba8361090a565b9050806001600160a01b0316846001600160a01b031614806110f55750836001600160a01b03166110ea84610520565b6001600160a01b0316145b8061112557506001600160a01b038082166000908152600b602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111408261090a565b6001600160a01b0316146111bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016105a6565b6001600160a01b0382166112375760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105a6565b611242600082610faa565b6001600160a01b038316600090815260096020526040812080546001929061126b908490611b4a565b90915550506001600160a01b0382166000908152600960205260408120805460019290611299908490611b10565b9091555050600081815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113128261090a565b905061131f600083610faa565b6001600160a01b0381166000908152600960205260408120805460019290611348908490611b4a565b9091555050600082815260086020526040808220805473ffffffffffffffffffffffffffffffffffffffff19169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6113ba84848461112d565b6113c684848484611464565b610b8b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a6565b60006104797f000000000000000000000000000000000000000000000000000000000000271083611b28565b6000833b156115b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061149f903390899088908890600401611a90565b602060405180830381600087803b1580156114b957600080fd5b505af19250505080156114e9575060408051601f3d908101601f191682019092526114e691810190611915565b60015b611599573d808015611517576040519150601f19603f3d011682016040523d82523d6000602084013e61151c565b606091505b5080516115915760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016105a6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611125565b506001949350505050565b8280546115ca90611b61565b90600052602060002090601f0160209004810192826115ec5760008555611632565b82601f1061160557805160ff1916838001178555611632565b82800160010185558215611632579182015b82811115611632578251825591602001919060010190611617565b5061163e929150611642565b5090565b5b8082111561163e5760008155600101611643565b600067ffffffffffffffff83111561167157611671611be8565b611684601f8401601f1916602001611adf565b905082815283838301111561169857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146116c657600080fd5b919050565b6000602082840312156116dd57600080fd5b6116e6826116af565b9392505050565b6000806040838503121561170057600080fd5b611709836116af565b9150611717602084016116af565b90509250929050565b60008060006060848603121561173557600080fd5b61173e846116af565b925061174c602085016116af565b9150604084013590509250925092565b6000806000806080858703121561177257600080fd5b61177b856116af565b9350611789602086016116af565b925060408501359150606085013567ffffffffffffffff8111156117ac57600080fd5b8501601f810187136117bd57600080fd5b6117cc87823560208401611657565b91505092959194509250565b600080604083850312156117eb57600080fd5b6117f4836116af565b91506020830135801515811461180957600080fd5b809150509250929050565b6000806040838503121561182757600080fd5b611830836116af565b946020939093013593505050565b6000806040838503121561185157600080fd5b823567ffffffffffffffff8082111561186957600080fd5b818501915085601f83011261187d57600080fd5b813560208282111561189157611891611be8565b8160051b92506118a2818401611adf565b8281528181019085830185870184018b10156118bd57600080fd5b600096505b848710156118e7576118d3816116af565b8352600196909601959183019183016118c2565b509997909101359750505050505050565b60006020828403121561190a57600080fd5b81356116e681611bfe565b60006020828403121561192757600080fd5b81516116e681611bfe565b60006020828403121561194457600080fd5b813567ffffffffffffffff81111561195b57600080fd5b8201601f8101841361196c57600080fd5b61112584823560208401611657565b60006020828403121561198d57600080fd5b5035919050565b6000815180845260005b818110156119ba5760208185018101518683018201520161199e565b818111156119cc576000602083870101525b50601f01601f19169290920160200192915050565b8054600090600181811c90808316806119fb57607f831692505b6020808410821415611a1d57634e487b7160e01b600052602260045260246000fd5b818015611a315760018114611a4257611a6f565b60ff19861689528489019650611a6f565b60008881526020902060005b86811015611a675781548b820152908501908301611a4e565b505084890196505b50505050505092915050565b6000611125611a8a83866119e1565b846119e1565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611ac26080830184611994565b9695505050505050565b6020815260006116e66020830184611994565b604051601f8201601f1916810167ffffffffffffffff81118282101715611b0857611b08611be8565b604052919050565b60008219821115611b2357611b23611bbc565b500190565b600082611b4557634e487b7160e01b600052601260045260246000fd5b500490565b600082821015611b5c57611b5c611bbc565b500390565b600181811c90821680611b7557607f821691505b60208210811415611b9657634e487b7160e01b600052602260045260246000fd5b50919050565b600060ff821660ff811415611bb357611bb3611bbc565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108bb57600080fdfea2646970667358221220ca2a4a765d006c7b43a95a1df2f43265c503d6f89b7b2014ab9a1fd2990a0e2c64736f6c63430008060033

Deployed Bytecode Sourcemap

12157:16109:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15384:292;;;;;;:::i;:::-;;:::i;:::-;;;7584:14:1;;7577:22;7559:41;;7547:2;7532:18;15384:292:0;;;;;;;;16319:97;;;:::i;:::-;;;;;;;:::i;16483:100::-;;;:::i;19324:219::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6836:55:1;;;6818:74;;6806:2;6791:18;19324:219:0;6773:125:1;18861:397:0;;;;;;:::i;:::-;;:::i;:::-;;15163:149;;;:::i;12592:35::-;;;;;;;;14845:25:1;;;14833:2;14818:18;12592:35:0;14800:76:1;20210:303:0;;;;;;:::i;:::-;;:::i;12550:33::-;;;;;20584:151;;;;;;:::i;:::-;;:::i;28016:245::-;;;;;;:::i;:::-;;:::i;18698:101::-;;;;;;:::i;:::-;;:::i;16010:239::-;;;;;;:::i;:::-;;:::i;12434:22::-;;;;;;;;;15740:208;;;;;;:::i;:::-;;:::i;16652:104::-;;;:::i;19615:293::-;;;;;;:::i;:::-;;:::i;12314:31::-;;;;;20806:285;;;;;;:::i;:::-;;:::i;17604:300::-;;;;;;:::i;:::-;;:::i;17024:271::-;;;;;;:::i;:::-;;:::i;18366:258::-;;;;;;:::i;:::-;;:::i;19979:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;20100:25:0;;;20076:4;20100:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;19979:164;27347:487;;;;;;:::i;:::-;;:::i;15384:292::-;15486:4;-1:-1:-1;;;;;;15510:40:0;;15525:25;15510:40;;:105;;-1:-1:-1;;;;;;;15567:48:0;;15582:33;15567:48;15510:105;:158;;;-1:-1:-1;12011:25:0;-1:-1:-1;;;;;;11996:40:0;;;15632:36;15503:165;15384:292;-1:-1:-1;;15384:292:0:o;16319:97::-;16367:13;16400:8;16393:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16319:97;:::o;16483:100::-;16537:13;16570:5;16563:12;;;;;:::i;19324:219::-;19400:7;22647:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22647:16:0;19420:73;;;;-1:-1:-1;;;19420:73:0;;12008:2:1;19420:73:0;;;11990:21:1;12047:2;12027:18;;;12020:30;12086:34;12066:18;;;12059:62;12157:14;12137:18;;;12130:42;12189:19;;19420:73:0;;;;;;;;;-1:-1:-1;19511:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;19511:24:0;;19324:219::o;18861:397::-;18942:13;18958:23;18973:7;18958:14;:23::i;:::-;18942:39;;19006:5;-1:-1:-1;;;;;19000:11:0;:2;-1:-1:-1;;;;;19000:11:0;;;18992:57;;;;-1:-1:-1;;;18992:57:0;;13247:2:1;18992:57:0;;;13229:21:1;13286:2;13266:18;;;13259:30;13325:34;13305:18;;;13298:62;13396:3;13376:18;;;13369:31;13417:19;;18992:57:0;13219:223:1;18992:57:0;10129:10;-1:-1:-1;;;;;19070:21:0;;;;:62;;-1:-1:-1;19095:37:0;19112:5;10129:10;19979:164;:::i;19095:37::-;19062:154;;;;-1:-1:-1;;;19062:154:0;;10762:2:1;19062:154:0;;;10744:21:1;10801:2;10781:18;;;10774:30;10840:34;10820:18;;;10813:62;10911:26;10891:18;;;10884:54;10955:19;;19062:154:0;10734:246:1;19062:154:0;19229:21;19238:2;19242:7;19229:8;:21::i;:::-;18931:327;18861:397;;:::o;15163:149::-;15043:10;-1:-1:-1;;;;;15057:6:0;15043:20;;15035:29;;;;;;15223:10:::1;::::0;::::1;;:19;15215:61;;;::::0;-1:-1:-1;;;15215:61:0;;8459:2:1;15215:61:0::1;::::0;::::1;8441:21:1::0;8498:2;8478:18;;;8471:30;8537:31;8517:18;;;8510:59;8586:18;;15215:61:0::1;8431:179:1::0;15215:61:0::1;15287:10;:17:::0;;-1:-1:-1;;15287:17:0::1;15300:4;15287:17;::::0;;15163:149::o;20210:303::-;20371:41;10129:10;20390:12;20404:7;20371:18;:41::i;:::-;20363:103;;;;-1:-1:-1;;;20363:103:0;;13649:2:1;20363:103:0;;;13631:21:1;13688:2;13668:18;;;13661:30;13727:34;13707:18;;;13700:62;13798:19;13778:18;;;13771:47;13835:19;;20363:103:0;13621:239:1;20363:103:0;20477:28;20487:4;20493:2;20497:7;20477:9;:28::i;20584:151::-;20688:39;20705:4;20711:2;20715:7;20688:39;;;;;;;;;;;;:16;:39::i;28016:245::-;28134:41;10129:10;28153:12;10049:98;28134:41;28126:102;;;;-1:-1:-1;;;28126:102:0;;14067:2:1;28126:102:0;;;14049:21:1;14106:2;14086:18;;;14079:30;14145:34;14125:18;;;14118:62;14216:18;14196;;;14189:46;14252:19;;28126:102:0;14039:238:1;28126:102:0;28239:14;28245:7;28239:5;:14::i;:::-;28016:245;:::o;18698:101::-;15043:10;-1:-1:-1;;;;;15057:6:0;15043:20;;15035:29;;;;;;18772:19;;::::1;::::0;:8:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;18698:101:::0;:::o;16010:239::-;16082:7;16118:16;;;:7;:16;;;;;;-1:-1:-1;;;;;16118:16:0;16153:19;16145:73;;;;-1:-1:-1;;;16145:73:0;;11598:2:1;16145:73:0;;;11580:21:1;11637:2;11617:18;;;11610:30;11676:34;11656:18;;;11649:62;11747:11;11727:18;;;11720:39;11776:19;;16145:73:0;11570:231:1;15740:208:0;15812:7;-1:-1:-1;;;;;15840:19:0;;15832:74;;;;-1:-1:-1;;;15832:74:0;;11187:2:1;15832:74:0;;;11169:21:1;11226:2;11206:18;;;11199:30;11265:34;11245:18;;;11238:62;11336:12;11316:18;;;11309:40;11366:19;;15832:74:0;11159:232:1;15832:74:0;-1:-1:-1;;;;;;15924:16:0;;;;;:9;:16;;;;;;;15740:208::o;16652:104::-;16708:13;16741:7;16734:14;;;;;:::i;19615:293::-;-1:-1:-1;;;;;19718:24:0;;10129:10;19718:24;;19710:62;;;;-1:-1:-1;;;19710:62:0;;9995:2:1;19710:62:0;;;9977:21:1;10034:2;10014:18;;;10007:30;10073:27;10053:18;;;10046:55;10118:18;;19710:62:0;9967:175:1;19710:62:0;10129:10;19783:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;19783:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;19783:53:0;;;;;;;;;;19852:48;;7559:41:1;;;19783:42:0;;10129:10;19852:48;;7532:18:1;19852:48:0;;;;;;;19615:293;;:::o;20806:285::-;20938:41;10129:10;20971:7;20938:18;:41::i;:::-;20930:103;;;;-1:-1:-1;;;20930:103:0;;13649:2:1;20930:103:0;;;13631:21:1;13688:2;13668:18;;;13661:30;13727:34;13707:18;;;13700:62;13798:19;13778:18;;;13771:47;13835:19;;20930:103:0;13621:239:1;20930:103:0;21044:39;21058:4;21064:2;21068:7;21077:5;21044:13;:39::i;:::-;20806:285;;;;:::o;17604:300::-;22623:4;22647:16;;;:7;:16;;;;;;17671:13;;-1:-1:-1;;;;;22647:16:0;17697:76;;;;-1:-1:-1;;;17697:76:0;;12831:2:1;17697:76:0;;;12813:21:1;12870:2;12850:18;;;12843:30;12909:34;12889:18;;;12882:62;12980:17;12960:18;;;12953:45;13015:19;;17697:76:0;12803:237:1;17697:76:0;17784:17;17804:19;17815:7;17804:10;:19::i;:::-;17784:39;;17865:8;17875;:19;17884:9;17875:19;;;;;;;;;;;17848:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17834:62;;;17604:300;;;:::o;17024:271::-;22623:4;22647:16;;;:7;:16;;;;;;17085:13;;-1:-1:-1;;;;;22647:16:0;17111:82;;;;-1:-1:-1;;;17111:82:0;;8037:2:1;17111:82:0;;;8019:21:1;8076:2;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8186:23;8166:18;;;8159:51;8227:19;;17111:82:0;8009:243:1;17111:82:0;17204:17;17224:19;17235:7;17224:10;:19::i;:::-;17261:26;;;;:15;:26;;;;;17254:33;;17204:39;;-1:-1:-1;17261:26:0;17254:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17024:271;;;:::o;18366:258::-;22623:4;22647:16;;;:7;:16;;;;;;18425:13;;-1:-1:-1;;;;;22647:16:0;18451:77;;;;-1:-1:-1;;;18451:77:0;;14484:2:1;18451:77:0;;;14466:21:1;14523:2;14503:18;;;14496:30;14562:34;14542:18;;;14535:62;14633:18;14613;;;14606:46;14669:19;;18451:77:0;14456:238:1;18451:77:0;18539:17;18559:19;18570:7;18559:10;:19::i;:::-;18596:20;;;;:9;:20;;;;;18589:27;;18539:39;;-1:-1:-1;18596:20:0;18589:27;;;:::i;27347:487::-;15043:10;-1:-1:-1;;;;;15057:6:0;15043:20;;15035:29;;;;;;27442:10:::1;::::0;::::1;;27441:11;27433:49;;;::::0;-1:-1:-1;;;27433:49:0;;9236:2:1;27433:49:0::1;::::0;::::1;9218:21:1::0;9275:2;9255:18;;;9248:30;9314:27;9294:18;;;9287:55;9359:18;;27433:49:0::1;9208:175:1::0;27433:49:0::1;27499:11;27495:332;27524:6;:13;27516:5;:21;;;27495:332;;;27577:18;27598:17;;::::0;::::1;:9:::0;:17:::1;:::i;:::-;27577:38;;27630:18;27651:6;27658:5;27651:13;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;27679:19:::1;::::0;;;:7:::1;:19:::0;;;;;;:32;;-1:-1:-1;;27679:32:0::1;-1:-1:-1::0;;;;;27679:32:0;::::1;::::0;;::::1;::::0;;;27726:21;;;:9:::1;:21:::0;;;;;;-1:-1:-1;27726:25:0;;27771:44;27651:13;;-1:-1:-1;27679:19:0;;:32;27771:44:::1;::::0;27679:19;;27771:44:::1;27548:279;;27539:7;;;;;:::i;:::-;;;;27495:332;;24675:174:::0;24750:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;24750:29:0;-1:-1:-1;;;;;24750:29:0;;;;;;;;:24;;24804:23;24750:24;24804:14;:23::i;:::-;-1:-1:-1;;;;;24795:46:0;;;;;;;;;;;24675:174;;:::o;22852:348::-;22945:4;22647:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22647:16:0;22962:73;;;;-1:-1:-1;;;22962:73:0;;10349:2:1;22962:73:0;;;10331:21:1;10388:2;10368:18;;;10361:30;10427:34;10407:18;;;10400:62;10498:14;10478:18;;;10471:42;10530:19;;22962:73:0;10321:234:1;22962:73:0;23046:13;23062:23;23077:7;23062:14;:23::i;:::-;23046:39;;23115:5;-1:-1:-1;;;;;23104:16:0;:7;-1:-1:-1;;;;;23104:16:0;;:51;;;;23148:7;-1:-1:-1;;;;;23124:31:0;:20;23136:7;23124:11;:20::i;:::-;-1:-1:-1;;;;;23124:31:0;;23104:51;:87;;;-1:-1:-1;;;;;;20100:25:0;;;20076:4;20100:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;23159:32;23096:96;22852:348;-1:-1:-1;;;;22852:348:0:o;24065:492::-;24190:4;-1:-1:-1;;;;;24163:31:0;:23;24178:7;24163:14;:23::i;:::-;-1:-1:-1;;;;;24163:31:0;;24155:85;;;;-1:-1:-1;;;24155:85:0;;12421:2:1;24155:85:0;;;12403:21:1;12460:2;12440:18;;;12433:30;12499:34;12479:18;;;12472:62;12570:11;12550:18;;;12543:39;12599:19;;24155:85:0;12393:231:1;24155:85:0;-1:-1:-1;;;;;24259:16:0;;24251:65;;;;-1:-1:-1;;;24251:65:0;;9590:2:1;24251:65:0;;;9572:21:1;9629:2;9609:18;;;9602:30;9668:34;9648:18;;;9641:62;9739:6;9719:18;;;9712:34;9763:19;;24251:65:0;9562:226:1;24251:65:0;24381:29;24398:1;24402:7;24381:8;:29::i;:::-;-1:-1:-1;;;;;24423:15:0;;;;;;:9;:15;;;;;:20;;24442:1;;24423:15;:20;;24442:1;;24423:20;:::i;:::-;;;;-1:-1:-1;;;;;;;24454:13:0;;;;;;:9;:13;;;;;:18;;24471:1;;24454:13;:18;;24471:1;;24454:18;:::i;:::-;;;;-1:-1:-1;;24483:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;24483:21:0;-1:-1:-1;;;;;24483:21:0;;;;;;;;;24522:27;;24483:16;;24522:27;;;;;;;24065:492;;;:::o;23429:299::-;23489:13;23505:23;23520:7;23505:14;:23::i;:::-;23489:39;;23569:29;23586:1;23590:7;23569:8;:29::i;:::-;-1:-1:-1;;;;;23611:16:0;;;;;;:9;:16;;;;;:21;;23631:1;;23611:16;:21;;23631:1;;23611:21;:::i;:::-;;;;-1:-1:-1;;23650:16:0;;;;:7;:16;;;;;;23643:23;;-1:-1:-1;;23643:23:0;;;23684:36;23658:7;;23650:16;-1:-1:-1;;;;;23684:36:0;;;;;23650:16;;23684:36;23478:250;23429:299;:::o;21973:272::-;22087:28;22097:4;22103:2;22107:7;22087:9;:28::i;:::-;22134:48;22157:4;22163:2;22167:7;22176:5;22134:22;:48::i;:::-;22126:111;;;;-1:-1:-1;;;22126:111:0;;8817:2:1;22126:111:0;;;8799:21:1;8856:2;8836:18;;;8829:30;8895:34;8875:18;;;8868:62;8966:20;8946:18;;;8939:48;9004:19;;22126:111:0;8789:240:1;18036:121:0;18095:7;18130:18;18140:8;18130:7;:18;:::i;25414:842::-;25535:4;27218:20;;27257:8;25557:692;;25596:72;;-1:-1:-1;;;25596:72:0;;-1:-1:-1;;;;;25596:36:0;;;;;:72;;10129:10;;25647:4;;25653:7;;25662:5;;25596:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25596:72:0;;;;;;;;-1:-1:-1;;25596:72:0;;;;;;;;;;;;:::i;:::-;;;25592:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25842:13:0;;25838:341;;25885:60;;-1:-1:-1;;;25885:60:0;;8817:2:1;25885:60:0;;;8799:21:1;8856:2;8836:18;;;8829:30;8895:34;8875:18;;;8868:62;8966:20;8946:18;;;8939:48;9004:19;;25885:60:0;8789:240:1;25838:341:0;26129:6;26123:13;26114:6;26110:2;26106:15;26099:38;25592:602;-1:-1:-1;;;;;;25719:55:0;-1:-1:-1;;;25719:55:0;;-1:-1:-1;25712:62:0;;25557:692;-1:-1:-1;26233:4:0;25414:842;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:196::-;493:20;;-1:-1:-1;;;;;542:54:1;;532:65;;522:2;;611:1;608;601:12;522:2;474:147;;;:::o;626:186::-;685:6;738:2;726:9;717:7;713:23;709:32;706:2;;;754:1;751;744:12;706:2;777:29;796:9;777:29;:::i;:::-;767:39;696:116;-1:-1:-1;;;696:116:1:o;817:260::-;885:6;893;946:2;934:9;925:7;921:23;917:32;914:2;;;962:1;959;952:12;914:2;985:29;1004:9;985:29;:::i;:::-;975:39;;1033:38;1067:2;1056:9;1052:18;1033:38;:::i;:::-;1023:48;;904:173;;;;;:::o;1082:328::-;1159:6;1167;1175;1228:2;1216:9;1207:7;1203:23;1199:32;1196:2;;;1244:1;1241;1234:12;1196:2;1267:29;1286:9;1267:29;:::i;:::-;1257:39;;1315:38;1349:2;1338:9;1334:18;1315:38;:::i;:::-;1305:48;;1400:2;1389:9;1385:18;1372:32;1362:42;;1186:224;;;;;:::o;1415:666::-;1510:6;1518;1526;1534;1587:3;1575:9;1566:7;1562:23;1558:33;1555:2;;;1604:1;1601;1594:12;1555:2;1627:29;1646:9;1627:29;:::i;:::-;1617:39;;1675:38;1709:2;1698:9;1694:18;1675:38;:::i;:::-;1665:48;;1760:2;1749:9;1745:18;1732:32;1722:42;;1815:2;1804:9;1800:18;1787:32;1842:18;1834:6;1831:30;1828:2;;;1874:1;1871;1864:12;1828:2;1897:22;;1950:4;1942:13;;1938:27;-1:-1:-1;1928:2:1;;1979:1;1976;1969:12;1928:2;2002:73;2067:7;2062:2;2049:16;2044:2;2040;2036:11;2002:73;:::i;:::-;1992:83;;;1545:536;;;;;;;:::o;2086:347::-;2151:6;2159;2212:2;2200:9;2191:7;2187:23;2183:32;2180:2;;;2228:1;2225;2218:12;2180:2;2251:29;2270:9;2251:29;:::i;:::-;2241:39;;2330:2;2319:9;2315:18;2302:32;2377:5;2370:13;2363:21;2356:5;2353:32;2343:2;;2399:1;2396;2389:12;2343:2;2422:5;2412:15;;;2170:263;;;;;:::o;2438:254::-;2506:6;2514;2567:2;2555:9;2546:7;2542:23;2538:32;2535:2;;;2583:1;2580;2573:12;2535:2;2606:29;2625:9;2606:29;:::i;:::-;2596:39;2682:2;2667:18;;;;2654:32;;-1:-1:-1;;;2525:167:1:o;2697:1033::-;2790:6;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:2;;;2867:1;2864;2857:12;2819:2;2907:9;2894:23;2936:18;2977:2;2969:6;2966:14;2963:2;;;2993:1;2990;2983:12;2963:2;3031:6;3020:9;3016:22;3006:32;;3076:7;3069:4;3065:2;3061:13;3057:27;3047:2;;3098:1;3095;3088:12;3047:2;3134;3121:16;3156:4;3179:2;3175;3172:10;3169:2;;;3185:18;;:::i;:::-;3231:2;3228:1;3224:10;3214:20;;3254:28;3278:2;3274;3270:11;3254:28;:::i;:::-;3316:15;;;3347:12;;;;3379:11;;;3409;;;3405:20;;3402:33;-1:-1:-1;3399:2:1;;;3448:1;3445;3438:12;3399:2;3470:1;3461:10;;3480:169;3494:2;3491:1;3488:9;3480:169;;;3551:23;3570:3;3551:23;:::i;:::-;3539:36;;3512:1;3505:9;;;;;3595:12;;;;3627;;3480:169;;;-1:-1:-1;3668:5:1;3705:18;;;;3692:32;;-1:-1:-1;;;;;;;2809:921:1:o;3735:245::-;3793:6;3846:2;3834:9;3825:7;3821:23;3817:32;3814:2;;;3862:1;3859;3852:12;3814:2;3901:9;3888:23;3920:30;3944:5;3920:30;:::i;3985:249::-;4054:6;4107:2;4095:9;4086:7;4082:23;4078:32;4075:2;;;4123:1;4120;4113:12;4075:2;4155:9;4149:16;4174:30;4198:5;4174:30;:::i;4239:450::-;4308:6;4361:2;4349:9;4340:7;4336:23;4332:32;4329:2;;;4377:1;4374;4367:12;4329:2;4417:9;4404:23;4450:18;4442:6;4439:30;4436:2;;;4482:1;4479;4472:12;4436:2;4505:22;;4558:4;4550:13;;4546:27;-1:-1:-1;4536:2:1;;4587:1;4584;4577:12;4536:2;4610:73;4675:7;4670:2;4657:16;4652:2;4648;4644:11;4610:73;:::i;4694:180::-;4753:6;4806:2;4794:9;4785:7;4781:23;4777:32;4774:2;;;4822:1;4819;4812:12;4774:2;-1:-1:-1;4845:23:1;;4764:110;-1:-1:-1;4764:110:1:o;4879:471::-;4920:3;4958:5;4952:12;4985:6;4980:3;4973:19;5010:1;5020:162;5034:6;5031:1;5028:13;5020:162;;;5096:4;5152:13;;;5148:22;;5142:29;5124:11;;;5120:20;;5113:59;5049:12;5020:162;;;5200:6;5197:1;5194:13;5191:2;;;5266:1;5259:4;5250:6;5245:3;5241:16;5237:27;5230:38;5191:2;-1:-1:-1;5332:2:1;5311:15;-1:-1:-1;;5307:29:1;5298:39;;;;5339:4;5294:50;;4928:422;-1:-1:-1;;4928:422:1:o;5355:1030::-;5440:12;;5405:3;;5495:1;5515:18;;;;5568;;;;5595:2;;5649:4;5641:6;5637:17;5627:27;;5595:2;5675;5723;5715:6;5712:14;5692:18;5689:38;5686:2;;;-1:-1:-1;;;5757:1:1;5750:88;5861:4;5858:1;5851:15;5889:4;5886:1;5879:15;5686:2;5920:18;5947:104;;;;6065:1;6060:319;;;;5913:466;;5947:104;-1:-1:-1;;5980:24:1;;5968:37;;6025:16;;;;-1:-1:-1;5947:104:1;;6060:319;15234:1;15227:14;;;15271:4;15258:18;;6154:1;6168:165;6182:6;6179:1;6176:13;6168:165;;;6260:14;;6247:11;;;6240:35;6303:16;;;;6197:10;;6168:165;;;6172:3;;6362:6;6357:3;6353:16;6346:23;;5913:466;;;;;;;5413:972;;;;:::o;6390:277::-;6563:3;6588:73;6622:38;6656:3;6648:6;6622:38;:::i;:::-;6614:6;6588:73;:::i;6903:511::-;7097:4;-1:-1:-1;;;;;7207:2:1;7199:6;7195:15;7184:9;7177:34;7259:2;7251:6;7247:15;7242:2;7231:9;7227:18;7220:43;;7299:6;7294:2;7283:9;7279:18;7272:34;7342:3;7337:2;7326:9;7322:18;7315:31;7363:45;7403:3;7392:9;7388:19;7380:6;7363:45;:::i;:::-;7355:53;7106:308;-1:-1:-1;;;;;;7106:308:1:o;7611:219::-;7760:2;7749:9;7742:21;7723:4;7780:44;7820:2;7809:9;7805:18;7797:6;7780:44;:::i;14881:275::-;14952:2;14946:9;15017:2;14998:13;;-1:-1:-1;;14994:27:1;14982:40;;15052:18;15037:34;;15073:22;;;15034:62;15031:2;;;15099:18;;:::i;:::-;15135:2;15128:22;14926:230;;-1:-1:-1;14926:230:1:o;15287:128::-;15327:3;15358:1;15354:6;15351:1;15348:13;15345:2;;;15364:18;;:::i;:::-;-1:-1:-1;15400:9:1;;15335:80::o;15420:274::-;15460:1;15486;15476:2;;-1:-1:-1;;;15518:1:1;15511:88;15622:4;15619:1;15612:15;15650:4;15647:1;15640:15;15476:2;-1:-1:-1;15679:9:1;;15466:228::o;15699:125::-;15739:4;15767:1;15764;15761:8;15758:2;;;15772:18;;:::i;:::-;-1:-1:-1;15809:9:1;;15748:76::o;15829:437::-;15908:1;15904:12;;;;15951;;;15972:2;;16026:4;16018:6;16014:17;16004:27;;15972:2;16079;16071:6;16068:14;16048:18;16045:38;16042:2;;;-1:-1:-1;;;16113:1:1;16106:88;16217:4;16214:1;16207:15;16245:4;16242:1;16235:15;16042:2;;15884:382;;;:::o;16271:175::-;16308:3;16352:4;16345:5;16341:16;16381:4;16372:7;16369:17;16366:2;;;16389:18;;:::i;:::-;16438:1;16425:15;;16316:130;-1:-1:-1;;16316:130:1:o;16451:184::-;-1:-1:-1;;;16500:1:1;16493:88;16600:4;16597:1;16590:15;16624:4;16621:1;16614:15;16640:184;-1:-1:-1;;;16689:1:1;16682:88;16789:4;16786:1;16779:15;16813:4;16810:1;16803:15;16829:184;-1:-1:-1;;;16878:1:1;16871:88;16978:4;16975:1;16968:15;17002:4;16999:1;16992:15;17018:177;-1:-1:-1;;;;;;17096:5:1;17092:78;17085:5;17082:89;17072:2;;17185:1;17182;17175:12

Swarm Source

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