ETH Price: $3,389.30 (-1.55%)
Gas: 2 Gwei

Token

Baby Ape Mutant Club (BAMC)
 

Overview

Max Total Supply

0 BAMC

Holders

3,893

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
noblemancrypto.eth
Balance
1 BAMC
0x589803DFa267DA06dF06CA9c8F64c3ccB0197Fb6
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:
BabyApeMutantClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//  ______  ___  ________   __   ___  ______ _____  ___  ____   _ _____ ___   _   _ _____   _____  _     _   _______ 
//  | ___ \/ _ \ | ___ \ \ / /  / _ \ | ___ \  ___| |  \/  | | | |_   _/ _ \ | \ | |_   _| /  __ \| |   | | | | ___ \
//  | |_/ / /_\ \| |_/ /\ V /  / /_\ \| |_/ / |__   | .  . | | | | | |/ /_\ \|  \| | | |   | /  \/| |   | | | | |_/ /
//  | ___ \  _  || ___ \ \ /   |  _  ||  __/|  __|  | |\/| | | | | | ||  _  || . ` | | |   | |    | |   | | | | ___ \
//  | |_/ / | | || |_/ / | |   | | | || |   | |___  | |  | | |_| | | || | | || |\  | | |   | \__/\| |___| |_| | |_/ /
//  \____/\_| |_/\____/  \_/   \_| |_/\_|   \____/  \_|  |_/\___/  \_/\_| |_/\_| \_/ \_/    \____/\_____/\___/\____/ 
//                                                                                                                   
//                                                                                                                   
//  
//  https://discord.com/invite/rngMmBdeKq
//  https://babyapemutantclub.com/


// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

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/[email protected]

