ETH Price: $2,522.31 (+0.28%)
Gas: 0.98 Gwei

Token

Baby Shiba Club (BSC)
 

Overview

Max Total Supply

106 BSC

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 BSC
0x1C8e4D7ce33637d52acAdDa1B8F7Af69D7BdDCbD
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:
BabyShibaClub

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-02-03
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

/**
 * @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/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @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(to).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 {}
}

pragma solidity ^0.8.0;

contract BabyShibaClub is ERC721, Ownable {
    uint256 public constant MAX_SUPPLY = 500;
    uint256 private mintCount = 0;

    uint256 public price = 100000000000000000; // 0.1 Ether
    string baseTokenURI;
    bool public saleOpen = false;

    event Minted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Baby Shiba Club", "BSC") {
        setBaseURI(baseURI);
    }

    function totalSupply() public view returns (uint256) {
        return mintCount;
    }

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

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function flipSaleState() external onlyOwner {
        saleOpen = !saleOpen;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }

    function mint(uint256 _count) external payable {
        uint256 supply = totalSupply();

        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply");
        require(
            _count > 0,
            "Minimum 1 Baby Shiba Club NFT has to be minted per transaction"
        );

        if (msg.sender != owner()) {
            require(saleOpen, "Sale is not open yet");
            require(
                _count <= 10,
                "Maximum 10 Baby Shiba Club NFTs can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }

        mintCount += _count;

        for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, ++supply);
            emit Minted(supply);
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060075567016345785d8a0000600855600a805460ff191690553480156200002c57600080fd5b5060405162002041380380620020418339810160408190526200004f916200025a565b604080518082018252600f81526e2130b13c9029b434b1309021b63ab160891b60208083019182528351808501909452600384526242534360e81b908401528151919291620000a191600091620001b4565b508051620000b7906001906020840190620001b4565b505050620000d4620000ce620000e660201b60201c565b620000ea565b620000df816200013c565b5062000389565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200019b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b0906009906020840190620001b4565b5050565b828054620001c29062000336565b90600052602060002090601f016020900481019282620001e6576000855562000231565b82601f106200020157805160ff191683800117855562000231565b8280016001018555821562000231579182015b828111156200023157825182559160200191906001019062000214565b506200023f92915062000243565b5090565b5b808211156200023f576000815560010162000244565b600060208083850312156200026e57600080fd5b82516001600160401b03808211156200028657600080fd5b818501915085601f8301126200029b57600080fd5b815181811115620002b057620002b062000373565b604051601f8201601f19908116603f01168101908382118183101715620002db57620002db62000373565b816040528281528886848701011115620002f457600080fd5b600093505b82841015620003185784840186015181850187015292850192620002f9565b828411156200032a5760008684830101525b98975050505050505050565b600181811c908216806200034b57607f821691505b602082108114156200036d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611ca880620003996000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a0712d681161008a578063b88d4fde11610064578063b88d4fde146103e6578063c87b56dd14610406578063e985e9c514610426578063f2fde38b1461046f57600080fd5b8063a0712d6814610393578063a22cb465146103a6578063a2b40d19146103c657600080fd5b806370a08231146102fb578063715018a61461031b5780638da5cb5b1461033057806395d89b411461034e57806399288dbb14610363578063a035b1fe1461037d57600080fd5b806332cb6b0c1161012357806332cb6b0c1461025b57806334918dfd146102715780633ccfd60b1461028657806342842e0e1461029b57806355f804b3146102bb5780636352211e146102db57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b6101863660046118ed565b61048f565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104e1565b6040516101979190611a21565b3480156101ce57600080fd5b506101e26101dd366004611970565b610573565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046118c3565b61060d565b005b34801561022857600080fd5b506007545b604051908152602001610197565b34801561024757600080fd5b5061021a6102563660046117cf565b610723565b34801561026757600080fd5b5061022d6101f481565b34801561027d57600080fd5b5061021a610754565b34801561029257600080fd5b5061021a610792565b3480156102a757600080fd5b5061021a6102b63660046117cf565b61084a565b3480156102c757600080fd5b5061021a6102d6366004611927565b610865565b3480156102e757600080fd5b506101e26102f6366004611970565b6108a6565b34801561030757600080fd5b5061022d610316366004611781565b61091d565b34801561032757600080fd5b5061021a6109a4565b34801561033c57600080fd5b506006546001600160a01b03166101e2565b34801561035a57600080fd5b506101b56109da565b34801561036f57600080fd5b50600a5461018b9060ff1681565b34801561038957600080fd5b5061022d60085481565b61021a6103a1366004611970565b6109e9565b3480156103b257600080fd5b5061021a6103c1366004611887565b610c84565b3480156103d257600080fd5b5061021a6103e1366004611970565b610d49565b3480156103f257600080fd5b5061021a61040136600461180b565b610d78565b34801561041257600080fd5b506101b5610421366004611970565b610db0565b34801561043257600080fd5b5061018b61044136600461179c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561047b57600080fd5b5061021a61048a366004611781565b610e8b565b60006001600160e01b031982166380ac58cd60e01b14806104c057506001600160e01b03198216635b5e139f60e01b145b806104db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104f090611b9a565b80601f016020809104026020016040519081016040528092919081815260200182805461051c90611b9a565b80156105695780601f1061053e57610100808354040283529160200191610569565b820191906000526020600020905b81548152906001019060200180831161054c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105f15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610618826108a6565b9050806001600160a01b0316836001600160a01b031614156106865760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e8565b336001600160a01b03821614806106a257506106a28133610441565b6107145760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e8565b61071e8383610f23565b505050565b61072d3382610f91565b6107495760405162461bcd60e51b81526004016105e890611abb565b61071e838383611088565b6006546001600160a01b0316331461077e5760405162461bcd60e51b81526004016105e890611a86565b600a805460ff19811660ff90911615179055565b6006546001600160a01b031633146107bc5760405162461bcd60e51b81526004016105e890611a86565b604051600090339047908381818185875af1925050503d80600081146107fe576040519150601f19603f3d011682016040523d82523d6000602084013e610803565b606091505b50509050806108475760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016105e8565b50565b61071e83838360405180602001604052806000815250610d78565b6006546001600160a01b0316331461088f5760405162461bcd60e51b81526004016105e890611a86565b80516108a2906009906020840190611656565b5050565b6000818152600260205260408120546001600160a01b0316806104db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e8565b60006001600160a01b0382166109885760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109ce5760405162461bcd60e51b81526004016105e890611a86565b6109d86000611228565b565b6060600180546104f090611b9a565b60006109f460075490565b90506101f4610a038383611b0c565b1115610a4a5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016105e8565b60008211610ac05760405162461bcd60e51b815260206004820152603e60248201527f4d696e696d756d2031204261627920536869626120436c7562204e465420686160448201527f7320746f206265206d696e74656420706572207472616e73616374696f6e000060648201526084016105e8565b6006546001600160a01b03163314610c0757600a5460ff16610b1b5760405162461bcd60e51b815260206004820152601460248201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b60448201526064016105e8565b600a821115610b925760405162461bcd60e51b815260206004820152603d60248201527f4d6178696d756d203130204261627920536869626120436c7562204e4654732060448201527f63616e206265206d696e74656420706572207472616e73616374696f6e00000060648201526084016105e8565b81600854610ba09190611b38565b341015610c075760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b60648201526084016105e8565b8160076000828254610c199190611b0c565b90915550600090505b8281101561071e57610c3f33610c3784611bd5565b93508361127a565b6040518281527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a180610c7c81611bd5565b915050610c22565b6001600160a01b038216331415610cdd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610d735760405162461bcd60e51b81526004016105e890611a86565b600855565b610d823383610f91565b610d9e5760405162461bcd60e51b81526004016105e890611abb565b610daa84848484611294565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e2f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e8565b6000610e396112c7565b90506000815111610e595760405180602001604052806000815250610e84565b80610e63846112d6565b604051602001610e749291906119b5565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610eb55760405162461bcd60e51b81526004016105e890611a86565b6001600160a01b038116610f1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e8565b61084781611228565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f58826108a6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661100a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e8565b6000611015836108a6565b9050806001600160a01b0316846001600160a01b031614806110505750836001600160a01b031661104584610573565b6001600160a01b0316145b8061108057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661109b826108a6565b6001600160a01b0316146111035760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e8565b6001600160a01b0382166111655760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e8565b611170600082610f23565b6001600160a01b0383166000908152600360205260408120805460019290611199908490611b57565b90915550506001600160a01b03821660009081526003602052604081208054600192906111c7908490611b0c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108a28282604051806020016040528060008152506113d4565b61129f848484611088565b6112ab84848484611407565b610daa5760405162461bcd60e51b81526004016105e890611a34565b6060600980546104f090611b9a565b6060816112fa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611324578061130e81611bd5565b915061131d9050600a83611b24565b91506112fe565b60008167ffffffffffffffff81111561133f5761133f611c46565b6040519080825280601f01601f191660200182016040528015611369576020820181803683370190505b5090505b84156110805761137e600183611b57565b915061138b600a86611bf0565b611396906030611b0c565b60f81b8183815181106113ab576113ab611c30565b60200101906001600160f81b031916908160001a9053506113cd600a86611b24565b945061136d565b6113de8383611514565b6113eb6000848484611407565b61071e5760405162461bcd60e51b81526004016105e890611a34565b60006001600160a01b0384163b1561150957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061144b9033908990889088906004016119e4565b602060405180830381600087803b15801561146557600080fd5b505af1925050508015611495575060408051601f3d908101601f191682019092526114929181019061190a565b60015b6114ef573d8080156114c3576040519150601f19603f3d011682016040523d82523d6000602084013e6114c8565b606091505b5080516114e75760405162461bcd60e51b81526004016105e890611a34565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611080565b506001949350505050565b6001600160a01b03821661156a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e8565b6000818152600260205260409020546001600160a01b0316156115cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e8565b6001600160a01b03821660009081526003602052604081208054600192906115f8908490611b0c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461166290611b9a565b90600052602060002090601f01602090048101928261168457600085556116ca565b82601f1061169d57805160ff19168380011785556116ca565b828001600101855582156116ca579182015b828111156116ca5782518255916020019190600101906116af565b506116d69291506116da565b5090565b5b808211156116d657600081556001016116db565b600067ffffffffffffffff8084111561170a5761170a611c46565b604051601f8501601f19908116603f0116810190828211818310171561173257611732611c46565b8160405280935085815286868601111561174b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461177c57600080fd5b919050565b60006020828403121561179357600080fd5b610e8482611765565b600080604083850312156117af57600080fd5b6117b883611765565b91506117c660208401611765565b90509250929050565b6000806000606084860312156117e457600080fd5b6117ed84611765565b92506117fb60208501611765565b9150604084013590509250925092565b6000806000806080858703121561182157600080fd5b61182a85611765565b935061183860208601611765565b925060408501359150606085013567ffffffffffffffff81111561185b57600080fd5b8501601f8101871361186c57600080fd5b61187b878235602084016116ef565b91505092959194509250565b6000806040838503121561189a57600080fd5b6118a383611765565b9150602083013580151581146118b857600080fd5b809150509250929050565b600080604083850312156118d657600080fd5b6118df83611765565b946020939093013593505050565b6000602082840312156118ff57600080fd5b8135610e8481611c5c565b60006020828403121561191c57600080fd5b8151610e8481611c5c565b60006020828403121561193957600080fd5b813567ffffffffffffffff81111561195057600080fd5b8201601f8101841361196157600080fd5b611080848235602084016116ef565b60006020828403121561198257600080fd5b5035919050565b600081518084526119a1816020860160208601611b6e565b601f01601f19169290920160200192915050565b600083516119c7818460208801611b6e565b8351908301906119db818360208801611b6e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a1790830184611989565b9695505050505050565b602081526000610e846020830184611989565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b1f57611b1f611c04565b500190565b600082611b3357611b33611c1a565b500490565b6000816000190483118215151615611b5257611b52611c04565b500290565b600082821015611b6957611b69611c04565b500390565b60005b83811015611b89578181015183820152602001611b71565b83811115610daa5750506000910152565b600181811c90821680611bae57607f821691505b60208210811415611bcf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611be957611be9611c04565b5060010190565b600082611bff57611bff611c1a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084757600080fdfea2646970667358221220904d90c7175f2d2baa674594ad3c325a1213fb24e5b3fbd5ae96bf50a0526f6d64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063a0712d681161008a578063b88d4fde11610064578063b88d4fde146103e6578063c87b56dd14610406578063e985e9c514610426578063f2fde38b1461046f57600080fd5b8063a0712d6814610393578063a22cb465146103a6578063a2b40d19146103c657600080fd5b806370a08231146102fb578063715018a61461031b5780638da5cb5b1461033057806395d89b411461034e57806399288dbb14610363578063a035b1fe1461037d57600080fd5b806332cb6b0c1161012357806332cb6b0c1461025b57806334918dfd146102715780633ccfd60b1461028657806342842e0e1461029b57806355f804b3146102bb5780636352211e146102db57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b6101863660046118ed565b61048f565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104e1565b6040516101979190611a21565b3480156101ce57600080fd5b506101e26101dd366004611970565b610573565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046118c3565b61060d565b005b34801561022857600080fd5b506007545b604051908152602001610197565b34801561024757600080fd5b5061021a6102563660046117cf565b610723565b34801561026757600080fd5b5061022d6101f481565b34801561027d57600080fd5b5061021a610754565b34801561029257600080fd5b5061021a610792565b3480156102a757600080fd5b5061021a6102b63660046117cf565b61084a565b3480156102c757600080fd5b5061021a6102d6366004611927565b610865565b3480156102e757600080fd5b506101e26102f6366004611970565b6108a6565b34801561030757600080fd5b5061022d610316366004611781565b61091d565b34801561032757600080fd5b5061021a6109a4565b34801561033c57600080fd5b506006546001600160a01b03166101e2565b34801561035a57600080fd5b506101b56109da565b34801561036f57600080fd5b50600a5461018b9060ff1681565b34801561038957600080fd5b5061022d60085481565b61021a6103a1366004611970565b6109e9565b3480156103b257600080fd5b5061021a6103c1366004611887565b610c84565b3480156103d257600080fd5b5061021a6103e1366004611970565b610d49565b3480156103f257600080fd5b5061021a61040136600461180b565b610d78565b34801561041257600080fd5b506101b5610421366004611970565b610db0565b34801561043257600080fd5b5061018b61044136600461179c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561047b57600080fd5b5061021a61048a366004611781565b610e8b565b60006001600160e01b031982166380ac58cd60e01b14806104c057506001600160e01b03198216635b5e139f60e01b145b806104db57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104f090611b9a565b80601f016020809104026020016040519081016040528092919081815260200182805461051c90611b9a565b80156105695780601f1061053e57610100808354040283529160200191610569565b820191906000526020600020905b81548152906001019060200180831161054c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105f15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610618826108a6565b9050806001600160a01b0316836001600160a01b031614156106865760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e8565b336001600160a01b03821614806106a257506106a28133610441565b6107145760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e8565b61071e8383610f23565b505050565b61072d3382610f91565b6107495760405162461bcd60e51b81526004016105e890611abb565b61071e838383611088565b6006546001600160a01b0316331461077e5760405162461bcd60e51b81526004016105e890611a86565b600a805460ff19811660ff90911615179055565b6006546001600160a01b031633146107bc5760405162461bcd60e51b81526004016105e890611a86565b604051600090339047908381818185875af1925050503d80600081146107fe576040519150601f19603f3d011682016040523d82523d6000602084013e610803565b606091505b50509050806108475760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016105e8565b50565b61071e83838360405180602001604052806000815250610d78565b6006546001600160a01b0316331461088f5760405162461bcd60e51b81526004016105e890611a86565b80516108a2906009906020840190611656565b5050565b6000818152600260205260408120546001600160a01b0316806104db5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e8565b60006001600160a01b0382166109885760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109ce5760405162461bcd60e51b81526004016105e890611a86565b6109d86000611228565b565b6060600180546104f090611b9a565b60006109f460075490565b90506101f4610a038383611b0c565b1115610a4a5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016105e8565b60008211610ac05760405162461bcd60e51b815260206004820152603e60248201527f4d696e696d756d2031204261627920536869626120436c7562204e465420686160448201527f7320746f206265206d696e74656420706572207472616e73616374696f6e000060648201526084016105e8565b6006546001600160a01b03163314610c0757600a5460ff16610b1b5760405162461bcd60e51b815260206004820152601460248201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b60448201526064016105e8565b600a821115610b925760405162461bcd60e51b815260206004820152603d60248201527f4d6178696d756d203130204261627920536869626120436c7562204e4654732060448201527f63616e206265206d696e74656420706572207472616e73616374696f6e00000060648201526084016105e8565b81600854610ba09190611b38565b341015610c075760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b60648201526084016105e8565b8160076000828254610c199190611b0c565b90915550600090505b8281101561071e57610c3f33610c3784611bd5565b93508361127a565b6040518281527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a180610c7c81611bd5565b915050610c22565b6001600160a01b038216331415610cdd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610d735760405162461bcd60e51b81526004016105e890611a86565b600855565b610d823383610f91565b610d9e5760405162461bcd60e51b81526004016105e890611abb565b610daa84848484611294565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e2f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e8565b6000610e396112c7565b90506000815111610e595760405180602001604052806000815250610e84565b80610e63846112d6565b604051602001610e749291906119b5565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610eb55760405162461bcd60e51b81526004016105e890611a86565b6001600160a01b038116610f1a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e8565b61084781611228565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f58826108a6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661100a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e8565b6000611015836108a6565b9050806001600160a01b0316846001600160a01b031614806110505750836001600160a01b031661104584610573565b6001600160a01b0316145b8061108057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661109b826108a6565b6001600160a01b0316146111035760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e8565b6001600160a01b0382166111655760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e8565b611170600082610f23565b6001600160a01b0383166000908152600360205260408120805460019290611199908490611b57565b90915550506001600160a01b03821660009081526003602052604081208054600192906111c7908490611b0c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108a28282604051806020016040528060008152506113d4565b61129f848484611088565b6112ab84848484611407565b610daa5760405162461bcd60e51b81526004016105e890611a34565b6060600980546104f090611b9a565b6060816112fa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611324578061130e81611bd5565b915061131d9050600a83611b24565b91506112fe565b60008167ffffffffffffffff81111561133f5761133f611c46565b6040519080825280601f01601f191660200182016040528015611369576020820181803683370190505b5090505b84156110805761137e600183611b57565b915061138b600a86611bf0565b611396906030611b0c565b60f81b8183815181106113ab576113ab611c30565b60200101906001600160f81b031916908160001a9053506113cd600a86611b24565b945061136d565b6113de8383611514565b6113eb6000848484611407565b61071e5760405162461bcd60e51b81526004016105e890611a34565b60006001600160a01b0384163b1561150957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061144b9033908990889088906004016119e4565b602060405180830381600087803b15801561146557600080fd5b505af1925050508015611495575060408051601f3d908101601f191682019092526114929181019061190a565b60015b6114ef573d8080156114c3576040519150601f19603f3d011682016040523d82523d6000602084013e6114c8565b606091505b5080516114e75760405162461bcd60e51b81526004016105e890611a34565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611080565b506001949350505050565b6001600160a01b03821661156a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e8565b6000818152600260205260409020546001600160a01b0316156115cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e8565b6001600160a01b03821660009081526003602052604081208054600192906115f8908490611b0c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461166290611b9a565b90600052602060002090601f01602090048101928261168457600085556116ca565b82601f1061169d57805160ff19168380011785556116ca565b828001600101855582156116ca579182015b828111156116ca5782518255916020019190600101906116af565b506116d69291506116da565b5090565b5b808211156116d657600081556001016116db565b600067ffffffffffffffff8084111561170a5761170a611c46565b604051601f8501601f19908116603f0116810190828211818310171561173257611732611c46565b8160405280935085815286868601111561174b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461177c57600080fd5b919050565b60006020828403121561179357600080fd5b610e8482611765565b600080604083850312156117af57600080fd5b6117b883611765565b91506117c660208401611765565b90509250929050565b6000806000606084860312156117e457600080fd5b6117ed84611765565b92506117fb60208501611765565b9150604084013590509250925092565b6000806000806080858703121561182157600080fd5b61182a85611765565b935061183860208601611765565b925060408501359150606085013567ffffffffffffffff81111561185b57600080fd5b8501601f8101871361186c57600080fd5b61187b878235602084016116ef565b91505092959194509250565b6000806040838503121561189a57600080fd5b6118a383611765565b9150602083013580151581146118b857600080fd5b809150509250929050565b600080604083850312156118d657600080fd5b6118df83611765565b946020939093013593505050565b6000602082840312156118ff57600080fd5b8135610e8481611c5c565b60006020828403121561191c57600080fd5b8151610e8481611c5c565b60006020828403121561193957600080fd5b813567ffffffffffffffff81111561195057600080fd5b8201601f8101841361196157600080fd5b611080848235602084016116ef565b60006020828403121561198257600080fd5b5035919050565b600081518084526119a1816020860160208601611b6e565b601f01601f19169290920160200192915050565b600083516119c7818460208801611b6e565b8351908301906119db818360208801611b6e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a1790830184611989565b9695505050505050565b602081526000610e846020830184611989565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b1f57611b1f611c04565b500190565b600082611b3357611b33611c1a565b500490565b6000816000190483118215151615611b5257611b52611c04565b500290565b600082821015611b6957611b69611c04565b500390565b60005b83811015611b89578181015183820152602001611b71565b83811115610daa5750506000910152565b600181811c90821680611bae57607f821691505b60208210811415611bcf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611be957611be9611c04565b5060010190565b600082611bff57611bff611c1a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461084757600080fdfea2646970667358221220904d90c7175f2d2baa674594ad3c325a1213fb24e5b3fbd5ae96bf50a0526f6d64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36559:2038:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23445:355;;;;;;;;;;-1:-1:-1;23445:355:0;;;;;:::i;:::-;;:::i;:::-;;;5856:14:1;;5849:22;5831:41;;5819:2;5804:18;23445:355:0;;;;;;;;24614:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26307:308::-;;;;;;;;;;-1:-1:-1;26307:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:1;;;5136:51;;5124:2;5109:18;26307:308:0;4990:203:1;25830:411:0;;;;;;;;;;-1:-1:-1;25830:411:0;;;;;:::i;:::-;;:::i;:::-;;36973:88;;;;;;;;;;-1:-1:-1;37044:9:0;;36973:88;;;14957:25:1;;;14945:2;14930:18;36973:88:0;14811:177:1;27366:376:0;;;;;;;;;;-1:-1:-1;27366:376:0;;;;;:::i;:::-;;:::i;36608:40::-;;;;;;;;;;;;36645:3;36608:40;;37281:83;;;;;;;;;;;;;:::i;37372:206::-;;;;;;;;;;;;;:::i;27813:185::-;;;;;;;;;;-1:-1:-1;27813:185:0;;;;;:::i;:::-;;:::i;37069:101::-;;;;;;;;;;-1:-1:-1;37069:101:0;;;;;:::i;:::-;;:::i;24221:326::-;;;;;;;;;;-1:-1:-1;24221:326:0;;;;;:::i;:::-;;:::i;23864:295::-;;;;;;;;;;-1:-1:-1;23864:295:0;;;;;:::i;:::-;;:::i;8333:94::-;;;;;;;;;;;;;:::i;7682:87::-;;;;;;;;;;-1:-1:-1;7755:6:0;;-1:-1:-1;;;;;7755:6:0;7682:87;;24783:104;;;;;;;;;;;;;:::i;36780:28::-;;;;;;;;;;-1:-1:-1;36780:28:0;;;;;;;;36693:41;;;;;;;;;;;;;;;;37586:887;;;;;;:::i;:::-;;:::i;26687:327::-;;;;;;;;;;-1:-1:-1;26687:327:0;;;;;:::i;:::-;;:::i;37178:95::-;;;;;;;;;;-1:-1:-1;37178:95:0;;;;;:::i;:::-;;:::i;28069:365::-;;;;;;;;;;-1:-1:-1;28069:365:0;;;;;:::i;:::-;;:::i;24958:468::-;;;;;;;;;;-1:-1:-1;24958:468:0;;;;;:::i;:::-;;:::i;27085:214::-;;;;;;;;;;-1:-1:-1;27085:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27085:214;8582:229;;;;;;;;;;-1:-1:-1;8582:229:0;;;;;:::i;:::-;;:::i;23445:355::-;23592:4;-1:-1:-1;;;;;;23634:40:0;;-1:-1:-1;;;23634:40:0;;:105;;-1:-1:-1;;;;;;;23691:48:0;;-1:-1:-1;;;23691:48:0;23634:105;:158;;;-1:-1:-1;;;;;;;;;;9950:40:0;;;23756:36;23614:178;23445:355;-1:-1:-1;;23445:355:0:o;24614:100::-;24668:13;24701:5;24694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24614:100;:::o;26307:308::-;26428:7;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;26453:110;;;;-1:-1:-1;;;26453:110:0;;11051:2:1;26453:110:0;;;11033:21:1;11090:2;11070:18;;;11063:30;11129:34;11109:18;;;11102:62;-1:-1:-1;;;11180:18:1;;;11173:42;11232:19;;26453:110:0;;;;;;;;;-1:-1:-1;26583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26583:24:0;;26307:308::o;25830:411::-;25911:13;25927:23;25942:7;25927:14;:23::i;:::-;25911:39;;25975:5;-1:-1:-1;;;;;25969:11:0;:2;-1:-1:-1;;;;;25969:11:0;;;25961:57;;;;-1:-1:-1;;;25961:57:0;;13067:2:1;25961:57:0;;;13049:21:1;13106:2;13086:18;;;13079:30;13145:34;13125:18;;;13118:62;-1:-1:-1;;;13196:18:1;;;13189:31;13237:19;;25961:57:0;12865:397:1;25961:57:0;735:10;-1:-1:-1;;;;;26053:21:0;;;;:62;;-1:-1:-1;26078:37:0;26095:5;735:10;27085:214;:::i;26078:37::-;26031:168;;;;-1:-1:-1;;;26031:168:0;;9444:2:1;26031:168:0;;;9426:21:1;9483:2;9463:18;;;9456:30;9522:34;9502:18;;;9495:62;9593:26;9573:18;;;9566:54;9637:19;;26031:168:0;9242:420:1;26031:168:0;26212:21;26221:2;26225:7;26212:8;:21::i;:::-;25900:341;25830:411;;:::o;27366:376::-;27575:41;735:10;27608:7;27575:18;:41::i;:::-;27553:140;;;;-1:-1:-1;;;27553:140:0;;;;;;;:::i;:::-;27706:28;27716:4;27722:2;27726:7;27706:9;:28::i;37281:83::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37348:8:::1;::::0;;-1:-1:-1;;37336:20:0;::::1;37348:8;::::0;;::::1;37347:9;37336:20;::::0;;37281:83::o;37372:206::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37441:82:::1;::::0;37423:12:::1;::::0;37449:10:::1;::::0;37487:21:::1;::::0;37423:12;37441:82;37423:12;37441:82;37487:21;37449:10;37441:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37422:101;;;37542:7;37534:36;;;::::0;-1:-1:-1;;;37534:36:0;;13820:2:1;37534:36:0::1;::::0;::::1;13802:21:1::0;13859:2;13839:18;;;13832:30;-1:-1:-1;;;13878:18:1;;;13871:46;13934:18;;37534:36:0::1;13618:340:1::0;37534:36:0::1;37411:167;37372:206::o:0;27813:185::-;27951:39;27968:4;27974:2;27978:7;27951:39;;;;;;;;;;;;:16;:39::i;37069:101::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37140:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37069:101:::0;:::o;24221:326::-;24338:7;24379:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24379:16:0;24428:19;24406:110;;;;-1:-1:-1;;;24406:110:0;;10280:2:1;24406:110:0;;;10262:21:1;10319:2;10299:18;;;10292:30;10358:34;10338:18;;;10331:62;-1:-1:-1;;;10409:18:1;;;10402:39;10458:19;;24406:110:0;10078:405:1;23864:295:0;23981:7;-1:-1:-1;;;;;24028:19:0;;24006:111;;;;-1:-1:-1;;;24006:111:0;;9869:2:1;24006:111:0;;;9851:21:1;9908:2;9888:18;;;9881:30;9947:34;9927:18;;;9920:62;-1:-1:-1;;;9998:18:1;;;9991:40;10048:19;;24006:111:0;9667:406:1;24006:111:0;-1:-1:-1;;;;;;24135:16:0;;;;;:9;:16;;;;;;;23864:295::o;8333:94::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;8398:21:::1;8416:1;8398:9;:21::i;:::-;8333:94::o:0;24783:104::-;24839:13;24872:7;24865:14;;;;;:::i;37586:887::-;37644:14;37661:13;37044:9;;;36973:88;37661:13;37644:30;-1:-1:-1;36645:3:0;37695:15;37704:6;37644:30;37695:15;:::i;:::-;:29;;37687:64;;;;-1:-1:-1;;;37687:64:0;;13469:2:1;37687:64:0;;;13451:21:1;13508:2;13488:18;;;13481:30;-1:-1:-1;;;13527:18:1;;;13520:52;13589:18;;37687:64:0;13267:346:1;37687:64:0;37793:1;37784:6;:10;37762:122;;;;-1:-1:-1;;;37762:122:0;;9013:2:1;37762:122:0;;;8995:21:1;9052:2;9032:18;;;9025:30;9091:34;9071:18;;;9064:62;9162:32;9142:18;;;9135:60;9212:19;;37762:122:0;8811:426:1;37762:122:0;7755:6;;-1:-1:-1;;;;;7755:6:0;37901:10;:21;37897:396;;37947:8;;;;37939:41;;;;-1:-1:-1;;;37939:41:0;;8251:2:1;37939:41:0;;;8233:21:1;8290:2;8270:18;;;8263:30;-1:-1:-1;;;8309:18:1;;;8302:50;8369:18;;37939:41:0;8049:344:1;37939:41:0;38031:2;38021:6;:12;;37995:135;;;;-1:-1:-1;;;37995:135:0;;14583:2:1;37995:135:0;;;14565:21:1;14622:2;14602:18;;;14595:30;14661:34;14641:18;;;14634:62;14732:31;14712:18;;;14705:59;14781:19;;37995:135:0;14381:425:1;37995:135:0;38192:6;38184:5;;:14;;;;:::i;:::-;38171:9;:27;;38145:136;;;;-1:-1:-1;;;38145:136:0;;11464:2:1;38145:136:0;;;11446:21:1;11503:2;11483:18;;;11476:30;11542:34;11522:18;;;11515:62;-1:-1:-1;;;11593:18:1;;;11586:45;11648:19;;38145:136:0;11262:411:1;38145:136:0;38318:6;38305:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;38342:9:0;;-1:-1:-1;38337:129:0;38361:6;38357:1;:10;38337:129;;;38389:31;38399:10;38411:8;;;:::i;:::-;;;;38389:9;:31::i;:::-;38440:14;;14957:25:1;;;38440:14:0;;14945:2:1;14930:18;38440:14:0;;;;;;;38369:3;;;;:::i;:::-;;;;38337:129;;26687:327;-1:-1:-1;;;;;26822:24:0;;735:10;26822:24;;26814:62;;;;-1:-1:-1;;;26814:62:0;;7897:2:1;26814:62:0;;;7879:21:1;7936:2;7916:18;;;7909:30;7975:27;7955:18;;;7948:55;8020:18;;26814:62:0;7695:349:1;26814:62:0;735:10;26889:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26889:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26889:53:0;;;;;;;;;;26958:48;;5831:41:1;;;26889:42:0;;735:10;26958:48;;5804:18:1;26958:48:0;;;;;;;26687:327;;:::o;37178:95::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37248:5:::1;:17:::0;37178:95::o;28069:365::-;28258:41;735:10;28291:7;28258:18;:41::i;:::-;28236:140;;;;-1:-1:-1;;;28236:140:0;;;;;;;:::i;:::-;28387:39;28401:4;28407:2;28411:7;28420:5;28387:13;:39::i;:::-;28069:365;;;;:::o;24958:468::-;30046:4;30070:16;;;:7;:16;;;;;;25076:13;;-1:-1:-1;;;;;30070:16:0;25107:113;;;;-1:-1:-1;;;25107:113:0;;12651:2:1;25107:113:0;;;12633:21:1;12690:2;12670:18;;;12663:30;12729:34;12709:18;;;12702:62;-1:-1:-1;;;12780:18:1;;;12773:45;12835:19;;25107:113:0;12449:411:1;25107:113:0;25233:21;25257:10;:8;:10::i;:::-;25233:34;;25322:1;25304:7;25298:21;:25;:120;;;;;;;;;;;;;;;;;25367:7;25376:18;:7;:16;:18::i;:::-;25350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25298:120;25278:140;24958:468;-1:-1:-1;;;24958:468:0:o;8582:229::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8685:22:0;::::1;8663:110;;;::::0;-1:-1:-1;;;8663:110:0;;6728:2:1;8663:110:0::1;::::0;::::1;6710:21:1::0;6767:2;6747:18;;;6740:30;6806:34;6786:18;;;6779:62;-1:-1:-1;;;6857:18:1;;;6850:36;6903:19;;8663:110:0::1;6526:402:1::0;8663:110:0::1;8784:19;8794:8;8784:9;:19::i;34104:174::-:0;34179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34179:29:0;-1:-1:-1;;;;;34179:29:0;;;;;;;;:24;;34233:23;34179:24;34233:14;:23::i;:::-;-1:-1:-1;;;;;34224:46:0;;;;;;;;;;;34104:174;;:::o;30275:452::-;30404:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;30426:110;;;;-1:-1:-1;;;30426:110:0;;8600:2:1;30426:110:0;;;8582:21:1;8639:2;8619:18;;;8612:30;8678:34;8658:18;;;8651:62;-1:-1:-1;;;8729:18:1;;;8722:42;8781:19;;30426:110:0;8398:408:1;30426:110:0;30547:13;30563:23;30578:7;30563:14;:23::i;:::-;30547:39;;30616:5;-1:-1:-1;;;;;30605:16:0;:7;-1:-1:-1;;;;;30605:16:0;;:64;;;;30662:7;-1:-1:-1;;;;;30638:31:0;:20;30650:7;30638:11;:20::i;:::-;-1:-1:-1;;;;;30638:31:0;;30605:64;:113;;;-1:-1:-1;;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30686:32;30597:122;30275:452;-1:-1:-1;;;;30275:452:0:o;33371:615::-;33544:4;-1:-1:-1;;;;;33517:31:0;:23;33532:7;33517:14;:23::i;:::-;-1:-1:-1;;;;;33517:31:0;;33495:122;;;;-1:-1:-1;;;33495:122:0;;12241:2:1;33495:122:0;;;12223:21:1;12280:2;12260:18;;;12253:30;12319:34;12299:18;;;12292:62;-1:-1:-1;;;12370:18:1;;;12363:39;12419:19;;33495:122:0;12039:405:1;33495:122:0;-1:-1:-1;;;;;33636:16:0;;33628:65;;;;-1:-1:-1;;;33628:65:0;;7492:2:1;33628:65:0;;;7474:21:1;7531:2;7511:18;;;7504:30;7570:34;7550:18;;;7543:62;-1:-1:-1;;;7621:18:1;;;7614:34;7665:19;;33628:65:0;7290:400:1;33628:65:0;33810:29;33827:1;33831:7;33810:8;:29::i;:::-;-1:-1:-1;;;;;33852:15:0;;;;;;:9;:15;;;;;:20;;33871:1;;33852:15;:20;;33871:1;;33852:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33883:13:0;;;;;;:9;:13;;;;;:18;;33900:1;;33883:13;:18;;33900:1;;33883:18;:::i;:::-;;;;-1:-1:-1;;33912:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33912:21:0;-1:-1:-1;;;;;33912:21:0;;;;;;;;;33951:27;;33912:16;;33951:27;;;;;;;33371:615;;;:::o;8819:173::-;8894:6;;;-1:-1:-1;;;;;8911:17:0;;;-1:-1:-1;;;;;;8911:17:0;;;;;;;8944:40;;8894:6;;;8911:17;8894:6;;8944:40;;8875:16;;8944:40;8864:128;8819:173;:::o;31069:110::-;31145:26;31155:2;31159:7;31145:26;;;;;;;;;;;;:9;:26::i;29316:352::-;29473:28;29483:4;29489:2;29493:7;29473:9;:28::i;:::-;29534:48;29557:4;29563:2;29567:7;29576:5;29534:22;:48::i;:::-;29512:148;;;;-1:-1:-1;;;29512:148:0;;;;;;;:::i;38481:113::-;38541:13;38574:12;38567:19;;;;;:::i;10312:723::-;10368:13;10589:10;10585:53;;-1:-1:-1;;10616:10:0;;;;;;;;;;;;-1:-1:-1;;;10616:10:0;;;;;10312:723::o;10585:53::-;10663:5;10648:12;10704:78;10711:9;;10704:78;;10737:8;;;;:::i;:::-;;-1:-1:-1;10760:10:0;;-1:-1:-1;10768:2:0;10760:10;;:::i;:::-;;;10704:78;;;10792:19;10824:6;10814:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10814:17:0;;10792:39;;10842:154;10849:10;;10842:154;;10876:11;10886:1;10876:11;;:::i;:::-;;-1:-1:-1;10945:10:0;10953:2;10945:5;:10;:::i;:::-;10932:24;;:2;:24;:::i;:::-;10919:39;;10902:6;10909;10902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10902:56:0;;;;;;;;-1:-1:-1;10973:11:0;10982:2;10973:11;;:::i;:::-;;;10842:154;;31406:321;31536:18;31542:2;31546:7;31536:5;:18::i;:::-;31587:54;31618:1;31622:2;31626:7;31635:5;31587:22;:54::i;:::-;31565:154;;;;-1:-1:-1;;;31565:154:0;;;;;;;:::i;34843:984::-;34998:4;-1:-1:-1;;;;;35019:13:0;;13188:20;13236:8;35015:805;;35072:175;;-1:-1:-1;;;35072:175:0;;-1:-1:-1;;;;;35072:36:0;;;;;:175;;735:10;;35166:4;;35193:7;;35223:5;;35072:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35072:175:0;;;;;;;;-1:-1:-1;;35072:175:0;;;;;;;;;;;;:::i;:::-;;;35051:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35434:13:0;;35430:320;;35477:108;;-1:-1:-1;;;35477:108:0;;;;;;;:::i;35430:320::-;35700:6;35694:13;35685:6;35681:2;35677:15;35670:38;35051:714;-1:-1:-1;;;;;;35311:55:0;-1:-1:-1;;;35311:55:0;;-1:-1:-1;35304:62:0;;35015:805;-1:-1:-1;35804:4:0;34843:984;;;;;;:::o;32063:382::-;-1:-1:-1;;;;;32143:16:0;;32135:61;;;;-1:-1:-1;;;32135:61:0;;10690:2:1;32135:61:0;;;10672:21:1;;;10709:18;;;10702:30;10768:34;10748:18;;;10741:62;10820:18;;32135:61:0;10488:356:1;32135:61:0;30046:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;:30;32207:58;;;;-1:-1:-1;;;32207:58:0;;7135:2:1;32207:58:0;;;7117:21:1;7174:2;7154:18;;;7147:30;7213;7193:18;;;7186:58;7261:18;;32207:58:0;6933:352:1;32207:58:0;-1:-1:-1;;;;;32336:13:0;;;;;;:9;:13;;;;;:18;;32353:1;;32336:13;:18;;32353:1;;32336:18;:::i;:::-;;;;-1:-1:-1;;32365:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32365:21:0;-1:-1:-1;;;;;32365:21:0;;;;;;;;32404:33;;32365:16;;;32404:33;;32365:16;;32404:33;32063: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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;5198:488::-;-1:-1:-1;;;;;5467:15:1;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:1:o;5883:219::-;6032:2;6021:9;6014:21;5995:4;6052:44;6092:2;6081:9;6077:18;6069:6;6052:44;:::i;6107:414::-;6309:2;6291:21;;;6348:2;6328:18;;;6321:30;6387:34;6382:2;6367:18;;6360:62;-1:-1:-1;;;6453:2:1;6438:18;;6431:48;6511:3;6496:19;;6107:414::o;11678:356::-;11880:2;11862:21;;;11899:18;;;11892:30;11958:34;11953:2;11938:18;;11931:62;12025:2;12010:18;;11678:356::o;13963:413::-;14165:2;14147:21;;;14204:2;14184:18;;;14177:30;14243:34;14238:2;14223:18;;14216:62;-1:-1:-1;;;14309:2:1;14294:18;;14287:47;14366:3;14351:19;;13963:413::o;14993:128::-;15033:3;15064:1;15060:6;15057:1;15054:13;15051:39;;;15070:18;;:::i;:::-;-1:-1:-1;15106:9:1;;14993:128::o;15126:120::-;15166:1;15192;15182:35;;15197:18;;:::i;:::-;-1:-1:-1;15231:9:1;;15126:120::o;15251:168::-;15291:7;15357:1;15353;15349:6;15345:14;15342:1;15339:21;15334:1;15327:9;15320:17;15316:45;15313:71;;;15364:18;;:::i;:::-;-1:-1:-1;15404:9:1;;15251:168::o;15424:125::-;15464:4;15492:1;15489;15486:8;15483:34;;;15497:18;;:::i;:::-;-1:-1:-1;15534:9:1;;15424:125::o;15554:258::-;15626:1;15636:113;15650:6;15647:1;15644:13;15636:113;;;15726:11;;;15720:18;15707:11;;;15700:39;15672:2;15665:10;15636:113;;;15767:6;15764:1;15761:13;15758:48;;;-1:-1:-1;;15802:1:1;15784:16;;15777:27;15554:258::o;15817:380::-;15896:1;15892:12;;;;15939;;;15960:61;;16014:4;16006:6;16002:17;15992:27;;15960:61;16067:2;16059:6;16056:14;16036:18;16033:38;16030:161;;;16113:10;16108:3;16104:20;16101:1;16094:31;16148:4;16145:1;16138:15;16176:4;16173:1;16166:15;16030:161;;15817:380;;;:::o;16202:135::-;16241:3;-1:-1:-1;;16262:17:1;;16259:43;;;16282:18;;:::i;:::-;-1:-1:-1;16329:1:1;16318:13;;16202:135::o;16342:112::-;16374:1;16400;16390:35;;16405:18;;:::i;:::-;-1:-1:-1;16439:9:1;;16342:112::o;16459:127::-;16520:10;16515:3;16511:20;16508:1;16501:31;16551:4;16548:1;16541:15;16575:4;16572:1;16565:15;16591:127;16652:10;16647:3;16643:20;16640:1;16633:31;16683:4;16680:1;16673:15;16707:4;16704:1;16697:15;16723:127;16784:10;16779:3;16775:20;16772:1;16765:31;16815:4;16812:1;16805:15;16839:4;16836:1;16829:15;16855:127;16916:10;16911:3;16907:20;16904:1;16897:31;16947:4;16944:1;16937:15;16971:4;16968:1;16961:15;16987:131;-1:-1:-1;;;;;;17061:32:1;;17051:43;;17041:71;;17108:1;17105;17098:12

Swarm Source

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