ETH Price: $2,425.07 (-0.87%)
 

Overview

Max Total Supply

292

Holders

126

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x59B2fa9bdC623048A12dBFf9a958FF77af2DF122
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:
BabyDoodles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-24
*/

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

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

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

// File: @openzeppelin/contracts/utils/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/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/token/ERC1155/IERC1155Receiver.sol



pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// 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/token/ERC1155/ERC1155.sol



pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// 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: BabyDoodles.sol




pragma solidity ^0.8.0;



/**
 * @dev BabyDoodles Adoption 
 */
contract BabyDoodles is ERC1155, Ownable {
    //@dev BabyDoodles Contract Information
    uint256 internal tokenId;
    uint256 public cost = 0.025 ether;
    uint256 public maxSupply = 5000;
	uint256 public totalSupply = 0;
    uint256 public maxMintAmount = 5;
    mapping(address => uint256) public freeMint;
    bool public paused;

    // @dev BabyDoodles attributes

    /**
     * BabyDoodles Contract
     */
    constructor(
        string memory _baseURI
    ) ERC1155 (_baseURI) {
        tokenId = 0;
    }

    /**
     * @dev Adopt BabyDoodle to wallet
     * @param _to the new parent wallet
     * @param _mintAmount number of babies
     */
	function mint(address _to, uint256 _mintAmount) public payable {
        require(!paused, "Registry Staff are on Lunch Break");
        require(_mintAmount <= maxMintAmount, "Max Babies for Adoption Exceeded");
        require(
            tokenId + _mintAmount <= maxSupply,
            "Not Enough Babies for Adoption"
        );

        if(freeMint[_to] < _mintAmount)
            require(
                msg.value >= cost * _mintAmount,
                "Insufficient Transaction Amount."
            );
        else
            freeMint[_to] -= _mintAmount;

        for (uint256 i = 0; i < _mintAmount; i++) {
            tokenId++;
            _mint(_to, tokenId, 1, "");
            totalSupply++;
        }
    }
    
    function withdraw() public payable onlyOwner{
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    /**
     * @dev Adoption cost changes
     * @param _newCost new cost for adoption
     */
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    /**
     * @dev restrict max babies per adoption transaction
     * @param _newmaxMintAmount new max babies per adoption transaction
     */
    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    /**
     * @dev restrict max babies for adoption at a time
     * @param _nexMaxSupply max babies for adoption at a time
     */
    function setmaxSupply(uint256 _nexMaxSupply) public onlyOwner {
        maxSupply = _nexMaxSupply;
    }
    
    /**
     * @dev Baby Information
     * @param _newURI Baby's Information
     */
    function setURI(string memory _newURI) public onlyOwner {
        _setURI(_newURI);
    }

    /**
     * @dev Disable adoption process
     */
    function pause() public onlyOwner {
        paused = !paused;
    }
	
	

    /**
     * @dev Parents adding to first access list
     * @param _user Parents wallet added
     */
    function freeMintUserBatch(
        address[] memory _user,
        uint256[] memory _amount
    ) public onlyOwner {
        require(_user.length == _amount.length);
        for (uint256 i = 0; i < _user.length; i++)
            freeMint[_user[i]] = _amount[i];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"freeMintUserBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nexMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526658d15e17628000600555611388600655600060075560056008553480156200002c57600080fd5b50604051620021cd380380620021cd8339810160408190526200004f9162000184565b806200005b8162000073565b5062000067336200008c565b506000600455620002b3565b805162000088906002906020840190620000de565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ec9062000260565b90600052602060002090601f0160209004810192826200011057600085556200015b565b82601f106200012b57805160ff19168380011785556200015b565b828001600101855582156200015b579182015b828111156200015b5782518255916020019190600101906200013e565b50620001699291506200016d565b5090565b5b808211156200016957600081556001016200016e565b600060208083850312156200019857600080fd5b82516001600160401b0380821115620001b057600080fd5b818501915085601f830112620001c557600080fd5b815181811115620001da57620001da6200029d565b604051601f8201601f19908116603f011681019083821181831017156200020557620002056200029d565b8160405282815288868487010111156200021e57600080fd5b600093505b8284101562000242578484018601518185018701529285019262000223565b82841115620002545760008684830101525b98975050505050505050565b600181811c908216806200027557607f821691505b602082108114156200029757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f0a80620002c36000396000f3fe6080604052600436106101655760003560e01c80634e1273f4116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c5146103e8578063f242432a14610431578063f2fde38b14610451578063fa07ce1d1461047157600080fd5b8063a22cb46514610392578063d04be076146103b2578063d5abeb01146103d257600080fd5b80634e1273f4146102d95780635c975abb14610306578063715018a6146103205780637f00c7a6146103355780638456cb59146103555780638da5cb5b1461036a57600080fd5b8063228025e811610123578063228025e814610248578063239c70ae146102685780632eb2c2d61461027e5780633ccfd60b1461029e57806340c10f19146102a657806344a0d68a146102b957600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806302fe5305146101cd5780630e89341c146101ef57806313faede61461021c57806318160ddd14610232575b600080fd5b34801561017657600080fd5b5061018a6101853660046118b7565b61049e565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b83660046119b2565b610535565b6040519015158152602001610194565b3480156101d957600080fd5b506101ed6101e83660046119ec565b610587565b005b3480156101fb57600080fd5b5061020f61020a366004611a3d565b6105bd565b6040516101949190611bc2565b34801561022857600080fd5b5061018a60055481565b34801561023e57600080fd5b5061018a60075481565b34801561025457600080fd5b506101ed610263366004611a3d565b610651565b34801561027457600080fd5b5061018a60085481565b34801561028a57600080fd5b506101ed61029936600461176c565b610680565b6101ed610717565b6101ed6102b43660046118b7565b6107b2565b3480156102c557600080fd5b506101ed6102d4366004611a3d565b6109db565b3480156102e557600080fd5b506102f96102f43660046118e1565b610a0a565b6040516101949190611b81565b34801561031257600080fd5b50600a546101bd9060ff1681565b34801561032c57600080fd5b506101ed610b34565b34801561034157600080fd5b506101ed610350366004611a3d565b610b6a565b34801561036157600080fd5b506101ed610b99565b34801561037657600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561039e57600080fd5b506101ed6103ad36600461187b565b610bd7565b3480156103be57600080fd5b506101ed6103cd3660046118e1565b610cae565b3480156103de57600080fd5b5061018a60065481565b3480156103f457600080fd5b506101bd610403366004611739565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561043d57600080fd5b506101ed61044c366004611816565b610d61565b34801561045d57600080fd5b506101ed61046c36600461171e565b610de8565b34801561047d57600080fd5b5061018a61048c36600461171e565b60096020526000908152604090205481565b60006001600160a01b03831661050f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061056657506001600160e01b031982166303a24d0760e21b145b8061058157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146105b15760405162461bcd60e51b815260040161050690611cac565b6105ba81610e80565b50565b6060600280546105cc90611d53565b80601f01602080910402602001604051908101604052809291908181526020018280546105f890611d53565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461067b5760405162461bcd60e51b815260040161050690611cac565b600655565b6001600160a01b03851633148061069c575061069c8533610403565b6107035760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610506565b6107108585858585610e97565b5050505050565b6003546001600160a01b031633146107415760405162461bcd60e51b815260040161050690611cac565b60006107556003546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461079f576040519150601f19603f3d011682016040523d82523d6000602084013e6107a4565b606091505b50509050806105ba57600080fd5b600a5460ff161561080f5760405162461bcd60e51b815260206004820152602160248201527f526567697374727920537461666620617265206f6e204c756e636820427265616044820152606b60f81b6064820152608401610506565b6008548111156108615760405162461bcd60e51b815260206004820181905260248201527f4d61782042616269657320666f722041646f7074696f6e2045786365656465646044820152606401610506565b600654816004546108729190611d05565b11156108c05760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420456e6f7567682042616269657320666f722041646f7074696f6e00006044820152606401610506565b6001600160a01b03821660009081526009602052604090205481111561094257806005546108ee9190611d1d565b34101561093d5760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e74205472616e73616374696f6e20416d6f756e742e6044820152606401610506565b610970565b6001600160a01b0382166000908152600960205260408120805483929061096a908490611d3c565b90915550505b60005b818110156109d6576004805490600061098b83611dbb565b91905055506109ae83600454600160405180602001604052806000815250611074565b600780549060006109be83611dbb565b919050555080806109ce90611dbb565b915050610973565b505050565b6003546001600160a01b03163314610a055760405162461bcd60e51b815260040161050690611cac565b600555565b60608151835114610a6f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610506565b6000835167ffffffffffffffff811115610a8b57610a8b611e02565b604051908082528060200260200182016040528015610ab4578160200160208202803683370190505b50905060005b8451811015610b2c57610aff858281518110610ad857610ad8611dec565b6020026020010151858381518110610af257610af2611dec565b602002602001015161049e565b828281518110610b1157610b11611dec565b6020908102919091010152610b2581611dbb565b9050610aba565b509392505050565b6003546001600160a01b03163314610b5e5760405162461bcd60e51b815260040161050690611cac565b610b68600061117e565b565b6003546001600160a01b03163314610b945760405162461bcd60e51b815260040161050690611cac565b600855565b6003546001600160a01b03163314610bc35760405162461bcd60e51b815260040161050690611cac565b600a805460ff19811660ff90911615179055565b336001600160a01b0383161415610c425760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610506565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6003546001600160a01b03163314610cd85760405162461bcd60e51b815260040161050690611cac565b8051825114610ce657600080fd5b60005b82518110156109d657818181518110610d0457610d04611dec565b602002602001015160096000858481518110610d2257610d22611dec565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610d5990611dbb565b915050610ce9565b6001600160a01b038516331480610d7d5750610d7d8533610403565b610ddb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610506565b61071085858585856111d0565b6003546001600160a01b03163314610e125760405162461bcd60e51b815260040161050690611cac565b6001600160a01b038116610e775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610506565b6105ba8161117e565b8051610e9390600290602084019061156d565b5050565b8151835114610ef95760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610506565b6001600160a01b038416610f1f5760405162461bcd60e51b815260040161050690611c1d565b3360005b8451811015611006576000858281518110610f4057610f40611dec565b602002602001015190506000858381518110610f5e57610f5e611dec565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610fae5760405162461bcd60e51b815260040161050690611c62565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610feb908490611d05565b9250508190555050505080610fff90611dbb565b9050610f23565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611056929190611b94565b60405180910390a461106c8187878787876112ed565b505050505050565b6001600160a01b0384166110d45760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610506565b336110ee816000876110e588611458565b61071088611458565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061111e908490611d05565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610710816000878787876114a3565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166111f65760405162461bcd60e51b815260040161050690611c1d565b336112068187876110e588611458565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156112475760405162461bcd60e51b815260040161050690611c62565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611284908490611d05565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46112e48288888888886114a3565b50505050505050565b6001600160a01b0384163b1561106c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906113319089908990889088908890600401611ade565b602060405180830381600087803b15801561134b57600080fd5b505af192505050801561137b575060408051601f3d908101601f19168201909252611378918101906119cf565b60015b61142857611387611e18565b806308c379a014156113c1575061139c611e34565b806113a757506113c3565b8060405162461bcd60e51b81526004016105069190611bc2565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610506565b6001600160e01b0319811663bc197c8160e01b146112e45760405162461bcd60e51b815260040161050690611bd5565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061149257611492611dec565b602090810291909101015292915050565b6001600160a01b0384163b1561106c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114e79089908990889088908890600401611b3c565b602060405180830381600087803b15801561150157600080fd5b505af1925050508015611531575060408051601f3d908101601f1916820190925261152e918101906119cf565b60015b61153d57611387611e18565b6001600160e01b0319811663f23a6e6160e01b146112e45760405162461bcd60e51b815260040161050690611bd5565b82805461157990611d53565b90600052602060002090601f01602090048101928261159b57600085556115e1565b82601f106115b457805160ff19168380011785556115e1565b828001600101855582156115e1579182015b828111156115e15782518255916020019190600101906115c6565b506115ed9291506115f1565b5090565b5b808211156115ed57600081556001016115f2565b600067ffffffffffffffff83111561162057611620611e02565b604051611637601f8501601f191660200182611d8e565b80915083815284848401111561164c57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461167b57600080fd5b919050565b600082601f83011261169157600080fd5b8135602061169e82611ce1565b6040516116ab8282611d8e565b8381528281019150858301600585901b870184018810156116cb57600080fd5b60005b858110156116ea578135845292840192908401906001016116ce565b5090979650505050505050565b600082601f83011261170857600080fd5b61171783833560208501611606565b9392505050565b60006020828403121561173057600080fd5b61171782611664565b6000806040838503121561174c57600080fd5b61175583611664565b915061176360208401611664565b90509250929050565b600080600080600060a0868803121561178457600080fd5b61178d86611664565b945061179b60208701611664565b9350604086013567ffffffffffffffff808211156117b857600080fd5b6117c489838a01611680565b945060608801359150808211156117da57600080fd5b6117e689838a01611680565b935060808801359150808211156117fc57600080fd5b50611809888289016116f7565b9150509295509295909350565b600080600080600060a0868803121561182e57600080fd5b61183786611664565b945061184560208701611664565b93506040860135925060608601359150608086013567ffffffffffffffff81111561186f57600080fd5b611809888289016116f7565b6000806040838503121561188e57600080fd5b61189783611664565b9150602083013580151581146118ac57600080fd5b809150509250929050565b600080604083850312156118ca57600080fd5b6118d383611664565b946020939093013593505050565b600080604083850312156118f457600080fd5b823567ffffffffffffffff8082111561190c57600080fd5b818501915085601f83011261192057600080fd5b8135602061192d82611ce1565b60405161193a8282611d8e565b8381528281019150858301600585901b870184018b101561195a57600080fd5b600096505b848710156119845761197081611664565b83526001969096019591830191830161195f565b509650508601359250508082111561199b57600080fd5b506119a885828601611680565b9150509250929050565b6000602082840312156119c457600080fd5b813561171781611ebe565b6000602082840312156119e157600080fd5b815161171781611ebe565b6000602082840312156119fe57600080fd5b813567ffffffffffffffff811115611a1557600080fd5b8201601f81018413611a2657600080fd5b611a3584823560208401611606565b949350505050565b600060208284031215611a4f57600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a8657815187529582019590820190600101611a6a565b509495945050505050565b6000815180845260005b81811015611ab757602081850181015186830182015201611a9b565b81811115611ac9576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611b0a90830186611a56565b8281036060840152611b1c8186611a56565b90508281036080840152611b308185611a91565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b7690830184611a91565b979650505050505050565b6020815260006117176020830184611a56565b604081526000611ba76040830185611a56565b8281036020840152611bb98185611a56565b95945050505050565b6020815260006117176020830184611a91565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611cfb57611cfb611e02565b5060051b60200190565b60008219821115611d1857611d18611dd6565b500190565b6000816000190483118215151615611d3757611d37611dd6565b500290565b600082821015611d4e57611d4e611dd6565b500390565b600181811c90821680611d6757607f821691505b60208210811415611d8857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611db457611db4611e02565b6040525050565b6000600019821415611dcf57611dcf611dd6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e315760046000803e5060005160e01c5b90565b600060443d1015611e425790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e7257505050505090565b8285019150815181811115611e8a5750505050505090565b843d8701016020828501011115611ea45750505050505090565b611eb360208286010187611d8e565b509095945050505050565b6001600160e01b0319811681146105ba57600080fdfea2646970667358221220352675ab5c6bbef48cb0b778bb7a5228b8f607e1104c6272b63d2ac4cc37eff564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101655760003560e01c80634e1273f4116100d1578063a22cb4651161008a578063e985e9c511610064578063e985e9c5146103e8578063f242432a14610431578063f2fde38b14610451578063fa07ce1d1461047157600080fd5b8063a22cb46514610392578063d04be076146103b2578063d5abeb01146103d257600080fd5b80634e1273f4146102d95780635c975abb14610306578063715018a6146103205780637f00c7a6146103355780638456cb59146103555780638da5cb5b1461036a57600080fd5b8063228025e811610123578063228025e814610248578063239c70ae146102685780632eb2c2d61461027e5780633ccfd60b1461029e57806340c10f19146102a657806344a0d68a146102b957600080fd5b8062fdd58e1461016a57806301ffc9a71461019d57806302fe5305146101cd5780630e89341c146101ef57806313faede61461021c57806318160ddd14610232575b600080fd5b34801561017657600080fd5b5061018a6101853660046118b7565b61049e565b6040519081526020015b60405180910390f35b3480156101a957600080fd5b506101bd6101b83660046119b2565b610535565b6040519015158152602001610194565b3480156101d957600080fd5b506101ed6101e83660046119ec565b610587565b005b3480156101fb57600080fd5b5061020f61020a366004611a3d565b6105bd565b6040516101949190611bc2565b34801561022857600080fd5b5061018a60055481565b34801561023e57600080fd5b5061018a60075481565b34801561025457600080fd5b506101ed610263366004611a3d565b610651565b34801561027457600080fd5b5061018a60085481565b34801561028a57600080fd5b506101ed61029936600461176c565b610680565b6101ed610717565b6101ed6102b43660046118b7565b6107b2565b3480156102c557600080fd5b506101ed6102d4366004611a3d565b6109db565b3480156102e557600080fd5b506102f96102f43660046118e1565b610a0a565b6040516101949190611b81565b34801561031257600080fd5b50600a546101bd9060ff1681565b34801561032c57600080fd5b506101ed610b34565b34801561034157600080fd5b506101ed610350366004611a3d565b610b6a565b34801561036157600080fd5b506101ed610b99565b34801561037657600080fd5b506003546040516001600160a01b039091168152602001610194565b34801561039e57600080fd5b506101ed6103ad36600461187b565b610bd7565b3480156103be57600080fd5b506101ed6103cd3660046118e1565b610cae565b3480156103de57600080fd5b5061018a60065481565b3480156103f457600080fd5b506101bd610403366004611739565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561043d57600080fd5b506101ed61044c366004611816565b610d61565b34801561045d57600080fd5b506101ed61046c36600461171e565b610de8565b34801561047d57600080fd5b5061018a61048c36600461171e565b60096020526000908152604090205481565b60006001600160a01b03831661050f5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061056657506001600160e01b031982166303a24d0760e21b145b8061058157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146105b15760405162461bcd60e51b815260040161050690611cac565b6105ba81610e80565b50565b6060600280546105cc90611d53565b80601f01602080910402602001604051908101604052809291908181526020018280546105f890611d53565b80156106455780601f1061061a57610100808354040283529160200191610645565b820191906000526020600020905b81548152906001019060200180831161062857829003601f168201915b50505050509050919050565b6003546001600160a01b0316331461067b5760405162461bcd60e51b815260040161050690611cac565b600655565b6001600160a01b03851633148061069c575061069c8533610403565b6107035760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610506565b6107108585858585610e97565b5050505050565b6003546001600160a01b031633146107415760405162461bcd60e51b815260040161050690611cac565b60006107556003546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461079f576040519150601f19603f3d011682016040523d82523d6000602084013e6107a4565b606091505b50509050806105ba57600080fd5b600a5460ff161561080f5760405162461bcd60e51b815260206004820152602160248201527f526567697374727920537461666620617265206f6e204c756e636820427265616044820152606b60f81b6064820152608401610506565b6008548111156108615760405162461bcd60e51b815260206004820181905260248201527f4d61782042616269657320666f722041646f7074696f6e2045786365656465646044820152606401610506565b600654816004546108729190611d05565b11156108c05760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420456e6f7567682042616269657320666f722041646f7074696f6e00006044820152606401610506565b6001600160a01b03821660009081526009602052604090205481111561094257806005546108ee9190611d1d565b34101561093d5760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e74205472616e73616374696f6e20416d6f756e742e6044820152606401610506565b610970565b6001600160a01b0382166000908152600960205260408120805483929061096a908490611d3c565b90915550505b60005b818110156109d6576004805490600061098b83611dbb565b91905055506109ae83600454600160405180602001604052806000815250611074565b600780549060006109be83611dbb565b919050555080806109ce90611dbb565b915050610973565b505050565b6003546001600160a01b03163314610a055760405162461bcd60e51b815260040161050690611cac565b600555565b60608151835114610a6f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610506565b6000835167ffffffffffffffff811115610a8b57610a8b611e02565b604051908082528060200260200182016040528015610ab4578160200160208202803683370190505b50905060005b8451811015610b2c57610aff858281518110610ad857610ad8611dec565b6020026020010151858381518110610af257610af2611dec565b602002602001015161049e565b828281518110610b1157610b11611dec565b6020908102919091010152610b2581611dbb565b9050610aba565b509392505050565b6003546001600160a01b03163314610b5e5760405162461bcd60e51b815260040161050690611cac565b610b68600061117e565b565b6003546001600160a01b03163314610b945760405162461bcd60e51b815260040161050690611cac565b600855565b6003546001600160a01b03163314610bc35760405162461bcd60e51b815260040161050690611cac565b600a805460ff19811660ff90911615179055565b336001600160a01b0383161415610c425760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610506565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6003546001600160a01b03163314610cd85760405162461bcd60e51b815260040161050690611cac565b8051825114610ce657600080fd5b60005b82518110156109d657818181518110610d0457610d04611dec565b602002602001015160096000858481518110610d2257610d22611dec565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610d5990611dbb565b915050610ce9565b6001600160a01b038516331480610d7d5750610d7d8533610403565b610ddb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610506565b61071085858585856111d0565b6003546001600160a01b03163314610e125760405162461bcd60e51b815260040161050690611cac565b6001600160a01b038116610e775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610506565b6105ba8161117e565b8051610e9390600290602084019061156d565b5050565b8151835114610ef95760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610506565b6001600160a01b038416610f1f5760405162461bcd60e51b815260040161050690611c1d565b3360005b8451811015611006576000858281518110610f4057610f40611dec565b602002602001015190506000858381518110610f5e57610f5e611dec565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610fae5760405162461bcd60e51b815260040161050690611c62565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610feb908490611d05565b9250508190555050505080610fff90611dbb565b9050610f23565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611056929190611b94565b60405180910390a461106c8187878787876112ed565b505050505050565b6001600160a01b0384166110d45760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610506565b336110ee816000876110e588611458565b61071088611458565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061111e908490611d05565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610710816000878787876114a3565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166111f65760405162461bcd60e51b815260040161050690611c1d565b336112068187876110e588611458565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156112475760405162461bcd60e51b815260040161050690611c62565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611284908490611d05565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46112e48288888888886114a3565b50505050505050565b6001600160a01b0384163b1561106c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906113319089908990889088908890600401611ade565b602060405180830381600087803b15801561134b57600080fd5b505af192505050801561137b575060408051601f3d908101601f19168201909252611378918101906119cf565b60015b61142857611387611e18565b806308c379a014156113c1575061139c611e34565b806113a757506113c3565b8060405162461bcd60e51b81526004016105069190611bc2565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610506565b6001600160e01b0319811663bc197c8160e01b146112e45760405162461bcd60e51b815260040161050690611bd5565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061149257611492611dec565b602090810291909101015292915050565b6001600160a01b0384163b1561106c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906114e79089908990889088908890600401611b3c565b602060405180830381600087803b15801561150157600080fd5b505af1925050508015611531575060408051601f3d908101601f1916820190925261152e918101906119cf565b60015b61153d57611387611e18565b6001600160e01b0319811663f23a6e6160e01b146112e45760405162461bcd60e51b815260040161050690611bd5565b82805461157990611d53565b90600052602060002090601f01602090048101928261159b57600085556115e1565b82601f106115b457805160ff19168380011785556115e1565b828001600101855582156115e1579182015b828111156115e15782518255916020019190600101906115c6565b506115ed9291506115f1565b5090565b5b808211156115ed57600081556001016115f2565b600067ffffffffffffffff83111561162057611620611e02565b604051611637601f8501601f191660200182611d8e565b80915083815284848401111561164c57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461167b57600080fd5b919050565b600082601f83011261169157600080fd5b8135602061169e82611ce1565b6040516116ab8282611d8e565b8381528281019150858301600585901b870184018810156116cb57600080fd5b60005b858110156116ea578135845292840192908401906001016116ce565b5090979650505050505050565b600082601f83011261170857600080fd5b61171783833560208501611606565b9392505050565b60006020828403121561173057600080fd5b61171782611664565b6000806040838503121561174c57600080fd5b61175583611664565b915061176360208401611664565b90509250929050565b600080600080600060a0868803121561178457600080fd5b61178d86611664565b945061179b60208701611664565b9350604086013567ffffffffffffffff808211156117b857600080fd5b6117c489838a01611680565b945060608801359150808211156117da57600080fd5b6117e689838a01611680565b935060808801359150808211156117fc57600080fd5b50611809888289016116f7565b9150509295509295909350565b600080600080600060a0868803121561182e57600080fd5b61183786611664565b945061184560208701611664565b93506040860135925060608601359150608086013567ffffffffffffffff81111561186f57600080fd5b611809888289016116f7565b6000806040838503121561188e57600080fd5b61189783611664565b9150602083013580151581146118ac57600080fd5b809150509250929050565b600080604083850312156118ca57600080fd5b6118d383611664565b946020939093013593505050565b600080604083850312156118f457600080fd5b823567ffffffffffffffff8082111561190c57600080fd5b818501915085601f83011261192057600080fd5b8135602061192d82611ce1565b60405161193a8282611d8e565b8381528281019150858301600585901b870184018b101561195a57600080fd5b600096505b848710156119845761197081611664565b83526001969096019591830191830161195f565b509650508601359250508082111561199b57600080fd5b506119a885828601611680565b9150509250929050565b6000602082840312156119c457600080fd5b813561171781611ebe565b6000602082840312156119e157600080fd5b815161171781611ebe565b6000602082840312156119fe57600080fd5b813567ffffffffffffffff811115611a1557600080fd5b8201601f81018413611a2657600080fd5b611a3584823560208401611606565b949350505050565b600060208284031215611a4f57600080fd5b5035919050565b600081518084526020808501945080840160005b83811015611a8657815187529582019590820190600101611a6a565b509495945050505050565b6000815180845260005b81811015611ab757602081850181015186830182015201611a9b565b81811115611ac9576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611b0a90830186611a56565b8281036060840152611b1c8186611a56565b90508281036080840152611b308185611a91565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611b7690830184611a91565b979650505050505050565b6020815260006117176020830184611a56565b604081526000611ba76040830185611a56565b8281036020840152611bb98185611a56565b95945050505050565b6020815260006117176020830184611a91565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff821115611cfb57611cfb611e02565b5060051b60200190565b60008219821115611d1857611d18611dd6565b500190565b6000816000190483118215151615611d3757611d37611dd6565b500290565b600082821015611d4e57611d4e611dd6565b500390565b600181811c90821680611d6757607f821691505b60208210811415611d8857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611db457611db4611e02565b6040525050565b6000600019821415611dcf57611dcf611dd6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611e315760046000803e5060005160e01c5b90565b600060443d1015611e425790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611e7257505050505090565b8285019150815181811115611e8a5750505050505090565b843d8701016020828501011115611ea45750505050505090565b611eb360208286010187611d8e565b509095945050505050565b6001600160e01b0319811681146105ba57600080fdfea2646970667358221220352675ab5c6bbef48cb0b778bb7a5228b8f607e1104c6272b63d2ac4cc37eff564736f6c63430008070033

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

35602:3045:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19924:231;;;;;;;;;;-1:-1:-1;19924:231:0;;;;;:::i;:::-;;:::i;:::-;;;17422:25:1;;;17410:2;17395:18;19924:231:0;;;;;;;;18947:310;;;;;;;;;;-1:-1:-1;18947:310:0;;;;;:::i;:::-;;:::i;:::-;;;10255:14:1;;10248:22;10230:41;;10218:2;10203:18;18947:310:0;10090:187:1;38022:91:0;;;;;;;;;;-1:-1:-1;38022:91:0;;;;;:::i;:::-;;:::i;:::-;;19668:105;;;;;;;;;;-1:-1:-1;19668:105:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35726:33::-;;;;;;;;;;;;;;;;35801:30;;;;;;;;;;;;;;;;37814:106;;;;;;;;;;-1:-1:-1;37814:106:0;;;;;:::i;:::-;;:::i;35838:32::-;;;;;;;;;;;;;;;;22019:442;;;;;;;;;;-1:-1:-1;22019:442:0;;;;;:::i;:::-;;:::i;37043:154::-;;;:::i;36288:743::-;;;;;;:::i;:::-;;:::i;37304:86::-;;;;;;;;;;-1:-1:-1;37304:86:0;;;;;:::i;:::-;;:::i;20321:524::-;;;;;;;;;;-1:-1:-1;20321:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35927:18::-;;;;;;;;;;-1:-1:-1;35927:18:0;;;;;;;;34867:94;;;;;;;;;;;;;:::i;37547:122::-;;;;;;;;;;-1:-1:-1;37547:122:0;;;;;:::i;:::-;;:::i;38177:69::-;;;;;;;;;;;;;:::i;34216:87::-;;;;;;;;;;-1:-1:-1;34289:6:0;;34216:87;;-1:-1:-1;;;;;34289:6:0;;;7896:51:1;;7884:2;7869:18;34216:87:0;7750:203:1;20918:311:0;;;;;;;;;;-1:-1:-1;20918:311:0;;;;;:::i;:::-;;:::i;38369:275::-;;;;;;;;;;-1:-1:-1;38369:275:0;;;;;:::i;:::-;;:::i;35766:31::-;;;;;;;;;;;;;;;;21301:168;;;;;;;;;;-1:-1:-1;21301:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;21424:27:0;;;21400:4;21424:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;21301:168;21541:401;;;;;;;;;;-1:-1:-1;21541:401:0;;;;;:::i;:::-;;:::i;35116:192::-;;;;;;;;;;-1:-1:-1;35116:192:0;;;;;:::i;:::-;;:::i;35877:43::-;;;;;;;;;;-1:-1:-1;35877:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;19924:231;20010:7;-1:-1:-1;;;;;20038:21:0;;20030:77;;;;-1:-1:-1;;;20030:77:0;;11538:2:1;20030:77:0;;;11520:21:1;11577:2;11557:18;;;11550:30;11616:34;11596:18;;;11589:62;-1:-1:-1;;;11667:18:1;;;11660:41;11718:19;;20030:77:0;;;;;;;;;-1:-1:-1;20125:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;20125:22:0;;;;;;;;;;;;19924:231::o;18947:310::-;19049:4;-1:-1:-1;;;;;;19086:41:0;;-1:-1:-1;;;19086:41:0;;:110;;-1:-1:-1;;;;;;;19144:52:0;;-1:-1:-1;;;19144:52:0;19086:110;:163;;;-1:-1:-1;;;;;;;;;;9853:40:0;;;19213:36;19066:183;18947:310;-1:-1:-1;;18947:310:0:o;38022:91::-;34289:6;;-1:-1:-1;;;;;34289:6:0;17798:10;34436:23;34428:68;;;;-1:-1:-1;;;34428:68:0;;;;;;;:::i;:::-;38089:16:::1;38097:7;38089;:16::i;:::-;38022:91:::0;:::o;19668:105::-;19728:13;19761:4;19754:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19668:105;;;:::o;37814:106::-;34289:6;;-1:-1:-1;;;;;34289:6:0;17798:10;34436:23;34428:68;;;;-1:-1:-1;;;34428:68:0;;;;;;;:::i;:::-;37887:9:::1;:25:::0;37814:106::o;22019:442::-;-1:-1:-1;;;;;22252:20:0;;17798:10;22252:20;;:60;;-1:-1:-1;22276:36:0;22293:4;17798:10;21301:168;:::i;22276:36::-;22230:160;;;;-1:-1:-1;;;22230:160:0;;13893:2:1;22230:160:0;;;13875:21:1;13932:2;13912:18;;;13905:30;13971:34;13951:18;;;13944:62;-1:-1:-1;;;14022:18:1;;;14015:48;14080:19;;22230:160:0;13691:414:1;22230:160:0;22401:52;22424:4;22430:2;22434:3;22439:7;22448:4;22401:22;:52::i;:::-;22019:442;;;;;:::o;37043:154::-;34289:6;;-1:-1:-1;;;;;34289:6:0;17798:10;34436:23;34428:68;;;;-1:-1:-1;;;34428:68:0;;;;;;;:::i;:::-;37099:7:::1;37120;34289:6:::0;;-1:-1:-1;;;;;34289:6:0;;34216:87;37120:7:::1;-1:-1:-1::0;;;;;37112:21:0::1;37141;37112:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37098:69;;;37186:2;37178:11;;;::::0;::::1;36288:743:::0;36371:6;;;;36370:7;36362:53;;;;-1:-1:-1;;;36362:53:0;;14723:2:1;36362:53:0;;;14705:21:1;14762:2;14742:18;;;14735:30;14801:34;14781:18;;;14774:62;-1:-1:-1;;;14852:18:1;;;14845:31;14893:19;;36362:53:0;14521:397:1;36362:53:0;36449:13;;36434:11;:28;;36426:73;;;;-1:-1:-1;;;36426:73:0;;13126:2:1;36426:73:0;;;13108:21:1;;;13145:18;;;13138:30;13204:34;13184:18;;;13177:62;13256:18;;36426:73:0;12924:356:1;36426:73:0;36557:9;;36542:11;36532:7;;:21;;;;:::i;:::-;:34;;36510:114;;;;-1:-1:-1;;;36510:114:0;;12767:2:1;36510:114:0;;;12749:21:1;12806:2;12786:18;;;12779:30;12845:32;12825:18;;;12818:60;12895:18;;36510:114:0;12565:354:1;36510:114:0;-1:-1:-1;;;;;36640:13:0;;;;;;:8;:13;;;;;;:27;-1:-1:-1;36637:227:0;;;36728:11;36721:4;;:18;;;;:::i;:::-;36708:9;:31;;36682:125;;;;-1:-1:-1;;;36682:125:0;;15486:2:1;36682:125:0;;;15468:21:1;;;15505:18;;;15498:30;15564:34;15544:18;;;15537:62;15616:18;;36682:125:0;15284:356:1;36682:125:0;36637:227;;;-1:-1:-1;;;;;36836:13:0;;;;;;:8;:13;;;;;:28;;36853:11;;36836:13;:28;;36853:11;;36836:28;:::i;:::-;;;;-1:-1:-1;;36637:227:0;36882:9;36877:147;36901:11;36897:1;:15;36877:147;;;36934:7;:9;;;:7;:9;;;:::i;:::-;;;;;;36958:26;36964:3;36969:7;;36978:1;36958:26;;;;;;;;;;;;:5;:26::i;:::-;36999:11;:13;;;:11;:13;;;:::i;:::-;;;;;;36914:3;;;;;:::i;:::-;;;;36877:147;;;;36288:743;;:::o;37304:86::-;34289:6;;-1:-1:-1;;;;;34289:6:0;17798:10;34436:23;34428:68;;;;-1:-1:-1;;;34428:68:0;;;;;;;:::i;:::-;37367:4:::1;:15:::0;37304:86::o;20321:524::-;20477:16;20538:3;:10;20519:8;:15;:29;20511:83;;;;-1:-1:-1;;;20511:83:0;;16257:2:1;20511:83:0;;;16239:21:1;16296:2;16276:18;;;16269:30;16335:34;16315:18;;;16308:62;-1:-1:-1;;;16386:18:1;;;16379:39;16435:19;;20511:83:0;16055:405:1;20511:83:0;20607:30;20654:8;:15;20640:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20640:30:0;;20607:63;;20688:9;20683:122;20707:8;:15;20703:1;:19;20683:122;;;20763:30;20773:8;20782:1;20773:11;;;;;;;;:::i;:::-;;;;;;;20786:3;20790:1;20786:6;;;;;;;;:::i;:::-;;;;;;;20763:9;:30::i;:::-;20744:13;20758:1;20744:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;20724:3;;;:::i;:::-;;;20683:122;;;-1:-1:-1;20824:13:0;20321:524;-1:-1:-1;;;20321:524:0:o;34867:94::-;34289:6;;-1:-1:-1;;;;;34289:6:0;17798:10;34436:23;34428:68;;;;-1:-1:-1;;;34428:68:0;;;;;;;:::i;:::-;34932:21:::1;34950:1;34932:9;:21::i;:::-;34867:94::o:0;37547:122::-;34289:6;;-1:-1:-1;;;;;34289:6:0;17798:10;34436:23;34428:68;;;;-1:-1:-1;;;34428:68:0;;;;;;;:::i;:::-;37628:13:::1;:33:::0;37547:122::o;38177:69::-;34289:6;;-1:-1:-1;;;;;34289:6:0;17798:10;34436:23;34428:68;;;;-1:-1:-1;;;34428:68:0;;;;;;;:::i;:::-;38232:6:::1;::::0;;-1:-1:-1;;38222:16:0;::::1;38232:6;::::0;;::::1;38231:7;38222:16;::::0;;38177:69::o;20918:311::-;17798:10;-1:-1:-1;;;;;21021:24:0;;;;21013:78;;;;-1:-1:-1;;;21013:78:0;;15847:2:1;21013:78:0;;;15829:21:1;15886:2;15866:18;;;15859:30;15925:34;15905:18;;;15898:62;-1:-1:-1;;;15976:18:1;;;15969:39;16025:19;;21013:78:0;15645:405:1;21013:78:0;17798:10;21104:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;21104:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;21104:53:0;;;;;;;;;;21173:48;;10230:41:1;;;21104:42:0;;17798:10;21173:48;;10203:18:1;21173:48:0;;;;;;;20918:311;;:::o;38369:275::-;34289:6;;-1:-1:-1;;;;;34289:6:0;17798:10;34436:23;34428:68;;;;-1:-1:-1;;;34428:68:0;;;;;;;:::i;:::-;38523:7:::1;:14;38507:5;:12;:30;38499:39;;;::::0;::::1;;38554:9;38549:87;38573:5;:12;38569:1;:16;38549:87;;;38626:7;38634:1;38626:10;;;;;;;;:::i;:::-;;;;;;;38605:8;:18;38614:5;38620:1;38614:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;38605:18:0::1;-1:-1:-1::0;;;;;38605:18:0::1;;;;;;;;;;;;:31;;;;38587:3;;;;;:::i;:::-;;;;38549:87;;21541:401:::0;-1:-1:-1;;;;;21749:20:0;;17798:10;21749:20;;:60;;-1:-1:-1;21773:36:0;21790:4;17798:10;21301:168;:::i;21773:36::-;21727:151;;;;-1:-1:-1;;;21727:151:0;;12357:2:1;21727:151:0;;;12339:21:1;12396:2;12376:18;;;12369:30;12435:34;12415:18;;;12408:62;-1:-1:-1;;;12486:18:1;;;12479:39;12535:19;;21727:151:0;12155:405:1;21727:151:0;21889:45;21907:4;21913:2;21917;21921:6;21929:4;21889:17;:45::i;35116:192::-;34289:6;;-1:-1:-1;;;;;34289:6:0;17798:10;34436:23;34428:68;;;;-1:-1:-1;;;34428:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35205:22:0;::::1;35197:73;;;::::0;-1:-1:-1;;;35197:73:0;;11950:2:1;35197:73:0::1;::::0;::::1;11932:21:1::0;11989:2;11969:18;;;11962:30;12028:34;12008:18;;;12001:62;-1:-1:-1;;;12079:18:1;;;12072:36;12125:19;;35197:73:0::1;11748:402:1::0;35197:73:0::1;35281:19;35291:8;35281:9;:19::i;26021:88::-:0;26088:13;;;;:4;;:13;;;;;:::i;:::-;;26021:88;:::o;24103:1074::-;24330:7;:14;24316:3;:10;:28;24308:81;;;;-1:-1:-1;;;24308:81:0;;16667:2:1;24308:81:0;;;16649:21:1;16706:2;16686:18;;;16679:30;16745:34;16725:18;;;16718:62;-1:-1:-1;;;16796:18:1;;;16789:38;16844:19;;24308:81:0;16465:404:1;24308:81:0;-1:-1:-1;;;;;24408:16:0;;24400:66;;;;-1:-1:-1;;;24400:66:0;;;;;;;:::i;:::-;17798:10;24479:16;24596:421;24620:3;:10;24616:1;:14;24596:421;;;24652:10;24665:3;24669:1;24665:6;;;;;;;;:::i;:::-;;;;;;;24652:19;;24686:14;24703:7;24711:1;24703:10;;;;;;;;:::i;:::-;;;;;;;;;;;;24730:19;24752:13;;;;;;;;;;-1:-1:-1;;;;;24752:19:0;;;;;;;;;;;;24703:10;;-1:-1:-1;24794:21:0;;;;24786:76;;;;-1:-1:-1;;;24786:76:0;;;;;;;:::i;:::-;24906:9;:13;;;;;;;;;;;-1:-1:-1;;;;;24906:19:0;;;;;;;;;;24928:20;;;24906:42;;24978:17;;;;;;;:27;;24928:20;;24906:9;24978:27;;24928:20;;24978:27;:::i;:::-;;;;;;;;24637:380;;;24632:3;;;;:::i;:::-;;;24596:421;;;;25064:2;-1:-1:-1;;;;;25034:47:0;25058:4;-1:-1:-1;;;;;25034:47:0;25048:8;-1:-1:-1;;;;;25034:47:0;;25068:3;25073:7;25034:47;;;;;;;:::i;:::-;;;;;;;;25094:75;25130:8;25140:4;25146:2;25150:3;25155:7;25164:4;25094:35;:75::i;:::-;24297:880;24103:1074;;;;;:::o;26510:599::-;-1:-1:-1;;;;;26668:21:0;;26660:67;;;;-1:-1:-1;;;26660:67:0;;17076:2:1;26660:67:0;;;17058:21:1;17115:2;17095:18;;;17088:30;17154:34;17134:18;;;17127:62;-1:-1:-1;;;17205:18:1;;;17198:31;17246:19;;26660:67:0;16874:397:1;26660:67:0;17798:10;26784:107;17798:10;26740:16;26827:7;26836:21;26854:2;26836:17;:21::i;:::-;26859:25;26877:6;26859:17;:25::i;26784:107::-;26904:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26904:22:0;;;;;;;;;:32;;26930:6;;26904:9;:32;;26930:6;;26904:32;:::i;:::-;;;;-1:-1:-1;;26952:57:0;;;17632:25:1;;;17688:2;17673:18;;17666:34;;;-1:-1:-1;;;;;26952:57:0;;;;26985:1;;26952:57;;;;;;17605:18:1;26952:57:0;;;;;;;27022:79;27053:8;27071:1;27075:7;27084:2;27088:6;27096:4;27022:30;:79::i;35316:173::-;35391:6;;;-1:-1:-1;;;;;35408:17:0;;;-1:-1:-1;;;;;;35408:17:0;;;;;;;35441:40;;35391:6;;;35408:17;35391:6;;35441:40;;35372:16;;35441:40;35361:128;35316:173;:::o;22925:820::-;-1:-1:-1;;;;;23113:16:0;;23105:66;;;;-1:-1:-1;;;23105:66:0;;;;;;;:::i;:::-;17798:10;23228:96;17798:10;23259:4;23265:2;23269:21;23287:2;23269:17;:21::i;23228:96::-;23337:19;23359:13;;;;;;;;;;;-1:-1:-1;;;;;23359:19:0;;;;;;;;;;23397:21;;;;23389:76;;;;-1:-1:-1;;;23389:76:0;;;;;;;:::i;:::-;23501:9;:13;;;;;;;;;;;-1:-1:-1;;;;;23501:19:0;;;;;;;;;;23523:20;;;23501:42;;23565:17;;;;;;;:27;;23523:20;;23501:9;23565:27;;23523:20;;23565:27;:::i;:::-;;;;-1:-1:-1;;23610:46:0;;;17632:25:1;;;17688:2;17673:18;;17666:34;;;-1:-1:-1;;;;;23610:46:0;;;;;;;;;;;;;;17605:18:1;23610:46:0;;;;;;;23669:68;23700:8;23710:4;23716:2;23720;23724:6;23732:4;23669:30;:68::i;:::-;23094:651;;22925:820;;;;;:::o;32192:813::-;-1:-1:-1;;;;;32432:13:0;;1089:20;1137:8;32428:570;;32468:79;;-1:-1:-1;;;32468:79:0;;-1:-1:-1;;;;;32468:43:0;;;;;:79;;32512:8;;32522:4;;32528:3;;32533:7;;32542:4;;32468:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32468:79:0;;;;;;;;-1:-1:-1;;32468:79:0;;;;;;;;;;;;:::i;:::-;;;32464:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;32860:6;32853:14;;-1:-1:-1;;;32853:14:0;;;;;;;;:::i;32464:523::-;;;32909:62;;-1:-1:-1;;;32909:62:0;;10708:2:1;32909:62:0;;;10690:21:1;10747:2;10727:18;;;10720:30;10786:34;10766:18;;;10759:62;-1:-1:-1;;;10837:18:1;;;10830:50;10897:19;;32909:62:0;10506:416:1;32464:523:0;-1:-1:-1;;;;;;32629:60:0;;-1:-1:-1;;;32629:60:0;32625:159;;32714:50;;-1:-1:-1;;;32714:50:0;;;;;;;:::i;33013:198::-;33133:16;;;33147:1;33133:16;;;;;;;;;33079;;33108:22;;33133:16;;;;;;;;;;;;-1:-1:-1;33133:16:0;33108:41;;33171:7;33160:5;33166:1;33160:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;33198:5;33013:198;-1:-1:-1;;33013:198:0:o;31440:744::-;-1:-1:-1;;;;;31655:13:0;;1089:20;1137:8;31651:526;;31691:72;;-1:-1:-1;;;31691:72:0;;-1:-1:-1;;;;;31691:38:0;;;;;:72;;31730:8;;31740:4;;31746:2;;31750:6;;31758:4;;31691:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31691:72:0;;;;;;;;-1:-1:-1;;31691:72:0;;;;;;;;;;;;:::i;:::-;;;31687:479;;;;:::i;:::-;-1:-1:-1;;;;;;31813:55:0;;-1:-1:-1;;;31813:55:0;31809:154;;31893:50;;-1:-1:-1;;;31893:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:347::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;;3889:2;3878:9;3874:18;3861:32;3936:5;3929:13;3922:21;3915:5;3912:32;3902:60;;3958:1;3955;3948:12;3902:60;3981:5;3971:15;;;3645:347;;;;;:::o;3997:254::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;4241:2;4226:18;;;;4213:32;;-1:-1:-1;;;3997:254:1:o;4256:1219::-;4374:6;4382;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4491:9;4478:23;4520:18;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4615:6;4604:9;4600:22;4590:32;;4660:7;4653:4;4649:2;4645:13;4641:27;4631:55;;4682:1;4679;4672:12;4631:55;4718:2;4705:16;4740:4;4763:43;4803:2;4763:43;:::i;:::-;4835:2;4829:9;4847:31;4875:2;4867:6;4847:31;:::i;:::-;4913:18;;;4947:15;;;;-1:-1:-1;4982:11:1;;;5024:1;5020:10;;;5012:19;;5008:28;;5005:41;-1:-1:-1;5002:61:1;;;5059:1;5056;5049:12;5002:61;5081:1;5072:10;;5091:169;5105:2;5102:1;5099:9;5091:169;;;5162:23;5181:3;5162:23;:::i;:::-;5150:36;;5123:1;5116:9;;;;;5206:12;;;;5238;;5091:169;;;-1:-1:-1;5279:6:1;-1:-1:-1;;5323:18:1;;5310:32;;-1:-1:-1;;5354:16:1;;;5351:36;;;5383:1;5380;5373:12;5351:36;;5406:63;5461:7;5450:8;5439:9;5435:24;5406:63;:::i;:::-;5396:73;;;4256:1219;;;;;:::o;5480:245::-;5538:6;5591:2;5579:9;5570:7;5566:23;5562:32;5559:52;;;5607:1;5604;5597:12;5559:52;5646:9;5633:23;5665:30;5689:5;5665:30;:::i;5730:249::-;5799:6;5852:2;5840:9;5831:7;5827:23;5823:32;5820:52;;;5868:1;5865;5858:12;5820:52;5900:9;5894:16;5919:30;5943:5;5919:30;:::i;5984:450::-;6053:6;6106:2;6094:9;6085:7;6081:23;6077:32;6074:52;;;6122:1;6119;6112:12;6074:52;6162:9;6149:23;6195:18;6187:6;6184:30;6181:50;;;6227:1;6224;6217:12;6181:50;6250:22;;6303:4;6295:13;;6291:27;-1:-1:-1;6281:55:1;;6332:1;6329;6322:12;6281:55;6355:73;6420:7;6415:2;6402:16;6397:2;6393;6389:11;6355:73;:::i;:::-;6345:83;5984:450;-1:-1:-1;;;;5984:450:1:o;6439:180::-;6498:6;6551:2;6539:9;6530:7;6526:23;6522:32;6519:52;;;6567:1;6564;6557:12;6519:52;-1:-1:-1;6590:23:1;;6439:180;-1:-1:-1;6439:180:1:o;6624:435::-;6677:3;6715:5;6709:12;6742:6;6737:3;6730:19;6768:4;6797:2;6792:3;6788:12;6781:19;;6834:2;6827:5;6823:14;6855:1;6865:169;6879:6;6876:1;6873:13;6865:169;;;6940:13;;6928:26;;6974:12;;;;7009:15;;;;6901:1;6894:9;6865:169;;;-1:-1:-1;7050:3:1;;6624:435;-1:-1:-1;;;;;6624:435:1:o;7064:471::-;7105:3;7143:5;7137:12;7170:6;7165:3;7158:19;7195:1;7205:162;7219:6;7216:1;7213:13;7205:162;;;7281:4;7337:13;;;7333:22;;7327:29;7309:11;;;7305:20;;7298:59;7234:12;7205:162;;;7385:6;7382:1;7379:13;7376:87;;;7451:1;7444:4;7435:6;7430:3;7426:16;7422:27;7415:38;7376:87;-1:-1:-1;7517:2:1;7496:15;-1:-1:-1;;7492:29:1;7483:39;;;;7524:4;7479:50;;7064:471;-1:-1:-1;;7064:471:1:o;7958:826::-;-1:-1:-1;;;;;8355:15:1;;;8337:34;;8407:15;;8402:2;8387:18;;8380:43;8317:3;8454:2;8439:18;;8432:31;;;8280:4;;8486:57;;8523:19;;8515:6;8486:57;:::i;:::-;8591:9;8583:6;8579:22;8574:2;8563:9;8559:18;8552:50;8625:44;8662:6;8654;8625:44;:::i;:::-;8611:58;;8718:9;8710:6;8706:22;8700:3;8689:9;8685:19;8678:51;8746:32;8771:6;8763;8746:32;:::i;:::-;8738:40;7958:826;-1:-1:-1;;;;;;;;7958:826:1:o;8789:560::-;-1:-1:-1;;;;;9086:15:1;;;9068:34;;9138:15;;9133:2;9118:18;;9111:43;9185:2;9170:18;;9163:34;;;9228:2;9213:18;;9206:34;;;9048:3;9271;9256:19;;9249:32;;;9011:4;;9298:45;;9323:19;;9315:6;9298:45;:::i;:::-;9290:53;8789:560;-1:-1:-1;;;;;;;8789:560:1:o;9354:261::-;9533:2;9522:9;9515:21;9496:4;9553:56;9605:2;9594:9;9590:18;9582:6;9553:56;:::i;9620:465::-;9877:2;9866:9;9859:21;9840:4;9903:56;9955:2;9944:9;9940:18;9932:6;9903:56;:::i;:::-;10007:9;9999:6;9995:22;9990:2;9979:9;9975:18;9968:50;10035:44;10072:6;10064;10035:44;:::i;:::-;10027:52;9620:465;-1:-1:-1;;;;;9620:465:1:o;10282:219::-;10431:2;10420:9;10413:21;10394:4;10451:44;10491:2;10480:9;10476:18;10468:6;10451:44;:::i;10927:404::-;11129:2;11111:21;;;11168:2;11148:18;;;11141:30;11207:34;11202:2;11187:18;;11180:62;-1:-1:-1;;;11273:2:1;11258:18;;11251:38;11321:3;11306:19;;10927:404::o;13285:401::-;13487:2;13469:21;;;13526:2;13506:18;;;13499:30;13565:34;13560:2;13545:18;;13538:62;-1:-1:-1;;;13631:2:1;13616:18;;13609:35;13676:3;13661:19;;13285:401::o;14110:406::-;14312:2;14294:21;;;14351:2;14331:18;;;14324:30;14390:34;14385:2;14370:18;;14363:62;-1:-1:-1;;;14456:2:1;14441:18;;14434:40;14506:3;14491:19;;14110:406::o;14923:356::-;15125:2;15107:21;;;15144:18;;;15137:30;15203:34;15198:2;15183:18;;15176:62;15270:2;15255:18;;14923:356::o;17711:183::-;17771:4;17804:18;17796:6;17793:30;17790:56;;;17826:18;;:::i;:::-;-1:-1:-1;17871:1:1;17867:14;17883:4;17863:25;;17711:183::o;17899:128::-;17939:3;17970:1;17966:6;17963:1;17960:13;17957:39;;;17976:18;;:::i;:::-;-1:-1:-1;18012:9:1;;17899:128::o;18032:168::-;18072:7;18138:1;18134;18130:6;18126:14;18123:1;18120:21;18115:1;18108:9;18101:17;18097:45;18094:71;;;18145:18;;:::i;:::-;-1:-1:-1;18185:9:1;;18032:168::o;18205:125::-;18245:4;18273:1;18270;18267:8;18264:34;;;18278:18;;:::i;:::-;-1:-1:-1;18315:9:1;;18205:125::o;18335:380::-;18414:1;18410:12;;;;18457;;;18478:61;;18532:4;18524:6;18520:17;18510:27;;18478:61;18585:2;18577:6;18574:14;18554:18;18551:38;18548:161;;;18631:10;18626:3;18622:20;18619:1;18612:31;18666:4;18663:1;18656:15;18694:4;18691:1;18684:15;18548:161;;18335:380;;;:::o;18720:249::-;18830:2;18811:13;;-1:-1:-1;;18807:27:1;18795:40;;18865:18;18850:34;;18886:22;;;18847:62;18844:88;;;18912:18;;:::i;:::-;18948:2;18941:22;-1:-1:-1;;18720:249:1:o;18974:135::-;19013:3;-1:-1:-1;;19034:17:1;;19031:43;;;19054:18;;:::i;:::-;-1:-1:-1;19101:1:1;19090:13;;18974:135::o;19114:127::-;19175:10;19170:3;19166:20;19163:1;19156:31;19206:4;19203:1;19196:15;19230:4;19227:1;19220:15;19246:127;19307:10;19302:3;19298:20;19295:1;19288:31;19338:4;19335:1;19328:15;19362:4;19359:1;19352:15;19378:127;19439:10;19434:3;19430:20;19427:1;19420:31;19470:4;19467:1;19460:15;19494:4;19491:1;19484:15;19510:179;19545:3;19587:1;19569:16;19566:23;19563:120;;;19633:1;19630;19627;19612:23;-1:-1:-1;19670:1:1;19664:8;19659:3;19655:18;19563:120;19510:179;:::o;19694:671::-;19733:3;19775:4;19757:16;19754:26;19751:39;;;19694:671;:::o;19751:39::-;19817:2;19811:9;-1:-1:-1;;19882:16:1;19878:25;;19875:1;19811:9;19854:50;19933:4;19927:11;19957:16;19992:18;20063:2;20056:4;20048:6;20044:17;20041:25;20036:2;20028:6;20025:14;20022:45;20019:58;;;20070:5;;;;;19694:671;:::o;20019:58::-;20107:6;20101:4;20097:17;20086:28;;20143:3;20137:10;20170:2;20162:6;20159:14;20156:27;;;20176:5;;;;;;19694:671;:::o;20156:27::-;20260:2;20241:16;20235:4;20231:27;20227:36;20220:4;20211:6;20206:3;20202:16;20198:27;20195:69;20192:82;;;20267:5;;;;;;19694:671;:::o;20192:82::-;20283:57;20334:4;20325:6;20317;20313:19;20309:30;20303:4;20283:57;:::i;:::-;-1:-1:-1;20356:3:1;;19694:671;-1:-1:-1;;;;;19694:671:1:o;20370:131::-;-1:-1:-1;;;;;;20444:32:1;;20434:43;;20424:71;;20491:1;20488;20481:12

Swarm Source

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