/**
 * @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/[email protected]

/**
 * @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/token/ERC721/extensions/[email protected]

/**
 * @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/utils/[email protected]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

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

// File @openzeppelin/contracts/utils/[email protected]

/**
 * @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/utils/introspection/[email protected]

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File @openzeppelin/contracts/access/[email protected]

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File @openzeppelin/contracts/security/[email protected]

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;
uint256 public freecount;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File contracts/BAMC.sol



contract BabyApeMutantClub is ERC721, Ownable, ReentrancyGuard {
    uint256 public PRICE = 0.01 * 1e18;
    uint256 public MAX_SUPPLY = 6666;
    uint256 public MAX_FREE = 1000;
    uint256 public nftPerAddressLimit = 10;

    uint256 public minted;

    string public baseURI;
    mapping(address => uint256) public addressMintedBalance;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_
    ) ERC721(name_, symbol_) {
        baseURI = baseURI_;
    }



    function mint(uint8 amount) public payable nonReentrant {
        require(amount > 0, "Amount must be more than 0");
        require(amount <= 10, "Amount must be 10 or less");
        require(msg.value == PRICE * amount, "Ether value sent is not correct");
        require(
            minted + amount <= MAX_SUPPLY,
            "Sold out!"
        );

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, ++minted);
        }
    }

        function mintfree(uint8 amount) public payable nonReentrant {
            
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + amount <= nftPerAddressLimit, "max NFT per address exceeded");
        require(amount > 0, "Amount must be more than 0");
        require(amount <= 5, "Amount must be 5 or less");
        require(
            minted + amount <= MAX_FREE,
            "Free mints gone");
            freecount = msg.value;
    
        for (uint256 i = 0; i < amount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, ++minted);
    }
  }


	function setPRICE(uint256 _newPRICE) public onlyOwner {
	    PRICE = _newPRICE;
	}

	function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
	    MAX_SUPPLY = _newMaxSupply;
    }

    	function setmaxFree(uint256 _newMaxFree) public onlyOwner {
	    MAX_FREE = _newMaxFree;
    }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
    function withdraw(address payable recipient) public onlyOwner {
        require(address(this).balance > 0, "No contract balance");
        recipient.transfer(address(this).balance);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"freecount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mintfree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPRICE","type":"uint256"}],"name":"setPRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxFree","type":"uint256"}],"name":"setmaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc10000600955611a0a600a556103e8600b55600a600c553480156200002d57600080fd5b50604051620023cd380380620023cd833981016040819052620000509162000273565b8251839083906200006990600090602085019062000116565b5080516200007f90600190602084019062000116565b5050506200009c62000096620000c060201b60201c565b620000c4565b60016008558051620000b690600e90602084019062000116565b5050505062000357565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001249062000304565b90600052602060002090601f01602090048101928262000148576000855562000193565b82601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b5b80821115620001a15760008155600101620001a6565b600082601f830112620001ce57600080fd5b81516001600160401b0380821115620001eb57620001eb62000341565b604051601f8301601f19908116603f0116810190828211818310171562000216576200021662000341565b816040528381526020925086838588010111156200023357600080fd5b600091505b8382101562000257578582018301518183018401529082019062000238565b83821115620002695760008385830101525b9695505050505050565b6000806000606084860312156200028957600080fd5b83516001600160401b0380821115620002a157600080fd5b620002af87838801620001bc565b94506020860151915080821115620002c657600080fd5b620002d487838801620001bc565b93506040860151915080821115620002eb57600080fd5b50620002fa86828701620001bc565b9150509250925092565b600181811c908216806200031957607f821691505b602082108114156200033b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61206680620003676000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063ba7d2c7611610095578063e985e9c511610064578063e985e9c514610545578063ed6661c21461058e578063eea52d38146105a4578063f2fde38b146105c457600080fd5b8063ba7d2c76146104cf578063c87b56dd146104e5578063d0eb26b014610505578063d5034b741461052557600080fd5b806390134eb7116100d157806390134eb71461046457806395d89b411461047a578063a22cb4651461048f578063b88d4fde146104af57600080fd5b806370a08231146103fb578063715018a61461041b5780638d859f3e146104305780638da5cb5b1461044657600080fd5b806342842e0e1161017a57806355f804b31161014957806355f804b3146103935780636352211e146103b35780636c0360eb146103d35780636ecd2306146103e857600080fd5b806342842e0e1461032a5780634f02c4201461034a5780634f2e1e061461036057806351cff8d91461037357600080fd5b806318cae269116101b657806318cae26914610299578063228025e8146102d457806323b872dd146102f457806332cb6b0c1461031457600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611c73565b6105e4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610636565b6040516102149190611dca565b34801561024b57600080fd5b5061025f61025a366004611cf6565b6106c8565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611c47565b610762565b005b3480156102a557600080fd5b506102c66102b4366004611afd565b600f6020526000908152604090205481565b604051908152602001610214565b3480156102e057600080fd5b506102976102ef366004611cf6565b610878565b34801561030057600080fd5b5061029761030f366004611b53565b6108a7565b34801561032057600080fd5b506102c6600a5481565b34801561033657600080fd5b50610297610345366004611b53565b6108d8565b34801561035657600080fd5b506102c6600d5481565b61029761036e366004611d0f565b6108f3565b34801561037f57600080fd5b5061029761038e366004611afd565b610b1f565b34801561039f57600080fd5b506102976103ae366004611cad565b610bc8565b3480156103bf57600080fd5b5061025f6103ce366004611cf6565b610c05565b3480156103df57600080fd5b50610232610c7c565b6102976103f6366004611d0f565b610d0a565b34801561040757600080fd5b506102c6610416366004611afd565b610eef565b34801561042757600080fd5b50610297610f76565b34801561043c57600080fd5b506102c660095481565b34801561045257600080fd5b506006546001600160a01b031661025f565b34801561047057600080fd5b506102c660075481565b34801561048657600080fd5b50610232610fac565b34801561049b57600080fd5b506102976104aa366004611c14565b610fbb565b3480156104bb57600080fd5b506102976104ca366004611b94565b611080565b3480156104db57600080fd5b506102c6600c5481565b3480156104f157600080fd5b50610232610500366004611cf6565b6110b8565b34801561051157600080fd5b50610297610520366004611cf6565b611193565b34801561053157600080fd5b50610297610540366004611cf6565b6111c2565b34801561055157600080fd5b50610208610560366004611b1a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059a57600080fd5b506102c6600b5481565b3480156105b057600080fd5b506102976105bf366004611cf6565b6111f1565b3480156105d057600080fd5b506102976105df366004611afd565b611220565b60006001600160e01b031982166380ac58cd60e01b148061061557506001600160e01b03198216635b5e139f60e01b145b8061063057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461064590611f43565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611f43565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076d82610c05565b9050806001600160a01b0316836001600160a01b031614156107db5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073d565b336001600160a01b03821614806107f757506107f78133610560565b6108695760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073d565b61087383836112bb565b505050565b6006546001600160a01b031633146108a25760405162461bcd60e51b815260040161073d90611e2f565b600a55565b6108b13382611329565b6108cd5760405162461bcd60e51b815260040161073d90611e64565b610873838383611420565b61087383838360405180602001604052806000815250611080565b600260085414156109465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161073d565b6002600855336000908152600f6020526040902054600c5461096b60ff841683611eb5565b11156109b95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161073d565b60008260ff1611610a0c5760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604482015260640161073d565b60058260ff161115610a605760405162461bcd60e51b815260206004820152601860248201527f416d6f756e74206d7573742062652035206f72206c6573730000000000000000604482015260640161073d565b600b548260ff16600d54610a749190611eb5565b1115610ab45760405162461bcd60e51b815260206004820152600f60248201526e46726565206d696e747320676f6e6560881b604482015260640161073d565b3460075560005b8260ff16811015610b1557336000908152600f60205260408120805491610ae183611f7e565b9190505550610b0333600d60008154610af990611f7e565b91829055506115c0565b80610b0d81611f7e565b915050610abb565b5050600160085550565b6006546001600160a01b03163314610b495760405162461bcd60e51b815260040161073d90611e2f565b60004711610b8f5760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e74726163742062616c616e636560681b604482015260640161073d565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610bc4573d6000803e3d6000fd5b5050565b6006546001600160a01b03163314610bf25760405162461bcd60e51b815260040161073d90611e2f565b8051610bc490600e9060208401906119ee565b6000818152600260205260408120546001600160a01b0316806106305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073d565b600e8054610c8990611f43565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb590611f43565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b505050505081565b60026008541415610d5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161073d565b600260085560ff8116610db25760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604482015260640161073d565b600a8160ff161115610e065760405162461bcd60e51b815260206004820152601960248201527f416d6f756e74206d757374206265203130206f72206c65737300000000000000604482015260640161073d565b8060ff16600954610e179190611ee1565b3414610e655760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161073d565b600a548160ff16600d54610e799190611eb5565b1115610eb35760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161073d565b60005b8160ff16811015610ee657610ed433600d60008154610af990611f7e565b80610ede81611f7e565b915050610eb6565b50506001600855565b60006001600160a01b038216610f5a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073d565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fa05760405162461bcd60e51b815260040161073d90611e2f565b610faa60006115da565b565b60606001805461064590611f43565b6001600160a01b0382163314156110145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61108a3383611329565b6110a65760405162461bcd60e51b815260040161073d90611e64565b6110b28484848461162c565b50505050565b6000818152600260205260409020546060906001600160a01b03166111375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073d565b600061114161165f565b90506000815111611161576040518060200160405280600081525061118c565b8061116b8461166e565b60405160200161117c929190611d5e565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111bd5760405162461bcd60e51b815260040161073d90611e2f565b600c55565b6006546001600160a01b031633146111ec5760405162461bcd60e51b815260040161073d90611e2f565b600b55565b6006546001600160a01b0316331461121b5760405162461bcd60e51b815260040161073d90611e2f565b600955565b6006546001600160a01b0316331461124a5760405162461bcd60e51b815260040161073d90611e2f565b6001600160a01b0381166112af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073d565b6112b8816115da565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112f082610c05565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073d565b60006113ad83610c05565b9050806001600160a01b0316846001600160a01b031614806113e85750836001600160a01b03166113dd846106c8565b6001600160a01b0316145b8061141857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661143382610c05565b6001600160a01b03161461149b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073d565b6001600160a01b0382166114fd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073d565b6115086000826112bb565b6001600160a01b0383166000908152600360205260408120805460019290611531908490611f00565b90915550506001600160a01b038216600090815260036020526040812080546001929061155f908490611eb5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bc482826040518060200160405280600081525061176c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611637848484611420565b6116438484848461179f565b6110b25760405162461bcd60e51b815260040161073d90611ddd565b6060600e805461064590611f43565b6060816116925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116bc57806116a681611f7e565b91506116b59050600a83611ecd565b9150611696565b60008167ffffffffffffffff8111156116d7576116d7611fef565b6040519080825280601f01601f191660200182016040528015611701576020820181803683370190505b5090505b841561141857611716600183611f00565b9150611723600a86611f99565b61172e906030611eb5565b60f81b81838151811061174357611743611fd9565b60200101906001600160f81b031916908160001a905350611765600a86611ecd565b9450611705565b61177683836118ac565b611783600084848461179f565b6108735760405162461bcd60e51b815260040161073d90611ddd565b60006001600160a01b0384163b156118a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e3903390899088908890600401611d8d565b602060405180830381600087803b1580156117fd57600080fd5b505af192505050801561182d575060408051601f3d908101601f1916820190925261182a91810190611c90565b60015b611887573d80801561185b576040519150601f19603f3d011682016040523d82523d6000602084013e611860565b606091505b50805161187f5760405162461bcd60e51b815260040161073d90611ddd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611418565b506001949350505050565b6001600160a01b0382166119025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073d565b6000818152600260205260409020546001600160a01b0316156119675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073d565b6001600160a01b0382166000908152600360205260408120805460019290611990908490611eb5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119fa90611f43565b90600052602060002090601f016020900481019282611a1c5760008555611a62565b82601f10611a3557805160ff1916838001178555611a62565b82800160010185558215611a62579182015b82811115611a62578251825591602001919060010190611a47565b50611a6e929150611a72565b5090565b5b80821115611a6e5760008155600101611a73565b600067ffffffffffffffff80841115611aa257611aa2611fef565b604051601f8501601f19908116603f01168101908282118183101715611aca57611aca611fef565b81604052809350858152868686011115611ae357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b0f57600080fd5b813561118c81612005565b60008060408385031215611b2d57600080fd5b8235611b3881612005565b91506020830135611b4881612005565b809150509250929050565b600080600060608486031215611b6857600080fd5b8335611b7381612005565b92506020840135611b8381612005565b929592945050506040919091013590565b60008060008060808587031215611baa57600080fd5b8435611bb581612005565b93506020850135611bc581612005565b925060408501359150606085013567ffffffffffffffff811115611be857600080fd5b8501601f81018713611bf957600080fd5b611c0887823560208401611a87565b91505092959194509250565b60008060408385031215611c2757600080fd5b8235611c3281612005565b915060208301358015158114611b4857600080fd5b60008060408385031215611c5a57600080fd5b8235611c6581612005565b946020939093013593505050565b600060208284031215611c8557600080fd5b813561118c8161201a565b600060208284031215611ca257600080fd5b815161118c8161201a565b600060208284031215611cbf57600080fd5b813567ffffffffffffffff811115611cd657600080fd5b8201601f81018413611ce757600080fd5b61141884823560208401611a87565b600060208284031215611d0857600080fd5b5035919050565b600060208284031215611d2157600080fd5b813560ff8116811461118c57600080fd5b60008151808452611d4a816020860160208601611f17565b601f01601f19169290920160200192915050565b60008351611d70818460208801611f17565b835190830190611d84818360208801611f17565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dc090830184611d32565b9695505050505050565b60208152600061118c6020830184611d32565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ec857611ec8611fad565b500190565b600082611edc57611edc611fc3565b500490565b6000816000190483118215151615611efb57611efb611fad565b500290565b600082821015611f1257611f12611fad565b500390565b60005b83811015611f32578181015183820152602001611f1a565b838111156110b25750506000910152565b600181811c90821680611f5757607f821691505b60208210811415611f7857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f9257611f92611fad565b5060010190565b600082611fa857611fa8611fc3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112b857600080fd5b6001600160e01b0319811681146112b857600080fdfea26469706673582212205b3300ab0baf9edae064026d0af42564fdbc3afe015f2f093a6f40f0eed88f5a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000144261627920417065204d7574616e7420436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442414d4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d54346f644e5a623632483978765662707a5859616554436a5142653641483344567848626a6141566d3632652f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063ba7d2c7611610095578063e985e9c511610064578063e985e9c514610545578063ed6661c21461058e578063eea52d38146105a4578063f2fde38b146105c457600080fd5b8063ba7d2c76146104cf578063c87b56dd146104e5578063d0eb26b014610505578063d5034b741461052557600080fd5b806390134eb7116100d157806390134eb71461046457806395d89b411461047a578063a22cb4651461048f578063b88d4fde146104af57600080fd5b806370a08231146103fb578063715018a61461041b5780638d859f3e146104305780638da5cb5b1461044657600080fd5b806342842e0e1161017a57806355f804b31161014957806355f804b3146103935780636352211e146103b35780636c0360eb146103d35780636ecd2306146103e857600080fd5b806342842e0e1461032a5780634f02c4201461034a5780634f2e1e061461036057806351cff8d91461037357600080fd5b806318cae269116101b657806318cae26914610299578063228025e8146102d457806323b872dd146102f457806332cb6b0c1461031457600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611c73565b6105e4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610636565b6040516102149190611dca565b34801561024b57600080fd5b5061025f61025a366004611cf6565b6106c8565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611c47565b610762565b005b3480156102a557600080fd5b506102c66102b4366004611afd565b600f6020526000908152604090205481565b604051908152602001610214565b3480156102e057600080fd5b506102976102ef366004611cf6565b610878565b34801561030057600080fd5b5061029761030f366004611b53565b6108a7565b34801561032057600080fd5b506102c6600a5481565b34801561033657600080fd5b50610297610345366004611b53565b6108d8565b34801561035657600080fd5b506102c6600d5481565b61029761036e366004611d0f565b6108f3565b34801561037f57600080fd5b5061029761038e366004611afd565b610b1f565b34801561039f57600080fd5b506102976103ae366004611cad565b610bc8565b3480156103bf57600080fd5b5061025f6103ce366004611cf6565b610c05565b3480156103df57600080fd5b50610232610c7c565b6102976103f6366004611d0f565b610d0a565b34801561040757600080fd5b506102c6610416366004611afd565b610eef565b34801561042757600080fd5b50610297610f76565b34801561043c57600080fd5b506102c660095481565b34801561045257600080fd5b506006546001600160a01b031661025f565b34801561047057600080fd5b506102c660075481565b34801561048657600080fd5b50610232610fac565b34801561049b57600080fd5b506102976104aa366004611c14565b610fbb565b3480156104bb57600080fd5b506102976104ca366004611b94565b611080565b3480156104db57600080fd5b506102c6600c5481565b3480156104f157600080fd5b50610232610500366004611cf6565b6110b8565b34801561051157600080fd5b50610297610520366004611cf6565b611193565b34801561053157600080fd5b50610297610540366004611cf6565b6111c2565b34801561055157600080fd5b50610208610560366004611b1a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059a57600080fd5b506102c6600b5481565b3480156105b057600080fd5b506102976105bf366004611cf6565b6111f1565b3480156105d057600080fd5b506102976105df366004611afd565b611220565b60006001600160e01b031982166380ac58cd60e01b148061061557506001600160e01b03198216635b5e139f60e01b145b8061063057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461064590611f43565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611f43565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076d82610c05565b9050806001600160a01b0316836001600160a01b031614156107db5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161073d565b336001600160a01b03821614806107f757506107f78133610560565b6108695760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161073d565b61087383836112bb565b505050565b6006546001600160a01b031633146108a25760405162461bcd60e51b815260040161073d90611e2f565b600a55565b6108b13382611329565b6108cd5760405162461bcd60e51b815260040161073d90611e64565b610873838383611420565b61087383838360405180602001604052806000815250611080565b600260085414156109465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161073d565b6002600855336000908152600f6020526040902054600c5461096b60ff841683611eb5565b11156109b95760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161073d565b60008260ff1611610a0c5760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604482015260640161073d565b60058260ff161115610a605760405162461bcd60e51b815260206004820152601860248201527f416d6f756e74206d7573742062652035206f72206c6573730000000000000000604482015260640161073d565b600b548260ff16600d54610a749190611eb5565b1115610ab45760405162461bcd60e51b815260206004820152600f60248201526e46726565206d696e747320676f6e6560881b604482015260640161073d565b3460075560005b8260ff16811015610b1557336000908152600f60205260408120805491610ae183611f7e565b9190505550610b0333600d60008154610af990611f7e565b91829055506115c0565b80610b0d81611f7e565b915050610abb565b5050600160085550565b6006546001600160a01b03163314610b495760405162461bcd60e51b815260040161073d90611e2f565b60004711610b8f5760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e74726163742062616c616e636560681b604482015260640161073d565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610bc4573d6000803e3d6000fd5b5050565b6006546001600160a01b03163314610bf25760405162461bcd60e51b815260040161073d90611e2f565b8051610bc490600e9060208401906119ee565b6000818152600260205260408120546001600160a01b0316806106305760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161073d565b600e8054610c8990611f43565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb590611f43565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b505050505081565b60026008541415610d5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161073d565b600260085560ff8116610db25760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604482015260640161073d565b600a8160ff161115610e065760405162461bcd60e51b815260206004820152601960248201527f416d6f756e74206d757374206265203130206f72206c65737300000000000000604482015260640161073d565b8060ff16600954610e179190611ee1565b3414610e655760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161073d565b600a548160ff16600d54610e799190611eb5565b1115610eb35760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b604482015260640161073d565b60005b8160ff16811015610ee657610ed433600d60008154610af990611f7e565b80610ede81611f7e565b915050610eb6565b50506001600855565b60006001600160a01b038216610f5a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161073d565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fa05760405162461bcd60e51b815260040161073d90611e2f565b610faa60006115da565b565b60606001805461064590611f43565b6001600160a01b0382163314156110145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161073d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61108a3383611329565b6110a65760405162461bcd60e51b815260040161073d90611e64565b6110b28484848461162c565b50505050565b6000818152600260205260409020546060906001600160a01b03166111375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073d565b600061114161165f565b90506000815111611161576040518060200160405280600081525061118c565b8061116b8461166e565b60405160200161117c929190611d5e565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111bd5760405162461bcd60e51b815260040161073d90611e2f565b600c55565b6006546001600160a01b031633146111ec5760405162461bcd60e51b815260040161073d90611e2f565b600b55565b6006546001600160a01b0316331461121b5760405162461bcd60e51b815260040161073d90611e2f565b600955565b6006546001600160a01b0316331461124a5760405162461bcd60e51b815260040161073d90611e2f565b6001600160a01b0381166112af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073d565b6112b8816115da565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112f082610c05565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113a25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161073d565b60006113ad83610c05565b9050806001600160a01b0316846001600160a01b031614806113e85750836001600160a01b03166113dd846106c8565b6001600160a01b0316145b8061141857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661143382610c05565b6001600160a01b03161461149b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161073d565b6001600160a01b0382166114fd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161073d565b6115086000826112bb565b6001600160a01b0383166000908152600360205260408120805460019290611531908490611f00565b90915550506001600160a01b038216600090815260036020526040812080546001929061155f908490611eb5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bc482826040518060200160405280600081525061176c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611637848484611420565b6116438484848461179f565b6110b25760405162461bcd60e51b815260040161073d90611ddd565b6060600e805461064590611f43565b6060816116925750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116bc57806116a681611f7e565b91506116b59050600a83611ecd565b9150611696565b60008167ffffffffffffffff8111156116d7576116d7611fef565b6040519080825280601f01601f191660200182016040528015611701576020820181803683370190505b5090505b841561141857611716600183611f00565b9150611723600a86611f99565b61172e906030611eb5565b60f81b81838151811061174357611743611fd9565b60200101906001600160f81b031916908160001a905350611765600a86611ecd565b9450611705565b61177683836118ac565b611783600084848461179f565b6108735760405162461bcd60e51b815260040161073d90611ddd565b60006001600160a01b0384163b156118a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117e3903390899088908890600401611d8d565b602060405180830381600087803b1580156117fd57600080fd5b505af192505050801561182d575060408051601f3d908101601f1916820190925261182a91810190611c90565b60015b611887573d80801561185b576040519150601f19603f3d011682016040523d82523d6000602084013e611860565b606091505b50805161187f5760405162461bcd60e51b815260040161073d90611ddd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611418565b506001949350505050565b6001600160a01b0382166119025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161073d565b6000818152600260205260409020546001600160a01b0316156119675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161073d565b6001600160a01b0382166000908152600360205260408120805460019290611990908490611eb5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119fa90611f43565b90600052602060002090601f016020900481019282611a1c5760008555611a62565b82601f10611a3557805160ff1916838001178555611a62565b82800160010185558215611a62579182015b82811115611a62578251825591602001919060010190611a47565b50611a6e929150611a72565b5090565b5b80821115611a6e5760008155600101611a73565b600067ffffffffffffffff80841115611aa257611aa2611fef565b604051601f8501601f19908116603f01168101908282118183101715611aca57611aca611fef565b81604052809350858152868686011115611ae357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b0f57600080fd5b813561118c81612005565b60008060408385031215611b2d57600080fd5b8235611b3881612005565b91506020830135611b4881612005565b809150509250929050565b600080600060608486031215611b6857600080fd5b8335611b7381612005565b92506020840135611b8381612005565b929592945050506040919091013590565b60008060008060808587031215611baa57600080fd5b8435611bb581612005565b93506020850135611bc581612005565b925060408501359150606085013567ffffffffffffffff811115611be857600080fd5b8501601f81018713611bf957600080fd5b611c0887823560208401611a87565b91505092959194509250565b60008060408385031215611c2757600080fd5b8235611c3281612005565b915060208301358015158114611b4857600080fd5b60008060408385031215611c5a57600080fd5b8235611c6581612005565b946020939093013593505050565b600060208284031215611c8557600080fd5b813561118c8161201a565b600060208284031215611ca257600080fd5b815161118c8161201a565b600060208284031215611cbf57600080fd5b813567ffffffffffffffff811115611cd657600080fd5b8201601f81018413611ce757600080fd5b61141884823560208401611a87565b600060208284031215611d0857600080fd5b5035919050565b600060208284031215611d2157600080fd5b813560ff8116811461118c57600080fd5b60008151808452611d4a816020860160208601611f17565b601f01601f19169290920160200192915050565b60008351611d70818460208801611f17565b835190830190611d84818360208801611f17565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dc090830184611d32565b9695505050505050565b60208152600061118c6020830184611d32565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ec857611ec8611fad565b500190565b600082611edc57611edc611fc3565b500490565b6000816000190483118215151615611efb57611efb611fad565b500290565b600082821015611f1257611f12611fad565b500390565b60005b83811015611f32578181015183820152602001611f1a565b838111156110b25750506000910152565b600181811c90821680611f5757607f821691505b60208210811415611f7857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f9257611f92611fad565b5060010190565b600082611fa857611fa8611fc3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112b857600080fd5b6001600160e01b0319811681146112b857600080fdfea26469706673582212205b3300ab0baf9edae064026d0af42564fdbc3afe015f2f093a6f40f0eed88f5a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000144261627920417065204d7574616e7420436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000442414d4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d54346f644e5a623632483978765662707a5859616554436a5142653641483344567848626a6141566d3632652f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Baby Ape Mutant Club
Arg [1] : symbol_ (string): BAMC
Arg [2] : baseURI_ (string): https://gateway.pinata.cloud/ipfs/QmT4odNZb62H9xvVbpzXYaeTCjQBe6AH3DVxHbjaAVm62e/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 4261627920417065204d7574616e7420436c7562000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 42414d4300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d54346f644e5a623632483978765662707a5859616554436a51426536
Arg [10] : 41483344567848626a6141566d3632652f000000000000000000000000000000


Deployed Bytecode Sourcemap

40338:2504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22214:355;;;;;;;;;;-1:-1:-1;22214:355:0;;;;;:::i;:::-;;:::i;:::-;;;6577:14:1;;6570:22;6552:41;;6540:2;6525:18;22214:355:0;;;;;;;;23383:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25076:308::-;;;;;;;;;;-1:-1:-1;25076:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5875:32:1;;;5857:51;;5845:2;5830:18;25076:308:0;5711:203:1;24599:411:0;;;;;;;;;;-1:-1:-1;24599:411:0;;;;;:::i;:::-;;:::i;:::-;;40630:55;;;;;;;;;;-1:-1:-1;40630:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;16524:25:1;;;16512:2;16497:18;40630:55:0;16378:177:1;42102:104:0;;;;;;;;;;-1:-1:-1;42102:104:0;;;;;:::i;:::-;;:::i;26135:376::-;;;;;;;;;;-1:-1:-1;26135:376:0;;;;;:::i;:::-;;:::i;40449:32::-;;;;;;;;;;;;;;;;26582:185;;;;;;;;;;-1:-1:-1;26582:185:0;;;;;:::i;:::-;;:::i;40572:21::-;;;;;;;;;;;;;;;;41365:641;;;;;;:::i;:::-;;:::i;42427:190::-;;;;;;;;;;-1:-1:-1;42427:190:0;;;;;:::i;:::-;;:::i;42625:98::-;;;;;;;;;;-1:-1:-1;42625:98:0;;;;;:::i;:::-;;:::i;22990:326::-;;;;;;;;;;-1:-1:-1;22990:326:0;;;;;:::i;:::-;;:::i;40602:21::-;;;;;;;;;;;;;:::i;40880:473::-;;;;;;:::i;:::-;;:::i;22633:295::-;;;;;;;;;;-1:-1:-1;22633:295:0;;;;;:::i;:::-;;:::i;36944:94::-;;;;;;;;;;;;;:::i;40408:34::-;;;;;;;;;;;;;;;;36293:87;;;;;;;;;;-1:-1:-1;36366:6:0;;-1:-1:-1;;;;;36366:6:0;36293:87;;39336:24;;;;;;;;;;;;;;;;23552:104;;;;;;;;;;;;;:::i;25456:327::-;;;;;;;;;;-1:-1:-1;25456:327:0;;;;;:::i;:::-;;:::i;26838:365::-;;;;;;;;;;-1:-1:-1;26838:365:0;;;;;:::i;:::-;;:::i;40525:38::-;;;;;;;;;;;;;;;;23727:468;;;;;;;;;;-1:-1:-1;23727:468:0;;;;;:::i;:::-;;:::i;42317:104::-;;;;;;;;;;-1:-1:-1;42317:104:0;;;;;:::i;:::-;;:::i;42215:96::-;;;;;;;;;;-1:-1:-1;42215:96:0;;;;;:::i;:::-;;:::i;25854:214::-;;;;;;;;;;-1:-1:-1;25854:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26025:25:0;;;25996:4;26025:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25854:214;40488:30;;;;;;;;;;;;;;;;42013:84;;;;;;;;;;-1:-1:-1;42013:84:0;;;;;:::i;:::-;;:::i;37193:229::-;;;;;;;;;;-1:-1:-1;37193:229:0;;;;;:::i;:::-;;:::i;22214:355::-;22361:4;-1:-1:-1;;;;;;22403:40:0;;-1:-1:-1;;;22403:40:0;;:105;;-1:-1:-1;;;;;;;22460:48:0;;-1:-1:-1;;;22460:48:0;22403:105;:158;;;-1:-1:-1;;;;;;;;;;20866:40:0;;;22525:36;22383:178;22214:355;-1:-1:-1;;22214:355:0:o;23383:100::-;23437:13;23470:5;23463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23383:100;:::o;25076:308::-;25197:7;28839:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28839:16:0;25222:110;;;;-1:-1:-1;;;25222:110:0;;12408:2:1;25222:110:0;;;12390:21:1;12447:2;12427:18;;;12420:30;12486:34;12466:18;;;12459:62;-1:-1:-1;;;12537:18:1;;;12530:42;12589:19;;25222:110:0;;;;;;;;;-1:-1:-1;25352:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25352:24:0;;25076:308::o;24599:411::-;24680:13;24696:23;24711:7;24696:14;:23::i;:::-;24680:39;;24744:5;-1:-1:-1;;;;;24738:11:0;:2;-1:-1:-1;;;;;24738:11:0;;;24730:57;;;;-1:-1:-1;;;24730:57:0;;14356:2:1;24730:57:0;;;14338:21:1;14395:2;14375:18;;;14368:30;14434:34;14414:18;;;14407:62;-1:-1:-1;;;14485:18:1;;;14478:31;14526:19;;24730:57:0;14154:397:1;24730:57:0;17725:10;-1:-1:-1;;;;;24822:21:0;;;;:62;;-1:-1:-1;24847:37:0;24864:5;17725:10;25854:214;:::i;24847:37::-;24800:168;;;;-1:-1:-1;;;24800:168:0;;10457:2:1;24800:168:0;;;10439:21:1;10496:2;10476:18;;;10469:30;10535:34;10515:18;;;10508:62;10606:26;10586:18;;;10579:54;10650:19;;24800:168:0;10255:420:1;24800:168:0;24981:21;24990:2;24994:7;24981:8;:21::i;:::-;24669:341;24599:411;;:::o;42102:104::-;36366:6;;-1:-1:-1;;;;;36366:6:0;17725:10;36513:23;36505:68;;;;-1:-1:-1;;;36505:68:0;;;;;;;:::i;:::-;42172:10:::1;:26:::0;42102:104::o;26135:376::-;26344:41;17725:10;26377:7;26344:18;:41::i;:::-;26322:140;;;;-1:-1:-1;;;26322:140:0;;;;;;;:::i;:::-;26475:28;26485:4;26491:2;26495:7;26475:9;:28::i;26582:185::-;26720:39;26737:4;26743:2;26747:7;26720:39;;;;;;;;;;;;:16;:39::i;41365:641::-;39332:1;39955:7;;:19;;39947:63;;;;-1:-1:-1;;;39947:63:0;;15883:2:1;39947:63:0;;;15865:21:1;15922:2;15902:18;;;15895:30;15961:33;15941:18;;;15934:61;16012:18;;39947:63:0;15681:355:1;39947:63:0;39332:1;40088:7;:18;41498:10:::1;41450:24;41477:32:::0;;;:20:::1;:32;::::0;;;;;41557:18:::1;::::0;41528:25:::1;;::::0;::::1;41477:32:::0;41528:25:::1;:::i;:::-;:47;;41520:88;;;::::0;-1:-1:-1;;;41520:88:0;;8213:2:1;41520:88:0::1;::::0;::::1;8195:21:1::0;8252:2;8232:18;;;8225:30;8291;8271:18;;;8264:58;8339:18;;41520:88:0::1;8011:352:1::0;41520:88:0::1;41636:1;41627:6;:10;;;41619:49;;;::::0;-1:-1:-1;;;41619:49:0;;10102:2:1;41619:49:0::1;::::0;::::1;10084:21:1::0;10141:2;10121:18;;;10114:30;10180:28;10160:18;;;10153:56;10226:18;;41619:49:0::1;9900:350:1::0;41619:49:0::1;41697:1;41687:6;:11;;;;41679:48;;;::::0;-1:-1:-1;;;41679:48:0;;15530:2:1;41679:48:0::1;::::0;::::1;15512:21:1::0;15569:2;15549:18;;;15542:30;15608:26;15588:18;;;15581:54;15652:18;;41679:48:0::1;15328:348:1::0;41679:48:0::1;41779:8;;41769:6;41760:15;;:6;;:15;;;;:::i;:::-;:27;;41738:82;;;::::0;-1:-1:-1;;;41738:82:0;;11703:2:1;41738:82:0::1;::::0;::::1;11685:21:1::0;11742:2;11722:18;;;11715:30;-1:-1:-1;;;11761:18:1;;;11754:45;11816:18;;41738:82:0::1;11501:339:1::0;41738:82:0::1;41847:9;41835;:21:::0;41878:9:::1;41873:128;41897:6;41893:10;;:1;:10;41873:128;;;41940:10;41919:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;;;;;;41962:31;41972:10;41986:6;;41984:8;;;;;:::i;:::-;::::0;;;;-1:-1:-1;41962:9:0::1;:31::i;:::-;41905:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41873:128;;;-1:-1:-1::0;;39288:1:0;40267:7;:22;-1:-1:-1;41365:641:0:o;42427:190::-;36366:6;;-1:-1:-1;;;;;36366:6:0;17725:10;36513:23;36505:68;;;;-1:-1:-1;;;36505:68:0;;;;;;;:::i;:::-;42532:1:::1;42508:21;:25;42500:57;;;::::0;-1:-1:-1;;;42500:57:0;;13182:2:1;42500:57:0::1;::::0;::::1;13164:21:1::0;13221:2;13201:18;;;13194:30;-1:-1:-1;;;13240:18:1;;;13233:49;13299:18;;42500:57:0::1;12980:343:1::0;42500:57:0::1;42568:41;::::0;-1:-1:-1;;;;;42568:18:0;::::1;::::0;42587:21:::1;42568:41:::0;::::1;;;::::0;::::1;::::0;;;42587:21;42568:18;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42427:190:::0;:::o;42625:98::-;36366:6;;-1:-1:-1;;;;;36366:6:0;17725:10;36513:23;36505:68;;;;-1:-1:-1;;;36505:68:0;;;;;;;:::i;:::-;42697:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;22990:326::-:0;23107:7;23148:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23148:16:0;23197:19;23175:110;;;;-1:-1:-1;;;23175:110:0;;11293:2:1;23175:110:0;;;11275:21:1;11332:2;11312:18;;;11305:30;11371:34;11351:18;;;11344:62;-1:-1:-1;;;11422:18:1;;;11415:39;11471:19;;23175:110:0;11091:405:1;40602:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40880:473::-;39332:1;39955:7;;:19;;39947:63;;;;-1:-1:-1;;;39947:63:0;;15883:2:1;39947:63:0;;;15865:21:1;15922:2;15902:18;;;15895:30;15961:33;15941:18;;;15934:61;16012:18;;39947:63:0;15681:355:1;39947:63:0;39332:1;40088:7;:18;40955:10:::1;::::0;::::1;40947:49;;;::::0;-1:-1:-1;;;40947:49:0;;10102:2:1;40947:49:0::1;::::0;::::1;10084:21:1::0;10141:2;10121:18;;;10114:30;10180:28;10160:18;;;10153:56;10226:18;;40947:49:0::1;9900:350:1::0;40947:49:0::1;41025:2;41015:6;:12;;;;41007:50;;;::::0;-1:-1:-1;;;41007:50:0;;15176:2:1;41007:50:0::1;::::0;::::1;15158:21:1::0;15215:2;15195:18;;;15188:30;15254:27;15234:18;;;15227:55;15299:18;;41007:50:0::1;14974:349:1::0;41007:50:0::1;41097:6;41089:14;;:5;;:14;;;;:::i;:::-;41076:9;:27;41068:71;;;::::0;-1:-1:-1;;;41068:71:0;;9329:2:1;41068:71:0::1;::::0;::::1;9311:21:1::0;9368:2;9348:18;;;9341:30;9407:33;9387:18;;;9380:61;9458:18;;41068:71:0::1;9127:355:1::0;41068:71:0::1;41191:10;;41181:6;41172:15;;:6;;:15;;;;:::i;:::-;:29;;41150:88;;;::::0;-1:-1:-1;;;41150:88:0;;16243:2:1;41150:88:0::1;::::0;::::1;16225:21:1::0;16282:1;16262:18;;;16255:29;-1:-1:-1;;;16300:18:1;;;16293:39;16349:18;;41150:88:0::1;16041:332:1::0;41150:88:0::1;41256:9;41251:95;41275:6;41271:10;;:1;:10;41251:95;;;41303:31;41313:10;41327:6;;41325:8;;;;;:::i;41303:31::-;41283:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41251:95;;;-1:-1:-1::0;;39288:1:0;40267:7;:22;40880:473::o;22633:295::-;22750:7;-1:-1:-1;;;;;22797:19:0;;22775:111;;;;-1:-1:-1;;;22775:111:0;;10882:2:1;22775:111:0;;;10864:21:1;10921:2;10901:18;;;10894:30;10960:34;10940:18;;;10933:62;-1:-1:-1;;;11011:18:1;;;11004:40;11061:19;;22775:111:0;10680:406:1;22775:111:0;-1:-1:-1;;;;;;22904:16:0;;;;;:9;:16;;;;;;;22633:295::o;36944:94::-;36366:6;;-1:-1:-1;;;;;36366:6:0;17725:10;36513:23;36505:68;;;;-1:-1:-1;;;36505:68:0;;;;;;;:::i;:::-;37009:21:::1;37027:1;37009:9;:21::i;:::-;36944:94::o:0;23552:104::-;23608:13;23641:7;23634:14;;;;;:::i;25456:327::-;-1:-1:-1;;;;;25591:24:0;;17725:10;25591:24;;25583:62;;;;-1:-1:-1;;;25583:62:0;;8975:2:1;25583:62:0;;;8957:21:1;9014:2;8994:18;;;8987:30;9053:27;9033:18;;;9026:55;9098:18;;25583:62:0;8773:349:1;25583:62:0;17725:10;25658:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25658:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25658:53:0;;;;;;;;;;25727:48;;6552:41:1;;;25658:42:0;;17725:10;25727:48;;6525:18:1;25727:48:0;;;;;;;25456:327;;:::o;26838:365::-;27027:41;17725:10;27060:7;27027:18;:41::i;:::-;27005:140;;;;-1:-1:-1;;;27005:140:0;;;;;;;:::i;:::-;27156:39;27170:4;27176:2;27180:7;27189:5;27156:13;:39::i;:::-;26838:365;;;;:::o;23727:468::-;28815:4;28839:16;;;:7;:16;;;;;;23845:13;;-1:-1:-1;;;;;28839:16:0;23876:113;;;;-1:-1:-1;;;23876:113:0;;13940:2:1;23876:113:0;;;13922:21:1;13979:2;13959:18;;;13952:30;14018:34;13998:18;;;13991:62;-1:-1:-1;;;14069:18:1;;;14062:45;14124:19;;23876:113:0;13738:411:1;23876:113:0;24002:21;24026:10;:8;:10::i;:::-;24002:34;;24091:1;24073:7;24067:21;:25;:120;;;;;;;;;;;;;;;;;24136:7;24145:18;:7;:16;:18::i;:::-;24119:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24067:120;24047:140;23727:468;-1:-1:-1;;;23727:468:0:o;42317:104::-;36366:6;;-1:-1:-1;;;;;36366:6:0;17725:10;36513:23;36505:68;;;;-1:-1:-1;;;36505:68:0;;;;;;;:::i;:::-;42388:18:::1;:27:::0;42317:104::o;42215:96::-;36366:6;;-1:-1:-1;;;;;36366:6:0;17725:10;36513:23;36505:68;;;;-1:-1:-1;;;36505:68:0;;;;;;;:::i;:::-;42281:8:::1;:22:::0;42215:96::o;42013:84::-;36366:6;;-1:-1:-1;;;;;36366:6:0;17725:10;36513:23;36505:68;;;;-1:-1:-1;;;36505:68:0;;;;;;;:::i;:::-;42075:5:::1;:17:::0;42013:84::o;37193:229::-;36366:6;;-1:-1:-1;;;;;36366:6:0;17725:10;36513:23;36505:68;;;;-1:-1:-1;;;36505:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37296:22:0;::::1;37274:110;;;::::0;-1:-1:-1;;;37274:110:0;;7449:2:1;37274:110:0::1;::::0;::::1;7431:21:1::0;7488:2;7468:18;;;7461:30;7527:34;7507:18;;;7500:62;-1:-1:-1;;;7578:18:1;;;7571:36;7624:19;;37274:110:0::1;7247:402:1::0;37274:110:0::1;37395:19;37405:8;37395:9;:19::i;:::-;37193:229:::0;:::o;32873:174::-;32948:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32948:29:0;-1:-1:-1;;;;;32948:29:0;;;;;;;;:24;;33002:23;32948:24;33002:14;:23::i;:::-;-1:-1:-1;;;;;32993:46:0;;;;;;;;;;;32873:174;;:::o;29044:452::-;29173:4;28839:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28839:16:0;29195:110;;;;-1:-1:-1;;;29195:110:0;;9689:2:1;29195:110:0;;;9671:21:1;9728:2;9708:18;;;9701:30;9767:34;9747:18;;;9740:62;-1:-1:-1;;;9818:18:1;;;9811:42;9870:19;;29195:110:0;9487:408:1;29195:110:0;29316:13;29332:23;29347:7;29332:14;:23::i;:::-;29316:39;;29385:5;-1:-1:-1;;;;;29374:16:0;:7;-1:-1:-1;;;;;29374:16:0;;:64;;;;29431:7;-1:-1:-1;;;;;29407:31:0;:20;29419:7;29407:11;:20::i;:::-;-1:-1:-1;;;;;29407:31:0;;29374:64;:113;;;-1:-1:-1;;;;;;26025:25:0;;;25996:4;26025:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29455:32;29366:122;29044:452;-1:-1:-1;;;;29044:452:0:o;32140:615::-;32313:4;-1:-1:-1;;;;;32286:31:0;:23;32301:7;32286:14;:23::i;:::-;-1:-1:-1;;;;;32286:31:0;;32264:122;;;;-1:-1:-1;;;32264:122:0;;13530:2:1;32264:122:0;;;13512:21:1;13569:2;13549:18;;;13542:30;13608:34;13588:18;;;13581:62;-1:-1:-1;;;13659:18:1;;;13652:39;13708:19;;32264:122:0;13328:405:1;32264:122:0;-1:-1:-1;;;;;32405:16:0;;32397:65;;;;-1:-1:-1;;;32397:65:0;;8570:2:1;32397:65:0;;;8552:21:1;8609:2;8589:18;;;8582:30;8648:34;8628:18;;;8621:62;-1:-1:-1;;;8699:18:1;;;8692:34;8743:19;;32397:65:0;8368:400:1;32397:65:0;32579:29;32596:1;32600:7;32579:8;:29::i;:::-;-1:-1:-1;;;;;32621:15:0;;;;;;:9;:15;;;;;:20;;32640:1;;32621:15;:20;;32640:1;;32621:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32652:13:0;;;;;;:9;:13;;;;;:18;;32669:1;;32652:13;:18;;32669:1;;32652:18;:::i;:::-;;;;-1:-1:-1;;32681:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32681:21:0;-1:-1:-1;;;;;32681:21:0;;;;;;;;;32720:27;;32681:16;;32720:27;;;;;;;32140:615;;;:::o;29838:110::-;29914:26;29924:2;29928:7;29914:26;;;;;;;;;;;;:9;:26::i;37430:173::-;37505:6;;;-1:-1:-1;;;;;37522:17:0;;;-1:-1:-1;;;;;;37522:17:0;;;;;;;37555:40;;37505:6;;;37522:17;37505:6;;37555:40;;37486:16;;37555:40;37475:128;37430:173;:::o;28085:352::-;28242:28;28252:4;28258:2;28262:7;28242:9;:28::i;:::-;28303:48;28326:4;28332:2;28336:7;28345:5;28303:22;:48::i;:::-;28281:148;;;;-1:-1:-1;;;28281:148:0;;;;;;;:::i;42731:108::-;42791:13;42824:7;42817:14;;;;;:::i;18145:723::-;18201:13;18422:10;18418:53;;-1:-1:-1;;18449:10:0;;;;;;;;;;;;-1:-1:-1;;;18449:10:0;;;;;18145:723::o;18418:53::-;18496:5;18481:12;18537:78;18544:9;;18537:78;;18570:8;;;;:::i;:::-;;-1:-1:-1;18593:10:0;;-1:-1:-1;18601:2:0;18593:10;;:::i;:::-;;;18537:78;;;18625:19;18657:6;18647:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18647:17:0;;18625:39;;18675:154;18682:10;;18675:154;;18709:11;18719:1;18709:11;;:::i;:::-;;-1:-1:-1;18778:10:0;18786:2;18778:5;:10;:::i;:::-;18765:24;;:2;:24;:::i;:::-;18752:39;;18735:6;18742;18735:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18735:56:0;;;;;;;;-1:-1:-1;18806:11:0;18815:2;18806:11;;:::i;:::-;;;18675:154;;30175:321;30305:18;30311:2;30315:7;30305:5;:18::i;:::-;30356:54;30387:1;30391:2;30395:7;30404:5;30356:22;:54::i;:::-;30334:154;;;;-1:-1:-1;;;30334:154:0;;;;;;;:::i;33612:980::-;33767:4;-1:-1:-1;;;;;33788:13:0;;9570:20;9618:8;33784:801;;33841:175;;-1:-1:-1;;;33841:175:0;;-1:-1:-1;;;;;33841:36:0;;;;;:175;;17725:10;;33935:4;;33962:7;;33992:5;;33841:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33841:175:0;;;;;;;;-1:-1:-1;;33841:175:0;;;;;;;;;;;;:::i;:::-;;;33820:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34199:13:0;;34195:320;;34242:108;;-1:-1:-1;;;34242:108:0;;;;;;;:::i;34195:320::-;34465:6;34459:13;34450:6;34446:2;34442:15;34435:38;33820:710;-1:-1:-1;;;;;;34080:51:0;-1:-1:-1;;;34080:51:0;;-1:-1:-1;34073:58:0;;33784:801;-1:-1:-1;34569:4:0;33612:980;;;;;;:::o;30832:382::-;-1:-1:-1;;;;;30912:16:0;;30904:61;;;;-1:-1:-1;;;30904:61:0;;12047:2:1;30904:61:0;;;12029:21:1;;;12066:18;;;12059:30;12125:34;12105:18;;;12098:62;12177:18;;30904:61:0;11845:356:1;30904:61:0;28815:4;28839:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28839:16:0;:30;30976:58;;;;-1:-1:-1;;;30976:58:0;;7856:2:1;30976:58:0;;;7838:21:1;7895:2;7875:18;;;7868:30;7934;7914:18;;;7907:58;7982:18;;30976:58:0;7654:352:1;30976:58:0;-1:-1:-1;;;;;31105:13:0;;;;;;:9;:13;;;;;:18;;31122:1;;31105:13;:18;;31122:1;;31105:18;:::i;:::-;;;;-1:-1:-1;;31134:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31134:21:0;-1:-1:-1;;;;;31134:21:0;;;;;;;;31173:33;;31134:16;;;31173:33;;31134:16;;31173:33;30832:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:416::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3164:15;;3157:23;3145:36;;3135:64;;3195:1;3192;3185:12;3236:315;3304:6;3312;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3420:9;3407:23;3439:31;3464:5;3439:31;:::i;:::-;3489:5;3541:2;3526:18;;;;3513:32;;-1:-1:-1;;;3236:315:1:o;3556:245::-;3614:6;3667:2;3655:9;3646:7;3642:23;3638:32;3635:52;;;3683:1;3680;3673:12;3635:52;3722:9;3709:23;3741:30;3765:5;3741:30;:::i;3806:249::-;3875:6;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;3976:9;3970:16;3995:30;4019:5;3995:30;:::i;4060:450::-;4129:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:52;;;4198:1;4195;4188:12;4150:52;4238:9;4225:23;4271:18;4263:6;4260:30;4257:50;;;4303:1;4300;4293:12;4257:50;4326:22;;4379:4;4371:13;;4367:27;-1:-1:-1;4357:55:1;;4408:1;4405;4398:12;4357:55;4431:73;4496:7;4491:2;4478:16;4473:2;4469;4465:11;4431:73;:::i;4515:180::-;4574:6;4627:2;4615:9;4606:7;4602:23;4598:32;4595:52;;;4643:1;4640;4633:12;4595:52;-1:-1:-1;4666:23:1;;4515:180;-1:-1:-1;4515:180:1:o;4700:269::-;4757:6;4810:2;4798:9;4789:7;4785:23;4781:32;4778:52;;;4826:1;4823;4816:12;4778:52;4865:9;4852:23;4915:4;4908:5;4904:16;4897:5;4894:27;4884:55;;4935:1;4932;4925:12;4974:257;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:470::-;5415:3;5453:6;5447:13;5469:53;5515:6;5510:3;5503:4;5495:6;5491:17;5469:53;:::i;:::-;5585:13;;5544:16;;;;5607:57;5585:13;5544:16;5641:4;5629:17;;5607:57;:::i;:::-;5680:20;;5236:470;-1:-1:-1;;;;5236:470:1:o;5919:488::-;-1:-1:-1;;;;;6188:15:1;;;6170:34;;6240:15;;6235:2;6220:18;;6213:43;6287:2;6272:18;;6265:34;;;6335:3;6330:2;6315:18;;6308:31;;;6113:4;;6356:45;;6381:19;;6373:6;6356:45;:::i;:::-;6348:53;5919:488;-1:-1:-1;;;;;;5919:488:1:o;6604:219::-;6753:2;6742:9;6735:21;6716:4;6773:44;6813:2;6802:9;6798:18;6790:6;6773:44;:::i;6828:414::-;7030:2;7012:21;;;7069:2;7049:18;;;7042:30;7108:34;7103:2;7088:18;;7081:62;-1:-1:-1;;;7174:2:1;7159:18;;7152:48;7232:3;7217:19;;6828:414::o;12619:356::-;12821:2;12803:21;;;12840:18;;;12833:30;12899:34;12894:2;12879:18;;12872:62;12966:2;12951:18;;12619:356::o;14556:413::-;14758:2;14740:21;;;14797:2;14777:18;;;14770:30;14836:34;14831:2;14816:18;;14809:62;-1:-1:-1;;;14902:2:1;14887:18;;14880:47;14959:3;14944:19;;14556:413::o;16560:128::-;16600:3;16631:1;16627:6;16624:1;16621:13;16618:39;;;16637:18;;:::i;:::-;-1:-1:-1;16673:9:1;;16560:128::o;16693:120::-;16733:1;16759;16749:35;;16764:18;;:::i;:::-;-1:-1:-1;16798:9:1;;16693:120::o;16818:168::-;16858:7;16924:1;16920;16916:6;16912:14;16909:1;16906:21;16901:1;16894:9;16887:17;16883:45;16880:71;;;16931:18;;:::i;:::-;-1:-1:-1;16971:9:1;;16818:168::o;16991:125::-;17031:4;17059:1;17056;17053:8;17050:34;;;17064:18;;:::i;:::-;-1:-1:-1;17101:9:1;;16991:125::o;17121:258::-;17193:1;17203:113;17217:6;17214:1;17211:13;17203:113;;;17293:11;;;17287:18;17274:11;;;17267:39;17239:2;17232:10;17203:113;;;17334:6;17331:1;17328:13;17325:48;;;-1:-1:-1;;17369:1:1;17351:16;;17344:27;17121:258::o;17384:380::-;17463:1;17459:12;;;;17506;;;17527:61;;17581:4;17573:6;17569:17;17559:27;;17527:61;17634:2;17626:6;17623:14;17603:18;17600:38;17597:161;;;17680:10;17675:3;17671:20;17668:1;17661:31;17715:4;17712:1;17705:15;17743:4;17740:1;17733:15;17597:161;;17384:380;;;:::o;17769:135::-;17808:3;-1:-1:-1;;17829:17:1;;17826:43;;;17849:18;;:::i;:::-;-1:-1:-1;17896:1:1;17885:13;;17769:135::o;17909:112::-;17941:1;17967;17957:35;;17972:18;;:::i;:::-;-1:-1:-1;18006:9:1;;17909:112::o;18026:127::-;18087:10;18082:3;18078:20;18075:1;18068:31;18118:4;18115:1;18108:15;18142:4;18139:1;18132:15;18158:127;18219:10;18214:3;18210:20;18207:1;18200:31;18250:4;18247:1;18240:15;18274:4;18271:1;18264:15;18290:127;18351:10;18346:3;18342:20;18339:1;18332:31;18382:4;18379:1;18372:15;18406:4;18403:1;18396:15;18422:127;18483:10;18478:3;18474:20;18471:1;18464:31;18514:4;18511:1;18504:15;18538:4;18535:1;18528:15;18554:131;-1:-1:-1;;;;;18629:31:1;;18619:42;;18609:70;;18675:1;18672;18665:12;18690:131;-1:-1:-1;;;;;;18764:32:1;;18754:43;;18744:71;;18811:1;18808;18801:12

Swarm Source

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