ETH Price: $3,230.55 (+2.35%)

Token

Okay Beards (OKB)
 

Overview

Max Total Supply

131 OKB

Holders

93

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
96184.eth
Balance
1 OKB
0xAF40394a6076D3bB0c7526300902a6ECccA89B3C
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:
okaybeards

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-02
*/

/**
 *Submitted for verification at Etherscan.io on 21/04/2022
*/

// File: @openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT

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 GSN 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 payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/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: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: @openzeppelin/contracts/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: @openzeppelin/contracts/introspection/ERC165.sol

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "e6");
        _supportedInterfaces[interfaceId] = true;
    }
}


// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.8.0;

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

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

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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, "e7");
    }

    /**
     * @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, "e9");
    }

    /**
     * @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, "e10");
        require(isContract(target), "e11");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }


    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    //using EnumerableSet for EnumerableSet.UintSet;
    //using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    //mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    //EnumerableMap.UintToAddressMap private _tokenOwners;

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

    mapping (address => uint256) private tokenBalance;
    mapping (uint256 => address) private tokenOwner;
    mapping (uint256 => bool) private tokenExists;
    mapping (uint256 => bool) private winnerToken;
    mapping (address => uint8) public winner;
    mapping (address => uint8) public mintedQty;
    uint8 public winnersCount = 0;

    uint256 public tokensMinted = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    uint256 public MAX_OKB;

    // Optional mapping for token URIs
    //mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI = "QmebzTm1ncigL9W3Euevn8gqg7NSFQ1s6hQxM5mRDwjfLP";

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "e12");
        //return _holderTokens[owner].length();
        return tokenBalance[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "e14");

        //string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        /*if (bytes(base).length == 0) {
            return _tokenURI;
        }*/
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        /*if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }*/
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked("ipfs://", base, "/", tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    /*function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }*/

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        //return _tokenOwners.length();
        //return tokenBalance[];
        return tokensMinted;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    /*function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }*/

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "e15");

        require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()),
            "e16"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "e17");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "e18");

        _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), "e19");

        _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), "e20");
        _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), "e21");
    }

    /**
     * @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 _tokenOwners.contains(tokenId);
        return tokenExists[tokenId];
    }

    /**
     * @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), "e22");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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), "e23");
    }

    /**
     * @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 random() private view returns (uint) {
        uint randomHash = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        return randomHash % 1000;
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "e24");
        require(!_exists(tokenId), "e25");

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

        tokenOwner[tokenId] = to;
        tokenExists[tokenId] = true;

        tokenBalance[to] = tokenBalance[to] + 1;
        tokensMinted = tokensMinted + 1;
        
        /*if (totalSupply() < (MAX_OKB - (MAX_OKB / 10)) && winnersCount == 2) {
            winnerToken[tokenId] = false;
        } else {
            if (totalSupply() < (MAX_OKB - (MAX_OKB / 2)) && winnersCount == 1) {
                winnerToken[tokenId] = false;
            } else {
                uint randNum = random();
                if (randNum < 10) {
                    if (winnersCount < 3) {
                        winnersCount = winnersCount + 1;
                        winnerToken[tokenId] = true;
                        winner[to] = winner[to] + 1;
                    } else {
                        winnerToken[tokenId] = false;
                    }
                } else {
                    winnerToken[tokenId] = false;
                }
            }
        }*/

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */

    /**
     * @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, "e26"); // internal owner
        require(to != address(0), "e27");

        _beforeTokenTransfer(from, to, tokenId);

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

        tokenBalance[from]--;
        tokenOwner[tokenId] = to;
        tokenBalance[to]++;

        if (winnerToken[tokenId]) {
            winner[from]--;
            winner[to]++;
        }

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    /*function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }*/

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "e28");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 { }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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



pragma solidity ^0.8.0;

/*
 * @title OKB contract
 */
contract okaybeards is Ownable, ERC721 {

    //uint256 public tokenPrice = 2000000000000000; //0.002 ETH

    
    uint256 public constant maxOKBPurchase = 10;

    uint256 public constant preMaxPerWallet = 5;
    //uint256 public constant freeMintQty = 1000;
    
    
    /*
    uint256 public constant maxOKBPurchase = 10;

    uint256 public constant preMaxPerWallet = 10;
    uint256 public constant freeMintQty = 15;
    */


    uint256 public mintContrib = 0;
    
    mapping (address => bool) public withdrawn;

    bool public saleIsActive = false;

    uint256 public ownerWithdrawals = 0;

    uint256 public deposited = 0;

    constructor(string memory name, string memory symbol, uint256 maxNftSupply) ERC721(name, symbol) {
        MAX_OKB = maxNftSupply;
    }

    /*function withdrawWinnings() public {
        require(winner[msg.sender] > 0, "No winning tokens");
        require(totalSupply() >= MAX_OKB, "Minting not done");
        require(!withdrawn[msg.sender], "Already withdrawn");

        withdrawn[msg.sender] = true;
        uint256 winnersWallet = (mintContrib * 30) / 100;
        uint256 winnings = (winner[msg.sender] * winnersWallet) / winnersCount;
        payable(msg.sender).transfer(winnings);
    }*/

    function withdraw(uint256 amount) public onlyOwner {
        //require(amount <= (((mintContrib * 70) / 100) - ownerWithdrawals), "Cannot withdraw more than 70%");
        //ownerWithdrawals = ownerWithdrawals + amount;
        payable(msg.sender).transfer(amount);
    }

    /*function emergencyWithdraw(uint256 amount) public onlyOwner {
        payable(msg.sender).transfer(amount);
    }*/

    function emergencyDeposit() public payable {
        require(msg.value > 0, "e1");
        deposited = deposited + msg.value;
    }

    /*function updateMintPrice(uint256 newPrice) public onlyOwner {
        tokenPrice = newPrice;
    }*/

    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }

    /*
    * Pause sale if active, make active if paused
    */
    function flipState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    /**
    * Mints OKB
    */
    function mintOKB(uint8 numberOfTokens) public payable {
        uint256 supply = totalSupply();
        require(numberOfTokens <= maxOKBPurchase, "e2");
        require((supply + numberOfTokens) <= MAX_OKB, "e3");
        require(saleIsActive, "e4");

        require((balanceOf(msg.sender) + numberOfTokens) <= 5, "e5");

        //require((tokenPrice * numberOfTokens) <= msg.value, "E15");

        for(uint256 i = 1; i <= numberOfTokens; i++) {
            if (supply < MAX_OKB) {
                _safeMint(msg.sender, supply + i);
            }
        }
    }



}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxNftSupply","type":"uint256"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_OKB","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyDeposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipState","outputs":[],"stateMutability":"nonpayable","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":"maxOKBPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintContrib","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintOKB","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedQty","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerWithdrawals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMaxPerWallet","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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"winner","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"winnersCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"withdrawn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

