Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Reward Pool | 20413139 | 583 days ago | IN | 0 ETH | 0.00024442 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MNGANodes
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-07-29
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(
address indexed from,
address indexed to,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(
address indexed owner,
address indexed approved,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(
address indexed owner,
address indexed operator,
bool approved
);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId)
external
view
returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator)
external
view
returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
external
view
returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length)
internal
pure
returns (string memory)
{
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
(bool success, ) = recipient.call{value: amount}("");
require(
success,
"Address: unable to send value, recipient may have reverted"
);
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return
functionCallWithValue(
target,
data,
value,
"Address: low-level call with value failed"
);
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(
address(this).balance >= value,
"Address: insufficient balance for call"
);
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(
data
);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data)
internal
view
returns (bytes memory)
{
return
functionStaticCall(
target,
data,
"Address: low-level static call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return
functionDelegateCall(
target,
data,
"Address: low-level delegate call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner)
public
view
virtual
override
returns (uint256)
{
require(
owner != address(0),
"ERC721: balance query for the zero address"
);
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId)
public
view
virtual
override
returns (address)
{
address owner = _owners[tokenId];
require(
owner != address(0),
"ERC721: owner query for nonexistent token"
);
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory baseURI = _baseURI();
return
bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
virtual
override
returns (address)
{
require(
_exists(tokenId),
"ERC721: approved query for nonexistent token"
);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
virtual
override
{
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId)
internal
view
virtual
returns (bool)
{
require(
_exists(tokenId),
"ERC721: operator query for nonexistent token"
);
address owner = ERC721.ownerOf(tokenId);
return (spender == owner ||
getApproved(tokenId) == spender ||
isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(
ERC721.ownerOf(tokenId) == from,
"ERC721: transfer of token that is not own"
);
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721: transfer to non ERC721Receiver implementer"
);
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(IERC165, ERC721)
returns (bool)
{
return
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
public
view
virtual
override
returns (uint256)
{
require(
index < ERC721.balanceOf(owner),
"ERC721Enumerable: owner index out of bounds"
);
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index)
public
view
virtual
override
returns (uint256)
{
require(
index < ERC721Enumerable.totalSupply(),
"ERC721Enumerable: global index out of bounds"
);
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
private
{
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
interface IRewardPool {
function addNodeInfo(uint _nftId, uint _nodeType, address _owner) external returns (bool);
function updateNodeOwner(uint _nftId, address _owner) external returns (bool);
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
pragma solidity ^0.8.7;
contract ControlledAccess is Ownable {
/*
* @dev Requires msg.sender to have valid access message.
* @param _v ECDSA signature parameter v.
* @param _r ECDSA signature parameters r.
* @param _s ECDSA signature parameters s.
*/
modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s)
{
require( isValidAccessMessage(msg.sender,_v,_r,_s), "Not valid Message");
_;
}
/*
* @dev Verifies if message was signed by owner to give access to _add for this contract.
* Assumes Geth signature prefix.
* @param _add Address of agent with access
* @param _v ECDSA signature parameter v.
* @param _r ECDSA signature parameters r.
* @param _s ECDSA signature parameters s.
* @return Validity of access message for a given address.
*/
function isValidAccessMessage(
address _add,
uint8 _v,
bytes32 _r,
bytes32 _s
)
public view returns (bool)
{
bytes32 msgHash = keccak256(abi.encodePacked(address(this), _add));
bytes memory prefix = "\x19Ethereum Signed Message:\n32";
bytes32 prefixedHash = keccak256(abi.encodePacked(prefix, msgHash));
address _recovered = ecrecover(prefixedHash, _v, _r, _s);
if (owner() == _recovered)
{
return true;
}
return false;
}
}
pragma solidity >=0.7.0 <0.9.0;
contract MNGANodes is ERC721Enumerable, Ownable, ControlledAccess{
using Strings for uint256;
string baseURI;
string public baseExtension = ".json";
uint256 public timeDeployed;
uint256 public allowMintingAfter = 0;
address public MNGA;
bool public isPaused = false;
address public rewardPool;
uint[5] public nodeCount = [0,0,0,0,0];
mapping(uint256 => uint) public nodeType;
uint[5] public maxSupplyPerNode = [2000,2000,2000,2000, 2000];
// tax in 1e4 (10000 = 100%)
uint256 public tax = 0;
uint256[5] public mintPrices=[3000000000,15000000000,75000000000,150000000000,275000000000];
constructor(
string memory _name,
string memory _symbol,
string memory _initBaseURI,
uint256 _revealTime,
address _MNGAAddress
) ERC721(_name, _symbol) {
if (_revealTime > block.timestamp) {
allowMintingAfter = _revealTime;
}
MNGA = _MNGAAddress;
timeDeployed = block.timestamp;
setBaseURI(_initBaseURI);
}
modifier onlyRewardPool() {
require(rewardPool == msg.sender, "Ownable: caller is not the rewardPool");
_;
}
receive() external payable {
}
function getMintPrices() public view returns (uint256[5] memory) {
return mintPrices;
}
function updateMaxSupplyPerNode(uint256[5] memory _newMaxSupplyPerNode) public onlyOwner {
for (uint i = 0; i < 5; i++) {
require(nodeCount[i]< _newMaxSupplyPerNode[i], "Cannot update max supply if there are more nodes than the new max supply");
}
maxSupplyPerNode = _newMaxSupplyPerNode;
}
function updateMintPrices(uint256[5] memory _prices) public onlyOwner{
mintPrices = _prices;
}
function setRewardPool(address _rewardPool) public onlyOwner{
rewardPool = _rewardPool;
}
function updateTaxes(uint256 _tax) public onlyOwner{
tax = _tax;
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function updateMNGAAddress( address _MNGAAddress) public onlyOwner{
MNGA = _MNGAAddress;
}
function _mint(uint _type, address to) internal{
require(
block.timestamp >= allowMintingAfter,
"Minting now allowed yet"
);
require(_type>0 && _type<=5, "Invalid node type");
require(
nodeCount[_type-1] <= maxSupplyPerNode[_type-1],
"Max supply reached"
);
nodeCount[_type-1] += 1;
uint256 supply = totalSupply();
nodeType[supply+1] = _type;
require(!isPaused);
_safeMint(to, supply + 1);
}
function mintFromRewards(uint _type, address to, uint256 n_tokens) public onlyRewardPool{
for (uint i = 0; i < n_tokens; i++) {
_mint(_type, to);
}
}
function mint(uint _type, uint256 n_tokens) public payable {
uint256 price = mintPrices[_type-1]*n_tokens;
uint256 _tax = (price*tax)/10000;
if (msg.sender != owner()) {
require(IERC20(MNGA).transferFrom(msg.sender, address(this), price), "Not enough funds");
IERC20(MNGA).transfer(rewardPool, price-_tax);
}
for (uint i = 0; i < n_tokens; i++) {
_mint(_type, msg.sender);
}
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory tokenIds = new uint256[](ownerTokenCount);
for (uint256 i; i < ownerTokenCount; i++) {
tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokenIds;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory currentBaseURI = _baseURI();
return
bytes(currentBaseURI).length > 0
? string(
abi.encodePacked(
currentBaseURI,
nodeType[tokenId].toString(),
baseExtension
)
)
: "";
}
function getSecondsUntilMinting() public view returns (uint256) {
if (block.timestamp < allowMintingAfter) {
return (allowMintingAfter) - block.timestamp;
} else {
return 0;
}
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function setBaseExtension(string memory _newBaseExtension)
public
onlyOwner
{
baseExtension = _newBaseExtension;
}
function setIsPaused(bool _state) public onlyOwner {
isPaused = _state;
}
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
IRewardPool(rewardPool).addNodeInfo(tokenId, nodeType[tokenId], to);
} else if (from != to) {
IRewardPool(rewardPool).updateNodeOwner(tokenId, to);
}
}
function emergenceyWithdrawTokens() public onlyOwner {
IERC20(MNGA).transfer(owner(), IERC20(MNGA).balanceOf(address(this)));
}
function withdraw() public payable onlyOwner {
(bool success, ) = payable(msg.sender).call{
value: address(this).balance
}("");
require(success);
}
}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":"_initBaseURI","type":"string"},{"internalType":"uint256","name":"_revealTime","type":"uint256"},{"internalType":"address","name":"_MNGAAddress","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":[],"name":"MNGA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowMintingAfter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergenceyWithdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrices","outputs":[{"internalType":"uint256[5]","name":"","type":"uint256[5]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSecondsUntilMinting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxSupplyPerNode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_type","type":"uint256"},{"internalType":"uint256","name":"n_tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_type","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"n_tokens","type":"uint256"}],"name":"mintFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nodeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nodeType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardPool","type":"address"}],"name":"setRewardPool","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":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeDeployed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_MNGAAddress","type":"address"}],"name":"updateMNGAAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[5]","name":"_newMaxSupplyPerNode","type":"uint256[5]"}],"name":"updateMaxSupplyPerNode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[5]","name":"_prices","type":"uint256[5]"}],"name":"updateMintPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600c90620000269082620003f3565b506000600e819055600f805460ff60a01b191690556040805160a08101825282815260208101839052908101829052606081018290526080810191909152620000749060119060056200027e565b506040805160a0810182526107d080825260208201819052918101829052606081018290526080810191909152620000b1906017906005620002c6565b506000601c556040805160a08101825263b2d05e00815264037e11d6006020820152641176592e00918101919091526422ecb25c00606082015264400746fe0060808201526200010690601d906005620002fd565b503480156200011457600080fd5b506040516200363f3803806200363f83398101604081905262000137916200056e565b84846000620001478382620003f3565b506001620001568282620003f3565b505050620001736200016d620001b760201b60201c565b620001bb565b428211156200018257600e8290555b600f80546001600160a01b0319166001600160a01b03831617905542600d55620001ac836200020d565b50505050506200062d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200026c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600b6200027a8282620003f3565b5050565b8260058101928215620002b4579160200282015b82811115620002b4578251829060ff1690559160200191906001019062000292565b50620002c292915062000337565b5090565b8260058101928215620002b4579160200282015b82811115620002b4578251829061ffff16905591602001919060010190620002da565b8260058101928215620002b4579160200282015b82811115620002b4578251829064ffffffffff1690559160200191906001019062000311565b5b80821115620002c2576000815560010162000338565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200037957607f821691505b6020821081036200039a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ee57600081815260208120601f850160051c81016020861015620003c95750805b601f850160051c820191505b81811015620003ea57828155600101620003d5565b5050505b505050565b81516001600160401b038111156200040f576200040f6200034e565b620004278162000420845462000364565b84620003a0565b602080601f8311600181146200045f5760008415620004465750858301515b600019600386901b1c1916600185901b178555620003ea565b600085815260208120601f198616915b8281101562000490578886015182559484019460019091019084016200046f565b5085821015620004af5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620004d157600080fd5b81516001600160401b0380821115620004ee57620004ee6200034e565b604051601f8301601f19908116603f011681019082821181831017156200051957620005196200034e565b816040528381526020925086838588010111156200053657600080fd5b600091505b838210156200055a57858201830151818301840152908201906200053b565b600093810190920192909252949350505050565b600080600080600060a086880312156200058757600080fd5b85516001600160401b03808211156200059f57600080fd5b620005ad89838a01620004bf565b96506020880151915080821115620005c457600080fd5b620005d289838a01620004bf565b95506040880151915080821115620005e957600080fd5b50620005f888828901620004bf565b60608801516080890151919550935090506001600160a01b03811681146200061f57600080fd5b809150509295509295909350565b613002806200063d6000396000f3fe6080604052600436106102815760003560e01c8063715018a61161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461076b578063db00fb201461078b578063e985e9c5146107ad578063f2fde38b146107f6578063fa1f7b0c14610816578063fa7e685b1461083657600080fd5b8063b88d4fde146106b6578063c6682862146106d6578063c87b56dd146106eb578063cdc4878b1461070b578063d883c7131461072b578063d8c9d96e1461074b57600080fd5b806395d89b411161011357806395d89b411461061557806399c8d5561461062a578063a22cb46514610640578063a75052cb14610660578063aab1400614610675578063b187bd261461069557600080fd5b8063715018a61461058c57806378238c37146105a1578063872bdcdb146105c15780638da5cb5b146105d75780638fbf25e3146105f557600080fd5b80632f745c59116101f357806355f804b3116101ac57806355f804b3146104cc5780635a0ad007146104ec5780636187b33e1461050c5780636352211e1461052c57806366666aa91461054c57806370a082311461056c57600080fd5b80632f745c591461041757806332624114146104375780633ccfd60b1461045757806342842e0e1461045f578063438b63001461047f5780634f6ccce7146104ac57600080fd5b806318160ddd1161024557806318160ddd1461036c57806319188c35146103815780631b2ef1ca146103975780631c794b84146103aa57806323b872dd146103d7578063240976bf146103f757600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630a165fdc1461033e57600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a83660046126e4565b61084b565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610876565b6040516102b99190612751565b3480156102f057600080fd5b506103046102ff366004612764565b610908565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612799565b6109a2565b005b34801561034a57600080fd5b5061035e610359366004612764565b610ab7565b6040519081526020016102b9565b34801561037857600080fd5b5060085461035e565b34801561038d57600080fd5b5061035e600d5481565b61033c6103a53660046127c3565b610ace565b3480156103b657600080fd5b5061035e6103c5366004612764565b60166020526000908152604090205481565b3480156103e357600080fd5b5061033c6103f23660046127e5565b610cc1565b34801561040357600080fd5b5061033c61041236600461282f565b610cf2565b34801561042357600080fd5b5061035e610432366004612799565b610d3a565b34801561044357600080fd5b506102ad61045236600461284c565b610dd0565b61033c610f1a565b34801561046b57600080fd5b5061033c61047a3660046127e5565b610f9c565b34801561048b57600080fd5b5061049f61049a366004612896565b610fb7565b6040516102b991906128b1565b3480156104b857600080fd5b5061035e6104c7366004612764565b611059565b3480156104d857600080fd5b5061033c6104e7366004612981565b6110ec565b3480156104f857600080fd5b5061033c610507366004612764565b611126565b34801561051857600080fd5b5061035e610527366004612764565b611155565b34801561053857600080fd5b50610304610547366004612764565b611165565b34801561055857600080fd5b50601054610304906001600160a01b031681565b34801561057857600080fd5b5061035e610587366004612896565b6111dc565b34801561059857600080fd5b5061033c611263565b3480156105ad57600080fd5b5061033c6105bc366004612896565b611299565b3480156105cd57600080fd5b5061035e600e5481565b3480156105e357600080fd5b50600a546001600160a01b0316610304565b34801561060157600080fd5b5061033c610610366004612896565b6112e5565b34801561062157600080fd5b506102d7611331565b34801561063657600080fd5b5061035e601c5481565b34801561064c57600080fd5b5061033c61065b3660046129ca565b611340565b34801561066c57600080fd5b5061035e611404565b34801561068157600080fd5b5061033c610690366004612a01565b611429565b3480156106a157600080fd5b50600f546102ad90600160a01b900460ff1681565b3480156106c257600080fd5b5061033c6106d1366004612a7f565b61152f565b3480156106e257600080fd5b506102d7611567565b3480156106f757600080fd5b506102d7610706366004612764565b6115f5565b34801561071757600080fd5b5061035e610726366004612764565b6116e3565b34801561073757600080fd5b5061033c610746366004612afb565b6116f3565b34801561075757600080fd5b50600f54610304906001600160a01b031681565b34801561077757600080fd5b5061033c610786366004612981565b611782565b34801561079757600080fd5b506107a06117b8565b6040516102b99190612b20565b3480156107b957600080fd5b506102ad6107c8366004612b51565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561080257600080fd5b5061033c610811366004612896565b6117f3565b34801561082257600080fd5b5061033c610831366004612a01565b61188b565b34801561084257600080fd5b5061033c6118c2565b60006001600160e01b0319821663780e9d6360e01b14806108705750610870826119ea565b92915050565b60606000805461088590612b84565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612b84565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109ad82611165565b9050806001600160a01b0316836001600160a01b031603610a1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097d565b336001600160a01b0382161480610a365750610a3681336107c8565b610aa85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097d565b610ab28383611a3a565b505050565b60178160058110610ac757600080fd5b0154905081565b600081601d610ade600186612bd4565b60058110610aee57610aee612be7565b0154610afa9190612bfd565b90506000612710601c5483610b0f9190612bfd565b610b199190612c2a565b9050610b2d600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610c9357600f546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610b9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc09190612c3e565b610bff5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b604482015260640161097d565b600f546010546001600160a01b039182169163a9059cbb9116610c228486612bd4565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610c6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c919190612c3e565b505b60005b83811015610cba57610ca88533611aa8565b80610cb281612c5b565b915050610c96565b5050505050565b610ccb3382611c4e565b610ce75760405162461bcd60e51b815260040161097d90612c74565b610ab2838383611d41565b600a546001600160a01b03163314610d1c5760405162461bcd60e51b815260040161097d90612cc5565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b6000610d45836111dc565b8210610da75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6040516bffffffffffffffffffffffff1930606090811b8216602084015286901b166034820152600090819060480160408051601f1981840301815282825280516020918201208383018352601c84527f19457468657265756d205369676e6564204d6573736167653a0a333200000000848301529151919350600091610e5b918491869101612cfa565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff8b169284019290925260608301899052608083018890529092509060019060a0016020604051602081039080840390855afa158015610ec6573d6000803e3d6000fd5b505050602060405103519050806001600160a01b0316610eee600a546001600160a01b031690565b6001600160a01b031603610f09576001945050505050610f12565b60009450505050505b949350505050565b600a546001600160a01b03163314610f445760405162461bcd60e51b815260040161097d90612cc5565b604051600090339047908381818185875af1925050503d8060008114610f86576040519150601f19603f3d011682016040523d82523d6000602084013e610f8b565b606091505b5050905080610f9957600080fd5b50565b610ab28383836040518060200160405280600081525061152f565b60606000610fc4836111dc565b905060008167ffffffffffffffff811115610fe157610fe16128f5565b60405190808252806020026020018201604052801561100a578160200160208202803683370190505b50905060005b82811015611051576110228582610d3a565b82828151811061103457611034612be7565b60209081029190910101528061104981612c5b565b915050611010565b509392505050565b600061106460085490565b82106110c75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097d565b600882815481106110da576110da612be7565b90600052602060002001549050919050565b600a546001600160a01b031633146111165760405162461bcd60e51b815260040161097d90612cc5565b600b6111228282612d6a565b5050565b600a546001600160a01b031633146111505760405162461bcd60e51b815260040161097d90612cc5565b601c55565b601d8160058110610ac757600080fd5b6000818152600260205260408120546001600160a01b0316806108705760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097d565b60006001600160a01b0382166112475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461128d5760405162461bcd60e51b815260040161097d90612cc5565b6112976000611eec565b565b600a546001600160a01b031633146112c35760405162461bcd60e51b815260040161097d90612cc5565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461130f5760405162461bcd60e51b815260040161097d90612cc5565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461088590612b84565b336001600160a01b038316036113985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600e544210156114235742600e5461141e9190612bd4565b905090565b50600090565b600a546001600160a01b031633146114535760405162461bcd60e51b815260040161097d90612cc5565b60005b60058110156115215781816005811061147157611471612be7565b60200201516011826005811061148957611489612be7565b01541061150f5760405162461bcd60e51b815260206004820152604860248201527f43616e6e6f7420757064617465206d617820737570706c79206966207468657260448201527f6520617265206d6f7265206e6f646573207468616e20746865206e6577206d616064820152677820737570706c7960c01b608482015260a40161097d565b8061151981612c5b565b915050611456565b50611122601782600561265d565b6115393383611c4e565b6115555760405162461bcd60e51b815260040161097d90612c74565b61156184848484611f3e565b50505050565b600c805461157490612b84565b80601f01602080910402602001604051908101604052809291908181526020018280546115a090612b84565b80156115ed5780601f106115c2576101008083540402835291602001916115ed565b820191906000526020600020905b8154815290600101906020018083116115d057829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166116745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097d565b600061167e611f71565b9050600081511161169e57604051806020016040528060008152506116dc565b60008381526016602052604090205481906116b890611f80565b600c6040516020016116cc93929190612e2a565b6040516020818303038152906040525b9392505050565b60118160058110610ac757600080fd5b6010546001600160a01b0316331461175b5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c653a2063616c6c6572206973206e6f742074686520726577617260448201526419141bdbdb60da1b606482015260840161097d565b60005b81811015611561576117708484611aa8565b8061177a81612c5b565b91505061175e565b600a546001600160a01b031633146117ac5760405162461bcd60e51b815260040161097d90612cc5565b600c6111228282612d6a565b6117c061269b565b6040805160a081019182905290601d9060059082845b8154815260200190600101908083116117d6575050505050905090565b600a546001600160a01b0316331461181d5760405162461bcd60e51b815260040161097d90612cc5565b6001600160a01b0381166118825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097d565b610f9981611eec565b600a546001600160a01b031633146118b55760405162461bcd60e51b815260040161097d90612cc5565b611122601d82600561265d565b600a546001600160a01b031633146118ec5760405162461bcd60e51b815260040161097d90612cc5565b600f546001600160a01b031663a9059cbb61190f600a546001600160a01b031690565b600f546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197b9190612eca565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156119c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f999190612c3e565b60006001600160e01b031982166380ac58cd60e01b1480611a1b57506001600160e01b03198216635b5e139f60e01b145b8061087057506301ffc9a760e01b6001600160e01b0319831614610870565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a6f82611165565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600e54421015611afa5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206e6f7720616c6c6f77656420796574000000000000000000604482015260640161097d565b600082118015611b0b575060058211155b611b4b5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964206e6f6465207479706560781b604482015260640161097d565b6017611b58600184612bd4565b60058110611b6857611b68612be7565b01546011611b77600185612bd4565b60058110611b8757611b87612be7565b01541115611bcc5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015260640161097d565b60016011611bda8285612bd4565b60058110611bea57611bea612be7565b016000828254611bfa9190612ee3565b90915550506008548260166000611c12846001612ee3565b8152602081019190915260400160002055600f54600160a01b900460ff1615611c3a57600080fd5b610ab282611c49836001612ee3565b612081565b6000818152600260205260408120546001600160a01b0316611cc75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097d565b6000611cd283611165565b9050806001600160a01b0316846001600160a01b03161480611d0d5750836001600160a01b0316611d0284610908565b6001600160a01b0316145b80610f1257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f12565b826001600160a01b0316611d5482611165565b6001600160a01b031614611dbc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097d565b6001600160a01b038216611e1e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097d565b611e2983838361209b565b611e34600082611a3a565b6001600160a01b0383166000908152600360205260408120805460019290611e5d908490612bd4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e8b908490612ee3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f49848484611d41565b611f5584848484612196565b6115615760405162461bcd60e51b815260040161097d90612ef6565b6060600b805461088590612b84565b606081600003611fa75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fd15780611fbb81612c5b565b9150611fca9050600a83612c2a565b9150611fab565b60008167ffffffffffffffff811115611fec57611fec6128f5565b6040519080825280601f01601f191660200182016040528015612016576020820181803683370190505b5090505b8415610f125761202b600183612bd4565b9150612038600a86612f48565b612043906030612ee3565b60f81b81838151811061205857612058612be7565b60200101906001600160f81b031916908160001a90535061207a600a86612c2a565b945061201a565b611122828260405180602001604052806000815250612294565b6120a68383836122c7565b6001600160a01b0383166121445760105460008281526016602052604090819020549051638b9b466760e01b81526004810184905260248101919091526001600160a01b03848116604483015290911690638b9b4667906064015b6020604051808303816000875af1158015612120573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115619190612c3e565b816001600160a01b0316836001600160a01b031614610ab257601054604051634bba4a8360e11b8152600481018390526001600160a01b03848116602483015290911690639774950690604401612101565b60006001600160a01b0384163b1561228c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121da903390899088908890600401612f5c565b6020604051808303816000875af1925050508015612215575060408051601f3d908101601f1916820190925261221291810190612f99565b60015b612272573d808015612243576040519150601f19603f3d011682016040523d82523d6000602084013e612248565b606091505b50805160000361226a5760405162461bcd60e51b815260040161097d90612ef6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f12565b506001610f12565b61229e838361237f565b6122ab6000848484612196565b610ab25760405162461bcd60e51b815260040161097d90612ef6565b6001600160a01b0383166123225761231d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612345565b816001600160a01b0316836001600160a01b0316146123455761234583826124cd565b6001600160a01b03821661235c57610ab28161256a565b826001600160a01b0316826001600160a01b031614610ab257610ab28282612619565b6001600160a01b0382166123d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097d565b6000818152600260205260409020546001600160a01b03161561243a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097d565b6124466000838361209b565b6001600160a01b038216600090815260036020526040812080546001929061246f908490612ee3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016124da846111dc565b6124e49190612bd4565b600083815260076020526040902054909150808214612537576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061257c90600190612bd4565b600083815260096020526040812054600880549394509092849081106125a4576125a4612be7565b9060005260206000200154905080600883815481106125c5576125c5612be7565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125fd576125fd612fb6565b6001900381819060005260206000200160009055905550505050565b6000612624836111dc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b826005810192821561268b579160200282015b8281111561268b578251825591602001919060010190612670565b506126979291506126b9565b5090565b6040518060a001604052806005906020820280368337509192915050565b5b8082111561269757600081556001016126ba565b6001600160e01b031981168114610f9957600080fd5b6000602082840312156126f657600080fd5b81356116dc816126ce565b60005b8381101561271c578181015183820152602001612704565b50506000910152565b6000815180845261273d816020860160208601612701565b601f01601f19169290920160200192915050565b6020815260006116dc6020830184612725565b60006020828403121561277657600080fd5b5035919050565b80356001600160a01b038116811461279457600080fd5b919050565b600080604083850312156127ac57600080fd5b6127b58361277d565b946020939093013593505050565b600080604083850312156127d657600080fd5b50508035926020909101359150565b6000806000606084860312156127fa57600080fd5b6128038461277d565b92506128116020850161277d565b9150604084013590509250925092565b8015158114610f9957600080fd5b60006020828403121561284157600080fd5b81356116dc81612821565b6000806000806080858703121561286257600080fd5b61286b8561277d565b9350602085013560ff8116811461288157600080fd5b93969395505050506040820135916060013590565b6000602082840312156128a857600080fd5b6116dc8261277d565b6020808252825182820181905260009190848201906040850190845b818110156128e9578351835292840192918401916001016128cd565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612926576129266128f5565b604051601f8501601f19908116603f0116810190828211818310171561294e5761294e6128f5565b8160405280935085815286868601111561296757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561299357600080fd5b813567ffffffffffffffff8111156129aa57600080fd5b8201601f810184136129bb57600080fd5b610f128482356020840161290b565b600080604083850312156129dd57600080fd5b6129e68361277d565b915060208301356129f681612821565b809150509250929050565b600060a08284031215612a1357600080fd5b82601f830112612a2257600080fd5b60405160a0810181811067ffffffffffffffff82111715612a4557612a456128f5565b6040528060a0840185811115612a5a57600080fd5b845b81811015612a74578035835260209283019201612a5c565b509195945050505050565b60008060008060808587031215612a9557600080fd5b612a9e8561277d565b9350612aac6020860161277d565b925060408501359150606085013567ffffffffffffffff811115612acf57600080fd5b8501601f81018713612ae057600080fd5b612aef8782356020840161290b565b91505092959194509250565b600080600060608486031215612b1057600080fd5b833592506128116020850161277d565b60a08101818360005b6005811015612b48578151835260209283019290910190600101612b29565b50505092915050565b60008060408385031215612b6457600080fd5b612b6d8361277d565b9150612b7b6020840161277d565b90509250929050565b600181811c90821680612b9857607f821691505b602082108103612bb857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561087057610870612bbe565b634e487b7160e01b600052603260045260246000fd5b808202811582820484141761087057610870612bbe565b634e487b7160e01b600052601260045260246000fd5b600082612c3957612c39612c14565b500490565b600060208284031215612c5057600080fd5b81516116dc81612821565b600060018201612c6d57612c6d612bbe565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351612d0c818460208801612701565b9190910191825250602001919050565b601f821115610ab257600081815260208120601f850160051c81016020861015612d435750805b601f850160051c820191505b81811015612d6257828155600101612d4f565b505050505050565b815167ffffffffffffffff811115612d8457612d846128f5565b612d9881612d928454612b84565b84612d1c565b602080601f831160018114612dcd5760008415612db55750858301515b600019600386901b1c1916600185901b178555612d62565b600085815260208120601f198616915b82811015612dfc57888601518255948401946001909101908401612ddd565b5085821015612e1a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600084516020612e3d8285838a01612701565b855191840191612e508184848a01612701565b8554920191600090612e6181612b84565b60018281168015612e795760018114612e8e57612eba565b60ff1984168752821515830287019450612eba565b896000528560002060005b84811015612eb257815489820152908301908701612e99565b505082870194505b50929a9950505050505050505050565b600060208284031215612edc57600080fd5b5051919050565b8082018082111561087057610870612bbe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612f5757612f57612c14565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f8f90830184612725565b9695505050505050565b600060208284031215612fab57600080fd5b81516116dc816126ce565b634e487b7160e01b600052603160045260246000fdfea264697066735822122028d248a5b647f1283f8fd9900044391dcb7178bbf6a67ecbd1c6ef84845c51bb64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f45812116bc73ea2112a6fbc81d7a407867817b00000000000000000000000000000000000000000000000000000000000000044d4e47410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4e4741000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102815760003560e01c8063715018a61161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461076b578063db00fb201461078b578063e985e9c5146107ad578063f2fde38b146107f6578063fa1f7b0c14610816578063fa7e685b1461083657600080fd5b8063b88d4fde146106b6578063c6682862146106d6578063c87b56dd146106eb578063cdc4878b1461070b578063d883c7131461072b578063d8c9d96e1461074b57600080fd5b806395d89b411161011357806395d89b411461061557806399c8d5561461062a578063a22cb46514610640578063a75052cb14610660578063aab1400614610675578063b187bd261461069557600080fd5b8063715018a61461058c57806378238c37146105a1578063872bdcdb146105c15780638da5cb5b146105d75780638fbf25e3146105f557600080fd5b80632f745c59116101f357806355f804b3116101ac57806355f804b3146104cc5780635a0ad007146104ec5780636187b33e1461050c5780636352211e1461052c57806366666aa91461054c57806370a082311461056c57600080fd5b80632f745c591461041757806332624114146104375780633ccfd60b1461045757806342842e0e1461045f578063438b63001461047f5780634f6ccce7146104ac57600080fd5b806318160ddd1161024557806318160ddd1461036c57806319188c35146103815780631b2ef1ca146103975780631c794b84146103aa57806323b872dd146103d7578063240976bf146103f757600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c5780630a165fdc1461033e57600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a83660046126e4565b61084b565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610876565b6040516102b99190612751565b3480156102f057600080fd5b506103046102ff366004612764565b610908565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612799565b6109a2565b005b34801561034a57600080fd5b5061035e610359366004612764565b610ab7565b6040519081526020016102b9565b34801561037857600080fd5b5060085461035e565b34801561038d57600080fd5b5061035e600d5481565b61033c6103a53660046127c3565b610ace565b3480156103b657600080fd5b5061035e6103c5366004612764565b60166020526000908152604090205481565b3480156103e357600080fd5b5061033c6103f23660046127e5565b610cc1565b34801561040357600080fd5b5061033c61041236600461282f565b610cf2565b34801561042357600080fd5b5061035e610432366004612799565b610d3a565b34801561044357600080fd5b506102ad61045236600461284c565b610dd0565b61033c610f1a565b34801561046b57600080fd5b5061033c61047a3660046127e5565b610f9c565b34801561048b57600080fd5b5061049f61049a366004612896565b610fb7565b6040516102b991906128b1565b3480156104b857600080fd5b5061035e6104c7366004612764565b611059565b3480156104d857600080fd5b5061033c6104e7366004612981565b6110ec565b3480156104f857600080fd5b5061033c610507366004612764565b611126565b34801561051857600080fd5b5061035e610527366004612764565b611155565b34801561053857600080fd5b50610304610547366004612764565b611165565b34801561055857600080fd5b50601054610304906001600160a01b031681565b34801561057857600080fd5b5061035e610587366004612896565b6111dc565b34801561059857600080fd5b5061033c611263565b3480156105ad57600080fd5b5061033c6105bc366004612896565b611299565b3480156105cd57600080fd5b5061035e600e5481565b3480156105e357600080fd5b50600a546001600160a01b0316610304565b34801561060157600080fd5b5061033c610610366004612896565b6112e5565b34801561062157600080fd5b506102d7611331565b34801561063657600080fd5b5061035e601c5481565b34801561064c57600080fd5b5061033c61065b3660046129ca565b611340565b34801561066c57600080fd5b5061035e611404565b34801561068157600080fd5b5061033c610690366004612a01565b611429565b3480156106a157600080fd5b50600f546102ad90600160a01b900460ff1681565b3480156106c257600080fd5b5061033c6106d1366004612a7f565b61152f565b3480156106e257600080fd5b506102d7611567565b3480156106f757600080fd5b506102d7610706366004612764565b6115f5565b34801561071757600080fd5b5061035e610726366004612764565b6116e3565b34801561073757600080fd5b5061033c610746366004612afb565b6116f3565b34801561075757600080fd5b50600f54610304906001600160a01b031681565b34801561077757600080fd5b5061033c610786366004612981565b611782565b34801561079757600080fd5b506107a06117b8565b6040516102b99190612b20565b3480156107b957600080fd5b506102ad6107c8366004612b51565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561080257600080fd5b5061033c610811366004612896565b6117f3565b34801561082257600080fd5b5061033c610831366004612a01565b61188b565b34801561084257600080fd5b5061033c6118c2565b60006001600160e01b0319821663780e9d6360e01b14806108705750610870826119ea565b92915050565b60606000805461088590612b84565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612b84565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109ad82611165565b9050806001600160a01b0316836001600160a01b031603610a1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097d565b336001600160a01b0382161480610a365750610a3681336107c8565b610aa85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097d565b610ab28383611a3a565b505050565b60178160058110610ac757600080fd5b0154905081565b600081601d610ade600186612bd4565b60058110610aee57610aee612be7565b0154610afa9190612bfd565b90506000612710601c5483610b0f9190612bfd565b610b199190612c2a565b9050610b2d600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610c9357600f546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610b9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc09190612c3e565b610bff5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b604482015260640161097d565b600f546010546001600160a01b039182169163a9059cbb9116610c228486612bd4565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610c6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c919190612c3e565b505b60005b83811015610cba57610ca88533611aa8565b80610cb281612c5b565b915050610c96565b5050505050565b610ccb3382611c4e565b610ce75760405162461bcd60e51b815260040161097d90612c74565b610ab2838383611d41565b600a546001600160a01b03163314610d1c5760405162461bcd60e51b815260040161097d90612cc5565b600f8054911515600160a01b0260ff60a01b19909216919091179055565b6000610d45836111dc565b8210610da75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6040516bffffffffffffffffffffffff1930606090811b8216602084015286901b166034820152600090819060480160408051601f1981840301815282825280516020918201208383018352601c84527f19457468657265756d205369676e6564204d6573736167653a0a333200000000848301529151919350600091610e5b918491869101612cfa565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff8b169284019290925260608301899052608083018890529092509060019060a0016020604051602081039080840390855afa158015610ec6573d6000803e3d6000fd5b505050602060405103519050806001600160a01b0316610eee600a546001600160a01b031690565b6001600160a01b031603610f09576001945050505050610f12565b60009450505050505b949350505050565b600a546001600160a01b03163314610f445760405162461bcd60e51b815260040161097d90612cc5565b604051600090339047908381818185875af1925050503d8060008114610f86576040519150601f19603f3d011682016040523d82523d6000602084013e610f8b565b606091505b5050905080610f9957600080fd5b50565b610ab28383836040518060200160405280600081525061152f565b60606000610fc4836111dc565b905060008167ffffffffffffffff811115610fe157610fe16128f5565b60405190808252806020026020018201604052801561100a578160200160208202803683370190505b50905060005b82811015611051576110228582610d3a565b82828151811061103457611034612be7565b60209081029190910101528061104981612c5b565b915050611010565b509392505050565b600061106460085490565b82106110c75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097d565b600882815481106110da576110da612be7565b90600052602060002001549050919050565b600a546001600160a01b031633146111165760405162461bcd60e51b815260040161097d90612cc5565b600b6111228282612d6a565b5050565b600a546001600160a01b031633146111505760405162461bcd60e51b815260040161097d90612cc5565b601c55565b601d8160058110610ac757600080fd5b6000818152600260205260408120546001600160a01b0316806108705760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097d565b60006001600160a01b0382166112475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461128d5760405162461bcd60e51b815260040161097d90612cc5565b6112976000611eec565b565b600a546001600160a01b031633146112c35760405162461bcd60e51b815260040161097d90612cc5565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461130f5760405162461bcd60e51b815260040161097d90612cc5565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461088590612b84565b336001600160a01b038316036113985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000600e544210156114235742600e5461141e9190612bd4565b905090565b50600090565b600a546001600160a01b031633146114535760405162461bcd60e51b815260040161097d90612cc5565b60005b60058110156115215781816005811061147157611471612be7565b60200201516011826005811061148957611489612be7565b01541061150f5760405162461bcd60e51b815260206004820152604860248201527f43616e6e6f7420757064617465206d617820737570706c79206966207468657260448201527f6520617265206d6f7265206e6f646573207468616e20746865206e6577206d616064820152677820737570706c7960c01b608482015260a40161097d565b8061151981612c5b565b915050611456565b50611122601782600561265d565b6115393383611c4e565b6115555760405162461bcd60e51b815260040161097d90612c74565b61156184848484611f3e565b50505050565b600c805461157490612b84565b80601f01602080910402602001604051908101604052809291908181526020018280546115a090612b84565b80156115ed5780601f106115c2576101008083540402835291602001916115ed565b820191906000526020600020905b8154815290600101906020018083116115d057829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166116745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097d565b600061167e611f71565b9050600081511161169e57604051806020016040528060008152506116dc565b60008381526016602052604090205481906116b890611f80565b600c6040516020016116cc93929190612e2a565b6040516020818303038152906040525b9392505050565b60118160058110610ac757600080fd5b6010546001600160a01b0316331461175b5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c653a2063616c6c6572206973206e6f742074686520726577617260448201526419141bdbdb60da1b606482015260840161097d565b60005b81811015611561576117708484611aa8565b8061177a81612c5b565b91505061175e565b600a546001600160a01b031633146117ac5760405162461bcd60e51b815260040161097d90612cc5565b600c6111228282612d6a565b6117c061269b565b6040805160a081019182905290601d9060059082845b8154815260200190600101908083116117d6575050505050905090565b600a546001600160a01b0316331461181d5760405162461bcd60e51b815260040161097d90612cc5565b6001600160a01b0381166118825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097d565b610f9981611eec565b600a546001600160a01b031633146118b55760405162461bcd60e51b815260040161097d90612cc5565b611122601d82600561265d565b600a546001600160a01b031633146118ec5760405162461bcd60e51b815260040161097d90612cc5565b600f546001600160a01b031663a9059cbb61190f600a546001600160a01b031690565b600f546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015611957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061197b9190612eca565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156119c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f999190612c3e565b60006001600160e01b031982166380ac58cd60e01b1480611a1b57506001600160e01b03198216635b5e139f60e01b145b8061087057506301ffc9a760e01b6001600160e01b0319831614610870565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a6f82611165565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600e54421015611afa5760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206e6f7720616c6c6f77656420796574000000000000000000604482015260640161097d565b600082118015611b0b575060058211155b611b4b5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964206e6f6465207479706560781b604482015260640161097d565b6017611b58600184612bd4565b60058110611b6857611b68612be7565b01546011611b77600185612bd4565b60058110611b8757611b87612be7565b01541115611bcc5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b604482015260640161097d565b60016011611bda8285612bd4565b60058110611bea57611bea612be7565b016000828254611bfa9190612ee3565b90915550506008548260166000611c12846001612ee3565b8152602081019190915260400160002055600f54600160a01b900460ff1615611c3a57600080fd5b610ab282611c49836001612ee3565b612081565b6000818152600260205260408120546001600160a01b0316611cc75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097d565b6000611cd283611165565b9050806001600160a01b0316846001600160a01b03161480611d0d5750836001600160a01b0316611d0284610908565b6001600160a01b0316145b80610f1257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f12565b826001600160a01b0316611d5482611165565b6001600160a01b031614611dbc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097d565b6001600160a01b038216611e1e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097d565b611e2983838361209b565b611e34600082611a3a565b6001600160a01b0383166000908152600360205260408120805460019290611e5d908490612bd4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e8b908490612ee3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f49848484611d41565b611f5584848484612196565b6115615760405162461bcd60e51b815260040161097d90612ef6565b6060600b805461088590612b84565b606081600003611fa75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fd15780611fbb81612c5b565b9150611fca9050600a83612c2a565b9150611fab565b60008167ffffffffffffffff811115611fec57611fec6128f5565b6040519080825280601f01601f191660200182016040528015612016576020820181803683370190505b5090505b8415610f125761202b600183612bd4565b9150612038600a86612f48565b612043906030612ee3565b60f81b81838151811061205857612058612be7565b60200101906001600160f81b031916908160001a90535061207a600a86612c2a565b945061201a565b611122828260405180602001604052806000815250612294565b6120a68383836122c7565b6001600160a01b0383166121445760105460008281526016602052604090819020549051638b9b466760e01b81526004810184905260248101919091526001600160a01b03848116604483015290911690638b9b4667906064015b6020604051808303816000875af1158015612120573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115619190612c3e565b816001600160a01b0316836001600160a01b031614610ab257601054604051634bba4a8360e11b8152600481018390526001600160a01b03848116602483015290911690639774950690604401612101565b60006001600160a01b0384163b1561228c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121da903390899088908890600401612f5c565b6020604051808303816000875af1925050508015612215575060408051601f3d908101601f1916820190925261221291810190612f99565b60015b612272573d808015612243576040519150601f19603f3d011682016040523d82523d6000602084013e612248565b606091505b50805160000361226a5760405162461bcd60e51b815260040161097d90612ef6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f12565b506001610f12565b61229e838361237f565b6122ab6000848484612196565b610ab25760405162461bcd60e51b815260040161097d90612ef6565b6001600160a01b0383166123225761231d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612345565b816001600160a01b0316836001600160a01b0316146123455761234583826124cd565b6001600160a01b03821661235c57610ab28161256a565b826001600160a01b0316826001600160a01b031614610ab257610ab28282612619565b6001600160a01b0382166123d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097d565b6000818152600260205260409020546001600160a01b03161561243a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097d565b6124466000838361209b565b6001600160a01b038216600090815260036020526040812080546001929061246f908490612ee3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016124da846111dc565b6124e49190612bd4565b600083815260076020526040902054909150808214612537576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061257c90600190612bd4565b600083815260096020526040812054600880549394509092849081106125a4576125a4612be7565b9060005260206000200154905080600883815481106125c5576125c5612be7565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125fd576125fd612fb6565b6001900381819060005260206000200160009055905550505050565b6000612624836111dc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b826005810192821561268b579160200282015b8281111561268b578251825591602001919060010190612670565b506126979291506126b9565b5090565b6040518060a001604052806005906020820280368337509192915050565b5b8082111561269757600081556001016126ba565b6001600160e01b031981168114610f9957600080fd5b6000602082840312156126f657600080fd5b81356116dc816126ce565b60005b8381101561271c578181015183820152602001612704565b50506000910152565b6000815180845261273d816020860160208601612701565b601f01601f19169290920160200192915050565b6020815260006116dc6020830184612725565b60006020828403121561277657600080fd5b5035919050565b80356001600160a01b038116811461279457600080fd5b919050565b600080604083850312156127ac57600080fd5b6127b58361277d565b946020939093013593505050565b600080604083850312156127d657600080fd5b50508035926020909101359150565b6000806000606084860312156127fa57600080fd5b6128038461277d565b92506128116020850161277d565b9150604084013590509250925092565b8015158114610f9957600080fd5b60006020828403121561284157600080fd5b81356116dc81612821565b6000806000806080858703121561286257600080fd5b61286b8561277d565b9350602085013560ff8116811461288157600080fd5b93969395505050506040820135916060013590565b6000602082840312156128a857600080fd5b6116dc8261277d565b6020808252825182820181905260009190848201906040850190845b818110156128e9578351835292840192918401916001016128cd565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612926576129266128f5565b604051601f8501601f19908116603f0116810190828211818310171561294e5761294e6128f5565b8160405280935085815286868601111561296757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561299357600080fd5b813567ffffffffffffffff8111156129aa57600080fd5b8201601f810184136129bb57600080fd5b610f128482356020840161290b565b600080604083850312156129dd57600080fd5b6129e68361277d565b915060208301356129f681612821565b809150509250929050565b600060a08284031215612a1357600080fd5b82601f830112612a2257600080fd5b60405160a0810181811067ffffffffffffffff82111715612a4557612a456128f5565b6040528060a0840185811115612a5a57600080fd5b845b81811015612a74578035835260209283019201612a5c565b509195945050505050565b60008060008060808587031215612a9557600080fd5b612a9e8561277d565b9350612aac6020860161277d565b925060408501359150606085013567ffffffffffffffff811115612acf57600080fd5b8501601f81018713612ae057600080fd5b612aef8782356020840161290b565b91505092959194509250565b600080600060608486031215612b1057600080fd5b833592506128116020850161277d565b60a08101818360005b6005811015612b48578151835260209283019290910190600101612b29565b50505092915050565b60008060408385031215612b6457600080fd5b612b6d8361277d565b9150612b7b6020840161277d565b90509250929050565b600181811c90821680612b9857607f821691505b602082108103612bb857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561087057610870612bbe565b634e487b7160e01b600052603260045260246000fd5b808202811582820484141761087057610870612bbe565b634e487b7160e01b600052601260045260246000fd5b600082612c3957612c39612c14565b500490565b600060208284031215612c5057600080fd5b81516116dc81612821565b600060018201612c6d57612c6d612bbe565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351612d0c818460208801612701565b9190910191825250602001919050565b601f821115610ab257600081815260208120601f850160051c81016020861015612d435750805b601f850160051c820191505b81811015612d6257828155600101612d4f565b505050505050565b815167ffffffffffffffff811115612d8457612d846128f5565b612d9881612d928454612b84565b84612d1c565b602080601f831160018114612dcd5760008415612db55750858301515b600019600386901b1c1916600185901b178555612d62565b600085815260208120601f198616915b82811015612dfc57888601518255948401946001909101908401612ddd565b5085821015612e1a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600084516020612e3d8285838a01612701565b855191840191612e508184848a01612701565b8554920191600090612e6181612b84565b60018281168015612e795760018114612e8e57612eba565b60ff1984168752821515830287019450612eba565b896000528560002060005b84811015612eb257815489820152908301908701612e99565b505082870194505b50929a9950505050505050505050565b600060208284031215612edc57600080fd5b5051919050565b8082018082111561087057610870612bbe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612f5757612f57612c14565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f8f90830184612725565b9695505050505050565b600060208284031215612fab57600080fd5b81516116dc816126ce565b634e487b7160e01b600052603160045260246000fdfea264697066735822122028d248a5b647f1283f8fd9900044391dcb7178bbf6a67ecbd1c6ef84845c51bb64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f45812116bc73ea2112a6fbc81d7a407867817b00000000000000000000000000000000000000000000000000000000000000044d4e47410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4e4741000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): MNGA
Arg [1] : _symbol (string): MNGA
Arg [2] : _initBaseURI (string):
Arg [3] : _revealTime (uint256): 0
Arg [4] : _MNGAAddress (address): 0x1F45812116bc73eA2112A6FBC81d7a407867817B
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000001f45812116bc73ea2112a6fbc81d7a407867817b
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4d4e474100000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 4d4e474100000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
49346:5981:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36327:300;;;;;;;;;;-1:-1:-1;36327:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36327:300:0;;;;;;;;23491:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25184:308::-;;;;;;;;;;-1:-1:-1;25184:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;25184:308:0;1533:203:1;24707:411:0;;;;;;;;;;-1:-1:-1;24707:411:0;;;;;:::i;:::-;;:::i;:::-;;49777:61;;;;;;;;;;-1:-1:-1;49777:61:0;;;;;:::i;:::-;;:::i;:::-;;;2324:25:1;;;2312:2;2297:18;49777:61:0;2178:177:1;37130:113:0;;;;;;;;;;-1:-1:-1;37218:10:0;:17;37130:113;;49515:27;;;;;;;;;;;;;;;;52373:478;;;;;;:::i;:::-;;:::i;49730:40::-;;;;;;;;;;-1:-1:-1;49730:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;26243:376;;;;;;;;;;-1:-1:-1;26243:376:0;;;;;:::i;:::-;;:::i;54442:87::-;;;;;;;;;;-1:-1:-1;54442:87:0;;;;;:::i;:::-;;:::i;36711:343::-;;;;;;;;;;-1:-1:-1;36711:343:0;;;;;:::i;:::-;;:::i;48687:613::-;;;;;;;;;;-1:-1:-1;48687:613:0;;;;;:::i;:::-;;:::i;55130:192::-;;;:::i;26690:185::-;;;;;;;;;;-1:-1:-1;26690:185:0;;;;;:::i;:::-;;:::i;52868:390::-;;;;;;;;;;-1:-1:-1;52868:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37320:320::-;;;;;;;;;;-1:-1:-1;37320:320:0;;;;;:::i;:::-;;:::i;54171:104::-;;;;;;;;;;-1:-1:-1;54171:104:0;;;;;:::i;:::-;;:::i;51299:80::-;;;;;;;;;;-1:-1:-1;51299:80:0;;;;;:::i;:::-;;:::i;49908:91::-;;;;;;;;;;-1:-1:-1;49908:91:0;;;;;:::i;:::-;;:::i;23098:326::-;;;;;;;;;;-1:-1:-1;23098:326:0;;;;;:::i;:::-;;:::i;49653:25::-;;;;;;;;;;-1:-1:-1;49653:25:0;;;;-1:-1:-1;;;;;49653:25:0;;;22741:295;;;;;;;;;;-1:-1:-1;22741:295:0;;;;;:::i;:::-;;:::i;44405:94::-;;;;;;;;;;;;;:::i;51188:103::-;;;;;;;;;;-1:-1:-1;51188:103:0;;;;;:::i;:::-;;:::i;49549:36::-;;;;;;;;;;;;;;;;43754:87;;;;;;;;;;-1:-1:-1;43827:6:0;;-1:-1:-1;;;;;43827:6:0;43754:87;;51520:104;;;;;;;;;;-1:-1:-1;51520:104:0;;;;;:::i;:::-;;:::i;23660:::-;;;;;;;;;;;;;:::i;49879:22::-;;;;;;;;;;;;;;;;25564:327;;;;;;;;;;-1:-1:-1;25564:327:0;;;;;:::i;:::-;;:::i;53926:235::-;;;;;;;;;;;;;:::i;50729:335::-;;;;;;;;;;-1:-1:-1;50729:335:0;;;;;:::i;:::-;;:::i;49618:28::-;;;;;;;;;;-1:-1:-1;49618:28:0;;;;-1:-1:-1;;;49618:28:0;;;;;;26946:365;;;;;;;;;;-1:-1:-1;26946:365:0;;;;;:::i;:::-;;:::i;49471:37::-;;;;;;;;;;;;;:::i;53266:652::-;;;;;;;;;;-1:-1:-1;53266:652:0;;;;;:::i;:::-;;:::i;49685:38::-;;;;;;;;;;-1:-1:-1;49685:38:0;;;;;:::i;:::-;;:::i;52180:185::-;;;;;;;;;;-1:-1:-1;52180:185:0;;;;;:::i;:::-;;:::i;49592:19::-;;;;;;;;;;-1:-1:-1;49592:19:0;;;;-1:-1:-1;;;;;49592:19:0;;;54283:151;;;;;;;;;;-1:-1:-1;54283:151:0;;;;;:::i;:::-;;:::i;50620:101::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25962:214::-;;;;;;;;;;-1:-1:-1;25962:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26133:25:0;;;26104:4;26133:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25962:214;44654:229;;;;;;;;;;-1:-1:-1;44654:229:0;;;;;:::i;:::-;;:::i;51072:108::-;;;;;;;;;;-1:-1:-1;51072:108:0;;;;;:::i;:::-;;:::i;54979:141::-;;;;;;;;;;;;;:::i;36327:300::-;36474:4;-1:-1:-1;;;;;;36516:50:0;;-1:-1:-1;;;36516:50:0;;:103;;;36583:36;36607:11;36583:23;:36::i;:::-;36496:123;36327:300;-1:-1:-1;;36327:300:0:o;23491:100::-;23545:13;23578:5;23571:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23491:100;:::o;25184:308::-;25305:7;28947:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28947:16:0;25330:110;;;;-1:-1:-1;;;25330:110:0;;9290:2:1;25330:110:0;;;9272:21:1;9329:2;9309:18;;;9302:30;9368:34;9348:18;;;9341:62;-1:-1:-1;;;9419:18:1;;;9412:42;9471:19;;25330:110:0;;;;;;;;;-1:-1:-1;25460:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25460:24:0;;25184:308::o;24707:411::-;24788:13;24804:23;24819:7;24804:14;:23::i;:::-;24788:39;;24852:5;-1:-1:-1;;;;;24846:11:0;:2;-1:-1:-1;;;;;24846:11:0;;24838:57;;;;-1:-1:-1;;;24838:57:0;;9703:2:1;24838:57:0;;;9685:21:1;9742:2;9722:18;;;9715:30;9781:34;9761:18;;;9754:62;-1:-1:-1;;;9832:18:1;;;9825:31;9873:19;;24838:57:0;9501:397:1;24838:57:0;20876:10;-1:-1:-1;;;;;24930:21:0;;;;:62;;-1:-1:-1;24955:37:0;24972:5;20876:10;25962:214;:::i;24955:37::-;24908:168;;;;-1:-1:-1;;;24908:168:0;;10105:2:1;24908:168:0;;;10087:21:1;10144:2;10124:18;;;10117:30;10183:34;10163:18;;;10156:62;10254:26;10234:18;;;10227:54;10298:19;;24908:168:0;9903:420:1;24908:168:0;25089:21;25098:2;25102:7;25089:8;:21::i;:::-;24777:341;24707:411;;:::o;49777:61::-;;;;;;;;;;;;;;;-1:-1:-1;49777:61:0;:::o;52373:478::-;52443:13;52479:8;52459:10;52470:7;52476:1;52470:5;:7;:::i;:::-;52459:19;;;;;;;:::i;:::-;;;:28;;;;:::i;:::-;52443:44;;52498:12;52525:5;52520:3;;52514:5;:9;;;;:::i;:::-;52513:17;;;;:::i;:::-;52498:32;;52561:7;43827:6;;-1:-1:-1;;;;;43827:6:0;;43754:87;52561:7;-1:-1:-1;;;;;52547:21:0;:10;-1:-1:-1;;;;;52547:21:0;;52543:202;;52600:4;;52593:59;;-1:-1:-1;;;52593:59:0;;52619:10;52593:59;;;11395:34:1;52639:4:0;11445:18:1;;;11438:43;11497:18;;;11490:34;;;-1:-1:-1;;;;;52600:4:0;;;;52593:25;;11330:18:1;;52593:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52585:88;;;;-1:-1:-1;;;52585:88:0;;11987:2:1;52585:88:0;;;11969:21:1;12026:2;12006:18;;;11999:30;-1:-1:-1;;;12045:18:1;;;12038:46;12101:18;;52585:88:0;11785:340:1;52585:88:0;52695:4;;52710:10;;-1:-1:-1;;;;;52695:4:0;;;;52688:21;;52710:10;52722;52728:4;52722:5;:10;:::i;:::-;52688:45;;-1:-1:-1;;;;;;52688:45:0;;;;;;;-1:-1:-1;;;;;12322:32:1;;;52688:45:0;;;12304:51:1;12371:18;;;12364:34;12277:18;;52688:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52543:202;52762:6;52757:87;52778:8;52774:1;:12;52757:87;;;52808:24;52814:5;52821:10;52808:5;:24::i;:::-;52788:3;;;;:::i;:::-;;;;52757:87;;;;52432:419;;52373:478;;:::o;26243:376::-;26452:41;20876:10;26485:7;26452:18;:41::i;:::-;26430:140;;;;-1:-1:-1;;;26430:140:0;;;;;;;:::i;:::-;26583:28;26593:4;26599:2;26603:7;26583:9;:28::i;54442:87::-;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;54504:8:::1;:17:::0;;;::::1;;-1:-1:-1::0;;;54504:17:0::1;-1:-1:-1::0;;;;54504:17:0;;::::1;::::0;;;::::1;::::0;;54442:87::o;36711:343::-;36853:7;36908:23;36925:5;36908:16;:23::i;:::-;36900:5;:31;36878:124;;;;-1:-1:-1;;;36878:124:0;;13530:2:1;36878:124:0;;;13512:21:1;13569:2;13549:18;;;13542:30;13608:34;13588:18;;;13581:62;-1:-1:-1;;;13659:18:1;;;13652:41;13710:19;;36878:124:0;13328:407:1;36878:124:0;-1:-1:-1;;;;;;37020:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36711:343::o;48687:613::-;48899:37;;-1:-1:-1;;48924:4:0;13967:2:1;13963:15;;;13959:24;;48899:37:0;;;13947::1;14018:15;;;14014:24;14000:12;;;13993:46;48847:4:0;;;;14055:12:1;;48899:37:0;;;-1:-1:-1;;48899:37:0;;;;;;;;;48889:48;;48899:37;48889:48;;;;48950:56;;;;;;;;;;;;;49050:33;;48889:48;;-1:-1:-1;48950:19:0;;49050:33;;48899:37;;48889:48;;49050:33;;:::i;:::-;;;;-1:-1:-1;;49050:33:0;;;;;;;;;49040:44;;49050:33;49040:44;;;;49113:18;49134:35;;;;;;;;;14693:25:1;;;14766:4;14754:17;;14734:18;;;14727:45;;;;14788:18;;;14781:34;;;14831:18;;;14824:34;;;49040:44:0;;-1:-1:-1;49113:18:0;49134:35;;14665:19:1;;49134:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49113:56;;49195:10;-1:-1:-1;;;;;49184:21:0;:7;43827:6;;-1:-1:-1;;;;;43827:6:0;;43754:87;49184:7;-1:-1:-1;;;;;49184:21:0;;49180:86;;49246:4;49239:11;;;;;;;;49180:86;49287:5;49280:12;;;;;;48687:613;;;;;;;:::o;55130:192::-;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;55205:82:::1;::::0;55187:12:::1;::::0;55213:10:::1;::::0;55251:21:::1;::::0;55187:12;55205:82;55187:12;55205:82;55251:21;55213:10;55205:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55186:101;;;55306:7;55298:16;;;::::0;::::1;;55175:147;55130:192::o:0;26690:185::-;26828:39;26845:4;26851:2;26855:7;26828:39;;;;;;;;;;;;:16;:39::i;52868:390::-;52955:16;52989:23;53015:17;53025:6;53015:9;:17::i;:::-;52989:43;;53043:25;53085:15;53071:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53071:30:0;;53043:58;;53117:9;53112:113;53132:15;53128:1;:19;53112:113;;;53183:30;53203:6;53211:1;53183:19;:30::i;:::-;53169:8;53178:1;53169:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53149:3;;;;:::i;:::-;;;;53112:113;;;-1:-1:-1;53242:8:0;52868:390;-1:-1:-1;;;52868:390:0:o;37320:320::-;37440:7;37495:30;37218:10;:17;;37130:113;37495:30;37487:5;:38;37465:132;;;;-1:-1:-1;;;37465:132:0;;15281:2:1;37465:132:0;;;15263:21:1;15320:2;15300:18;;;15293:30;15359:34;15339:18;;;15332:62;-1:-1:-1;;;15410:18:1;;;15403:42;15462:19;;37465:132:0;15079:408:1;37465:132:0;37615:10;37626:5;37615:17;;;;;;;;:::i;:::-;;;;;;;;;37608:24;;37320:320;;;:::o;54171:104::-;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;54246:7:::1;:21;54256:11:::0;54246:7;:21:::1;:::i;:::-;;54171:104:::0;:::o;51299:80::-;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;51361:3:::1;:10:::0;51299:80::o;49908:91::-;;;;;;;;;;;23098:326;23215:7;23256:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23256:16:0;;23283:110;;;;-1:-1:-1;;;23283:110:0;;17898:2:1;23283:110:0;;;17880:21:1;17937:2;17917:18;;;17910:30;17976:34;17956:18;;;17949:62;-1:-1:-1;;;18027:18:1;;;18020:39;18076:19;;23283:110:0;17696:405:1;22741:295:0;22858:7;-1:-1:-1;;;;;22905:19:0;;22883:111;;;;-1:-1:-1;;;22883:111:0;;18308:2:1;22883:111:0;;;18290:21:1;18347:2;18327:18;;;18320:30;18386:34;18366:18;;;18359:62;-1:-1:-1;;;18437:18:1;;;18430:40;18487:19;;22883:111:0;18106:406:1;22883:111:0;-1:-1:-1;;;;;;23012:16:0;;;;;:9;:16;;;;;;;22741:295::o;44405:94::-;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;44470:21:::1;44488:1;44470:9;:21::i;:::-;44405:94::o:0;51188:103::-;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;51259:10:::1;:24:::0;;-1:-1:-1;;;;;;51259:24:0::1;-1:-1:-1::0;;;;;51259:24:0;;;::::1;::::0;;;::::1;::::0;;51188:103::o;51520:104::-;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;51597:4:::1;:19:::0;;-1:-1:-1;;;;;;51597:19:0::1;-1:-1:-1::0;;;;;51597:19:0;;;::::1;::::0;;;::::1;::::0;;51520:104::o;23660:::-;23716:13;23749:7;23742:14;;;;;:::i;25564:327::-;20876:10;-1:-1:-1;;;;;25699:24:0;;;25691:62;;;;-1:-1:-1;;;25691:62:0;;18719:2:1;25691:62:0;;;18701:21:1;18758:2;18738:18;;;18731:30;18797:27;18777:18;;;18770:55;18842:18;;25691:62:0;18517:349:1;25691:62:0;20876:10;25766:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25766:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25766:53:0;;;;;;;;;;25835:48;;540:41:1;;;25766:42:0;;20876:10;25835:48;;513:18:1;25835:48:0;;;;;;;25564:327;;:::o;53926:235::-;53981:7;54023:17;;54005:15;:35;54001:153;;;54086:15;54065:17;;54064:37;;;;:::i;:::-;54057:44;;53926:235;:::o;54001:153::-;-1:-1:-1;54141:1:0;;53926:235::o;50729:335::-;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;50834:6:::1;50829:178;50850:1;50846;:5;50829:178;;;50895:20;50916:1;50895:23;;;;;;;:::i;:::-;;;;;50881:9;50891:1;50881:12;;;;;;;:::i;:::-;;;:37;50873:122;;;::::0;-1:-1:-1;;;50873:122:0;;19073:2:1;50873:122:0::1;::::0;::::1;19055:21:1::0;19112:2;19092:18;;;19085:30;19151:34;19131:18;;;19124:62;19222:34;19202:18;;;19195:62;-1:-1:-1;;;19273:19:1;;;19266:39;19322:19;;50873:122:0::1;18871:476:1::0;50873:122:0::1;50853:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50829:178;;;-1:-1:-1::0;51017:39:0::1;:16;51036:20:::0;51017:39:::1;;:::i;26946:365::-:0;27135:41;20876:10;27168:7;27135:18;:41::i;:::-;27113:140;;;;-1:-1:-1;;;27113:140:0;;;;;;;:::i;:::-;27264:39;27278:4;27284:2;27288:7;27297:5;27264:13;:39::i;:::-;26946:365;;;;:::o;49471:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53266:652::-;28923:4;28947:16;;;:7;:16;;;;;;53384:13;;-1:-1:-1;;;;;28947:16:0;53415:113;;;;-1:-1:-1;;;53415:113:0;;19554:2:1;53415:113:0;;;19536:21:1;19593:2;19573:18;;;19566:30;19632:34;19612:18;;;19605:62;-1:-1:-1;;;19683:18:1;;;19676:45;19738:19;;53415:113:0;19352:411:1;53415:113:0;53541:28;53572:10;:8;:10::i;:::-;53541:41;;53644:1;53619:14;53613:28;:32;:297;;;;;;;;;;;;;;;;;53778:17;;;;:8;:17;;;;;;53737:14;;53778:28;;:26;:28::i;:::-;53833:13;53694:175;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53613:297;53593:317;53266:652;-1:-1:-1;;;53266:652:0:o;49685:38::-;;;;;;;;;;;52180:185;50480:10;;-1:-1:-1;;;;;50480:10:0;50494;50480:24;50472:74;;;;-1:-1:-1;;;50472:74:0;;21231:2:1;50472:74:0;;;21213:21:1;21270:2;21250:18;;;21243:30;21309:34;21289:18;;;21282:62;-1:-1:-1;;;21360:18:1;;;21353:35;21405:19;;50472:74:0;21029:401:1;50472:74:0;52284:6:::1;52279:79;52300:8;52296:1;:12;52279:79;;;52330:16;52336:5;52343:2;52330:5;:16::i;:::-;52310:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52279:79;;54283:151:::0;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;54393:13:::1;:33;54409:17:::0;54393:13;:33:::1;:::i;50620:101::-:0;50666:17;;:::i;:::-;50696;;;;;;;;;;;50703:10;;50696:17;;50703:10;50696:17;;;;;;;;;;;;;;;;;;;;;;;;50620:101;:::o;44654:229::-;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44757:22:0;::::1;44735:110;;;::::0;-1:-1:-1;;;44735:110:0;;21637:2:1;44735:110:0::1;::::0;::::1;21619:21:1::0;21676:2;21656:18;;;21649:30;21715:34;21695:18;;;21688:62;-1:-1:-1;;;21766:18:1;;;21759:36;21812:19;;44735:110:0::1;21435:402:1::0;44735:110:0::1;44856:19;44866:8;44856:9;:19::i;51072:108::-:0;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;51152:20:::1;:10;51165:7:::0;51152:20:::1;;:::i;54979:141::-:0;43827:6;;-1:-1:-1;;;;;43827:6:0;20876:10;43974:23;43966:68;;;;-1:-1:-1;;;43966:68:0;;;;;;;:::i;:::-;55050:4:::1;::::0;-1:-1:-1;;;;;55050:4:0::1;55043:21;55065:7;43827:6:::0;;-1:-1:-1;;;;;43827:6:0;;43754:87;55065:7:::1;55081:4;::::0;55074:37:::1;::::0;-1:-1:-1;;;55074:37:0;;55105:4:::1;55074:37;::::0;::::1;1679:51:1::0;-1:-1:-1;;;;;55081:4:0;;::::1;::::0;55074:22:::1;::::0;1652:18:1;;55074:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55043:69;::::0;-1:-1:-1;;;;;;55043:69:0::1;::::0;;;;;;-1:-1:-1;;;;;12322:32:1;;;55043:69:0::1;::::0;::::1;12304:51:1::0;12371:18;;;12364:34;12277:18;;55043:69:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;22322:355::-:0;22469:4;-1:-1:-1;;;;;;22511:40:0;;-1:-1:-1;;;22511:40:0;;:105;;-1:-1:-1;;;;;;;22568:48:0;;-1:-1:-1;;;22568:48:0;22511:105;:158;;;-1:-1:-1;;;;;;;;;;7786:40:0;;;22633:36;7627:207;32981:174;33056:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33056:29:0;-1:-1:-1;;;;;33056:29:0;;;;;;;;:24;;33110:23;33056:24;33110:14;:23::i;:::-;-1:-1:-1;;;;;33101:46:0;;;;;;;;;;;32981:174;;:::o;51632:538::-;51731:17;;51712:15;:36;;51690:109;;;;-1:-1:-1;;;51690:109:0;;22233:2:1;51690:109:0;;;22215:21:1;22272:2;22252:18;;;22245:30;22311:25;22291:18;;;22284:53;22354:18;;51690:109:0;22031:347:1;51690:109:0;51824:1;51818:5;:7;:19;;;;;51836:1;51829:5;:8;;51818:19;51810:49;;;;-1:-1:-1;;;51810:49:0;;22585:2:1;51810:49:0;;;22567:21:1;22624:2;22604:18;;;22597:30;-1:-1:-1;;;22643:18:1;;;22636:47;22700:18;;51810:49:0;22383:341:1;51810:49:0;51914:16;51931:7;51937:1;51931:5;:7;:::i;:::-;51914:25;;;;;;;:::i;:::-;;;51892:9;51902:7;51908:1;51902:5;:7;:::i;:::-;51892:18;;;;;;;:::i;:::-;;;:47;;51870:115;;;;-1:-1:-1;;;51870:115:0;;22931:2:1;51870:115:0;;;22913:21:1;22970:2;22950:18;;;22943:30;-1:-1:-1;;;22989:18:1;;;22982:48;23047:18;;51870:115:0;22729:342:1;51870:115:0;52018:1;51996:9;52006:7;52018:1;52006:5;:7;:::i;:::-;51996:18;;;;;;;:::i;:::-;;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;37218:10:0;:17;52092:5;52071:8;:18;52080:8;52030:30;52087:1;52080:8;:::i;:::-;52071:18;;;;;;;;;;;-1:-1:-1;52071:18:0;:26;52117:8;;-1:-1:-1;;;52117:8:0;;;;52116:9;52108:18;;;;;;52137:25;52147:2;52151:10;:6;52160:1;52151:10;:::i;:::-;52137:9;:25::i;29152:452::-;29281:4;28947:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28947:16:0;29303:110;;;;-1:-1:-1;;;29303:110:0;;23408:2:1;29303:110:0;;;23390:21:1;23447:2;23427:18;;;23420:30;23486:34;23466:18;;;23459:62;-1:-1:-1;;;23537:18:1;;;23530:42;23589:19;;29303:110:0;23206:408:1;29303:110:0;29424:13;29440:23;29455:7;29440:14;:23::i;:::-;29424:39;;29493:5;-1:-1:-1;;;;;29482:16:0;:7;-1:-1:-1;;;;;29482:16:0;;:64;;;;29539:7;-1:-1:-1;;;;;29515:31:0;:20;29527:7;29515:11;:20::i;:::-;-1:-1:-1;;;;;29515:31:0;;29482:64;:113;;;-1:-1:-1;;;;;;26133:25:0;;;26104:4;26133:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29563:32;25962:214;32248:615;32421:4;-1:-1:-1;;;;;32394:31:0;:23;32409:7;32394:14;:23::i;:::-;-1:-1:-1;;;;;32394:31:0;;32372:122;;;;-1:-1:-1;;;32372:122:0;;23821:2:1;32372:122:0;;;23803:21:1;23860:2;23840:18;;;23833:30;23899:34;23879:18;;;23872:62;-1:-1:-1;;;23950:18:1;;;23943:39;23999:19;;32372:122:0;23619:405:1;32372:122:0;-1:-1:-1;;;;;32513:16:0;;32505:65;;;;-1:-1:-1;;;32505:65:0;;24231:2:1;32505:65:0;;;24213:21:1;24270:2;24250:18;;;24243:30;24309:34;24289:18;;;24282:62;-1:-1:-1;;;24360:18:1;;;24353:34;24404:19;;32505:65:0;24029:400:1;32505:65:0;32583:39;32604:4;32610:2;32614:7;32583:20;:39::i;:::-;32687:29;32704:1;32708:7;32687:8;:29::i;:::-;-1:-1:-1;;;;;32729:15:0;;;;;;:9;:15;;;;;:20;;32748:1;;32729:15;:20;;32748:1;;32729:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32760:13:0;;;;;;:9;:13;;;;;:18;;32777:1;;32760:13;:18;;32777:1;;32760:18;:::i;:::-;;;;-1:-1:-1;;32789:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32789:21:0;-1:-1:-1;;;;;32789:21:0;;;;;;;;;32828:27;;32789:16;;32828:27;;;;;;;32248:615;;;:::o;44891:173::-;44966:6;;;-1:-1:-1;;;;;44983:17:0;;;-1:-1:-1;;;;;;44983:17:0;;;;;;;45016:40;;44966:6;;;44983:17;44966:6;;45016:40;;44947:16;;45016:40;44936:128;44891:173;:::o;28193:352::-;28350:28;28360:4;28366:2;28370:7;28350:9;:28::i;:::-;28411:48;28434:4;28440:2;28444:7;28453:5;28411:22;:48::i;:::-;28389:148;;;;-1:-1:-1;;;28389:148:0;;;;;;;:::i;51404:108::-;51464:13;51497:7;51490:14;;;;;:::i;8148:723::-;8204:13;8425:5;8434:1;8425:10;8421:53;;-1:-1:-1;;8452:10:0;;;;;;;;;;;;-1:-1:-1;;;8452:10:0;;;;;8148:723::o;8421:53::-;8499:5;8484:12;8540:78;8547:9;;8540:78;;8573:8;;;;:::i;:::-;;-1:-1:-1;8596:10:0;;-1:-1:-1;8604:2:0;8596:10;;:::i;:::-;;;8540:78;;;8628:19;8660:6;8650:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8650:17:0;;8628:39;;8678:154;8685:10;;8678:154;;8712:11;8722:1;8712:11;;:::i;:::-;;-1:-1:-1;8781:10:0;8789:2;8781:5;:10;:::i;:::-;8768:24;;:2;:24;:::i;:::-;8755:39;;8738:6;8745;8738:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8738:56:0;;;;;;;;-1:-1:-1;8809:11:0;8818:2;8809:11;;:::i;:::-;;;8678:154;;29946:110;30022:26;30032:2;30036:7;30022:26;;;;;;;;;;;;:9;:26::i;54537:434::-;54681:45;54708:4;54714:2;54718:7;54681:26;:45::i;:::-;-1:-1:-1;;;;;54741:18:0;;54737:227;;54788:10;;;54821:17;;;:8;:17;;;;;;;;54776:67;;-1:-1:-1;;;54776:67:0;;;;;25172:25:1;;;25213:18;;;25206:34;;;;-1:-1:-1;;;;;25276:32:1;;;25256:18;;;25249:60;54788:10:0;;;;54776:35;;25145:18:1;;54776:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;54737:227::-;54881:2;-1:-1:-1;;;;;54873:10:0;:4;-1:-1:-1;;;;;54873:10:0;;54869:95;;54912:10;;54900:52;;-1:-1:-1;;;54900:52:0;;;;;25494:25:1;;;-1:-1:-1;;;;;25555:32:1;;;25535:18;;;25528:60;54912:10:0;;;;54900:39;;25467:18:1;;54900:52:0;25320:274:1;33720:980:0;33875:4;-1:-1:-1;;;;;33896:13:0;;11024:20;11072:8;33892:801;;33949:175;;-1:-1:-1;;;33949:175:0;;-1:-1:-1;;;;;33949:36:0;;;;;:175;;20876:10;;34043:4;;34070:7;;34100:5;;33949:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33949:175:0;;;;;;;;-1:-1:-1;;33949:175:0;;;;;;;;;;;;:::i;:::-;;;33928:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34307:6;:13;34324:1;34307:18;34303:320;;34350:108;;-1:-1:-1;;;34350:108:0;;;;;;;:::i;34303:320::-;34573:6;34567:13;34558:6;34554:2;34550:15;34543:38;33928:710;-1:-1:-1;;;;;;34188:51:0;-1:-1:-1;;;34188:51:0;;-1:-1:-1;34181:58:0;;33892:801;-1:-1:-1;34677:4:0;34670:11;;30283:321;30413:18;30419:2;30423:7;30413:5;:18::i;:::-;30464:54;30495:1;30499:2;30503:7;30512:5;30464:22;:54::i;:::-;30442:154;;;;-1:-1:-1;;;30442:154:0;;;;;;;:::i;38253:589::-;-1:-1:-1;;;;;38459:18:0;;38455:187;;38494:40;38526:7;39669:10;:17;;39642:24;;;;:15;:24;;;;;:44;;;39697:24;;;;;;;;;;;;39565:164;38494:40;38455:187;;;38564:2;-1:-1:-1;;;;;38556:10:0;:4;-1:-1:-1;;;;;38556:10:0;;38552:90;;38583:47;38616:4;38622:7;38583:32;:47::i;:::-;-1:-1:-1;;;;;38656:16:0;;38652:183;;38689:45;38726:7;38689:36;:45::i;38652:183::-;38762:4;-1:-1:-1;;;;;38756:10:0;:2;-1:-1:-1;;;;;38756:10:0;;38752:83;;38783:40;38811:2;38815:7;38783:27;:40::i;30940:382::-;-1:-1:-1;;;;;31020:16:0;;31012:61;;;;-1:-1:-1;;;31012:61:0;;26549:2:1;31012:61:0;;;26531:21:1;;;26568:18;;;26561:30;26627:34;26607:18;;;26600:62;26679:18;;31012:61:0;26347:356:1;31012:61:0;28923:4;28947:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28947:16:0;:30;31084:58;;;;-1:-1:-1;;;31084:58:0;;26910:2:1;31084:58:0;;;26892:21:1;26949:2;26929:18;;;26922:30;26988;26968:18;;;26961:58;27036:18;;31084:58:0;26708:352:1;31084:58:0;31155:45;31184:1;31188:2;31192:7;31155:20;:45::i;:::-;-1:-1:-1;;;;;31213:13:0;;;;;;:9;:13;;;;;:18;;31230:1;;31213:13;:18;;31230:1;;31213:18;:::i;:::-;;;;-1:-1:-1;;31242:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31242:21:0;-1:-1:-1;;;;;31242:21:0;;;;;;;;31281:33;;31242:16;;;31281:33;;31242:16;;31281:33;30940:382;;:::o;40356:1002::-;40636:22;40686:1;40661:22;40678:4;40661:16;:22::i;:::-;:26;;;;:::i;:::-;40698:18;40719:26;;;:17;:26;;;;;;40636:51;;-1:-1:-1;40852:28:0;;;40848:328;;-1:-1:-1;;;;;40919:18:0;;40897:19;40919:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40970:30;;;;;;:44;;;41087:30;;:17;:30;;;;;:43;;;40848:328;-1:-1:-1;41272:26:0;;;;:17;:26;;;;;;;;41265:33;;;-1:-1:-1;;;;;41316:18:0;;;;;:12;:18;;;;;:34;;;;;;;41309:41;40356:1002::o;41653:1079::-;41931:10;:17;41906:22;;41931:21;;41951:1;;41931:21;:::i;:::-;41963:18;41984:24;;;:15;:24;;;;;;42357:10;:26;;41906:46;;-1:-1:-1;41984:24:0;;41906:46;;42357:26;;;;;;:::i;:::-;;;;;;;;;42335:48;;42421:11;42396:10;42407;42396:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42501:28;;;:15;:28;;;;;;;:41;;;42673:24;;;;;42666:31;42708:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41724:1008;;;41653:1079;:::o;39143:221::-;39228:14;39245:20;39262:2;39245:16;:20::i;:::-;-1:-1:-1;;;;;39276:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39321:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39143:221:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::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;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:248::-;2428:6;2436;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;-1:-1:-1;;2528:23:1;;;2598:2;2583:18;;;2570:32;;-1:-1:-1;2360:248:1:o;2613:328::-;2690:6;2698;2706;2759:2;2747:9;2738:7;2734:23;2730:32;2727:52;;;2775:1;2772;2765:12;2727:52;2798:29;2817:9;2798:29;:::i;:::-;2788:39;;2846:38;2880:2;2869:9;2865:18;2846:38;:::i;:::-;2836:48;;2931:2;2920:9;2916:18;2903:32;2893:42;;2613:328;;;;;:::o;2946:118::-;3032:5;3025:13;3018:21;3011:5;3008:32;2998:60;;3054:1;3051;3044:12;3069:241;3125:6;3178:2;3166:9;3157:7;3153:23;3149:32;3146:52;;;3194:1;3191;3184:12;3146:52;3233:9;3220:23;3252:28;3274:5;3252:28;:::i;3315:480::-;3399:6;3407;3415;3423;3476:3;3464:9;3455:7;3451:23;3447:33;3444:53;;;3493:1;3490;3483:12;3444:53;3516:29;3535:9;3516:29;:::i;:::-;3506:39;;3595:2;3584:9;3580:18;3567:32;3639:4;3632:5;3628:16;3621:5;3618:27;3608:55;;3659:1;3656;3649:12;3608:55;3315:480;;3682:5;;-1:-1:-1;;;;3734:2:1;3719:18;;3706:32;;3785:2;3770:18;3757:32;;3315:480::o;3800:186::-;3859:6;3912:2;3900:9;3891:7;3887:23;3883:32;3880:52;;;3928:1;3925;3918:12;3880:52;3951:29;3970:9;3951:29;:::i;3991:632::-;4162:2;4214:21;;;4284:13;;4187:18;;;4306:22;;;4133:4;;4162:2;4385:15;;;;4359:2;4344:18;;;4133:4;4428:169;4442:6;4439:1;4436:13;4428:169;;;4503:13;;4491:26;;4572:15;;;;4537:12;;;;4464:1;4457:9;4428:169;;;-1:-1:-1;4614:3:1;;3991:632;-1:-1:-1;;;;;;3991:632:1:o;4628:127::-;4689:10;4684:3;4680:20;4677:1;4670:31;4720:4;4717:1;4710:15;4744:4;4741:1;4734:15;4760:632;4825:5;4855:18;4896:2;4888:6;4885:14;4882:40;;;4902:18;;:::i;:::-;4977:2;4971:9;4945:2;5031:15;;-1:-1:-1;;5027:24:1;;;5053:2;5023:33;5019:42;5007:55;;;5077:18;;;5097:22;;;5074:46;5071:72;;;5123:18;;:::i;:::-;5163:10;5159:2;5152:22;5192:6;5183:15;;5222:6;5214;5207:22;5262:3;5253:6;5248:3;5244:16;5241:25;5238:45;;;5279:1;5276;5269:12;5238:45;5329:6;5324:3;5317:4;5309:6;5305:17;5292:44;5384:1;5377:4;5368:6;5360;5356:19;5352:30;5345:41;;;;4760:632;;;;;:::o;5397:451::-;5466:6;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5575:9;5562:23;5608:18;5600:6;5597:30;5594:50;;;5640:1;5637;5630:12;5594:50;5663:22;;5716:4;5708:13;;5704:27;-1:-1:-1;5694:55:1;;5745:1;5742;5735:12;5694:55;5768:74;5834:7;5829:2;5816:16;5811:2;5807;5803:11;5768:74;:::i;5853:315::-;5918:6;5926;5979:2;5967:9;5958:7;5954:23;5950:32;5947:52;;;5995:1;5992;5985:12;5947:52;6018:29;6037:9;6018:29;:::i;:::-;6008:39;;6097:2;6086:9;6082:18;6069:32;6110:28;6132:5;6110:28;:::i;:::-;6157:5;6147:15;;;5853:315;;;;;:::o;6173:761::-;6255:6;6308:3;6296:9;6287:7;6283:23;6279:33;6276:53;;;6325:1;6322;6315:12;6276:53;6374:7;6367:4;6356:9;6352:20;6348:34;6338:62;;6396:1;6393;6386:12;6338:62;6429:2;6423:9;6471:3;6463:6;6459:16;6541:6;6529:10;6526:22;6505:18;6493:10;6490:34;6487:62;6484:88;;;6552:18;;:::i;:::-;6588:2;6581:22;6623:6;6667:3;6652:19;;6683;;;6680:39;;;6715:1;6712;6705:12;6680:39;6739:9;6757:146;6773:6;6768:3;6765:15;6757:146;;;6841:17;;6829:30;;6888:4;6879:14;;;;6790;6757:146;;;-1:-1:-1;6922:6:1;;6173:761;-1:-1:-1;;;;;6173:761:1:o;6939:667::-;7034:6;7042;7050;7058;7111:3;7099:9;7090:7;7086:23;7082:33;7079:53;;;7128:1;7125;7118:12;7079:53;7151:29;7170:9;7151:29;:::i;:::-;7141:39;;7199:38;7233:2;7222:9;7218:18;7199:38;:::i;:::-;7189:48;;7284:2;7273:9;7269:18;7256:32;7246:42;;7339:2;7328:9;7324:18;7311:32;7366:18;7358:6;7355:30;7352:50;;;7398:1;7395;7388:12;7352:50;7421:22;;7474:4;7466:13;;7462:27;-1:-1:-1;7452:55:1;;7503:1;7500;7493:12;7452:55;7526:74;7592:7;7587:2;7574:16;7569:2;7565;7561:11;7526:74;:::i;:::-;7516:84;;;6939:667;;;;;;;:::o;7611:322::-;7688:6;7696;7704;7757:2;7745:9;7736:7;7732:23;7728:32;7725:52;;;7773:1;7770;7763:12;7725:52;7809:9;7796:23;7786:33;;7838:38;7872:2;7861:9;7857:18;7838:38;:::i;7938:495::-;8118:3;8103:19;;8107:9;8199:6;8076:4;8233:194;8247:4;8244:1;8241:11;8233:194;;;8306:13;;8294:26;;8343:4;8367:12;;;;8402:15;;;;8267:1;8260:9;8233:194;;;8237:3;;;7938:495;;;;:::o;8438:260::-;8506:6;8514;8567:2;8555:9;8546:7;8542:23;8538:32;8535:52;;;8583:1;8580;8573:12;8535:52;8606:29;8625:9;8606:29;:::i;:::-;8596:39;;8654:38;8688:2;8677:9;8673:18;8654:38;:::i;:::-;8644:48;;8438:260;;;;;:::o;8703:380::-;8782:1;8778:12;;;;8825;;;8846:61;;8900:4;8892:6;8888:17;8878:27;;8846:61;8953:2;8945:6;8942:14;8922:18;8919:38;8916:161;;8999:10;8994:3;8990:20;8987:1;8980:31;9034:4;9031:1;9024:15;9062:4;9059:1;9052:15;8916:161;;8703:380;;;:::o;10328:127::-;10389:10;10384:3;10380:20;10377:1;10370:31;10420:4;10417:1;10410:15;10444:4;10441:1;10434:15;10460:128;10527:9;;;10548:11;;;10545:37;;;10562:18;;:::i;10593:127::-;10654:10;10649:3;10645:20;10642:1;10635:31;10685:4;10682:1;10675:15;10709:4;10706:1;10699:15;10725:168;10798:9;;;10829;;10846:15;;;10840:22;;10826:37;10816:71;;10867:18;;:::i;10898:127::-;10959:10;10954:3;10950:20;10947:1;10940:31;10990:4;10987:1;10980:15;11014:4;11011:1;11004:15;11030:120;11070:1;11096;11086:35;;11101:18;;:::i;:::-;-1:-1:-1;11135:9:1;;11030:120::o;11535:245::-;11602:6;11655:2;11643:9;11634:7;11630:23;11626:32;11623:52;;;11671:1;11668;11661:12;11623:52;11703:9;11697:16;11722:28;11744:5;11722:28;:::i;12409:135::-;12448:3;12469:17;;;12466:43;;12489:18;;:::i;:::-;-1:-1:-1;12536:1:1;12525:13;;12409:135::o;12549:413::-;12751:2;12733:21;;;12790:2;12770:18;;;12763:30;12829:34;12824:2;12809:18;;12802:62;-1:-1:-1;;;12895:2:1;12880:18;;12873:47;12952:3;12937:19;;12549:413::o;12967:356::-;13169:2;13151:21;;;13188:18;;;13181:30;13247:34;13242:2;13227:18;;13220:62;13314:2;13299:18;;12967:356::o;14078:383::-;14235:3;14273:6;14267:13;14289:66;14348:6;14343:3;14336:4;14328:6;14324:17;14289:66;:::i;:::-;14377:16;;;;14402:21;;;-1:-1:-1;14450:4:1;14439:16;;14078:383;-1:-1:-1;14078:383:1:o;15618:545::-;15720:2;15715:3;15712:11;15709:448;;;15756:1;15781:5;15777:2;15770:17;15826:4;15822:2;15812:19;15896:2;15884:10;15880:19;15877:1;15873:27;15867:4;15863:38;15932:4;15920:10;15917:20;15914:47;;;-1:-1:-1;15955:4:1;15914:47;16010:2;16005:3;16001:12;15998:1;15994:20;15988:4;15984:31;15974:41;;16065:82;16083:2;16076:5;16073:13;16065:82;;;16128:17;;;16109:1;16098:13;16065:82;;;16069:3;;;15618:545;;;:::o;16339:1352::-;16465:3;16459:10;16492:18;16484:6;16481:30;16478:56;;;16514:18;;:::i;:::-;16543:97;16633:6;16593:38;16625:4;16619:11;16593:38;:::i;:::-;16587:4;16543:97;:::i;:::-;16695:4;;16759:2;16748:14;;16776:1;16771:663;;;;17478:1;17495:6;17492:89;;;-1:-1:-1;17547:19:1;;;17541:26;17492:89;-1:-1:-1;;16296:1:1;16292:11;;;16288:24;16284:29;16274:40;16320:1;16316:11;;;16271:57;17594:81;;16741:944;;16771:663;15565:1;15558:14;;;15602:4;15589:18;;-1:-1:-1;;16807:20:1;;;16925:236;16939:7;16936:1;16933:14;16925:236;;;17028:19;;;17022:26;17007:42;;17120:27;;;;17088:1;17076:14;;;;16955:19;;16925:236;;;16929:3;17189:6;17180:7;17177:19;17174:201;;;17250:19;;;17244:26;-1:-1:-1;;17333:1:1;17329:14;;;17345:3;17325:24;17321:37;17317:42;17302:58;17287:74;;17174:201;-1:-1:-1;;;;;17421:1:1;17405:14;;;17401:22;17388:36;;-1:-1:-1;16339:1352:1:o;19768:1256::-;19992:3;20030:6;20024:13;20056:4;20069:64;20126:6;20121:3;20116:2;20108:6;20104:15;20069:64;:::i;:::-;20196:13;;20155:16;;;;20218:68;20196:13;20155:16;20253:15;;;20218:68;:::i;:::-;20375:13;;20308:20;;;20348:1;;20413:36;20375:13;20413:36;:::i;:::-;20468:1;20485:18;;;20512:141;;;;20667:1;20662:337;;;;20478:521;;20512:141;-1:-1:-1;;20547:24:1;;20533:39;;20624:16;;20617:24;20603:39;;20592:51;;;-1:-1:-1;20512:141:1;;20662:337;20693:6;20690:1;20683:17;20741:2;20738:1;20728:16;20766:1;20780:169;20794:8;20791:1;20788:15;20780:169;;;20876:14;;20861:13;;;20854:37;20919:16;;;;20811:10;;20780:169;;;20784:3;;20980:8;20973:5;20969:20;20962:27;;20478:521;-1:-1:-1;21015:3:1;;19768:1256;-1:-1:-1;;;;;;;;;;19768:1256:1:o;21842:184::-;21912:6;21965:2;21953:9;21944:7;21940:23;21936:32;21933:52;;;21981:1;21978;21971:12;21933:52;-1:-1:-1;22004:16:1;;21842:184;-1:-1:-1;21842:184:1:o;23076:125::-;23141:9;;;23162:10;;;23159:36;;;23175:18;;:::i;24434:414::-;24636:2;24618:21;;;24675:2;24655:18;;;24648:30;24714:34;24709:2;24694:18;;24687:62;-1:-1:-1;;;24780:2:1;24765:18;;24758:48;24838:3;24823:19;;24434:414::o;24853:112::-;24885:1;24911;24901:35;;24916:18;;:::i;:::-;-1:-1:-1;24950:9:1;;24853:112::o;25599:489::-;-1:-1:-1;;;;;25868:15:1;;;25850:34;;25920:15;;25915:2;25900:18;;25893:43;25967:2;25952:18;;25945:34;;;26015:3;26010:2;25995:18;;25988:31;;;25793:4;;26036:46;;26062:19;;26054:6;26036:46;:::i;:::-;26028:54;25599:489;-1:-1:-1;;;;;;25599:489:1:o;26093:249::-;26162:6;26215:2;26203:9;26194:7;26190:23;26186:32;26183:52;;;26231:1;26228;26221:12;26183:52;26263:9;26257:16;26282:30;26306:5;26282:30;:::i;27065:127::-;27126:10;27121:3;27117:20;27114:1;27107:31;27157:4;27154:1;27147:15;27181:4;27178:1;27171:15
Swarm Source
ipfs://28d248a5b647f1283f8fd9900044391dcb7178bbf6a67ecbd1c6ef84845c51bb
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.