Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MANIBrother
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-04-02
*/
pragma solidity ^0.8.10;
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
* @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);
}
//
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
//
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
//
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
//
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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);
}
}
}
}
//
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
//
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
//
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
//
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
//
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
/**
* @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() {
_transferOwnership(_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 {
_transferOwnership(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");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
//
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
contract MANIBrother is ERC721, Ownable, ReentrancyGuard{
using Strings for uint;
uint public mintedAmount;
uint public totalMaxMint = 500;
uint public mintFee = 0.01 ether;
uint public userMaxMint = 2;
address public feeReceiver = 0xC725a08a21D8A29E4f747072735611F16d398888;
string public baseURI;
mapping(address=>uint) public userMinted;
constructor(string memory name_, string memory symbol_, string memory baseURI_, address feeReceiver_) ERC721(name_, symbol_){
baseURI = baseURI_;
feeReceiver = feeReceiver_;
}
function mint(uint amount) public payable nonReentrant{
require(amount > 0, "nothing to mint");
require(userMinted[msg.sender] + amount <= userMaxMint, "exceed user max mint");
require(mintedAmount + amount <= totalMaxMint, "exceed total max mint");
require(msg.value == mintFee * amount, "fee not match");
require(feeReceiver != address(0), "fee receiver not set");
for(uint i; i<amount; i++){
uint tokenId = mintedAmount + 1;
_safeMint(msg.sender, tokenId);
mintedAmount += 1;
userMinted[msg.sender] += 1;
}
payable(feeReceiver).transfer(msg.value);
}
function tokenURI(uint tokenId) public view override returns (string memory _tokenURI){
_tokenURI = string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
}
function setMintFee(uint _mintFee) public onlyOwner{
mintFee = _mintFee;
}
function setUserMaxMint(uint _userMaxMint) public onlyOwner{
userMaxMint = _userMaxMint;
}
function setTotalMaxMint(uint _totalMaxMint) public onlyOwner{
totalMaxMint = _totalMaxMint;
}
function setFeeReceiver(address _feeReceiver) public onlyOwner{
require(_feeReceiver != address(0), "0 address not allowed");
feeReceiver = _feeReceiver;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"feeReceiver_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalMaxMint","type":"uint256"}],"name":"setTotalMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_userMaxMint","type":"uint256"}],"name":"setUserMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"userMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040526101f4600955662386f26fc10000600a556002600b55600c80546001600160a01b03191673c725a08a21d8a29e4f747072735611f16d3988881790553480156200004d57600080fd5b50604051620020a3380380620020a38339810160408190526200007091620002ca565b8351849084906200008990600090602085019062000157565b5080516200009f90600190602084019062000157565b505050620000bc620000b66200010160201b60201c565b62000105565b60016007558151620000d690600d90602085019062000157565b50600c80546001600160a01b0319166001600160a01b039290921691909117905550620003ba915050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000165906200037d565b90600052602060002090601f016020900481019282620001895760008555620001d4565b82601f10620001a457805160ff1916838001178555620001d4565b82800160010185558215620001d4579182015b82811115620001d4578251825591602001919060010190620001b7565b50620001e2929150620001e6565b5090565b5b80821115620001e25760008155600101620001e7565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022557600080fd5b81516001600160401b0380821115620002425762000242620001fd565b604051601f8301601f19908116603f011681019082821181831017156200026d576200026d620001fd565b816040528381526020925086838588010111156200028a57600080fd5b600091505b83821015620002ae57858201830151818301840152908201906200028f565b83821115620002c05760008385830101525b9695505050505050565b60008060008060808587031215620002e157600080fd5b84516001600160401b0380821115620002f957600080fd5b620003078883890162000213565b955060208701519150808211156200031e57600080fd5b6200032c8883890162000213565b945060408701519150808211156200034357600080fd5b50620003528782880162000213565b606087015190935090506001600160a01b03811681146200037257600080fd5b939692955090935050565b600181811c908216806200039257607f821691505b60208210811415620003b457634e487b7160e01b600052602260045260246000fd5b50919050565b611cd980620003ca6000396000f3fe6080604052600436106101b75760003560e01c806373eb024e116100ec578063b88d4fde1161008a578063eddd0d9c11610064578063eddd0d9c146104d9578063efdcd974146104f9578063f2e79d4b14610519578063f2fde38b1461053957600080fd5b8063b88d4fde14610450578063c87b56dd14610470578063e985e9c51461049057600080fd5b806395d89b41116100c657806395d89b41146103e8578063a0712d68146103fd578063a22cb46514610410578063b3f006741461043057600080fd5b806373eb024e146103945780638da5cb5b146103aa5780638fa44a05146103c857600080fd5b80632d380242116101595780636c0360eb116101335780636c0360eb146103345780636c2212601461034957806370a082311461035f578063715018a61461037f57600080fd5b80632d380242146102de57806342842e0e146102f45780636352211e1461031457600080fd5b8063095ea7b311610195578063095ea7b31461024b57806313966db51461026d5780631aa5e8721461029157806323b872dd146102be57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046116e6565b610559565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105ab565b6040516101e89190611762565b34801561021f57600080fd5b5061023361022e366004611775565b61063d565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046117aa565b6106d7565b005b34801561027957600080fd5b50610283600a5481565b6040519081526020016101e8565b34801561029d57600080fd5b506102836102ac3660046117d4565b600e6020526000908152604090205481565b3480156102ca57600080fd5b5061026b6102d93660046117ef565b6107ed565b3480156102ea57600080fd5b5061028360085481565b34801561030057600080fd5b5061026b61030f3660046117ef565b61081e565b34801561032057600080fd5b5061023361032f366004611775565b610839565b34801561034057600080fd5b506102066108b0565b34801561035557600080fd5b5061028360095481565b34801561036b57600080fd5b5061028361037a3660046117d4565b61093e565b34801561038b57600080fd5b5061026b6109c5565b3480156103a057600080fd5b50610283600b5481565b3480156103b657600080fd5b506006546001600160a01b0316610233565b3480156103d457600080fd5b5061026b6103e3366004611775565b6109fb565b3480156103f457600080fd5b50610206610a2a565b61026b61040b366004611775565b610a39565b34801561041c57600080fd5b5061026b61042b36600461182b565b610ce2565b34801561043c57600080fd5b50600c54610233906001600160a01b031681565b34801561045c57600080fd5b5061026b61046b36600461187d565b610cf1565b34801561047c57600080fd5b5061020661048b366004611775565b610d29565b34801561049c57600080fd5b506101dc6104ab366004611959565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104e557600080fd5b5061026b6104f4366004611775565b610d5d565b34801561050557600080fd5b5061026b6105143660046117d4565b610d8c565b34801561052557600080fd5b5061026b610534366004611775565b610e26565b34801561054557600080fd5b5061026b6105543660046117d4565b610e55565b60006001600160e01b031982166380ac58cd60e01b148061058a57506001600160e01b03198216635b5e139f60e01b145b806105a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105ba9061198c565b80601f01602080910402602001604051908101604052809291908181526020018280546105e69061198c565b80156106335780601f1061060857610100808354040283529160200191610633565b820191906000526020600020905b81548152906001019060200180831161061657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e282610839565b9050806001600160a01b0316836001600160a01b031614156107505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b2565b336001600160a01b038216148061076c575061076c81336104ab565b6107de5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b2565b6107e88383610ef0565b505050565b6107f73382610f5e565b6108135760405162461bcd60e51b81526004016106b2906119c7565b6107e8838383611055565b6107e883838360405180602001604052806000815250610cf1565b6000818152600260205260408120546001600160a01b0316806105a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b2565b600d80546108bd9061198c565b80601f01602080910402602001604051908101604052809291908181526020018280546108e99061198c565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b505050505081565b60006001600160a01b0382166109a95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109ef5760405162461bcd60e51b81526004016106b290611a18565b6109f960006111f1565b565b6006546001600160a01b03163314610a255760405162461bcd60e51b81526004016106b290611a18565b600b55565b6060600180546105ba9061198c565b60026007541415610a8c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b600260075580610ad05760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd1a1a5b99c81d1bc81b5a5b9d608a1b60448201526064016106b2565b600b54336000908152600e6020526040902054610aee908390611a63565b1115610b335760405162461bcd60e51b8152602060048201526014602482015273195e18d95959081d5cd95c881b585e081b5a5b9d60621b60448201526064016106b2565b60095481600854610b449190611a63565b1115610b8a5760405162461bcd60e51b8152602060048201526015602482015274195e18d95959081d1bdd185b081b585e081b5a5b9d605a1b60448201526064016106b2565b80600a54610b989190611a7b565b3414610bd65760405162461bcd60e51b815260206004820152600d60248201526c0cccaca40dcdee840dac2e8c6d609b1b60448201526064016106b2565b600c546001600160a01b0316610c255760405162461bcd60e51b8152602060048201526014602482015273199959481c9958d95a5d995c881b9bdd081cd95d60621b60448201526064016106b2565b60005b81811015610c9f5760006008546001610c419190611a63565b9050610c4d3382611243565b600160086000828254610c609190611a63565b9091555050336000908152600e60205260408120805460019290610c85908490611a63565b90915550829150610c97905081611a9a565b915050610c28565b50600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610cd9573d6000803e3d6000fd5b50506001600755565b610ced33838361125d565b5050565b610cfb3383610f5e565b610d175760405162461bcd60e51b81526004016106b2906119c7565b610d238484848461132c565b50505050565b6060600d610d368361135f565b604051602001610d47929190611ad1565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610d875760405162461bcd60e51b81526004016106b290611a18565b600a55565b6006546001600160a01b03163314610db65760405162461bcd60e51b81526004016106b290611a18565b6001600160a01b038116610e045760405162461bcd60e51b81526020600482015260156024820152740c081859191c995cdcc81b9bdd08185b1b1bddd959605a1b60448201526064016106b2565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610e505760405162461bcd60e51b81526004016106b290611a18565b600955565b6006546001600160a01b03163314610e7f5760405162461bcd60e51b81526004016106b290611a18565b6001600160a01b038116610ee45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b2565b610eed816111f1565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f2582610839565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610fd75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b2565b6000610fe283610839565b9050806001600160a01b0316846001600160a01b0316148061101d5750836001600160a01b03166110128461063d565b6001600160a01b0316145b8061104d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661106882610839565b6001600160a01b0316146110cc5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106b2565b6001600160a01b03821661112e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b2565b611139600082610ef0565b6001600160a01b0383166000908152600360205260408120805460019290611162908490611b8c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611190908490611a63565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ced82826040518060200160405280600081525061145d565b816001600160a01b0316836001600160a01b031614156112bf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611337848484611055565b61134384848484611490565b610d235760405162461bcd60e51b81526004016106b290611ba3565b6060816113835750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113ad578061139781611a9a565b91506113a69050600a83611c0b565b9150611387565b60008167ffffffffffffffff8111156113c8576113c8611867565b6040519080825280601f01601f1916602001820160405280156113f2576020820181803683370190505b5090505b841561104d57611407600183611b8c565b9150611414600a86611c1f565b61141f906030611a63565b60f81b81838151811061143457611434611c33565b60200101906001600160f81b031916908160001a905350611456600a86611c0b565b94506113f6565b611467838361158e565b6114746000848484611490565b6107e85760405162461bcd60e51b81526004016106b290611ba3565b60006001600160a01b0384163b1561158357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114d4903390899088908890600401611c49565b6020604051808303816000875af192505050801561150f575060408051601f3d908101601f1916820190925261150c91810190611c86565b60015b611569573d80801561153d576040519150601f19603f3d011682016040523d82523d6000602084013e611542565b606091505b5080516115615760405162461bcd60e51b81526004016106b290611ba3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061104d565b506001949350505050565b6001600160a01b0382166115e45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b2565b6000818152600260205260409020546001600160a01b0316156116495760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b2565b6001600160a01b0382166000908152600360205260408120805460019290611672908490611a63565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610eed57600080fd5b6000602082840312156116f857600080fd5b8135611703816116d0565b9392505050565b60005b8381101561172557818101518382015260200161170d565b83811115610d235750506000910152565b6000815180845261174e81602086016020860161170a565b601f01601f19169290920160200192915050565b6020815260006117036020830184611736565b60006020828403121561178757600080fd5b5035919050565b80356001600160a01b03811681146117a557600080fd5b919050565b600080604083850312156117bd57600080fd5b6117c68361178e565b946020939093013593505050565b6000602082840312156117e657600080fd5b6117038261178e565b60008060006060848603121561180457600080fd5b61180d8461178e565b925061181b6020850161178e565b9150604084013590509250925092565b6000806040838503121561183e57600080fd5b6118478361178e565b91506020830135801515811461185c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561189357600080fd5b61189c8561178e565b93506118aa6020860161178e565b925060408501359150606085013567ffffffffffffffff808211156118ce57600080fd5b818701915087601f8301126118e257600080fd5b8135818111156118f4576118f4611867565b604051601f8201601f19908116603f0116810190838211818310171561191c5761191c611867565b816040528281528a602084870101111561193557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561196c57600080fd5b6119758361178e565b91506119836020840161178e565b90509250929050565b600181811c908216806119a057607f821691505b602082108114156119c157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a7657611a76611a4d565b500190565b6000816000190483118215151615611a9557611a95611a4d565b500290565b6000600019821415611aae57611aae611a4d565b5060010190565b60008151611ac781856020860161170a565b9290920192915050565b600080845481600182811c915080831680611aed57607f831692505b6020808410821415611b0d57634e487b7160e01b86526022600452602486fd5b818015611b215760018114611b3257611b5f565b60ff19861689528489019650611b5f565b60008b81526020902060005b86811015611b575781548b820152908501908301611b3e565b505084890196505b505050505050611b83611b728286611ab5565b64173539b7b760d91b815260050190565b95945050505050565b600082821015611b9e57611b9e611a4d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611c1a57611c1a611bf5565b500490565b600082611c2e57611c2e611bf5565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7c90830184611736565b9695505050505050565b600060208284031215611c9857600080fd5b8151611703816116d056fea2646970667358221220025f9bbb10fba826609463d22246eef9af923cf599bfaae09256b3e042b3cf3364736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c725a08a21d8a29e4f747072735611f16d398888000000000000000000000000000000000000000000000000000000000000000c4d414e492042726f74686572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d414e4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f6170692e6d616e6962726f2e636f6d2f0000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806373eb024e116100ec578063b88d4fde1161008a578063eddd0d9c11610064578063eddd0d9c146104d9578063efdcd974146104f9578063f2e79d4b14610519578063f2fde38b1461053957600080fd5b8063b88d4fde14610450578063c87b56dd14610470578063e985e9c51461049057600080fd5b806395d89b41116100c657806395d89b41146103e8578063a0712d68146103fd578063a22cb46514610410578063b3f006741461043057600080fd5b806373eb024e146103945780638da5cb5b146103aa5780638fa44a05146103c857600080fd5b80632d380242116101595780636c0360eb116101335780636c0360eb146103345780636c2212601461034957806370a082311461035f578063715018a61461037f57600080fd5b80632d380242146102de57806342842e0e146102f45780636352211e1461031457600080fd5b8063095ea7b311610195578063095ea7b31461024b57806313966db51461026d5780631aa5e8721461029157806323b872dd146102be57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046116e6565b610559565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105ab565b6040516101e89190611762565b34801561021f57600080fd5b5061023361022e366004611775565b61063d565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046117aa565b6106d7565b005b34801561027957600080fd5b50610283600a5481565b6040519081526020016101e8565b34801561029d57600080fd5b506102836102ac3660046117d4565b600e6020526000908152604090205481565b3480156102ca57600080fd5b5061026b6102d93660046117ef565b6107ed565b3480156102ea57600080fd5b5061028360085481565b34801561030057600080fd5b5061026b61030f3660046117ef565b61081e565b34801561032057600080fd5b5061023361032f366004611775565b610839565b34801561034057600080fd5b506102066108b0565b34801561035557600080fd5b5061028360095481565b34801561036b57600080fd5b5061028361037a3660046117d4565b61093e565b34801561038b57600080fd5b5061026b6109c5565b3480156103a057600080fd5b50610283600b5481565b3480156103b657600080fd5b506006546001600160a01b0316610233565b3480156103d457600080fd5b5061026b6103e3366004611775565b6109fb565b3480156103f457600080fd5b50610206610a2a565b61026b61040b366004611775565b610a39565b34801561041c57600080fd5b5061026b61042b36600461182b565b610ce2565b34801561043c57600080fd5b50600c54610233906001600160a01b031681565b34801561045c57600080fd5b5061026b61046b36600461187d565b610cf1565b34801561047c57600080fd5b5061020661048b366004611775565b610d29565b34801561049c57600080fd5b506101dc6104ab366004611959565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104e557600080fd5b5061026b6104f4366004611775565b610d5d565b34801561050557600080fd5b5061026b6105143660046117d4565b610d8c565b34801561052557600080fd5b5061026b610534366004611775565b610e26565b34801561054557600080fd5b5061026b6105543660046117d4565b610e55565b60006001600160e01b031982166380ac58cd60e01b148061058a57506001600160e01b03198216635b5e139f60e01b145b806105a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105ba9061198c565b80601f01602080910402602001604051908101604052809291908181526020018280546105e69061198c565b80156106335780601f1061060857610100808354040283529160200191610633565b820191906000526020600020905b81548152906001019060200180831161061657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e282610839565b9050806001600160a01b0316836001600160a01b031614156107505760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b2565b336001600160a01b038216148061076c575061076c81336104ab565b6107de5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b2565b6107e88383610ef0565b505050565b6107f73382610f5e565b6108135760405162461bcd60e51b81526004016106b2906119c7565b6107e8838383611055565b6107e883838360405180602001604052806000815250610cf1565b6000818152600260205260408120546001600160a01b0316806105a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b2565b600d80546108bd9061198c565b80601f01602080910402602001604051908101604052809291908181526020018280546108e99061198c565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b505050505081565b60006001600160a01b0382166109a95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b2565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109ef5760405162461bcd60e51b81526004016106b290611a18565b6109f960006111f1565b565b6006546001600160a01b03163314610a255760405162461bcd60e51b81526004016106b290611a18565b600b55565b6060600180546105ba9061198c565b60026007541415610a8c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106b2565b600260075580610ad05760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd1a1a5b99c81d1bc81b5a5b9d608a1b60448201526064016106b2565b600b54336000908152600e6020526040902054610aee908390611a63565b1115610b335760405162461bcd60e51b8152602060048201526014602482015273195e18d95959081d5cd95c881b585e081b5a5b9d60621b60448201526064016106b2565b60095481600854610b449190611a63565b1115610b8a5760405162461bcd60e51b8152602060048201526015602482015274195e18d95959081d1bdd185b081b585e081b5a5b9d605a1b60448201526064016106b2565b80600a54610b989190611a7b565b3414610bd65760405162461bcd60e51b815260206004820152600d60248201526c0cccaca40dcdee840dac2e8c6d609b1b60448201526064016106b2565b600c546001600160a01b0316610c255760405162461bcd60e51b8152602060048201526014602482015273199959481c9958d95a5d995c881b9bdd081cd95d60621b60448201526064016106b2565b60005b81811015610c9f5760006008546001610c419190611a63565b9050610c4d3382611243565b600160086000828254610c609190611a63565b9091555050336000908152600e60205260408120805460019290610c85908490611a63565b90915550829150610c97905081611a9a565b915050610c28565b50600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610cd9573d6000803e3d6000fd5b50506001600755565b610ced33838361125d565b5050565b610cfb3383610f5e565b610d175760405162461bcd60e51b81526004016106b2906119c7565b610d238484848461132c565b50505050565b6060600d610d368361135f565b604051602001610d47929190611ad1565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610d875760405162461bcd60e51b81526004016106b290611a18565b600a55565b6006546001600160a01b03163314610db65760405162461bcd60e51b81526004016106b290611a18565b6001600160a01b038116610e045760405162461bcd60e51b81526020600482015260156024820152740c081859191c995cdcc81b9bdd08185b1b1bddd959605a1b60448201526064016106b2565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610e505760405162461bcd60e51b81526004016106b290611a18565b600955565b6006546001600160a01b03163314610e7f5760405162461bcd60e51b81526004016106b290611a18565b6001600160a01b038116610ee45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b2565b610eed816111f1565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f2582610839565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610fd75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b2565b6000610fe283610839565b9050806001600160a01b0316846001600160a01b0316148061101d5750836001600160a01b03166110128461063d565b6001600160a01b0316145b8061104d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661106882610839565b6001600160a01b0316146110cc5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106b2565b6001600160a01b03821661112e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b2565b611139600082610ef0565b6001600160a01b0383166000908152600360205260408120805460019290611162908490611b8c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611190908490611a63565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ced82826040518060200160405280600081525061145d565b816001600160a01b0316836001600160a01b031614156112bf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611337848484611055565b61134384848484611490565b610d235760405162461bcd60e51b81526004016106b290611ba3565b6060816113835750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113ad578061139781611a9a565b91506113a69050600a83611c0b565b9150611387565b60008167ffffffffffffffff8111156113c8576113c8611867565b6040519080825280601f01601f1916602001820160405280156113f2576020820181803683370190505b5090505b841561104d57611407600183611b8c565b9150611414600a86611c1f565b61141f906030611a63565b60f81b81838151811061143457611434611c33565b60200101906001600160f81b031916908160001a905350611456600a86611c0b565b94506113f6565b611467838361158e565b6114746000848484611490565b6107e85760405162461bcd60e51b81526004016106b290611ba3565b60006001600160a01b0384163b1561158357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114d4903390899088908890600401611c49565b6020604051808303816000875af192505050801561150f575060408051601f3d908101601f1916820190925261150c91810190611c86565b60015b611569573d80801561153d576040519150601f19603f3d011682016040523d82523d6000602084013e611542565b606091505b5080516115615760405162461bcd60e51b81526004016106b290611ba3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061104d565b506001949350505050565b6001600160a01b0382166115e45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b2565b6000818152600260205260409020546001600160a01b0316156116495760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b2565b6001600160a01b0382166000908152600360205260408120805460019290611672908490611a63565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610eed57600080fd5b6000602082840312156116f857600080fd5b8135611703816116d0565b9392505050565b60005b8381101561172557818101518382015260200161170d565b83811115610d235750506000910152565b6000815180845261174e81602086016020860161170a565b601f01601f19169290920160200192915050565b6020815260006117036020830184611736565b60006020828403121561178757600080fd5b5035919050565b80356001600160a01b03811681146117a557600080fd5b919050565b600080604083850312156117bd57600080fd5b6117c68361178e565b946020939093013593505050565b6000602082840312156117e657600080fd5b6117038261178e565b60008060006060848603121561180457600080fd5b61180d8461178e565b925061181b6020850161178e565b9150604084013590509250925092565b6000806040838503121561183e57600080fd5b6118478361178e565b91506020830135801515811461185c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561189357600080fd5b61189c8561178e565b93506118aa6020860161178e565b925060408501359150606085013567ffffffffffffffff808211156118ce57600080fd5b818701915087601f8301126118e257600080fd5b8135818111156118f4576118f4611867565b604051601f8201601f19908116603f0116810190838211818310171561191c5761191c611867565b816040528281528a602084870101111561193557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561196c57600080fd5b6119758361178e565b91506119836020840161178e565b90509250929050565b600181811c908216806119a057607f821691505b602082108114156119c157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611a7657611a76611a4d565b500190565b6000816000190483118215151615611a9557611a95611a4d565b500290565b6000600019821415611aae57611aae611a4d565b5060010190565b60008151611ac781856020860161170a565b9290920192915050565b600080845481600182811c915080831680611aed57607f831692505b6020808410821415611b0d57634e487b7160e01b86526022600452602486fd5b818015611b215760018114611b3257611b5f565b60ff19861689528489019650611b5f565b60008b81526020902060005b86811015611b575781548b820152908501908301611b3e565b505084890196505b505050505050611b83611b728286611ab5565b64173539b7b760d91b815260050190565b95945050505050565b600082821015611b9e57611b9e611a4d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611c1a57611c1a611bf5565b500490565b600082611c2e57611c2e611bf5565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7c90830184611736565b9695505050505050565b600060208284031215611c9857600080fd5b8151611703816116d056fea2646970667358221220025f9bbb10fba826609463d22246eef9af923cf599bfaae09256b3e042b3cf3364736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000c725a08a21d8a29e4f747072735611f16d398888000000000000000000000000000000000000000000000000000000000000000c4d414e492042726f74686572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d414e4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f6170692e6d616e6962726f2e636f6d2f0000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): MANI Brother
Arg [1] : symbol_ (string): MANI
Arg [2] : baseURI_ (string): https://api.manibro.com/
Arg [3] : feeReceiver_ (address): 0xC725a08a21D8A29E4f747072735611F16d398888
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000c725a08a21d8a29e4f747072735611f16d398888
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 4d414e492042726f746865720000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4d414e4900000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [9] : 68747470733a2f2f6170692e6d616e6962726f2e636f6d2f0000000000000000
Deployed Bytecode Sourcemap
39045:1997:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20816:305;;;;;;;;;;-1:-1:-1;20816:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20816:305:0;;;;;;;;21761:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23320:221::-;;;;;;;;;;-1:-1:-1;23320:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;23320:221:0;1550:203:1;22843:411:0;;;;;;;;;;-1:-1:-1;22843:411:0;;;;;:::i;:::-;;:::i;:::-;;39207:32;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;39207:32:0;2195:177:1;39388:40:0;;;;;;;;;;-1:-1:-1;39388:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;24070:339;;;;;;;;;;-1:-1:-1;24070:339:0;;;;;:::i;:::-;;:::i;39139:24::-;;;;;;;;;;;;;;;;24480:185;;;;;;;;;;-1:-1:-1;24480:185:0;;;;;:::i;:::-;;:::i;21455:239::-;;;;;;;;;;-1:-1:-1;21455:239:0;;;;;:::i;:::-;;:::i;39358:21::-;;;;;;;;;;;;;:::i;39170:30::-;;;;;;;;;;;;;;;;21185:208;;;;;;;;;;-1:-1:-1;21185:208:0;;;;;:::i;:::-;;:::i;35560:103::-;;;;;;;;;;;;;:::i;39246:27::-;;;;;;;;;;;;;;;;34909:87;;;;;;;;;;-1:-1:-1;34982:6:0;;-1:-1:-1;;;;;34982:6:0;34909:87;;40627:104;;;;;;;;;;-1:-1:-1;40627:104:0;;;;;:::i;:::-;;:::i;21930:::-;;;;;;;;;;;;;:::i;39643:686::-;;;;;;:::i;:::-;;:::i;23613:155::-;;;;;;;;;;-1:-1:-1;23613:155:0;;;;;:::i;:::-;;:::i;39280:71::-;;;;;;;;;;-1:-1:-1;39280:71:0;;;;-1:-1:-1;;;;;39280:71:0;;;24736:328;;;;;;;;;;-1:-1:-1;24736:328:0;;;;;:::i;:::-;;:::i;40337:186::-;;;;;;;;;;-1:-1:-1;40337:186:0;;;;;:::i;:::-;;:::i;23839:164::-;;;;;;;;;;-1:-1:-1;23839:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23960:25:0;;;23936:4;23960:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23839:164;40531:88;;;;;;;;;;-1:-1:-1;40531:88:0;;;;;:::i;:::-;;:::i;40855:178::-;;;;;;;;;;-1:-1:-1;40855:178:0;;;;;:::i;:::-;;:::i;40739:108::-;;;;;;;;;;-1:-1:-1;40739:108:0;;;;;:::i;:::-;;:::i;35818:201::-;;;;;;;;;;-1:-1:-1;35818:201:0;;;;;:::i;:::-;;:::i;20816:305::-;20918:4;-1:-1:-1;;;;;;20955:40:0;;-1:-1:-1;;;20955:40:0;;:105;;-1:-1:-1;;;;;;;21012:48:0;;-1:-1:-1;;;21012:48:0;20955:105;:158;;;-1:-1:-1;;;;;;;;;;19454:40:0;;;21077:36;20935:178;20816:305;-1:-1:-1;;20816:305:0:o;21761:100::-;21815:13;21848:5;21841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21761:100;:::o;23320:221::-;23396:7;26663:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26663:16:0;23416:73;;;;-1:-1:-1;;;23416:73:0;;5380:2:1;23416:73:0;;;5362:21:1;5419:2;5399:18;;;5392:30;5458:34;5438:18;;;5431:62;-1:-1:-1;;;5509:18:1;;;5502:42;5561:19;;23416:73:0;;;;;;;;;-1:-1:-1;23509:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23509:24:0;;23320:221::o;22843:411::-;22924:13;22940:23;22955:7;22940:14;:23::i;:::-;22924:39;;22988:5;-1:-1:-1;;;;;22982:11:0;:2;-1:-1:-1;;;;;22982:11:0;;;22974:57;;;;-1:-1:-1;;;22974:57:0;;5793:2:1;22974:57:0;;;5775:21:1;5832:2;5812:18;;;5805:30;5871:34;5851:18;;;5844:62;-1:-1:-1;;;5922:18:1;;;5915:31;5963:19;;22974:57:0;5591:397:1;22974:57:0;16397:10;-1:-1:-1;;;;;23066:21:0;;;;:62;;-1:-1:-1;23091:37:0;23108:5;16397:10;23839:164;:::i;23091:37::-;23044:168;;;;-1:-1:-1;;;23044:168:0;;6195:2:1;23044:168:0;;;6177:21:1;6234:2;6214:18;;;6207:30;6273:34;6253:18;;;6246:62;6344:26;6324:18;;;6317:54;6388:19;;23044:168:0;5993:420:1;23044:168:0;23225:21;23234:2;23238:7;23225:8;:21::i;:::-;22913:341;22843:411;;:::o;24070:339::-;24265:41;16397:10;24298:7;24265:18;:41::i;:::-;24257:103;;;;-1:-1:-1;;;24257:103:0;;;;;;;:::i;:::-;24373:28;24383:4;24389:2;24393:7;24373:9;:28::i;24480:185::-;24618:39;24635:4;24641:2;24645:7;24618:39;;;;;;;;;;;;:16;:39::i;21455:239::-;21527:7;21563:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21563:16:0;21598:19;21590:73;;;;-1:-1:-1;;;21590:73:0;;7038:2:1;21590:73:0;;;7020:21:1;7077:2;7057:18;;;7050:30;7116:34;7096:18;;;7089:62;-1:-1:-1;;;7167:18:1;;;7160:39;7216:19;;21590:73:0;6836:405:1;39358:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21185:208::-;21257:7;-1:-1:-1;;;;;21285:19:0;;21277:74;;;;-1:-1:-1;;;21277:74:0;;7448:2:1;21277:74:0;;;7430:21:1;7487:2;7467:18;;;7460:30;7526:34;7506:18;;;7499:62;-1:-1:-1;;;7577:18:1;;;7570:40;7627:19;;21277:74:0;7246:406:1;21277:74:0;-1:-1:-1;;;;;;21369:16:0;;;;;:9;:16;;;;;;;21185:208::o;35560:103::-;34982:6;;-1:-1:-1;;;;;34982:6:0;16397:10;35129:23;35121:68;;;;-1:-1:-1;;;35121:68:0;;;;;;;:::i;:::-;35625:30:::1;35652:1;35625:18;:30::i;:::-;35560:103::o:0;40627:104::-;34982:6;;-1:-1:-1;;;;;34982:6:0;16397:10;35129:23;35121:68;;;;-1:-1:-1;;;35121:68:0;;;;;;;:::i;:::-;40697:11:::1;:26:::0;40627:104::o;21930:::-;21986:13;22019:7;22012:14;;;;;:::i;39643:686::-;38098:1;38696:7;;:19;;38688:63;;;;-1:-1:-1;;;38688:63:0;;8220:2:1;38688:63:0;;;8202:21:1;8259:2;8239:18;;;8232:30;8298:33;8278:18;;;8271:61;8349:18;;38688:63:0;8018:355:1;38688:63:0;38098:1;38829:7;:18;39716:10;39708:38:::1;;;::::0;-1:-1:-1;;;39708:38:0;;8580:2:1;39708:38:0::1;::::0;::::1;8562:21:1::0;8619:2;8599:18;;;8592:30;-1:-1:-1;;;8638:18:1;;;8631:45;8693:18;;39708:38:0::1;8378:339:1::0;39708:38:0::1;39800:11;::::0;39776:10:::1;39765:22;::::0;;;:10:::1;:22;::::0;;;;;:31:::1;::::0;39790:6;;39765:31:::1;:::i;:::-;:46;;39757:79;;;::::0;-1:-1:-1;;;39757:79:0;;9189:2:1;39757:79:0::1;::::0;::::1;9171:21:1::0;9228:2;9208:18;;;9201:30;-1:-1:-1;;;9247:18:1;;;9240:50;9307:18;;39757:79:0::1;8987:344:1::0;39757:79:0::1;39880:12;;39870:6;39855:12;;:21;;;;:::i;:::-;:37;;39847:71;;;::::0;-1:-1:-1;;;39847:71:0;;9538:2:1;39847:71:0::1;::::0;::::1;9520:21:1::0;9577:2;9557:18;;;9550:30;-1:-1:-1;;;9596:18:1;;;9589:51;9657:18;;39847:71:0::1;9336:345:1::0;39847:71:0::1;39960:6;39950:7;;:16;;;;:::i;:::-;39937:9;:29;39929:55;;;::::0;-1:-1:-1;;;39929:55:0;;10061:2:1;39929:55:0::1;::::0;::::1;10043:21:1::0;10100:2;10080:18;;;10073:30;-1:-1:-1;;;10119:18:1;;;10112:43;10172:18;;39929:55:0::1;9859:337:1::0;39929:55:0::1;40003:11;::::0;-1:-1:-1;;;;;40003:11:0::1;39995:58;;;::::0;-1:-1:-1;;;39995:58:0;;10403:2:1;39995:58:0::1;::::0;::::1;10385:21:1::0;10442:2;10422:18;;;10415:30;-1:-1:-1;;;10461:18:1;;;10454:50;10521:18;;39995:58:0::1;10201:344:1::0;39995:58:0::1;40070:6;40066:203;40080:6;40078:1;:8;40066:203;;;40107:12;40122;;40137:1;40122:16;;;;:::i;:::-;40107:31;;40153:30;40163:10;40175:7;40153:9;:30::i;:::-;40214:1;40198:12;;:17;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;40241:10:0::1;40230:22;::::0;;;:10:::1;:22;::::0;;;;:27;;40256:1:::1;::::0;40230:22;:27:::1;::::0;40256:1;;40230:27:::1;:::i;:::-;::::0;;;-1:-1:-1;40088:3:0;;-1:-1:-1;40088:3:0::1;::::0;-1:-1:-1;40088:3:0;::::1;:::i;:::-;;;;40066:203;;;-1:-1:-1::0;40289:11:0::1;::::0;40281:40:::1;::::0;-1:-1:-1;;;;;40289:11:0;;::::1;::::0;40311:9:::1;40281:40:::0;::::1;;;::::0;40289:11:::1;40281:40:::0;40289:11;40281:40;40311:9;40289:11;40281:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;38054:1:0;39008:7;:22;39643:686::o;23613:155::-;23708:52;16397:10;23741:8;23751;23708:18;:52::i;:::-;23613:155;;:::o;24736:328::-;24911:41;16397:10;24944:7;24911:18;:41::i;:::-;24903:103;;;;-1:-1:-1;;;24903:103:0;;;;;;;:::i;:::-;25017:39;25031:4;25037:2;25041:7;25050:5;25017:13;:39::i;:::-;24736:328;;;;:::o;40337:186::-;40399:23;40470:7;40479:25;40496:7;40479:16;:25::i;:::-;40453:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40434:81;;40337:186;;;:::o;40531:88::-;34982:6;;-1:-1:-1;;;;;34982:6:0;16397:10;35129:23;35121:68;;;;-1:-1:-1;;;35121:68:0;;;;;;;:::i;:::-;40593:7:::1;:18:::0;40531:88::o;40855:178::-;34982:6;;-1:-1:-1;;;;;34982:6:0;16397:10;35129:23;35121:68;;;;-1:-1:-1;;;35121:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40936:26:0;::::1;40928:60;;;::::0;-1:-1:-1;;;40928:60:0;;12632:2:1;40928:60:0::1;::::0;::::1;12614:21:1::0;12671:2;12651:18;;;12644:30;-1:-1:-1;;;12690:18:1;;;12683:51;12751:18;;40928:60:0::1;12430:345:1::0;40928:60:0::1;40999:11;:26:::0;;-1:-1:-1;;;;;;40999:26:0::1;-1:-1:-1::0;;;;;40999:26:0;;;::::1;::::0;;;::::1;::::0;;40855:178::o;40739:108::-;34982:6;;-1:-1:-1;;;;;34982:6:0;16397:10;35129:23;35121:68;;;;-1:-1:-1;;;35121:68:0;;;;;;;:::i;:::-;40811:12:::1;:28:::0;40739:108::o;35818:201::-;34982:6;;-1:-1:-1;;;;;34982:6:0;16397:10;35129:23;35121:68;;;;-1:-1:-1;;;35121:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35907:22:0;::::1;35899:73;;;::::0;-1:-1:-1;;;35899:73:0;;12982:2:1;35899:73:0::1;::::0;::::1;12964:21:1::0;13021:2;13001:18;;;12994:30;13060:34;13040:18;;;13033:62;-1:-1:-1;;;13111:18:1;;;13104:36;13157:19;;35899:73:0::1;12780:402:1::0;35899:73:0::1;35983:28;36002:8;35983:18;:28::i;:::-;35818:201:::0;:::o;30720:174::-;30795:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30795:29:0;-1:-1:-1;;;;;30795:29:0;;;;;;;;:24;;30849:23;30795:24;30849:14;:23::i;:::-;-1:-1:-1;;;;;30840:46:0;;;;;;;;;;;30720:174;;:::o;26868:348::-;26961:4;26663:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26663:16:0;26978:73;;;;-1:-1:-1;;;26978:73:0;;13389:2:1;26978:73:0;;;13371:21:1;13428:2;13408:18;;;13401:30;13467:34;13447:18;;;13440:62;-1:-1:-1;;;13518:18:1;;;13511:42;13570:19;;26978:73:0;13187:408:1;26978:73:0;27062:13;27078:23;27093:7;27078:14;:23::i;:::-;27062:39;;27131:5;-1:-1:-1;;;;;27120:16:0;:7;-1:-1:-1;;;;;27120:16:0;;:51;;;;27164:7;-1:-1:-1;;;;;27140:31:0;:20;27152:7;27140:11;:20::i;:::-;-1:-1:-1;;;;;27140:31:0;;27120:51;:87;;;-1:-1:-1;;;;;;23960:25:0;;;23936:4;23960:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27175:32;27112:96;26868:348;-1:-1:-1;;;;26868:348:0:o;29977:625::-;30136:4;-1:-1:-1;;;;;30109:31:0;:23;30124:7;30109:14;:23::i;:::-;-1:-1:-1;;;;;30109:31:0;;30101:81;;;;-1:-1:-1;;;30101:81:0;;13802:2:1;30101:81:0;;;13784:21:1;13841:2;13821:18;;;13814:30;13880:34;13860:18;;;13853:62;-1:-1:-1;;;13931:18:1;;;13924:35;13976:19;;30101:81:0;13600:401:1;30101:81:0;-1:-1:-1;;;;;30201:16:0;;30193:65;;;;-1:-1:-1;;;30193:65:0;;14208:2:1;30193:65:0;;;14190:21:1;14247:2;14227:18;;;14220:30;14286:34;14266:18;;;14259:62;-1:-1:-1;;;14337:18:1;;;14330:34;14381:19;;30193:65:0;14006:400:1;30193:65:0;30375:29;30392:1;30396:7;30375:8;:29::i;:::-;-1:-1:-1;;;;;30417:15:0;;;;;;:9;:15;;;;;:20;;30436:1;;30417:15;:20;;30436:1;;30417:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30448:13:0;;;;;;:9;:13;;;;;:18;;30465:1;;30448:13;:18;;30465:1;;30448:18;:::i;:::-;;;;-1:-1:-1;;30477:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30477:21:0;-1:-1:-1;;;;;30477:21:0;;;;;;;;;30516:27;;30477:16;;30516:27;;;;;;;22913:341;22843:411;;:::o;36179:191::-;36272:6;;;-1:-1:-1;;;;;36289:17:0;;;-1:-1:-1;;;;;;36289:17:0;;;;;;;36322:40;;36272:6;;;36289:17;36272:6;;36322:40;;36253:16;;36322:40;36242:128;36179:191;:::o;27558:110::-;27634:26;27644:2;27648:7;27634:26;;;;;;;;;;;;:9;:26::i;31036:315::-;31191:8;-1:-1:-1;;;;;31182:17:0;:5;-1:-1:-1;;;;;31182:17:0;;;31174:55;;;;-1:-1:-1;;;31174:55:0;;14743:2:1;31174:55:0;;;14725:21:1;14782:2;14762:18;;;14755:30;14821:27;14801:18;;;14794:55;14866:18;;31174:55:0;14541:349:1;31174:55:0;-1:-1:-1;;;;;31240:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31240:46:0;;;;;;;;;;31302:41;;540::1;;;31302::0;;513:18:1;31302:41:0;;;;;;;31036:315;;;:::o;25946:::-;26103:28;26113:4;26119:2;26123:7;26103:9;:28::i;:::-;26150:48;26173:4;26179:2;26183:7;26192:5;26150:22;:48::i;:::-;26142:111;;;;-1:-1:-1;;;26142:111:0;;;;;;;:::i;16816:723::-;16872:13;17093:10;17089:53;;-1:-1:-1;;17120:10:0;;;;;;;;;;;;-1:-1:-1;;;17120:10:0;;;;;16816:723::o;17089:53::-;17167:5;17152:12;17208:78;17215:9;;17208:78;;17241:8;;;;:::i;:::-;;-1:-1:-1;17264:10:0;;-1:-1:-1;17272:2:0;17264:10;;:::i;:::-;;;17208:78;;;17296:19;17328:6;17318:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17318:17:0;;17296:39;;17346:154;17353:10;;17346:154;;17380:11;17390:1;17380:11;;:::i;:::-;;-1:-1:-1;17449:10:0;17457:2;17449:5;:10;:::i;:::-;17436:24;;:2;:24;:::i;:::-;17423:39;;17406:6;17413;17406:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17406:56:0;;;;;;;;-1:-1:-1;17477:11:0;17486:2;17477:11;;:::i;:::-;;;17346:154;;27895:321;28025:18;28031:2;28035:7;28025:5;:18::i;:::-;28076:54;28107:1;28111:2;28115:7;28124:5;28076:22;:54::i;:::-;28054:154;;;;-1:-1:-1;;;28054:154:0;;;;;;;:::i;31916:799::-;32071:4;-1:-1:-1;;;;;32092:13:0;;8743:19;:23;32088:620;;32128:72;;-1:-1:-1;;;32128:72:0;;-1:-1:-1;;;;;32128:36:0;;;;;:72;;16397:10;;32179:4;;32185:7;;32194:5;;32128:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32128:72:0;;;;;;;;-1:-1:-1;;32128:72:0;;;;;;;;;;;;:::i;:::-;;;32124:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32370:13:0;;32366:272;;32413:60;;-1:-1:-1;;;32413:60:0;;;;;;;:::i;32366:272::-;32588:6;32582:13;32573:6;32569:2;32565:15;32558:38;32124:529;-1:-1:-1;;;;;;32251:51:0;-1:-1:-1;;;32251:51:0;;-1:-1:-1;32244:58:0;;32088:620;-1:-1:-1;32692:4:0;31916:799;;;;;;:::o;28552:439::-;-1:-1:-1;;;;;28632:16:0;;28624:61;;;;-1:-1:-1;;;28624:61:0;;16781:2:1;28624:61:0;;;16763:21:1;;;16800:18;;;16793:30;16859:34;16839:18;;;16832:62;16911:18;;28624:61:0;16579:356:1;28624:61:0;26639:4;26663:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26663:16:0;:30;28696:58;;;;-1:-1:-1;;;28696:58:0;;17142:2:1;28696:58:0;;;17124:21:1;17181:2;17161:18;;;17154:30;17220;17200:18;;;17193:58;17268:18;;28696:58:0;16940:352:1;28696:58:0;-1:-1:-1;;;;;28825:13:0;;;;;;:9;:13;;;;;:18;;28842:1;;28825:13;:18;;28842:1;;28825:18;:::i;:::-;;;;-1:-1:-1;;28854:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28854:21:0;-1:-1:-1;;;;;28854:21:0;;;;;;;;28893:33;;28854:16;;;28893:33;;28854:16;;28893:33;23613:155;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:347::-;2966:6;2974;3027:2;3015:9;3006:7;3002:23;2998:32;2995:52;;;3043:1;3040;3033:12;2995:52;3066:29;3085:9;3066:29;:::i;:::-;3056:39;;3145:2;3134:9;3130:18;3117:32;3192:5;3185:13;3178:21;3171:5;3168:32;3158:60;;3214:1;3211;3204:12;3158:60;3237:5;3227:15;;;2901:347;;;;;:::o;3253:127::-;3314:10;3309:3;3305:20;3302:1;3295:31;3345:4;3342:1;3335:15;3369:4;3366:1;3359:15;3385:1138;3480:6;3488;3496;3504;3557:3;3545:9;3536:7;3532:23;3528:33;3525:53;;;3574:1;3571;3564:12;3525:53;3597:29;3616:9;3597:29;:::i;:::-;3587:39;;3645:38;3679:2;3668:9;3664:18;3645:38;:::i;:::-;3635:48;;3730:2;3719:9;3715:18;3702:32;3692:42;;3785:2;3774:9;3770:18;3757:32;3808:18;3849:2;3841:6;3838:14;3835:34;;;3865:1;3862;3855:12;3835:34;3903:6;3892:9;3888:22;3878:32;;3948:7;3941:4;3937:2;3933:13;3929:27;3919:55;;3970:1;3967;3960:12;3919:55;4006:2;3993:16;4028:2;4024;4021:10;4018:36;;;4034:18;;:::i;:::-;4109:2;4103:9;4077:2;4163:13;;-1:-1:-1;;4159:22:1;;;4183:2;4155:31;4151:40;4139:53;;;4207:18;;;4227:22;;;4204:46;4201:72;;;4253:18;;:::i;:::-;4293:10;4289:2;4282:22;4328:2;4320:6;4313:18;4368:7;4363:2;4358;4354;4350:11;4346:20;4343:33;4340:53;;;4389:1;4386;4379:12;4340:53;4445:2;4440;4436;4432:11;4427:2;4419:6;4415:15;4402:46;4490:1;4485:2;4480;4472:6;4468:15;4464:24;4457:35;4511:6;4501:16;;;;;;;3385:1138;;;;;;;:::o;4528:260::-;4596:6;4604;4657:2;4645:9;4636:7;4632:23;4628:32;4625:52;;;4673:1;4670;4663:12;4625:52;4696:29;4715:9;4696:29;:::i;:::-;4686:39;;4744:38;4778:2;4767:9;4763:18;4744:38;:::i;:::-;4734:48;;4528:260;;;;;:::o;4793:380::-;4872:1;4868:12;;;;4915;;;4936:61;;4990:4;4982:6;4978:17;4968:27;;4936:61;5043:2;5035:6;5032:14;5012:18;5009:38;5006:161;;;5089:10;5084:3;5080:20;5077:1;5070:31;5124:4;5121:1;5114:15;5152:4;5149:1;5142:15;5006:161;;4793:380;;;:::o;6418:413::-;6620:2;6602:21;;;6659:2;6639:18;;;6632:30;6698:34;6693:2;6678:18;;6671:62;-1:-1:-1;;;6764:2:1;6749:18;;6742:47;6821:3;6806:19;;6418:413::o;7657:356::-;7859:2;7841:21;;;7878:18;;;7871:30;7937:34;7932:2;7917:18;;7910:62;8004:2;7989:18;;7657:356::o;8722:127::-;8783:10;8778:3;8774:20;8771:1;8764:31;8814:4;8811:1;8804:15;8838:4;8835:1;8828:15;8854:128;8894:3;8925:1;8921:6;8918:1;8915:13;8912:39;;;8931:18;;:::i;:::-;-1:-1:-1;8967:9:1;;8854:128::o;9686:168::-;9726:7;9792:1;9788;9784:6;9780:14;9777:1;9774:21;9769:1;9762:9;9755:17;9751:45;9748:71;;;9799:18;;:::i;:::-;-1:-1:-1;9839:9:1;;9686:168::o;10550:135::-;10589:3;-1:-1:-1;;10610:17:1;;10607:43;;;10630:18;;:::i;:::-;-1:-1:-1;10677:1:1;10666:13;;10550:135::o;10816:185::-;10858:3;10896:5;10890:12;10911:52;10956:6;10951:3;10944:4;10937:5;10933:16;10911:52;:::i;:::-;10979:16;;;;;10816:185;-1:-1:-1;;10816:185:1:o;11124:1301::-;11401:3;11430:1;11463:6;11457:13;11493:3;11515:1;11543:9;11539:2;11535:18;11525:28;;11603:2;11592:9;11588:18;11625;11615:61;;11669:4;11661:6;11657:17;11647:27;;11615:61;11695:2;11743;11735:6;11732:14;11712:18;11709:38;11706:165;;;-1:-1:-1;;;11770:33:1;;11826:4;11823:1;11816:15;11856:4;11777:3;11844:17;11706:165;11887:18;11914:104;;;;12032:1;12027:320;;;;11880:467;;11914:104;-1:-1:-1;;11947:24:1;;11935:37;;11992:16;;;;-1:-1:-1;11914:104:1;;12027:320;10763:1;10756:14;;;10800:4;10787:18;;12122:1;12136:165;12150:6;12147:1;12144:13;12136:165;;;12228:14;;12215:11;;;12208:35;12271:16;;;;12165:10;;12136:165;;;12140:3;;12330:6;12325:3;12321:16;12314:23;;11880:467;;;;;;;12363:56;12388:30;12414:3;12406:6;12388:30;:::i;:::-;-1:-1:-1;;;11066:20:1;;11111:1;11102:11;;11006:113;12363:56;12356:63;11124:1301;-1:-1:-1;;;;;11124:1301:1:o;14411:125::-;14451:4;14479:1;14476;14473:8;14470:34;;;14484:18;;:::i;:::-;-1:-1:-1;14521:9:1;;14411:125::o;14895:414::-;15097:2;15079:21;;;15136:2;15116:18;;;15109:30;15175:34;15170:2;15155:18;;15148:62;-1:-1:-1;;;15241:2:1;15226:18;;15219:48;15299:3;15284:19;;14895:414::o;15314:127::-;15375:10;15370:3;15366:20;15363:1;15356:31;15406:4;15403:1;15396:15;15430:4;15427:1;15420:15;15446:120;15486:1;15512;15502:35;;15517:18;;:::i;:::-;-1:-1:-1;15551:9:1;;15446:120::o;15571:112::-;15603:1;15629;15619:35;;15634:18;;:::i;:::-;-1:-1:-1;15668:9:1;;15571:112::o;15688:127::-;15749:10;15744:3;15740:20;15737:1;15730:31;15780:4;15777:1;15770:15;15804:4;15801:1;15794:15;15820:500;-1:-1:-1;;;;;16089:15:1;;;16071:34;;16141:15;;16136:2;16121:18;;16114:43;16188:2;16173:18;;16166:34;;;16236:3;16231:2;16216:18;;16209:31;;;16014:4;;16257:57;;16294:19;;16286:6;16257:57;:::i;:::-;16249:65;15820:500;-1:-1:-1;;;;;;15820:500:1:o;16325:249::-;16394:6;16447:2;16435:9;16426:7;16422:23;16418:32;16415:52;;;16463:1;16460;16453:12;16415:52;16495:9;16489:16;16514:30;16538:5;16514:30;:::i
Swarm Source
ipfs://025f9bbb10fba826609463d22246eef9af923cf599bfaae09256b3e042b3cf33
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.