600a805460ff191690556000600b5560e0604052602e608081815290620020d060a03980516200003891600f91602090910190620001be565b50600060108190556012805460ff1916905560138190556014553480156200005f57600080fd5b50604051620020fe380380620020fe83398101604081905262000082916200030f565b82826000620000906200015c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000ec6301ffc9a760e01b62000160565b81516200010190600c906020850190620001be565b5080516200011790600d906020840190620001be565b506200012a6380ac58cd60e01b62000160565b6200013c635b5e139f60e01b62000160565b6200014e63780e9d6360e01b62000160565b5050600e5550620003ee9050565b3390565b6001600160e01b03198082161415620001965760405162461bcd60e51b81526004016200018d906200037f565b60405180910390fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b828054620001cc906200039b565b90600052602060002090601f016020900481019282620001f057600085556200023b565b82601f106200020b57805160ff19168380011785556200023b565b828001600101855582156200023b579182015b828111156200023b5782518255916020019190600101906200021e565b50620002499291506200024d565b5090565b5b808211156200024957600081556001016200024e565b600082601f83011262000275578081fd5b81516001600160401b0380821115620002925762000292620003d8565b6040516020601f8401601f1916820181018381118382101715620002ba57620002ba620003d8565b6040528382528584018101871015620002d1578485fd5b8492505b83831015620002f45785830181015182840182015291820191620002d5565b838311156200030557848185840101525b5095945050505050565b60008060006060848603121562000324578283fd5b83516001600160401b03808211156200033b578485fd5b620003498783880162000264565b945060208601519150808211156200035f578384fd5b506200036e8682870162000264565b925050604084015190509250925092565b602080825260029082015261329b60f11b604082015260600190565b600281046001821680620003b057607f821691505b60208210811415620003d257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611cd280620003fe6000396000f3fe6080604052600436106101ee5760003560e01c80636ef610921161010d578063a22cb465116100a0578063d885a21e1161006f578063d885a21e14610530578063e985e9c514610538578063eb8d244414610558578063eef49ee31461056d578063f240ca5614610582576101ee565b8063a22cb465146104b0578063b88d4fde146104d0578063c87b56dd146104f0578063cfb15ef014610510576101ee565b8063861d47b4116100dc578063861d47b41461045c5780638da5cb5b146104715780638e9203511461048657806395d89b411461049b576101ee565b80636ef61092146103f257806370a0823114610412578063807f54f61461043257806384c99fc214610447576101ee565b80632e1a7d4d1161018557806355f804b31161015457806355f804b3146103885780636352211e146103a85780636c0360eb146103c85780636de9f32b146103dd576101ee565b80632e1a7d4d1461031e57806342842e0e1461033e578063497138111461035e5780634a2eeebb14610373576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806318160ddd146102bc57806323b872dd146102d15780632ad95786146102f1576101ee565b806301ffc9a7146101f3578063027969961461022957806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611690565b610595565b604051610220919061182f565b60405180910390f35b34801561023557600080fd5b5061023e6105b8565b6040516102209190611b00565b34801561025757600080fd5b506102606105be565b604051610220919061183a565b34801561027957600080fd5b5061028d61028836600461170e565b610650565b60405161022091906117de565b3480156102a657600080fd5b506102ba6102b5366004611667565b61069c565b005b3480156102c857600080fd5b5061023e610734565b3480156102dd57600080fd5b506102ba6102ec366004611579565b61073a565b3480156102fd57600080fd5b5061031161030c36600461152d565b610772565b6040516102209190611b09565b34801561032a57600080fd5b506102ba61033936600461170e565b610787565b34801561034a57600080fd5b506102ba610359366004611579565b6107f7565b34801561036a57600080fd5b50610311610812565b34801561037f57600080fd5b5061023e61081b565b34801561039457600080fd5b506102ba6103a33660046116c8565b610821565b3480156103b457600080fd5b5061028d6103c336600461170e565b61086c565b3480156103d457600080fd5b506102606108a9565b3480156103e957600080fd5b5061023e6108b8565b3480156103fe57600080fd5b5061021361040d36600461152d565b6108be565b34801561041e57600080fd5b5061023e61042d36600461152d565b6108d3565b34801561043e57600080fd5b5061023e610917565b34801561045357600080fd5b5061023e61091d565b34801561046857600080fd5b5061023e610922565b34801561047d57600080fd5b5061028d610927565b34801561049257600080fd5b506102ba610936565b3480156104a757600080fd5b50610260610989565b3480156104bc57600080fd5b506102ba6104cb36600461162d565b610998565b3480156104dc57600080fd5b506102ba6104eb3660046115b4565b610a66565b3480156104fc57600080fd5b5061026061050b36600461170e565b610aa5565b34801561051c57600080fd5b5061031161052b36600461152d565b610b0a565b6102ba610b1f565b34801561054457600080fd5b50610213610553366004611547565b610b52565b34801561056457600080fd5b50610213610b80565b34801561057957600080fd5b5061023e610b89565b6102ba610590366004611726565b610b8f565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b600e5481565b6060600c80546105cd90611bba565b80601f01602080910402602001604051908101604052809291908181526020018280546105f990611bba565b80156106465780601f1061061b57610100808354040283529160200191610646565b820191906000526020600020905b81548152906001019060200180831161062957829003601f168201915b5050505050905090565b600061065b82610c82565b6106805760405162461bcd60e51b815260040161067790611aaa565b60405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006106a78261086c565b9050806001600160a01b0316836001600160a01b031614156106db5760405162461bcd60e51b8152600401610677906119c3565b806001600160a01b03166106ed610c97565b6001600160a01b03161480610709575061070981610553610c97565b6107255760405162461bcd60e51b8152600401610677906119fd565b61072f8383610c9b565b505050565b600b5490565b61074b610745610c97565b82610d09565b6107675760405162461bcd60e51b815260040161067790611933565b61072f838383610d8e565b60086020526000908152604090205460ff1681565b61078f610c97565b6001600160a01b03166107a0610927565b6001600160a01b0316146107c65760405162461bcd60e51b8152600401610677906118f9565b604051339082156108fc029083906000818181858888f193505050501580156107f3573d6000803e3d6000fd5b5050565b61072f83838360405180602001604052806000815250610a66565b600a5460ff1681565b60135481565b610829610c97565b6001600160a01b031661083a610927565b6001600160a01b0316146108605760405162461bcd60e51b8152600401610677906118f9565b61086981610f53565b50565b600080821161088d5760405162461bcd60e51b8152600401610677906118bf565b506000908152600560205260409020546001600160a01b031690565b6060600f80546105cd90611bba565b600b5481565b60116020526000908152604090205460ff1681565b60006001600160a01b0382166108fb5760405162461bcd60e51b815260040161067790611a70565b506001600160a01b031660009081526004602052604090205490565b60105481565b600a81565b600581565b6000546001600160a01b031690565b61093e610c97565b6001600160a01b031661094f610927565b6001600160a01b0316146109755760405162461bcd60e51b8152600401610677906118f9565b6012805460ff19811660ff90911615179055565b6060600d80546105cd90611bba565b6109a0610c97565b6001600160a01b0316826001600160a01b031614156109d15760405162461bcd60e51b815260040161067790611950565b80600360006109de610c97565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a22610c97565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a5a919061182f565b60405180910390a35050565b610a77610a71610c97565b83610d09565b610a935760405162461bcd60e51b815260040161067790611a53565b610a9f84848484610f66565b50505050565b6060610ab082610c82565b610acc5760405162461bcd60e51b8152600401610677906119a6565b6000610ad66108a9565b905080610ae284610f99565b604051602001610af392919061178f565b604051602081830303815290604052915050919050565b60096020526000908152604090205460ff1681565b60003411610b3f5760405162461bcd60e51b81526004016106779061186a565b34601454610b4d9190611b17565b601455565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60125460ff1681565b60145481565b6000610b99610734565b9050600a8260ff161115610bbf5760405162461bcd60e51b815260040161067790611ac7565b600e54610bcf60ff841683611b17565b1115610bed5760405162461bcd60e51b815260040161067790611886565b60125460ff16610c0f5760405162461bcd60e51b815260040161067790611a37565b60058260ff16610c1e336108d3565b610c289190611b17565b1115610c465760405162461bcd60e51b81526004016106779061196d565b60015b8260ff16811161072f57600e54821015610c7057610c7033610c6b8385611b17565b6110b4565b80610c7a81611bf5565b915050610c49565b60009081526006602052604090205460ff1690565b3390565b600081815260026020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cd08261086c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d1482610c82565b610d305760405162461bcd60e51b8152600401610677906118dc565b6000610d3b8361086c565b9050806001600160a01b0316846001600160a01b03161480610d765750836001600160a01b0316610d6b84610650565b6001600160a01b0316145b80610d865750610d868185610b52565b949350505050565b826001600160a01b0316610da18261086c565b6001600160a01b031614610dc75760405162461bcd60e51b815260040161067790611916565b6001600160a01b038216610ded5760405162461bcd60e51b815260040161067790611a8d565b610df883838361072f565b610e03600082610c9b565b6001600160a01b0383166000908152600460205260408120805491610e2783611b86565b9091555050600081815260056020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260049091528120805491610e6e83611bf5565b909155505060008181526007602052604090205460ff1615610f0d576001600160a01b0383166000908152600860205260408120805460ff1691610eb183611b9d565b82546101009290920a60ff8181021990931691831602179091556001600160a01b038416600090815260086020526040812080549092169250610ef383611c10565b91906101000a81548160ff021916908360ff160217905550505b80826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80516107f390600f90602084019061140d565b610f71848484610d8e565b610f7d848484846110ce565b610a9f5760405162461bcd60e51b815260040161067790611a1a565b606081610fbe57506040805180820190915260018152600360fc1b60208201526105b3565b8160005b8115610fe85780610fd281611bf5565b9150610fe19050600a83611b2f565b9150610fc2565b60008167ffffffffffffffff81111561101157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561103b576020820181803683370190505b5090505b8415610d8657611050600183611b43565b915061105d600a86611c30565b611068906030611b17565b60f81b81838151811061108b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506110ad600a86611b2f565b945061103f565b6107f38282604051806020016040528060008152506111ad565b60006110e2846001600160a01b03166111e0565b6110ee57506001610d86565b6000611176630a85bd0160e11b611103610c97565b88878760405160240161111994939291906117f2565b60408051601f19818403018152918152602080830180516001600160e01b03166001600160e01b031990951694909417909352805180820190915260038152620ca64760eb1b928101929092526001600160a01b038816916111e6565b905060008180602001905181019061118e91906116ac565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6111b783836111ff565b6111c460008484846110ce565b61072f5760405162461bcd60e51b8152600401610677906118a2565b3b151590565b60606111f58484600085611314565b90505b9392505050565b6001600160a01b0382166112255760405162461bcd60e51b8152600401610677906119e0565b61122e81610c82565b1561124b5760405162461bcd60e51b815260040161067790611ae3565b6112576000838361072f565b600081815260056020908152604080832080546001600160a01b0319166001600160a01b03871690811790915560068352818420805460ff191660019081179091559084526004909252909120546112ae91611b17565b6001600160a01b038316600090815260046020526040902055600b546112d5906001611b17565b600b5560405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156113365760405162461bcd60e51b815260040161067790611989565b61133f856111e0565b61135b5760405162461bcd60e51b81526004016106779061184d565b600080866001600160a01b031685876040516113779190611773565b60006040518083038185875af1925050503d80600081146113b4576040519150601f19603f3d011682016040523d82523d6000602084013e6113b9565b606091505b50915091506113c98282866113d4565b979650505050505050565b606083156113e35750816111f8565b8251156113f35782518084602001fd5b8160405162461bcd60e51b8152600401610677919061183a565b82805461141990611bba565b90600052602060002090601f01602090048101928261143b5760008555611481565b82601f1061145457805160ff1916838001178555611481565b82800160010185558215611481579182015b82811115611481578251825591602001919060010190611466565b5061148d929150611491565b5090565b5b8082111561148d5760008155600101611492565b600067ffffffffffffffff808411156114c1576114c1611c70565b604051601f8501601f1916810160200182811182821017156114e5576114e5611c70565b6040528481529150818385018610156114fd57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105b357600080fd5b60006020828403121561153e578081fd5b6111f882611516565b60008060408385031215611559578081fd5b61156283611516565b915061157060208401611516565b90509250929050565b60008060006060848603121561158d578081fd5b61159684611516565b92506115a460208501611516565b9150604084013590509250925092565b600080600080608085870312156115c9578081fd5b6115d285611516565b93506115e060208601611516565b925060408501359150606085013567ffffffffffffffff811115611602578182fd5b8501601f81018713611612578182fd5b611621878235602084016114a6565b91505092959194509250565b6000806040838503121561163f578182fd5b61164883611516565b91506020830135801515811461165c578182fd5b809150509250929050565b60008060408385031215611679578182fd5b61168283611516565b946020939093013593505050565b6000602082840312156116a1578081fd5b81356111f881611c86565b6000602082840312156116bd578081fd5b81516111f881611c86565b6000602082840312156116d9578081fd5b813567ffffffffffffffff8111156116ef578182fd5b8201601f810184136116ff578182fd5b610d86848235602084016114a6565b60006020828403121561171f578081fd5b5035919050565b600060208284031215611737578081fd5b813560ff811681146111f8578182fd5b6000815180845261175f816020860160208601611b5a565b601f01601f19169290920160200192915050565b60008251611785818460208701611b5a565b9190910192915050565b600066697066733a2f2f60c81b825283516117b1816007850160208801611b5a565b602f60f81b60079184019182015283516117d2816008840160208801611b5a565b01600801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061182590830184611747565b9695505050505050565b901515815260200190565b6000602082526111f86020830184611747565b60208082526003908201526265313160e81b604082015260600190565b602080825260029082015261653160f01b604082015260600190565b602080825260029082015261653360f01b604082015260600190565b60208082526003908201526265323360e81b604082015260600190565b60208082526003908201526265313360e81b604082015260600190565b60208082526003908201526232991960e91b604082015260600190565b60208082526003908201526265323960e81b604082015260600190565b60208082526003908201526232991b60e91b604082015260600190565b60208082526003908201526265313960e81b604082015260600190565b6020808252600390820152620ca62760eb1b604082015260600190565b602080825260029082015261653560f01b604082015260600190565b60208082526003908201526206531360ec1b604082015260600190565b602080825260039082015262194c4d60ea1b604082015260600190565b60208082526003908201526265313560e81b604082015260600190565b602080825260039082015262194c8d60ea1b604082015260600190565b60208082526003908201526232989b60e91b604082015260600190565b60208082526003908201526265323160e81b604082015260600190565b602080825260029082015261194d60f21b604082015260600190565b60208082526003908201526206532360ec1b604082015260600190565b60208082526003908201526232989960e91b604082015260600190565b60208082526003908201526265323760e81b604082015260600190565b60208082526003908201526265313760e81b604082015260600190565b602080825260029082015261329960f11b604082015260600190565b60208082526003908201526265323560e81b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611b2a57611b2a611c44565b500190565b600082611b3e57611b3e611c5a565b500490565b600082821015611b5557611b55611c44565b500390565b60005b83811015611b75578181015183820152602001611b5d565b83811115610a9f5750506000910152565b600081611b9557611b95611c44565b506000190190565b600060ff821680611bb057611bb0611c44565b6000190192915050565b600281046001821680611bce57607f821691505b60208210811415611bef57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c0957611c09611c44565b5060010190565b600060ff821660ff811415611c2757611c27611c44565b60010192915050565b600082611c3f57611c3f611c5a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461086957600080fdfea2646970667358221220edc0895230ca67225dff595658d68de90dd329c6b9f3793f6d60d4ca8946027964736f6c63430008000033516d65627a546d316e6369674c395733457565766e38677167374e5346513173366851784d356d5244776a664c50000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000000000000000000b4f6b61792042656172647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f4b420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636ef610921161010d578063a22cb465116100a0578063d885a21e1161006f578063d885a21e14610530578063e985e9c514610538578063eb8d244414610558578063eef49ee31461056d578063f240ca5614610582576101ee565b8063a22cb465146104b0578063b88d4fde146104d0578063c87b56dd146104f0578063cfb15ef014610510576101ee565b8063861d47b4116100dc578063861d47b41461045c5780638da5cb5b146104715780638e9203511461048657806395d89b411461049b576101ee565b80636ef61092146103f257806370a0823114610412578063807f54f61461043257806384c99fc214610447576101ee565b80632e1a7d4d1161018557806355f804b31161015457806355f804b3146103885780636352211e146103a85780636c0360eb146103c85780636de9f32b146103dd576101ee565b80632e1a7d4d1461031e57806342842e0e1461033e578063497138111461035e5780634a2eeebb14610373576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806318160ddd146102bc57806323b872dd146102d15780632ad95786146102f1576101ee565b806301ffc9a7146101f3578063027969961461022957806306fdde031461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611690565b610595565b604051610220919061182f565b60405180910390f35b34801561023557600080fd5b5061023e6105b8565b6040516102209190611b00565b34801561025757600080fd5b506102606105be565b604051610220919061183a565b34801561027957600080fd5b5061028d61028836600461170e565b610650565b60405161022091906117de565b3480156102a657600080fd5b506102ba6102b5366004611667565b61069c565b005b3480156102c857600080fd5b5061023e610734565b3480156102dd57600080fd5b506102ba6102ec366004611579565b61073a565b3480156102fd57600080fd5b5061031161030c36600461152d565b610772565b6040516102209190611b09565b34801561032a57600080fd5b506102ba61033936600461170e565b610787565b34801561034a57600080fd5b506102ba610359366004611579565b6107f7565b34801561036a57600080fd5b50610311610812565b34801561037f57600080fd5b5061023e61081b565b34801561039457600080fd5b506102ba6103a33660046116c8565b610821565b3480156103b457600080fd5b5061028d6103c336600461170e565b61086c565b3480156103d457600080fd5b506102606108a9565b3480156103e957600080fd5b5061023e6108b8565b3480156103fe57600080fd5b5061021361040d36600461152d565b6108be565b34801561041e57600080fd5b5061023e61042d36600461152d565b6108d3565b34801561043e57600080fd5b5061023e610917565b34801561045357600080fd5b5061023e61091d565b34801561046857600080fd5b5061023e610922565b34801561047d57600080fd5b5061028d610927565b34801561049257600080fd5b506102ba610936565b3480156104a757600080fd5b50610260610989565b3480156104bc57600080fd5b506102ba6104cb36600461162d565b610998565b3480156104dc57600080fd5b506102ba6104eb3660046115b4565b610a66565b3480156104fc57600080fd5b5061026061050b36600461170e565b610aa5565b34801561051c57600080fd5b5061031161052b36600461152d565b610b0a565b6102ba610b1f565b34801561054457600080fd5b50610213610553366004611547565b610b52565b34801561056457600080fd5b50610213610b80565b34801561057957600080fd5b5061023e610b89565b6102ba610590366004611726565b610b8f565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b600e5481565b6060600c80546105cd90611bba565b80601f01602080910402602001604051908101604052809291908181526020018280546105f990611bba565b80156106465780601f1061061b57610100808354040283529160200191610646565b820191906000526020600020905b81548152906001019060200180831161062957829003601f168201915b5050505050905090565b600061065b82610c82565b6106805760405162461bcd60e51b815260040161067790611aaa565b60405180910390fd5b506000908152600260205260409020546001600160a01b031690565b60006106a78261086c565b9050806001600160a01b0316836001600160a01b031614156106db5760405162461bcd60e51b8152600401610677906119c3565b806001600160a01b03166106ed610c97565b6001600160a01b03161480610709575061070981610553610c97565b6107255760405162461bcd60e51b8152600401610677906119fd565b61072f8383610c9b565b505050565b600b5490565b61074b610745610c97565b82610d09565b6107675760405162461bcd60e51b815260040161067790611933565b61072f838383610d8e565b60086020526000908152604090205460ff1681565b61078f610c97565b6001600160a01b03166107a0610927565b6001600160a01b0316146107c65760405162461bcd60e51b8152600401610677906118f9565b604051339082156108fc029083906000818181858888f193505050501580156107f3573d6000803e3d6000fd5b5050565b61072f83838360405180602001604052806000815250610a66565b600a5460ff1681565b60135481565b610829610c97565b6001600160a01b031661083a610927565b6001600160a01b0316146108605760405162461bcd60e51b8152600401610677906118f9565b61086981610f53565b50565b600080821161088d5760405162461bcd60e51b8152600401610677906118bf565b506000908152600560205260409020546001600160a01b031690565b6060600f80546105cd90611bba565b600b5481565b60116020526000908152604090205460ff1681565b60006001600160a01b0382166108fb5760405162461bcd60e51b815260040161067790611a70565b506001600160a01b031660009081526004602052604090205490565b60105481565b600a81565b600581565b6000546001600160a01b031690565b61093e610c97565b6001600160a01b031661094f610927565b6001600160a01b0316146109755760405162461bcd60e51b8152600401610677906118f9565b6012805460ff19811660ff90911615179055565b6060600d80546105cd90611bba565b6109a0610c97565b6001600160a01b0316826001600160a01b031614156109d15760405162461bcd60e51b815260040161067790611950565b80600360006109de610c97565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a22610c97565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a5a919061182f565b60405180910390a35050565b610a77610a71610c97565b83610d09565b610a935760405162461bcd60e51b815260040161067790611a53565b610a9f84848484610f66565b50505050565b6060610ab082610c82565b610acc5760405162461bcd60e51b8152600401610677906119a6565b6000610ad66108a9565b905080610ae284610f99565b604051602001610af392919061178f565b604051602081830303815290604052915050919050565b60096020526000908152604090205460ff1681565b60003411610b3f5760405162461bcd60e51b81526004016106779061186a565b34601454610b4d9190611b17565b601455565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b60125460ff1681565b60145481565b6000610b99610734565b9050600a8260ff161115610bbf5760405162461bcd60e51b815260040161067790611ac7565b600e54610bcf60ff841683611b17565b1115610bed5760405162461bcd60e51b815260040161067790611886565b60125460ff16610c0f5760405162461bcd60e51b815260040161067790611a37565b60058260ff16610c1e336108d3565b610c289190611b17565b1115610c465760405162461bcd60e51b81526004016106779061196d565b60015b8260ff16811161072f57600e54821015610c7057610c7033610c6b8385611b17565b6110b4565b80610c7a81611bf5565b915050610c49565b60009081526006602052604090205460ff1690565b3390565b600081815260026020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cd08261086c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d1482610c82565b610d305760405162461bcd60e51b8152600401610677906118dc565b6000610d3b8361086c565b9050806001600160a01b0316846001600160a01b03161480610d765750836001600160a01b0316610d6b84610650565b6001600160a01b0316145b80610d865750610d868185610b52565b949350505050565b826001600160a01b0316610da18261086c565b6001600160a01b031614610dc75760405162461bcd60e51b815260040161067790611916565b6001600160a01b038216610ded5760405162461bcd60e51b815260040161067790611a8d565b610df883838361072f565b610e03600082610c9b565b6001600160a01b0383166000908152600460205260408120805491610e2783611b86565b9091555050600081815260056020908152604080832080546001600160a01b0319166001600160a01b038716908117909155835260049091528120805491610e6e83611bf5565b909155505060008181526007602052604090205460ff1615610f0d576001600160a01b0383166000908152600860205260408120805460ff1691610eb183611b9d565b82546101009290920a60ff8181021990931691831602179091556001600160a01b038416600090815260086020526040812080549092169250610ef383611c10565b91906101000a81548160ff021916908360ff160217905550505b80826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80516107f390600f90602084019061140d565b610f71848484610d8e565b610f7d848484846110ce565b610a9f5760405162461bcd60e51b815260040161067790611a1a565b606081610fbe57506040805180820190915260018152600360fc1b60208201526105b3565b8160005b8115610fe85780610fd281611bf5565b9150610fe19050600a83611b2f565b9150610fc2565b60008167ffffffffffffffff81111561101157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561103b576020820181803683370190505b5090505b8415610d8657611050600183611b43565b915061105d600a86611c30565b611068906030611b17565b60f81b81838151811061108b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506110ad600a86611b2f565b945061103f565b6107f38282604051806020016040528060008152506111ad565b60006110e2846001600160a01b03166111e0565b6110ee57506001610d86565b6000611176630a85bd0160e11b611103610c97565b88878760405160240161111994939291906117f2565b60408051601f19818403018152918152602080830180516001600160e01b03166001600160e01b031990951694909417909352805180820190915260038152620ca64760eb1b928101929092526001600160a01b038816916111e6565b905060008180602001905181019061118e91906116ac565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6111b783836111ff565b6111c460008484846110ce565b61072f5760405162461bcd60e51b8152600401610677906118a2565b3b151590565b60606111f58484600085611314565b90505b9392505050565b6001600160a01b0382166112255760405162461bcd60e51b8152600401610677906119e0565b61122e81610c82565b1561124b5760405162461bcd60e51b815260040161067790611ae3565b6112576000838361072f565b600081815260056020908152604080832080546001600160a01b0319166001600160a01b03871690811790915560068352818420805460ff191660019081179091559084526004909252909120546112ae91611b17565b6001600160a01b038316600090815260046020526040902055600b546112d5906001611b17565b600b5560405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060824710156113365760405162461bcd60e51b815260040161067790611989565b61133f856111e0565b61135b5760405162461bcd60e51b81526004016106779061184d565b600080866001600160a01b031685876040516113779190611773565b60006040518083038185875af1925050503d80600081146113b4576040519150601f19603f3d011682016040523d82523d6000602084013e6113b9565b606091505b50915091506113c98282866113d4565b979650505050505050565b606083156113e35750816111f8565b8251156113f35782518084602001fd5b8160405162461bcd60e51b8152600401610677919061183a565b82805461141990611bba565b90600052602060002090601f01602090048101928261143b5760008555611481565b82601f1061145457805160ff1916838001178555611481565b82800160010185558215611481579182015b82811115611481578251825591602001919060010190611466565b5061148d929150611491565b5090565b5b8082111561148d5760008155600101611492565b600067ffffffffffffffff808411156114c1576114c1611c70565b604051601f8501601f1916810160200182811182821017156114e5576114e5611c70565b6040528481529150818385018610156114fd57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146105b357600080fd5b60006020828403121561153e578081fd5b6111f882611516565b60008060408385031215611559578081fd5b61156283611516565b915061157060208401611516565b90509250929050565b60008060006060848603121561158d578081fd5b61159684611516565b92506115a460208501611516565b9150604084013590509250925092565b600080600080608085870312156115c9578081fd5b6115d285611516565b93506115e060208601611516565b925060408501359150606085013567ffffffffffffffff811115611602578182fd5b8501601f81018713611612578182fd5b611621878235602084016114a6565b91505092959194509250565b6000806040838503121561163f578182fd5b61164883611516565b91506020830135801515811461165c578182fd5b809150509250929050565b60008060408385031215611679578182fd5b61168283611516565b946020939093013593505050565b6000602082840312156116a1578081fd5b81356111f881611c86565b6000602082840312156116bd578081fd5b81516111f881611c86565b6000602082840312156116d9578081fd5b813567ffffffffffffffff8111156116ef578182fd5b8201601f810184136116ff578182fd5b610d86848235602084016114a6565b60006020828403121561171f578081fd5b5035919050565b600060208284031215611737578081fd5b813560ff811681146111f8578182fd5b6000815180845261175f816020860160208601611b5a565b601f01601f19169290920160200192915050565b60008251611785818460208701611b5a565b9190910192915050565b600066697066733a2f2f60c81b825283516117b1816007850160208801611b5a565b602f60f81b60079184019182015283516117d2816008840160208801611b5a565b01600801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061182590830184611747565b9695505050505050565b901515815260200190565b6000602082526111f86020830184611747565b60208082526003908201526265313160e81b604082015260600190565b602080825260029082015261653160f01b604082015260600190565b602080825260029082015261653360f01b604082015260600190565b60208082526003908201526265323360e81b604082015260600190565b60208082526003908201526265313360e81b604082015260600190565b60208082526003908201526232991960e91b604082015260600190565b60208082526003908201526265323960e81b604082015260600190565b60208082526003908201526232991b60e91b604082015260600190565b60208082526003908201526265313960e81b604082015260600190565b6020808252600390820152620ca62760eb1b604082015260600190565b602080825260029082015261653560f01b604082015260600190565b60208082526003908201526206531360ec1b604082015260600190565b602080825260039082015262194c4d60ea1b604082015260600190565b60208082526003908201526265313560e81b604082015260600190565b602080825260039082015262194c8d60ea1b604082015260600190565b60208082526003908201526232989b60e91b604082015260600190565b60208082526003908201526265323160e81b604082015260600190565b602080825260029082015261194d60f21b604082015260600190565b60208082526003908201526206532360ec1b604082015260600190565b60208082526003908201526232989960e91b604082015260600190565b60208082526003908201526265323760e81b604082015260600190565b60208082526003908201526265313760e81b604082015260600190565b602080825260029082015261329960f11b604082015260600190565b60208082526003908201526265323560e81b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611b2a57611b2a611c44565b500190565b600082611b3e57611b3e611c5a565b500490565b600082821015611b5557611b55611c44565b500390565b60005b83811015611b75578181015183820152602001611b5d565b83811115610a9f5750506000910152565b600081611b9557611b95611c44565b506000190190565b600060ff821680611bb057611bb0611c44565b6000190192915050565b600281046001821680611bce57607f821691505b60208210811415611bef57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c0957611c09611c44565b5060010190565b600060ff821660ff811415611c2757611c27611c44565b60010192915050565b600082611c3f57611c3f611c5a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461086957600080fdfea2646970667358221220edc0895230ca67225dff595658d68de90dd329c6b9f3793f6d60d4ca8946027964736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000000000000000000b4f6b61792042656172647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f4b420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Okay Beards
Arg [1] : symbol (string): OKB
Arg [2] : maxNftSupply (uint256): 5555

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4f6b617920426561726473000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4f4b420000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

39183:2847:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10229:150;;;;;;;;;;-1:-1:-1;10229:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20648:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23709:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26459:180::-;;;;;;;;;;-1:-1:-1;26459:180:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26072:321::-;;;;;;;;;;-1:-1:-1;26072:321:0;;;;;:::i;:::-;;:::i;:::-;;25489:268;;;;;;;;;;;;;:::i;27286:259::-;;;;;;;;;;-1:-1:-1;27286:259:0;;;;;:::i;:::-;;:::i;20373:40::-;;;;;;;;;;-1:-1:-1;20373:40:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40476:275::-;;;;;;;;;;-1:-1:-1;40476:275:0;;;;;:::i;:::-;;:::i;27616:151::-;;;;;;;;;;-1:-1:-1;27616:151:0;;;;;:::i;:::-;;:::i;20470:29::-;;;;;;;;;;;;;:::i;39774:35::-;;;;;;;;;;;;;:::i;41140:99::-;;;;;;;;;;-1:-1:-1;41140:99:0;;;;;:::i;:::-;;:::i;23388:254::-;;;;;;;;;;-1:-1:-1;23388:254:0;;;;;:::i;:::-;;:::i;25066:97::-;;;;;;;;;;;;;:::i;20508:31::-;;;;;;;;;;;;;:::i;39682:42::-;;;;;;;;;;-1:-1:-1;39682:42:0;;;;;:::i;:::-;;:::i;23105:221::-;;;;;;;;;;-1:-1:-1;23105:221:0;;;;;:::i;:::-;;:::i;39639:30::-;;;;;;;;;;;;;:::i;39304:43::-;;;;;;;;;;;;;:::i;39356:::-;;;;;;;;;;;;;:::i;37935:87::-;;;;;;;;;;;;;:::i;41314:85::-;;;;;;;;;;;;;:::i;23878:104::-;;;;;;;;;;;;;:::i;26711:273::-;;;;;;;;;;-1:-1:-1;26711:273:0;;;;;:::i;:::-;;:::i;27838:239::-;;;;;;;;;;-1:-1:-1;27838:239:0;;;;;:::i;:::-;;:::i;24053:774::-;;;;;;;;;;-1:-1:-1;24053:774:0;;;;;:::i;:::-;;:::i;20420:43::-;;;;;;;;;;-1:-1:-1;20420:43:0;;;;;:::i;:::-;;:::i;40886:134::-;;;:::i;27055:164::-;;;;;;;;;;-1:-1:-1;27055:164:0;;;;;:::i;:::-;;:::i;39733:32::-;;;;;;;;;;;;;:::i;39818:28::-;;;;;;;;;;;;;:::i;41441:580::-;;;;;;:::i;:::-;;:::i;10229:150::-;-1:-1:-1;;;;;;10338:33:0;;10314:4;10338:33;;;:20;:33;;;;;;;;10229:150;;;;:::o;20648:22::-;;;;:::o;23709:100::-;23763:13;23796:5;23789:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23709:100;:::o;26459:180::-;26535:7;26563:16;26571:7;26563;:16::i;:::-;26555:32;;;;-1:-1:-1;;;26555:32:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26607:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26607:24:0;;26459:180::o;26072:321::-;26153:13;26169:23;26184:7;26169:14;:23::i;:::-;26153:39;;26217:5;-1:-1:-1;;;;;26211:11:0;:2;-1:-1:-1;;;;;26211:11:0;;;26203:27;;;;-1:-1:-1;;;26203:27:0;;;;;;;:::i;:::-;26267:5;-1:-1:-1;;;;;26251:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26251:21:0;;:69;;;;26276:44;26300:5;26307:12;:10;:12::i;26276:44::-;26243:108;;;;-1:-1:-1;;;26243:108:0;;;;;;;:::i;:::-;26364:21;26373:2;26377:7;26364:8;:21::i;:::-;26072:321;;;:::o;25489:268::-;25737:12;;25489:268;:::o;27286:259::-;27447:41;27466:12;:10;:12::i;:::-;27480:7;27447:18;:41::i;:::-;27439:57;;;;-1:-1:-1;;;27439:57:0;;;;;;;:::i;:::-;27509:28;27519:4;27525:2;27529:7;27509:9;:28::i;20373:40::-;;;;;;;;;;;;;;;:::o;40476:275::-;38166:12;:10;:12::i;:::-;-1:-1:-1;;;;;38155:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38155:23:0;;38147:39;;;;-1:-1:-1;;;38147:39:0;;;;;;;:::i;:::-;40707:36:::1;::::0;40715:10:::1;::::0;40707:36;::::1;;;::::0;40736:6;;40707:36:::1;::::0;;;40736:6;40715:10;40707:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40476:275:::0;:::o;27616:151::-;27720:39;27737:4;27743:2;27747:7;27720:39;;;;;;;;;;;;:16;:39::i;20470:29::-;;;;;;:::o;39774:35::-;;;;:::o;41140:99::-;38166:12;:10;:12::i;:::-;-1:-1:-1;;;;;38155:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38155:23:0;;38147:39;;;;-1:-1:-1;;;38147:39:0;;;;;;;:::i;:::-;41211:20:::1;41223:7;41211:11;:20::i;:::-;41140:99:::0;:::o;23388:254::-;23460:7;23588:1;23578:7;:11;23570:27;;;;-1:-1:-1;;;23570:27:0;;;;;;;:::i;:::-;-1:-1:-1;23615:19:0;;;;:10;:19;;;;;;-1:-1:-1;;;;;23615:19:0;;23388:254::o;25066:97::-;25114:13;25147:8;25140:15;;;;;:::i;20508:31::-;;;;:::o;39682:42::-;;;;;;;;;;;;;;;:::o;23105:221::-;23177:7;-1:-1:-1;;;;;23205:19:0;;23197:35;;;;-1:-1:-1;;;23197:35:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23299:19:0;;;;;:12;:19;;;;;;;23105:221::o;39639:30::-;;;;:::o;39304:43::-;39345:2;39304:43;:::o;39356:::-;39398:1;39356:43;:::o;37935:87::-;37981:7;38008:6;-1:-1:-1;;;;;38008:6:0;37935:87;:::o;41314:85::-;38166:12;:10;:12::i;:::-;-1:-1:-1;;;;;38155:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;38155:23:0;;38147:39;;;;-1:-1:-1;;;38147:39:0;;;;;;;:::i;:::-;41379:12:::1;::::0;;-1:-1:-1;;41363:28:0;::::1;41379:12;::::0;;::::1;41378:13;41363:28;::::0;;41314:85::o;23878:104::-;23934:13;23967:7;23960:14;;;;;:::i;26711:273::-;26826:12;:10;:12::i;:::-;-1:-1:-1;;;;;26814:24:0;:8;-1:-1:-1;;;;;26814:24:0;;;26806:40;;;;-1:-1:-1;;;26806:40:0;;;;;;;:::i;:::-;26904:8;26859:18;:32;26878:12;:10;:12::i;:::-;-1:-1:-1;;;;;26859:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26859:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26859:53:0;;;;;;;;;;;26943:12;:10;:12::i;:::-;-1:-1:-1;;;;;26928:48:0;;26967:8;26928:48;;;;;;:::i;:::-;;;;;;;;26711:273;;:::o;27838:239::-;27970:41;27989:12;:10;:12::i;:::-;28003:7;27970:18;:41::i;:::-;27962:57;;;;-1:-1:-1;;;27962:57:0;;;;;;;:::i;:::-;28030:39;28044:4;28050:2;28054:7;28063:5;28030:13;:39::i;:::-;27838:239;;;;:::o;24053:774::-;24126:13;24160:16;24168:7;24160;:16::i;:::-;24152:32;;;;-1:-1:-1;;;24152:32:0;;;;;;;:::i;:::-;24255:18;24276:9;:7;:9::i;:::-;24255:30;;24788:4;24799:18;:7;:16;:18::i;:::-;24760:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24746:73;;;24053:774;;;:::o;20420:43::-;;;;;;;;;;;;;;;:::o;40886:134::-;40960:1;40948:9;:13;40940:28;;;;-1:-1:-1;;;40940:28:0;;;;;;;:::i;:::-;41003:9;40991;;:21;;;;:::i;:::-;40979:9;:33;40886:134::o;27055:164::-;-1:-1:-1;;;;;27176:25:0;;;27152:4;27176:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27055:164::o;39733:32::-;;;;;;:::o;39818:28::-;;;;:::o;41441:580::-;41506:14;41523:13;:11;:13::i;:::-;41506:30;;39345:2;41555:14;:32;;;;41547:47;;;;-1:-1:-1;;;41547:47:0;;;;;;;:::i;:::-;41642:7;;41614:23;;;;:6;:23;:::i;:::-;41613:36;;41605:51;;;;-1:-1:-1;;;41605:51:0;;;;;;;:::i;:::-;41675:12;;;;41667:27;;;;-1:-1:-1;;;41667:27:0;;;;;;;:::i;:::-;41759:1;41740:14;41716:38;;:21;41726:10;41716:9;:21::i;:::-;:38;;;;:::i;:::-;41715:45;;41707:60;;;;-1:-1:-1;;;41707:60:0;;;;;;;:::i;:::-;41869:1;41853:161;41877:14;41872:19;;:1;:19;41853:161;;41926:7;;41917:6;:16;41913:90;;;41954:33;41964:10;41976;41985:1;41976:6;:10;:::i;:::-;41954:9;:33::i;:::-;41893:3;;;;:::i;:::-;;;;41853:161;;29497:167;29562:4;29636:20;;;:11;:20;;;;;;;;;29497:167::o;730:115::-;826:10;730:115;:::o;35927:192::-;36002:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36002:29:0;-1:-1:-1;;;;;36002:29:0;;;;;;;;:24;;36056:23;36002:24;36056:14;:23::i;:::-;-1:-1:-1;;;;;36047:46:0;;;;;;;;;;;35927:192;;:::o;29831:314::-;29924:4;29949:16;29957:7;29949;:16::i;:::-;29941:32;;;;-1:-1:-1;;;29941:32:0;;;;;;;:::i;:::-;29984:13;30000:23;30015:7;30000:14;:23::i;:::-;29984:39;;30053:5;-1:-1:-1;;;;;30042:16:0;:7;-1:-1:-1;;;;;30042:16:0;;:51;;;;30086:7;-1:-1:-1;;;;;30062:31:0;:20;30074:7;30062:11;:20::i;:::-;-1:-1:-1;;;;;30062:31:0;;30042:51;:94;;;;30097:39;30121:5;30128:7;30097:23;:39::i;:::-;30034:103;29831:314;-1:-1:-1;;;;29831:314:0:o;33381:600::-;33506:4;-1:-1:-1;;;;;33479:31:0;:23;33494:7;33479:14;:23::i;:::-;-1:-1:-1;;;;;33479:31:0;;33471:47;;;;-1:-1:-1;;;33471:47:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33555:16:0;;33547:32;;;;-1:-1:-1;;;33547:32:0;;;;;;;:::i;:::-;33592:39;33613:4;33619:2;33623:7;33592:20;:39::i;:::-;33696:29;33713:1;33717:7;33696:8;:29::i;:::-;-1:-1:-1;;;;;33738:18:0;;;;;;:12;:18;;;;;:20;;;;;;:::i;:::-;;;;-1:-1:-1;;33769:19:0;;;;:10;:19;;;;;;;;:24;;-1:-1:-1;;;;;;33769:24:0;-1:-1:-1;;;;;33769:24:0;;;;;;;;33804:16;;:12;:16;;;;;:18;;;;;;:::i;:::-;;;;-1:-1:-1;;33839:20:0;;;;:11;:20;;;;;;;;33835:94;;;-1:-1:-1;;;;;33876:12:0;;;;;;:6;:12;;;;;:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33905:10:0;;-1:-1:-1;33905:10:0;;;:6;:10;;;;;:12;;;;;;-1:-1:-1;33905:12:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;33835:94;33965:7;33961:2;-1:-1:-1;;;;;33946:27:0;33955:4;-1:-1:-1;;;;;33946:27:0;;;;;;;;;;;33381:600;;;:::o;34586:100::-;34659:19;;;;:8;;:19;;;;;:::i;28959:225::-;29073:28;29083:4;29089:2;29093:7;29073:9;:28::i;:::-;29120:48;29143:4;29149:2;29153:7;29162:5;29120:22;:48::i;:::-;29112:64;;;;-1:-1:-1;;;29112:64:0;;;;;;;:::i;17174:723::-;17230:13;17451:10;17447:53;;-1:-1:-1;17478:10:0;;;;;;;;;;;;-1:-1:-1;;;17478:10:0;;;;;;17447:53;17525:5;17510:12;17566:78;17573:9;;17566:78;;17599:8;;;;:::i;:::-;;-1:-1:-1;17622:10:0;;-1:-1:-1;17630:2:0;17622:10;;:::i;:::-;;;17566:78;;;17654:19;17686:6;17676:17;;;;;;-1:-1:-1;;;17676:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17676:17:0;;17654:39;;17704:154;17711:10;;17704:154;;17738:11;17748:1;17738:11;;:::i;:::-;;-1:-1:-1;17807:10:0;17815:2;17807:5;:10;:::i;:::-;17794:24;;:2;:24;:::i;:::-;17781:39;;17764:6;17771;17764:14;;;;;;-1:-1:-1;;;17764:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17764:56:0;;;;;;;;-1:-1:-1;17835:11:0;17844:2;17835:11;;:::i;:::-;;;17704:154;;30488:110;30564:26;30574:2;30578:7;30564:26;;;;;;;;;;;;:9;:26::i;35251:557::-;35372:4;35399:15;:2;-1:-1:-1;;;;;35399:13:0;;:15::i;:::-;35394:60;;-1:-1:-1;35438:4:0;35431:11;;35394:60;35464:23;35490:205;-1:-1:-1;;;35603:12:0;:10;:12::i;:::-;35630:4;35649:7;35671:5;35506:181;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;35506:181:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35506:181:0;-1:-1:-1;;;;;;35506:181:0;;;;;;;;;;35490:205;;;;;;;;;;;-1:-1:-1;;;35490:205:0;;;;;;;-1:-1:-1;;;;;35490:15:0;;;;:205::i;:::-;35464:231;;35706:13;35733:10;35722:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35773:26:0;-1:-1:-1;;;35773:26:0;;-1:-1:-1;;;35251:557:0;;;;;;:::o;30825:203::-;30921:18;30927:2;30931:7;30921:5;:18::i;:::-;30958:54;30989:1;30993:2;30997:7;31006:5;30958:22;:54::i;:::-;30950:70;;;;-1:-1:-1;;;30950:70:0;;;;;;;:::i;11732:422::-;12099:20;12138:8;;;11732:422::o;14626:195::-;14729:12;14761:52;14783:6;14791:4;14797:1;14800:12;14761:21;:52::i;:::-;14754:59;;14626:195;;;;;;:::o;31560:1261::-;-1:-1:-1;;;;;31640:16:0;;31632:32;;;;-1:-1:-1;;;31632:32:0;;;;;;;:::i;:::-;31684:16;31692:7;31684;:16::i;:::-;31683:17;31675:33;;;;-1:-1:-1;;;31675:33:0;;;;;;;:::i;:::-;31721:45;31750:1;31754:2;31758:7;31721:20;:45::i;:::-;31779:19;;;;:10;:19;;;;;;;;:24;;-1:-1:-1;;;;;;31779:24:0;-1:-1:-1;;;;;31779:24:0;;;;;;;;31814:11;:20;;;;;:27;;-1:-1:-1;;31814:27:0;-1:-1:-1;31814:27:0;;;;;;31873:16;;;:12;:16;;;;;;;:20;;;:::i;:::-;-1:-1:-1;;;;;31854:16:0;;;;;;:12;:16;;;;;:39;31919:12;;:16;;31934:1;31919:16;:::i;:::-;31904:12;:31;32780:33;;32805:7;;-1:-1:-1;;;;;32780:33:0;;;32797:1;;32780:33;;32797:1;;32780:33;31560:1261;;:::o;15639:469::-;15766:12;15824:5;15799:21;:30;;15791:46;;;;-1:-1:-1;;;15791:46:0;;;;;;;:::i;:::-;15856:18;15867:6;15856:10;:18::i;:::-;15848:34;;;;-1:-1:-1;;;15848:34:0;;;;;;;:::i;:::-;15956:12;15970:23;15997:6;-1:-1:-1;;;;;15997:11:0;16017:5;16025:4;15997:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15955:75;;;;16048:52;16066:7;16075:10;16087:12;16048:17;:52::i;:::-;16041:59;15639:469;-1:-1:-1;;;;;;;15639:469:0:o;16118:742::-;16233:12;16262:7;16258:595;;;-1:-1:-1;16293:10:0;16286:17;;16258:595;16407:17;;:21;16403:439;;16670:10;16664:17;16731:15;16718:10;16714:2;16710:19;16703:44;16618:148;16813:12;16806:20;;-1:-1:-1;;;16806:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:289::-;;4307:2;4295:9;4286:7;4282:23;4278:32;4275:2;;;4328:6;4320;4313:22;4275:2;4372:9;4359:23;4422:4;4415:5;4411:16;4404:5;4401:27;4391:2;;4447:6;4439;4432:22;4491:259;;4572:5;4566:12;4599:6;4594:3;4587:19;4615:63;4671:6;4664:4;4659:3;4655:14;4648:4;4641:5;4637:16;4615:63;:::i;:::-;4732:2;4711:15;-1:-1:-1;;4707:29:1;4698:39;;;;4739:4;4694:50;;4542:208;-1:-1:-1;;4542:208:1:o;4755:274::-;;4922:6;4916:13;4938:53;4984:6;4979:3;4972:4;4964:6;4960:17;4938:53;:::i;:::-;5007:16;;;;;4892:137;-1:-1:-1;;4892:137:1:o;5034:750::-;;-1:-1:-1;;;5440:3:1;5433:22;5484:6;5478:13;5500:61;5554:6;5550:1;5545:3;5541:11;5534:4;5526:6;5522:17;5500:61;:::i;:::-;-1:-1:-1;;;5620:1:1;5580:16;;;5612:10;;;5605:23;5653:13;;5675:62;5653:13;5724:1;5716:10;;5709:4;5697:17;;5675:62;:::i;:::-;5757:17;5776:1;5753:25;;5423:361;-1:-1:-1;;;;5423:361:1:o;5789:203::-;-1:-1:-1;;;;;5953:32:1;;;;5935:51;;5923:2;5908:18;;5890:102::o;5997:506::-;-1:-1:-1;;;;;6282:15:1;;;6264:34;;6334:15;;6329:2;6314:18;;6307:43;6381:2;6366:18;;6359:34;;;6429:3;6424:2;6409:18;;6402:31;;;5997:506;;6450:47;;6477:19;;6469:6;6450:47;:::i;:::-;6442:55;6216:287;-1:-1:-1;;;;;;6216:287:1:o;6508:187::-;6673:14;;6666:22;6648:41;;6636:2;6621:18;;6603:92::o;6700:221::-;;6849:2;6838:9;6831:21;6869:46;6911:2;6900:9;6896:18;6888:6;6869:46;:::i;6926:326::-;7128:2;7110:21;;;7167:1;7147:18;;;7140:29;-1:-1:-1;;;7200:2:1;7185:18;;7178:33;7243:2;7228:18;;7100:152::o;7257:325::-;7459:2;7441:21;;;7498:1;7478:18;;;7471:29;-1:-1:-1;;;7531:2:1;7516:18;;7509:32;7573:2;7558:18;;7431:151::o;7587:325::-;7789:2;7771:21;;;7828:1;7808:18;;;7801:29;-1:-1:-1;;;7861:2:1;7846:18;;7839:32;7903:2;7888:18;;7761:151::o;7917:326::-;8119:2;8101:21;;;8158:1;8138:18;;;8131:29;-1:-1:-1;;;8191:2:1;8176:18;;8169:33;8234:2;8219:18;;8091:152::o;8248:326::-;8450:2;8432:21;;;8489:1;8469:18;;;8462:29;-1:-1:-1;;;8522:2:1;8507:18;;8500:33;8565:2;8550:18;;8422:152::o;8579:326::-;8781:2;8763:21;;;8820:1;8800:18;;;8793:29;-1:-1:-1;;;8853:2:1;8838:18;;8831:33;8896:2;8881:18;;8753:152::o;8910:326::-;9112:2;9094:21;;;9151:1;9131:18;;;9124:29;-1:-1:-1;;;9184:2:1;9169:18;;9162:33;9227:2;9212:18;;9084:152::o;9241:326::-;9443:2;9425:21;;;9482:1;9462:18;;;9455:29;-1:-1:-1;;;9515:2:1;9500:18;;9493:33;9558:2;9543:18;;9415:152::o;9572:326::-;9774:2;9756:21;;;9813:1;9793:18;;;9786:29;-1:-1:-1;;;9846:2:1;9831:18;;9824:33;9889:2;9874:18;;9746:152::o;9903:326::-;10105:2;10087:21;;;10144:1;10124:18;;;10117:29;-1:-1:-1;;;10177:2:1;10162:18;;10155:33;10220:2;10205:18;;10077:152::o;10234:325::-;10436:2;10418:21;;;10475:1;10455:18;;;10448:29;-1:-1:-1;;;10508:2:1;10493:18;;10486:32;10550:2;10535:18;;10408:151::o;10564:326::-;10766:2;10748:21;;;10805:1;10785:18;;;10778:29;-1:-1:-1;;;10838:2:1;10823:18;;10816:33;10881:2;10866:18;;10738:152::o;10895:326::-;11097:2;11079:21;;;11136:1;11116:18;;;11109:29;-1:-1:-1;;;11169:2:1;11154:18;;11147:33;11212:2;11197:18;;11069:152::o;11226:326::-;11428:2;11410:21;;;11467:1;11447:18;;;11440:29;-1:-1:-1;;;11500:2:1;11485:18;;11478:33;11543:2;11528:18;;11400:152::o;11557:326::-;11759:2;11741:21;;;11798:1;11778:18;;;11771:29;-1:-1:-1;;;11831:2:1;11816:18;;11809:33;11874:2;11859:18;;11731:152::o;11888:326::-;12090:2;12072:21;;;12129:1;12109:18;;;12102:29;-1:-1:-1;;;12162:2:1;12147:18;;12140:33;12205:2;12190:18;;12062:152::o;12219:326::-;12421:2;12403:21;;;12460:1;12440:18;;;12433:29;-1:-1:-1;;;12493:2:1;12478:18;;12471:33;12536:2;12521:18;;12393:152::o;12550:325::-;12752:2;12734:21;;;12791:1;12771:18;;;12764:29;-1:-1:-1;;;12824:2:1;12809:18;;12802:32;12866:2;12851:18;;12724:151::o;12880:326::-;13082:2;13064:21;;;13121:1;13101:18;;;13094:29;-1:-1:-1;;;13154:2:1;13139:18;;13132:33;13197:2;13182:18;;13054:152::o;13211:326::-;13413:2;13395:21;;;13452:1;13432:18;;;13425:29;-1:-1:-1;;;13485:2:1;13470:18;;13463:33;13528:2;13513:18;;13385:152::o;13542:326::-;13744:2;13726:21;;;13783:1;13763:18;;;13756:29;-1:-1:-1;;;13816:2:1;13801:18;;13794:33;13859:2;13844:18;;13716:152::o;13873:326::-;14075:2;14057:21;;;14114:1;14094:18;;;14087:29;-1:-1:-1;;;14147:2:1;14132:18;;14125:33;14190:2;14175:18;;14047:152::o;14204:325::-;14406:2;14388:21;;;14445:1;14425:18;;;14418:29;-1:-1:-1;;;14478:2:1;14463:18;;14456:32;14520:2;14505:18;;14378:151::o;14534:326::-;14736:2;14718:21;;;14775:1;14755:18;;;14748:29;-1:-1:-1;;;14808:2:1;14793:18;;14786:33;14851:2;14836:18;;14708:152::o;14865:177::-;15011:25;;;14999:2;14984:18;;14966:76::o;15047:184::-;15219:4;15207:17;;;;15189:36;;15177:2;15162:18;;15144:87::o;15236:128::-;;15307:1;15303:6;15300:1;15297:13;15294:2;;;15313:18;;:::i;:::-;-1:-1:-1;15349:9:1;;15284:80::o;15369:120::-;;15435:1;15425:2;;15440:18;;:::i;:::-;-1:-1:-1;15474:9:1;;15415:74::o;15494:125::-;;15562:1;15559;15556:8;15553:2;;;15567:18;;:::i;:::-;-1:-1:-1;15604:9:1;;15543:76::o;15624:258::-;15696:1;15706:113;15720:6;15717:1;15714:13;15706:113;;;15796:11;;;15790:18;15777:11;;;15770:39;15742:2;15735:10;15706:113;;;15837:6;15834:1;15831:13;15828:2;;;-1:-1:-1;;15872:1:1;15854:16;;15847:27;15677:205::o;15887:136::-;;15954:5;15944:2;;15963:18;;:::i;:::-;-1:-1:-1;;;15999:18:1;;15934:89::o;16028:178::-;;16109:4;16102:5;16098:16;16133:7;16123:2;;16144:18;;:::i;:::-;-1:-1:-1;;16180:20:1;;16073:133;-1:-1:-1;;16073:133:1:o;16211:380::-;16296:1;16286:12;;16343:1;16333:12;;;16354:2;;16408:4;16400:6;16396:17;16386:27;;16354:2;16461;16453:6;16450:14;16430:18;16427:38;16424:2;;;16507:10;16502:3;16498:20;16495:1;16488:31;16542:4;16539:1;16532:15;16570:4;16567:1;16560:15;16424:2;;16266:325;;;:::o;16596:135::-;;-1:-1:-1;;16656:17:1;;16653:2;;;16676:18;;:::i;:::-;-1:-1:-1;16723:1:1;16712:13;;16643:88::o;16736:175::-;;16817:4;16810:5;16806:16;16846:4;16837:7;16834:17;16831:2;;;16854:18;;:::i;:::-;16903:1;16890:15;;16781:130;-1:-1:-1;;16781:130:1:o;16916:112::-;;16974:1;16964:2;;16979:18;;:::i;:::-;-1:-1:-1;17013:9:1;;16954:74::o;17033:127::-;17094:10;17089:3;17085:20;17082:1;17075:31;17125:4;17122:1;17115:15;17149:4;17146:1;17139:15;17165:127;17226:10;17221:3;17217:20;17214:1;17207:31;17257:4;17254:1;17247:15;17281:4;17278:1;17271:15;17297:127;17358:10;17353:3;17349:20;17346:1;17339:31;17389:4;17386:1;17379:15;17413:4;17410:1;17403:15;17429:133;-1:-1:-1;;;;;;17505:32:1;;17495:43;;17485:2;;17552:1;17549;17542:12

Swarm Source

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