Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 226 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 22863722 | 134 days ago | IN | 0 ETH | 0.00010306 | ||||
| Set Approval For... | 22423825 | 196 days ago | IN | 0 ETH | 0.00004409 | ||||
| Set Approval For... | 22392432 | 201 days ago | IN | 0 ETH | 0.00001335 | ||||
| Set Approval For... | 21946093 | 263 days ago | IN | 0 ETH | 0.00008315 | ||||
| Set Approval For... | 21920574 | 266 days ago | IN | 0 ETH | 0.00003516 | ||||
| Set Approval For... | 21920574 | 266 days ago | IN | 0 ETH | 0.000062 | ||||
| Set Approval For... | 21449226 | 332 days ago | IN | 0 ETH | 0.00042534 | ||||
| Safe Transfer Fr... | 21447014 | 333 days ago | IN | 0 ETH | 0.0004989 | ||||
| Safe Transfer Fr... | 21446995 | 333 days ago | IN | 0 ETH | 0.00088006 | ||||
| Set Approval For... | 20013825 | 533 days ago | IN | 0 ETH | 0.00050447 | ||||
| Set Approval For... | 19933686 | 544 days ago | IN | 0 ETH | 0.00029984 | ||||
| Set Approval For... | 19926072 | 545 days ago | IN | 0 ETH | 0.00093921 | ||||
| Safe Transfer Fr... | 19881080 | 551 days ago | IN | 0 ETH | 0.00032089 | ||||
| Safe Transfer Fr... | 19881078 | 551 days ago | IN | 0 ETH | 0.00048151 | ||||
| Transfer From | 19121971 | 658 days ago | IN | 0 ETH | 0.00111918 | ||||
| Transfer From | 19121968 | 658 days ago | IN | 0 ETH | 0.00186606 | ||||
| Set Approval For... | 19110252 | 659 days ago | IN | 0 ETH | 0.00017675 | ||||
| Set Approval For... | 18805750 | 702 days ago | IN | 0 ETH | 0.00083648 | ||||
| Set Approval For... | 18539721 | 739 days ago | IN | 0 ETH | 0.0012898 | ||||
| Set Approval For... | 18448074 | 752 days ago | IN | 0 ETH | 0.00056531 | ||||
| Set Approval For... | 18333824 | 768 days ago | IN | 0 ETH | 0.00030513 | ||||
| Set Approval For... | 18131682 | 796 days ago | IN | 0 ETH | 0.0002916 | ||||
| Set Approval For... | 18131603 | 796 days ago | IN | 0 ETH | 0.00055117 | ||||
| Set Approval For... | 18131100 | 796 days ago | IN | 0 ETH | 0.0009368 | ||||
| Set Approval For... | 18035527 | 810 days ago | IN | 0 ETH | 0.00194951 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MetaplacesWorld
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-08-05
*/
/**
*Submitted for verification at Etherscan.io on 2022-04-17
*/
// File lib/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
/**
* @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 lib/token/ERC721/IERC721.sol
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File lib/token/ERC721/IERC721Receiver.sol
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File lib/token/ERC721/extensions/IERC721Metadata.sol
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File lib/utils/Address.sol
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File lib/utils/Context.sol
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File lib/utils/Strings.sol
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File lib/utils/introspection/ERC165.sol
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File lib/token/ERC721A.sol
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// 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;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @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 override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberMinted);
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberBurned);
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return _addressData[owner].aux;
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
_addressData[owner].aux = aux;
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @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) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
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 override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSender()) revert ApproveToCaller();
_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 {
_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 {
_transfer(from, to, tokenId);
if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @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`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (safe && to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex != end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex != end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* 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
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev This is equivalent to _burn(tokenId, false)
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
address from = prevOwnership.addr;
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
AddressData storage addressData = _addressData[from];
addressData.balance -= 1;
addressData.numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = from;
currSlot.startTimestamp = uint64(block.timestamp);
currSlot.burned = true;
// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* 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, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
// File lib/token/ERC721AOwnersExplicit.sol
error AllOwnershipsHaveBeenSet();
error QuantityMustBeNonZero();
error NoTokensMintedYet();
abstract contract ERC721AOwnersExplicit is ERC721A {
uint256 public nextOwnerToExplicitlySet;
/**
* @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
*/
function _setOwnersExplicit(uint256 quantity) internal {
if (quantity == 0) revert QuantityMustBeNonZero();
if (_currentIndex == _startTokenId()) revert NoTokensMintedYet();
uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
if (_nextOwnerToExplicitlySet == 0) {
_nextOwnerToExplicitlySet = _startTokenId();
}
if (_nextOwnerToExplicitlySet >= _currentIndex) revert AllOwnershipsHaveBeenSet();
// Index underflow is impossible.
// Counter or index overflow is incredibly unrealistic.
unchecked {
uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;
// Set the end index to be the last token index
if (endIndex + 1 > _currentIndex) {
endIndex = _currentIndex - 1;
}
for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
if (_ownerships[i].addr == address(0) && !_ownerships[i].burned) {
TokenOwnership memory ownership = _ownershipOf(i);
_ownerships[i].addr = ownership.addr;
_ownerships[i].startTimestamp = ownership.startTimestamp;
}
}
nextOwnerToExplicitlySet = endIndex + 1;
}
}
}
// File lib/token/ERC721/extensions/ERC721Ownable.sol
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File lib/utils/cryptography/MerkleProof.sol
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
return computedHash;
}
}
// File contracts/Erc721amb.sol
// import "../lib/utils/ReentrancyGuard.sol";
contract ERC721AMB is ERC721AOwnersExplicit, Ownable {
struct AirdropClaim {
address user;
uint256 amount;
}
// Mint Sale dates
uint32 private wlSaleStartTime;
uint32 private publicSaleStartTime;
// Max Supply
uint16 public maxSupply = 5938;
// Mint config
uint16 private constant maxBatchSize = 50;
uint16 private maxWlMintNumber = 1;
uint16 private constant maxMintTx = 12;
bytes32 private rootmt;
// Mint Price
uint256 public mintPrice = 0.16 ether;
uint256 public wlMintPrice = 0.12 ether;
// Metadata URI
string private _baseTokenURI;
constructor(string memory name_, string memory symbol_)
ERC721A(name_, symbol_)
{}
modifier callerIsUser() {
require(tx.origin == msg.sender, "The caller is another contract");
_;
}
event MintInitiated(
uint256 mintPrice,
uint256 wlMintPrice,
uint16 maxSupply
);
function initiateMint(
uint256 _mintPrice,
uint256 _wlMintPrice,
uint16 _maxSupply
) external onlyOwner {
require(
_mintPrice != 0,
"MetaplacesWorld::initiateMint: wrong prices provided"
);
require(
_maxSupply > totalSupply(),
"MetaplacesWorld::initiate: wrong supplies provided"
);
mintPrice = _mintPrice;
wlMintPrice = _wlMintPrice;
maxSupply = _maxSupply;
emit MintInitiated(
_mintPrice,
_wlMintPrice,
_maxSupply
);
}
function numberMinted(address owner) public view returns (uint256) {
return _numberMinted(owner);
}
function totalMinted() public view returns (uint256) {
return _totalMinted();
}
function baseURI() public view returns (string memory) {
return _baseURI();
}
function exists(uint256 tokenId) public view returns (bool) {
return _exists(tokenId);
}
// Verifying whitelist spot
function checkValidity(bytes32[] calldata _merkleProof)
public
view
returns (bool)
{
bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
require(
MerkleProof.verify(_merkleProof, rootmt, leaf),
"Incorrect proof"
);
return true;
}
function setRootMerkleHash(bytes32 _rootmt) external onlyOwner {
rootmt = _rootmt;
}
// Mint dates could be set to a distant future to stop the mint
function setMintDates(uint32 wlDate, uint32 publicDate) external onlyOwner {
require(wlDate != 0 && publicDate != 0, "dates must be defined");
wlSaleStartTime = wlDate;
publicSaleStartTime = publicDate;
}
function setMaxWlMintNumber(uint16 _maxWlMintNumber) external onlyOwner {
require(_maxWlMintNumber != 0, "_maxWlMinterNumber cannot be zero");
maxWlMintNumber = _maxWlMintNumber;
}
function publicMint(address to, uint256 quantity)
external
payable
callerIsUser
{
require(isPublicSaleOn(), "public sale has not started yet");
require(quantity <= maxMintTx, "can not mint this many at once");
require(msg.value >= mintPrice * quantity, "need to send more ETH");
safeMint(to, quantity);
}
// Only whitelisted addresses are authorized to mint during the Whitelist Mint
function whitelistMint(
address to,
uint256 quantity,
bytes32[] calldata _merkleProof
) external payable {
require(isWlSaleOn(), "whitelist sale has not started yet");
require(
numberMinted(to) + quantity <= maxWlMintNumber,
"can not mint this many"
);
// Checking address to instead of _msgSender()
bytes32 leaf = keccak256(abi.encodePacked(to));
require(
MerkleProof.verify(_merkleProof, rootmt, leaf),
"Incorrect proof"
);
require(msg.value >= wlMintPrice * quantity, "need to send more ETH");
safeMint(to, quantity);
}
function safeMint(address to, uint256 quantity) private {
require(
totalSupply() + quantity <= maxSupply,
"insufficient remaining supply for desired mint amount"
);
require(
quantity > 0 && quantity <= maxBatchSize,
"incorrect mint quantity"
);
_safeMint(to, quantity);
}
receive() external payable {}
function isWlSaleOn() public view returns (bool) {
uint256 _wlSaleStartTime = uint256(wlSaleStartTime);
return _wlSaleStartTime != 0 && block.timestamp >= _wlSaleStartTime;
}
function isPublicSaleOn() public view returns (bool) {
uint256 _publicSaleStartTime = uint256(publicSaleStartTime);
return
_publicSaleStartTime != 0 &&
block.timestamp >= _publicSaleStartTime;
}
function airdropClaims(
AirdropClaim[] calldata airdropClaimList
) external onlyOwner {
for (uint256 i = 0; i < airdropClaimList.length; i++)
safeMint(airdropClaimList[i].user, airdropClaimList[i].amount);
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
function setBaseURI(string calldata baseURIValue) external onlyOwner {
_baseTokenURI = baseURIValue;
}
function withdraw() external onlyOwner {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "Transfer failed.");
}
function setOwnersExplicit(uint256 quantity) external onlyOwner {
_setOwnersExplicit(quantity);
}
function getOwnershipData(uint256 tokenId)
external
view
returns (TokenOwnership memory)
{
return _ownershipOf(tokenId);
}
}
// File contracts/MP.sol
contract MetaplacesWorld is ERC721AMB {
constructor() ERC721AMB("Metaplaces World", "MPW") {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllOwnershipsHaveBeenSet","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoTokensMintedYet","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"QuantityMustBeNonZero","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"mintPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wlMintPrice","type":"uint256"},{"indexed":false,"internalType":"uint16","name":"maxSupply","type":"uint16"}],"name":"MintInitiated","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":[{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct ERC721AMB.AirdropClaim[]","name":"airdropClaimList","type":"tuple[]"}],"name":"airdropClaims","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"checkValidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_wlMintPrice","type":"uint256"},{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"initiateMint","outputs":[],"stateMutability":"nonpayable","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":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURIValue","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxWlMintNumber","type":"uint16"}],"name":"setMaxWlMintNumber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"wlDate","type":"uint32"},{"internalType":"uint32","name":"publicDate","type":"uint32"}],"name":"setMintDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootmt","type":"bytes32"}],"name":"setRootMerkleHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052600980546001600160e01b0316618b9960e11b1790556702386f26fc100000600b556701aa535d3d0c0000600c553480156200003f57600080fd5b50604080518082018252601081526f13595d185c1b1858d95cc815dbdc9b1960821b6020808301918252835180850190945260038452624d505760e81b90840152815191929183918391620000979160029162000119565b508051620000ad90600390602084019062000119565b50506000805550620000bf33620000c7565b5050620001fc565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012790620001bf565b90600052602060002090601f0160209004810192826200014b576000855562000196565b82601f106200016657805160ff191683800117855562000196565b8280016001018555821562000196579182015b828111156200019657825182559160200191906001019062000179565b50620001a4929150620001a8565b5090565b5b80821115620001a45760008155600101620001a9565b600181811c90821680620001d457607f821691505b60208210811415620001f657634e487b7160e01b600052602260045260246000fd5b50919050565b6127cd806200020c6000396000f3fe6080604052600436106102345760003560e01c806370a082311161012e578063c507b806116100ab578063d7224ba01161006f578063d7224ba014610682578063dc33e68114610698578063e985e9c5146106b8578063ec6d078914610701578063f2fde38b1461072157600080fd5b8063c507b806146105e5578063c87b56dd14610605578063ce6df2b914610625578063d334c54f14610638578063d5abeb011461064d57600080fd5b8063954d90d0116100f2578063954d90d01461055b57806395d89b411461057b578063a22cb46514610590578063a2309ff8146105b0578063b88d4fde146105c557600080fd5b806370a0823114610492578063715018a6146104b257806388822b39146104c75780638da5cb5b146104e75780639231ab2a1461050557600080fd5b80632d4d8765116101bc5780634f558e79116101805780634f558e791461040757806355f804b3146104275780636352211e146104475780636817c76c146104675780636c0360eb1461047d57600080fd5b80632d4d87651461038a5780633ccfd60b146103aa5780633f5e4741146103bf57806342842e0e146103d45780634b11faaf146103f457600080fd5b8063095ea7b311610203578063095ea7b3146102f157806318160ddd1461031157806323b872dd146103345780632c4e9fc6146103545780632d20fb601461036a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc146102975780630829ea90146102cf57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b36600461245e565b610741565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610793565b60405161026c91906125ff565b3480156102a357600080fd5b506102b76102b2366004612446565b610825565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046123d7565b610869565b005b3480156102fd57600080fd5b506102ef61030c366004612318565b610926565b34801561031d57600080fd5b50600154600054035b60405190815260200161026c565b34801561034057600080fd5b506102ef61034f3660046121cf565b6109af565b34801561036057600080fd5b50610326600c5481565b34801561037657600080fd5b506102ef610385366004612446565b6109ba565b34801561039657600080fd5b506102ef6103a5366004612446565b6109f0565b3480156103b657600080fd5b506102ef610a1f565b3480156103cb57600080fd5b50610260610ad4565b3480156103e057600080fd5b506102ef6103ef3660046121cf565b610afc565b6102ef610402366004612341565b610b17565b34801561041357600080fd5b50610260610422366004612446565b610cfe565b34801561043357600080fd5b506102ef610442366004612496565b610d09565b34801561045357600080fd5b506102b7610462366004612446565b610d3f565b34801561047357600080fd5b50610326600b5481565b34801561048957600080fd5b5061028a610d51565b34801561049e57600080fd5b506103266104ad366004612183565b610d60565b3480156104be57600080fd5b506102ef610dae565b3480156104d357600080fd5b506102ef6104e236600461250a565b610de4565b3480156104f357600080fd5b506009546001600160a01b03166102b7565b34801561051157600080fd5b50610525610520366004612446565b610f5d565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161026c565b34801561056757600080fd5b50610260610576366004612398565b610f83565b34801561058757600080fd5b5061028a611047565b34801561059c57600080fd5b506102ef6105ab3660046122de565b611056565b3480156105bc57600080fd5b50600054610326565b3480156105d157600080fd5b506102ef6105e036600461220a565b6110ec565b3480156105f157600080fd5b506102ef61060036600461253e565b61113d565b34801561061157600080fd5b5061028a610620366004612446565b611205565b6102ef610633366004612318565b61128a565b34801561064457600080fd5b506102606113e1565b34801561065957600080fd5b5060095461066f90600160e01b900461ffff1681565b60405161ffff909116815260200161026c565b34801561068e57600080fd5b5061032660085481565b3480156106a457600080fd5b506103266106b3366004612183565b611406565b3480156106c457600080fd5b506102606106d336600461219d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070d57600080fd5b506102ef61071c3660046124f0565b611434565b34801561072d57600080fd5b506102ef61073c366004612183565b6114dc565b60006001600160e01b031982166380ac58cd60e01b148061077257506001600160e01b03198216635b5e139f60e01b145b8061078d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107a2906126d5565b80601f01602080910402602001604051908101604052809291908181526020018280546107ce906126d5565b801561081b5780601f106107f05761010080835404028352916020019161081b565b820191906000526020600020905b8154815290600101906020018083116107fe57829003601f168201915b5050505050905090565b600061083082611574565b61084d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6009546001600160a01b0316331461089c5760405162461bcd60e51b815260040161089390612612565b60405180910390fd5b60005b818110156109215761090f8383838181106108ca57634e487b7160e01b600052603260045260246000fd5b6108e09260206040909202019081019150612183565b84848481811061090057634e487b7160e01b600052603260045260246000fd5b9050604002016020013561159f565b8061091981612710565b91505061089f565b505050565b600061093182610d3f565b9050806001600160a01b0316836001600160a01b031614156109665760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610986575061098481336106d3565b155b156109a4576040516367d9dca160e11b815260040160405180910390fd5b610921838383611698565b6109218383836116f4565b6009546001600160a01b031633146109e45760405162461bcd60e51b815260040161089390612612565b6109ed816118df565b50565b6009546001600160a01b03163314610a1a5760405162461bcd60e51b815260040161089390612612565b600a55565b6009546001600160a01b03163314610a495760405162461bcd60e51b815260040161089390612612565b604051600090339047908381818185875af1925050503d8060008114610a8b576040519150601f19603f3d011682016040523d82523d6000602084013e610a90565b606091505b50509050806109ed5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610893565b600954600090600160c01b900463ffffffff168015801590610af65750804210155b91505090565b610921838383604051806020016040528060008152506110ec565b610b1f6113e1565b610b765760405162461bcd60e51b815260206004820152602260248201527f77686974656c6973742073616c6520686173206e6f7420737461727465642079604482015261195d60f21b6064820152608401610893565b600954600160f01b900461ffff1683610b8e86611406565b610b989190612647565b1115610bdf5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610893565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050610c5a83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a16565b610c985760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b6044820152606401610893565b83600c54610ca69190612673565b341015610ced5760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b6044820152606401610893565b610cf7858561159f565b5050505050565b600061078d82611574565b6009546001600160a01b03163314610d335760405162461bcd60e51b815260040161089390612612565b610921600d838361205f565b6000610d4a82611a2c565b5192915050565b6060610d5b611b46565b905090565b60006001600160a01b038216610d89576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314610dd85760405162461bcd60e51b815260040161089390612612565b610de26000611b55565b565b6009546001600160a01b03163314610e0e5760405162461bcd60e51b815260040161089390612612565b82610e785760405162461bcd60e51b815260206004820152603460248201527f4d657461706c61636573576f726c643a3a696e6974696174654d696e743a20776044820152731c9bdb99c81c1c9a58d95cc81c1c9bdd9a59195960621b6064820152608401610893565b600154600054038161ffff1611610eec5760405162461bcd60e51b815260206004820152603260248201527f4d657461706c61636573576f726c643a3a696e6974696174653a2077726f6e67604482015271081cdd5c1c1b1a595cc81c1c9bdd9a59195960721b6064820152608401610893565b600b839055600c8290556009805461ffff60e01b1916600160e01b61ffff8416908102919091179091556040805185815260208101859052908101919091527f9b6ac769d6e6f1115e13622d67c56f95771b1ab3a12eb9b80117e258ae6e30759060600160405180910390a1505050565b604080516060810182526000808252602082018190529181019190915261078d82611a2c565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050610fff84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a16565b61103d5760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b6044820152606401610893565b5060019392505050565b6060600380546107a2906126d5565b6001600160a01b0382163314156110805760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f78484846116f4565b6001600160a01b0383163b15158015611119575061111784848484611ba7565b155b15611137576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b031633146111675760405162461bcd60e51b815260040161089390612612565b63ffffffff821615801590611181575063ffffffff811615155b6111c55760405162461bcd60e51b815260206004820152601560248201527419185d195cc81b5d5cdd081899481919599a5b9959605a1b6044820152606401610893565b6009805467ffffffffffffffff60a01b1916600160a01b63ffffffff9485160263ffffffff60c01b191617600160c01b9290931691909102919091179055565b606061121082611574565b61122d57604051630a14c4b560e41b815260040160405180910390fd5b6000611237611b46565b90508051600014156112585760405180602001604052806000815250611283565b8061126284611c9f565b604051602001611273929190612593565b6040516020818303038152906040525b9392505050565b3233146112d95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610893565b6112e1610ad4565b61132d5760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f74207374617274656420796574006044820152606401610893565b600c81111561137e5760405162461bcd60e51b815260206004820152601e60248201527f63616e206e6f74206d696e742074686973206d616e79206174206f6e636500006044820152606401610893565b80600b5461138c9190612673565b3410156113d35760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b6044820152606401610893565b6113dd828261159f565b5050565b600954600090600160a01b900463ffffffff168015801590610af65750421015919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661078d565b6009546001600160a01b0316331461145e5760405162461bcd60e51b815260040161089390612612565b61ffff81166114b95760405162461bcd60e51b815260206004820152602160248201527f5f6d6178576c4d696e7465724e756d6265722063616e6e6f74206265207a65726044820152606f60f81b6064820152608401610893565b6009805461ffff909216600160f01b026001600160f01b03909216919091179055565b6009546001600160a01b031633146115065760405162461bcd60e51b815260040161089390612612565b6001600160a01b03811661156b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610893565b6109ed81611b55565b600080548210801561078d575050600090815260046020526040902054600160e01b900460ff161590565b600954600160e01b900461ffff16816115bb6001546000540390565b6115c59190612647565b11156116315760405162461bcd60e51b815260206004820152603560248201527f696e73756666696369656e742072656d61696e696e6720737570706c7920666f6044820152741c8819195cda5c9959081b5a5b9d08185b5bdd5b9d605a1b6064820152608401610893565b600081118015611642575060328111155b61168e5760405162461bcd60e51b815260206004820152601760248201527f696e636f7272656374206d696e74207175616e746974790000000000000000006044820152606401610893565b6113dd8282611db8565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116ff82611a2c565b9050836001600160a01b031681600001516001600160a01b0316146117365760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611754575061175485336106d3565b8061176f57503361176484610825565b6001600160a01b0316145b90508061178f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117b657604051633a954ecd60e21b815260040160405180910390fd5b6117c260008487611698565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661189657600054821461189657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cf7565b806118fd576040516356be441560e01b815260040160405180910390fd5b60005461191d5760405163c0367cab60e01b815260040160405180910390fd5b60085480611929575060005b600054811061194b576040516370e89b1b60e01b815260040160405180910390fd5b60005482820160001981019110156119665750600054600019015b815b818111611a0b576000818152600460205260409020546001600160a01b03161580156119aa5750600081815260046020526040902054600160e01b900460ff16155b15611a035760006119ba82611a2c565b80516000848152600460209081526040909120805491909301516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611968565b506001016008555050565b600082611a238584611dd2565b14949350505050565b604080516060810182526000808252602082018190529181019190915281600054811015611b2d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b2b5780516001600160a01b031615611ac2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b26579392505050565b611ac2565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600d80546107a2906126d5565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bdc9033908990889088906004016125c2565b602060405180830381600087803b158015611bf657600080fd5b505af1925050508015611c26575060408051601f3d908101601f19168201909252611c239181019061247a565b60015b611c81573d808015611c54576040519150601f19603f3d011682016040523d82523d6000602084013e611c59565b606091505b508051611c79576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611cc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ced5780611cd781612710565b9150611ce69050600a8361265f565b9150611cc7565b6000816001600160401b03811115611d1557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d3f576020820181803683370190505b5090505b8415611c9757611d54600183612692565b9150611d61600a8661272b565b611d6c906030612647565b60f81b818381518110611d8f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611db1600a8661265f565b9450611d43565b6113dd828260405180602001604052806000815250611e8c565b600081815b8451811015611e84576000858281518110611e0257634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611e44576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611e71565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611e7c81612710565b915050611dd7565b509392505050565b61092183838360016000546001600160a01b038516611ebd57604051622e076360e81b815260040160405180910390fd5b83611edb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611f8757506001600160a01b0387163b15155b15612010575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611fd86000888480600101955088611ba7565b611ff5576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f8d57826000541461200b57600080fd5b612056565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612011575b50600055610cf7565b82805461206b906126d5565b90600052602060002090601f01602090048101928261208d57600085556120d3565b82601f106120a65782800160ff198235161785556120d3565b828001600101855582156120d3579182015b828111156120d35782358255916020019190600101906120b8565b506120df9291506120e3565b5090565b5b808211156120df57600081556001016120e4565b80356001600160a01b038116811461210f57600080fd5b919050565b60008083601f840112612125578081fd5b5081356001600160401b0381111561213b578182fd5b6020830191508360208260051b850101111561215657600080fd5b9250929050565b803561ffff8116811461210f57600080fd5b803563ffffffff8116811461210f57600080fd5b600060208284031215612194578081fd5b611283826120f8565b600080604083850312156121af578081fd5b6121b8836120f8565b91506121c6602084016120f8565b90509250929050565b6000806000606084860312156121e3578081fd5b6121ec846120f8565b92506121fa602085016120f8565b9150604084013590509250925092565b6000806000806080858703121561221f578081fd5b612228856120f8565b9350612236602086016120f8565b92506040850135915060608501356001600160401b0380821115612258578283fd5b818701915087601f83011261226b578283fd5b81358181111561227d5761227d61276b565b604051601f8201601f19908116603f011681019083821181831017156122a5576122a561276b565b816040528281528a60208487010111156122bd578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156122f0578182fd5b6122f9836120f8565b91506020830135801515811461230d578182fd5b809150509250929050565b6000806040838503121561232a578182fd5b612333836120f8565b946020939093013593505050565b60008060008060608587031215612356578384fd5b61235f856120f8565b93506020850135925060408501356001600160401b03811115612380578283fd5b61238c87828801612114565b95989497509550505050565b600080602083850312156123aa578182fd5b82356001600160401b038111156123bf578283fd5b6123cb85828601612114565b90969095509350505050565b600080602083850312156123e9578182fd5b82356001600160401b03808211156123ff578384fd5b818501915085601f830112612412578384fd5b813581811115612420578485fd5b8660208260061b8501011115612434578485fd5b60209290920196919550909350505050565b600060208284031215612457578081fd5b5035919050565b60006020828403121561246f578081fd5b813561128381612781565b60006020828403121561248b578081fd5b815161128381612781565b600080602083850312156124a8578182fd5b82356001600160401b03808211156124be578384fd5b818501915085601f8301126124d1578384fd5b8135818111156124df578485fd5b866020828501011115612434578485fd5b600060208284031215612501578081fd5b6112838261215d565b60008060006060848603121561251e578081fd5b83359250602084013591506125356040850161215d565b90509250925092565b60008060408385031215612550578182fd5b6125598361216f565b91506121c66020840161216f565b6000815180845261257f8160208601602086016126a9565b601f01601f19169290920160200192915050565b600083516125a58184602088016126a9565b8351908301906125b98183602088016126a9565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125f590830184612567565b9695505050505050565b6020815260006112836020830184612567565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561265a5761265a61273f565b500190565b60008261266e5761266e612755565b500490565b600081600019048311821515161561268d5761268d61273f565b500290565b6000828210156126a4576126a461273f565b500390565b60005b838110156126c45781810151838201526020016126ac565b838111156111375750506000910152565b600181811c908216806126e957607f821691505b6020821081141561270a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127245761272461273f565b5060010190565b60008261273a5761273a612755565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ed57600080fdfea2646970667358221220b983740c261394d5b5b1e2f55528de2269e374c152c28a6e6da4a59e7855910064736f6c63430008040033
Deployed Bytecode
0x6080604052600436106102345760003560e01c806370a082311161012e578063c507b806116100ab578063d7224ba01161006f578063d7224ba014610682578063dc33e68114610698578063e985e9c5146106b8578063ec6d078914610701578063f2fde38b1461072157600080fd5b8063c507b806146105e5578063c87b56dd14610605578063ce6df2b914610625578063d334c54f14610638578063d5abeb011461064d57600080fd5b8063954d90d0116100f2578063954d90d01461055b57806395d89b411461057b578063a22cb46514610590578063a2309ff8146105b0578063b88d4fde146105c557600080fd5b806370a0823114610492578063715018a6146104b257806388822b39146104c75780638da5cb5b146104e75780639231ab2a1461050557600080fd5b80632d4d8765116101bc5780634f558e79116101805780634f558e791461040757806355f804b3146104275780636352211e146104475780636817c76c146104675780636c0360eb1461047d57600080fd5b80632d4d87651461038a5780633ccfd60b146103aa5780633f5e4741146103bf57806342842e0e146103d45780634b11faaf146103f457600080fd5b8063095ea7b311610203578063095ea7b3146102f157806318160ddd1461031157806323b872dd146103345780632c4e9fc6146103545780632d20fb601461036a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc146102975780630829ea90146102cf57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b36600461245e565b610741565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610793565b60405161026c91906125ff565b3480156102a357600080fd5b506102b76102b2366004612446565b610825565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046123d7565b610869565b005b3480156102fd57600080fd5b506102ef61030c366004612318565b610926565b34801561031d57600080fd5b50600154600054035b60405190815260200161026c565b34801561034057600080fd5b506102ef61034f3660046121cf565b6109af565b34801561036057600080fd5b50610326600c5481565b34801561037657600080fd5b506102ef610385366004612446565b6109ba565b34801561039657600080fd5b506102ef6103a5366004612446565b6109f0565b3480156103b657600080fd5b506102ef610a1f565b3480156103cb57600080fd5b50610260610ad4565b3480156103e057600080fd5b506102ef6103ef3660046121cf565b610afc565b6102ef610402366004612341565b610b17565b34801561041357600080fd5b50610260610422366004612446565b610cfe565b34801561043357600080fd5b506102ef610442366004612496565b610d09565b34801561045357600080fd5b506102b7610462366004612446565b610d3f565b34801561047357600080fd5b50610326600b5481565b34801561048957600080fd5b5061028a610d51565b34801561049e57600080fd5b506103266104ad366004612183565b610d60565b3480156104be57600080fd5b506102ef610dae565b3480156104d357600080fd5b506102ef6104e236600461250a565b610de4565b3480156104f357600080fd5b506009546001600160a01b03166102b7565b34801561051157600080fd5b50610525610520366004612446565b610f5d565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161026c565b34801561056757600080fd5b50610260610576366004612398565b610f83565b34801561058757600080fd5b5061028a611047565b34801561059c57600080fd5b506102ef6105ab3660046122de565b611056565b3480156105bc57600080fd5b50600054610326565b3480156105d157600080fd5b506102ef6105e036600461220a565b6110ec565b3480156105f157600080fd5b506102ef61060036600461253e565b61113d565b34801561061157600080fd5b5061028a610620366004612446565b611205565b6102ef610633366004612318565b61128a565b34801561064457600080fd5b506102606113e1565b34801561065957600080fd5b5060095461066f90600160e01b900461ffff1681565b60405161ffff909116815260200161026c565b34801561068e57600080fd5b5061032660085481565b3480156106a457600080fd5b506103266106b3366004612183565b611406565b3480156106c457600080fd5b506102606106d336600461219d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070d57600080fd5b506102ef61071c3660046124f0565b611434565b34801561072d57600080fd5b506102ef61073c366004612183565b6114dc565b60006001600160e01b031982166380ac58cd60e01b148061077257506001600160e01b03198216635b5e139f60e01b145b8061078d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107a2906126d5565b80601f01602080910402602001604051908101604052809291908181526020018280546107ce906126d5565b801561081b5780601f106107f05761010080835404028352916020019161081b565b820191906000526020600020905b8154815290600101906020018083116107fe57829003601f168201915b5050505050905090565b600061083082611574565b61084d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6009546001600160a01b0316331461089c5760405162461bcd60e51b815260040161089390612612565b60405180910390fd5b60005b818110156109215761090f8383838181106108ca57634e487b7160e01b600052603260045260246000fd5b6108e09260206040909202019081019150612183565b84848481811061090057634e487b7160e01b600052603260045260246000fd5b9050604002016020013561159f565b8061091981612710565b91505061089f565b505050565b600061093182610d3f565b9050806001600160a01b0316836001600160a01b031614156109665760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610986575061098481336106d3565b155b156109a4576040516367d9dca160e11b815260040160405180910390fd5b610921838383611698565b6109218383836116f4565b6009546001600160a01b031633146109e45760405162461bcd60e51b815260040161089390612612565b6109ed816118df565b50565b6009546001600160a01b03163314610a1a5760405162461bcd60e51b815260040161089390612612565b600a55565b6009546001600160a01b03163314610a495760405162461bcd60e51b815260040161089390612612565b604051600090339047908381818185875af1925050503d8060008114610a8b576040519150601f19603f3d011682016040523d82523d6000602084013e610a90565b606091505b50509050806109ed5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610893565b600954600090600160c01b900463ffffffff168015801590610af65750804210155b91505090565b610921838383604051806020016040528060008152506110ec565b610b1f6113e1565b610b765760405162461bcd60e51b815260206004820152602260248201527f77686974656c6973742073616c6520686173206e6f7420737461727465642079604482015261195d60f21b6064820152608401610893565b600954600160f01b900461ffff1683610b8e86611406565b610b989190612647565b1115610bdf5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610893565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050610c5a83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a16565b610c985760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b6044820152606401610893565b83600c54610ca69190612673565b341015610ced5760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b6044820152606401610893565b610cf7858561159f565b5050505050565b600061078d82611574565b6009546001600160a01b03163314610d335760405162461bcd60e51b815260040161089390612612565b610921600d838361205f565b6000610d4a82611a2c565b5192915050565b6060610d5b611b46565b905090565b60006001600160a01b038216610d89576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314610dd85760405162461bcd60e51b815260040161089390612612565b610de26000611b55565b565b6009546001600160a01b03163314610e0e5760405162461bcd60e51b815260040161089390612612565b82610e785760405162461bcd60e51b815260206004820152603460248201527f4d657461706c61636573576f726c643a3a696e6974696174654d696e743a20776044820152731c9bdb99c81c1c9a58d95cc81c1c9bdd9a59195960621b6064820152608401610893565b600154600054038161ffff1611610eec5760405162461bcd60e51b815260206004820152603260248201527f4d657461706c61636573576f726c643a3a696e6974696174653a2077726f6e67604482015271081cdd5c1c1b1a595cc81c1c9bdd9a59195960721b6064820152608401610893565b600b839055600c8290556009805461ffff60e01b1916600160e01b61ffff8416908102919091179091556040805185815260208101859052908101919091527f9b6ac769d6e6f1115e13622d67c56f95771b1ab3a12eb9b80117e258ae6e30759060600160405180910390a1505050565b604080516060810182526000808252602082018190529181019190915261078d82611a2c565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050610fff84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611a16565b61103d5760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b6044820152606401610893565b5060019392505050565b6060600380546107a2906126d5565b6001600160a01b0382163314156110805760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110f78484846116f4565b6001600160a01b0383163b15158015611119575061111784848484611ba7565b155b15611137576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b031633146111675760405162461bcd60e51b815260040161089390612612565b63ffffffff821615801590611181575063ffffffff811615155b6111c55760405162461bcd60e51b815260206004820152601560248201527419185d195cc81b5d5cdd081899481919599a5b9959605a1b6044820152606401610893565b6009805467ffffffffffffffff60a01b1916600160a01b63ffffffff9485160263ffffffff60c01b191617600160c01b9290931691909102919091179055565b606061121082611574565b61122d57604051630a14c4b560e41b815260040160405180910390fd5b6000611237611b46565b90508051600014156112585760405180602001604052806000815250611283565b8061126284611c9f565b604051602001611273929190612593565b6040516020818303038152906040525b9392505050565b3233146112d95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610893565b6112e1610ad4565b61132d5760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f74207374617274656420796574006044820152606401610893565b600c81111561137e5760405162461bcd60e51b815260206004820152601e60248201527f63616e206e6f74206d696e742074686973206d616e79206174206f6e636500006044820152606401610893565b80600b5461138c9190612673565b3410156113d35760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b6044820152606401610893565b6113dd828261159f565b5050565b600954600090600160a01b900463ffffffff168015801590610af65750421015919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661078d565b6009546001600160a01b0316331461145e5760405162461bcd60e51b815260040161089390612612565b61ffff81166114b95760405162461bcd60e51b815260206004820152602160248201527f5f6d6178576c4d696e7465724e756d6265722063616e6e6f74206265207a65726044820152606f60f81b6064820152608401610893565b6009805461ffff909216600160f01b026001600160f01b03909216919091179055565b6009546001600160a01b031633146115065760405162461bcd60e51b815260040161089390612612565b6001600160a01b03811661156b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610893565b6109ed81611b55565b600080548210801561078d575050600090815260046020526040902054600160e01b900460ff161590565b600954600160e01b900461ffff16816115bb6001546000540390565b6115c59190612647565b11156116315760405162461bcd60e51b815260206004820152603560248201527f696e73756666696369656e742072656d61696e696e6720737570706c7920666f6044820152741c8819195cda5c9959081b5a5b9d08185b5bdd5b9d605a1b6064820152608401610893565b600081118015611642575060328111155b61168e5760405162461bcd60e51b815260206004820152601760248201527f696e636f7272656374206d696e74207175616e746974790000000000000000006044820152606401610893565b6113dd8282611db8565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116ff82611a2c565b9050836001600160a01b031681600001516001600160a01b0316146117365760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611754575061175485336106d3565b8061176f57503361176484610825565b6001600160a01b0316145b90508061178f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117b657604051633a954ecd60e21b815260040160405180910390fd5b6117c260008487611698565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661189657600054821461189657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cf7565b806118fd576040516356be441560e01b815260040160405180910390fd5b60005461191d5760405163c0367cab60e01b815260040160405180910390fd5b60085480611929575060005b600054811061194b576040516370e89b1b60e01b815260040160405180910390fd5b60005482820160001981019110156119665750600054600019015b815b818111611a0b576000818152600460205260409020546001600160a01b03161580156119aa5750600081815260046020526040902054600160e01b900460ff16155b15611a035760006119ba82611a2c565b80516000848152600460209081526040909120805491909301516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611968565b506001016008555050565b600082611a238584611dd2565b14949350505050565b604080516060810182526000808252602082018190529181019190915281600054811015611b2d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b2b5780516001600160a01b031615611ac2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b26579392505050565b611ac2565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600d80546107a2906126d5565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bdc9033908990889088906004016125c2565b602060405180830381600087803b158015611bf657600080fd5b505af1925050508015611c26575060408051601f3d908101601f19168201909252611c239181019061247a565b60015b611c81573d808015611c54576040519150601f19603f3d011682016040523d82523d6000602084013e611c59565b606091505b508051611c79576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611cc35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ced5780611cd781612710565b9150611ce69050600a8361265f565b9150611cc7565b6000816001600160401b03811115611d1557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d3f576020820181803683370190505b5090505b8415611c9757611d54600183612692565b9150611d61600a8661272b565b611d6c906030612647565b60f81b818381518110611d8f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611db1600a8661265f565b9450611d43565b6113dd828260405180602001604052806000815250611e8c565b600081815b8451811015611e84576000858281518110611e0257634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611e44576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611e71565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611e7c81612710565b915050611dd7565b509392505050565b61092183838360016000546001600160a01b038516611ebd57604051622e076360e81b815260040160405180910390fd5b83611edb5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611f8757506001600160a01b0387163b15155b15612010575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611fd86000888480600101955088611ba7565b611ff5576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f8d57826000541461200b57600080fd5b612056565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612011575b50600055610cf7565b82805461206b906126d5565b90600052602060002090601f01602090048101928261208d57600085556120d3565b82601f106120a65782800160ff198235161785556120d3565b828001600101855582156120d3579182015b828111156120d35782358255916020019190600101906120b8565b506120df9291506120e3565b5090565b5b808211156120df57600081556001016120e4565b80356001600160a01b038116811461210f57600080fd5b919050565b60008083601f840112612125578081fd5b5081356001600160401b0381111561213b578182fd5b6020830191508360208260051b850101111561215657600080fd5b9250929050565b803561ffff8116811461210f57600080fd5b803563ffffffff8116811461210f57600080fd5b600060208284031215612194578081fd5b611283826120f8565b600080604083850312156121af578081fd5b6121b8836120f8565b91506121c6602084016120f8565b90509250929050565b6000806000606084860312156121e3578081fd5b6121ec846120f8565b92506121fa602085016120f8565b9150604084013590509250925092565b6000806000806080858703121561221f578081fd5b612228856120f8565b9350612236602086016120f8565b92506040850135915060608501356001600160401b0380821115612258578283fd5b818701915087601f83011261226b578283fd5b81358181111561227d5761227d61276b565b604051601f8201601f19908116603f011681019083821181831017156122a5576122a561276b565b816040528281528a60208487010111156122bd578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156122f0578182fd5b6122f9836120f8565b91506020830135801515811461230d578182fd5b809150509250929050565b6000806040838503121561232a578182fd5b612333836120f8565b946020939093013593505050565b60008060008060608587031215612356578384fd5b61235f856120f8565b93506020850135925060408501356001600160401b03811115612380578283fd5b61238c87828801612114565b95989497509550505050565b600080602083850312156123aa578182fd5b82356001600160401b038111156123bf578283fd5b6123cb85828601612114565b90969095509350505050565b600080602083850312156123e9578182fd5b82356001600160401b03808211156123ff578384fd5b818501915085601f830112612412578384fd5b813581811115612420578485fd5b8660208260061b8501011115612434578485fd5b60209290920196919550909350505050565b600060208284031215612457578081fd5b5035919050565b60006020828403121561246f578081fd5b813561128381612781565b60006020828403121561248b578081fd5b815161128381612781565b600080602083850312156124a8578182fd5b82356001600160401b03808211156124be578384fd5b818501915085601f8301126124d1578384fd5b8135818111156124df578485fd5b866020828501011115612434578485fd5b600060208284031215612501578081fd5b6112838261215d565b60008060006060848603121561251e578081fd5b83359250602084013591506125356040850161215d565b90509250925092565b60008060408385031215612550578182fd5b6125598361216f565b91506121c66020840161216f565b6000815180845261257f8160208601602086016126a9565b601f01601f19169290920160200192915050565b600083516125a58184602088016126a9565b8351908301906125b98183602088016126a9565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125f590830184612567565b9695505050505050565b6020815260006112836020830184612567565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561265a5761265a61273f565b500190565b60008261266e5761266e612755565b500490565b600081600019048311821515161561268d5761268d61273f565b500290565b6000828210156126a4576126a461273f565b500390565b60005b838110156126c45781810151838201526020016126ac565b838111156111375750506000910152565b600181811c908216806126e957607f821691505b6020821081141561270a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127245761272461273f565b5060010190565b60008261273a5761273a612755565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ed57600080fdfea2646970667358221220b983740c261394d5b5b1e2f55528de2269e374c152c28a6e6da4a59e7855910064736f6c63430008040033
Deployed Bytecode Sourcemap
53438:99:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23257:305;;;;;;;;;;-1:-1:-1;23257:305:0;;;;;:::i;:::-;;:::i;:::-;;;10001:14:1;;9994:22;9976:41;;9964:2;9949:18;23257:305:0;;;;;;;;26370:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27873:204::-;;;;;;;;;;-1:-1:-1;27873:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9299:32:1;;;9281:51;;9269:2;9254:18;27873:204:0;9236:102:1;52427:248:0;;;;;;;;;;-1:-1:-1;52427:248:0;;;;;:::i;:::-;;:::i;:::-;;27436:371;;;;;;;;;;-1:-1:-1;27436:371:0;;;;;:::i;:::-;;:::i;22506:303::-;;;;;;;;;;-1:-1:-1;22760:12:0;;22550:7;22744:13;:28;22506:303;;;17040:25:1;;;17028:2;17013:18;22506:303:0;16995:76:1;28738:170:0;;;;;;;;;;-1:-1:-1;28738:170:0;;;;;:::i;:::-;;:::i;47844:39::-;;;;;;;;;;;;;;;;53110:111;;;;;;;;;;-1:-1:-1;53110:111:0;;;;;:::i;:::-;;:::i;49752:98::-;;;;;;;;;;-1:-1:-1;49752:98:0;;;;;:::i;:::-;;:::i;52929:173::-;;;;;;;;;;;;;:::i;52176:243::-;;;;;;;;;;;;;:::i;28979:185::-;;;;;;;;;;-1:-1:-1;28979:185:0;;;;;:::i;:::-;;:::i;50851:692::-;;;;;;:::i;:::-;;:::i;49267:102::-;;;;;;;;;;-1:-1:-1;49267:102:0;;;;;:::i;:::-;;:::i;52805:116::-;;;;;;;;;;-1:-1:-1;52805:116:0;;;;;:::i;:::-;;:::i;26178:125::-;;;;;;;;;;-1:-1:-1;26178:125:0;;;;;:::i;:::-;;:::i;47800:37::-;;;;;;;;;;;;;;;;49168:91;;;;;;;;;;;;;:::i;23626:206::-;;;;;;;;;;-1:-1:-1;23626:206:0;;;;;:::i;:::-;;:::i;44330:103::-;;;;;;;;;;;;;:::i;48303:635::-;;;;;;;;;;-1:-1:-1;48303:635:0;;;;;:::i;:::-;;:::i;43679:87::-;;;;;;;;;;-1:-1:-1;43752:6:0;;-1:-1:-1;;;;;43752:6:0;43679:87;;53229:168;;;;;;;;;;-1:-1:-1;53229:168:0;;;;;:::i;:::-;;:::i;:::-;;;;16487:13:1;;-1:-1:-1;;;;;16483:39:1;16465:58;;16583:4;16571:17;;;16565:24;-1:-1:-1;;;;;16561:49:1;16539:20;;;16532:79;16669:17;;;16663:24;16656:32;16649:40;16627:20;;;16620:70;16453:2;16438:18;53229:168:0;16420:276:1;49410:334:0;;;;;;;;;;-1:-1:-1;49410:334:0;;;;;:::i;:::-;;:::i;26539:104::-;;;;;;;;;;;;;:::i;28149:287::-;;;;;;;;;;-1:-1:-1;28149:287:0;;;;;:::i;:::-;;:::i;49067:93::-;;;;;;;;;;-1:-1:-1;49111:7:0;23135:13;49067:93;49168:91;29235:369;;;;;;;;;;-1:-1:-1;29235:369:0;;;;;:::i;:::-;;:::i;49927:236::-;;;;;;;;;;-1:-1:-1;49927:236:0;;;;;:::i;:::-;;:::i;26714:318::-;;;;;;;;;;-1:-1:-1;26714:318:0;;;;;:::i;:::-;;:::i;50382:377::-;;;;;;:::i;:::-;;:::i;51971:197::-;;;;;;;;;;;;;:::i;47553:30::-;;;;;;;;;;-1:-1:-1;47553:30:0;;;;-1:-1:-1;;;47553:30:0;;;;;;;;;16875:6:1;16863:19;;;16845:38;;16833:2;16818:18;47553:30:0;16800:89:1;41208:39:0;;;;;;;;;;;;;;;;48946:113;;;;;;;;;;-1:-1:-1;48946:113:0;;;;;:::i;:::-;;:::i;28507:164::-;;;;;;;;;;-1:-1:-1;28507:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28628:25:0;;;28604:4;28628:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28507:164;50171:203;;;;;;;;;;-1:-1:-1;50171:203:0;;;;;:::i;:::-;;:::i;44588:201::-;;;;;;;;;;-1:-1:-1;44588:201:0;;;;;:::i;:::-;;:::i;23257:305::-;23359:4;-1:-1:-1;;;;;;23396:40:0;;-1:-1:-1;;;23396:40:0;;:105;;-1:-1:-1;;;;;;;23453:48:0;;-1:-1:-1;;;23453:48:0;23396:105;:158;;;-1:-1:-1;;;;;;;;;;18992:40:0;;;23518:36;23376:178;23257:305;-1:-1:-1;;23257:305:0:o;26370:100::-;26424:13;26457:5;26450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26370:100;:::o;27873:204::-;27941:7;27966:16;27974:7;27966;:16::i;:::-;27961:64;;27991:34;;-1:-1:-1;;;27991:34:0;;;;;;;;;;;27961:64;-1:-1:-1;28045:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28045:24:0;;27873:204::o;52427:248::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;;;;;;;;;52543:9:::1;52538:129;52558:27:::0;;::::1;52538:129;;;52605:62;52614:16;;52631:1;52614:19;;;;;-1:-1:-1::0;;;52614:19:0::1;;;;;;;;;:24;::::0;::::1;:19;::::0;;::::1;;:24:::0;;::::1;::::0;-1:-1:-1;52614:24:0::1;:::i;:::-;52640:16;;52657:1;52640:19;;;;;-1:-1:-1::0;;;52640:19:0::1;;;;;;;;;;;;;;:26;;;52605:8;:62::i;:::-;52587:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52538:129;;;;52427:248:::0;;:::o;27436:371::-;27509:13;27525:24;27541:7;27525:15;:24::i;:::-;27509:40;;27570:5;-1:-1:-1;;;;;27564:11:0;:2;-1:-1:-1;;;;;27564:11:0;;27560:48;;;27584:24;;-1:-1:-1;;;27584:24:0;;;;;;;;;;;27560:48;15979:10;-1:-1:-1;;;;;27625:21:0;;;;;;:63;;-1:-1:-1;27651:37:0;27668:5;15979:10;28507:164;:::i;27651:37::-;27650:38;27625:63;27621:138;;;27712:35;;-1:-1:-1;;;27712:35:0;;;;;;;;;;;27621:138;27771:28;27780:2;27784:7;27793:5;27771:8;:28::i;28738:170::-;28872:28;28882:4;28888:2;28892:7;28872:9;:28::i;53110:111::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;53185:28:::1;53204:8;53185:18;:28::i;:::-;53110:111:::0;:::o;49752:98::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;49826:6:::1;:16:::0;49752:98::o;52929:173::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;52998:49:::1;::::0;52980:12:::1;::::0;52998:10:::1;::::0;53021:21:::1;::::0;52980:12;52998:49;52980:12;52998:49;53021:21;52998:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52979:68;;;53066:7;53058:36;;;::::0;-1:-1:-1;;;53058:36:0;;14994:2:1;53058:36:0::1;::::0;::::1;14976:21:1::0;15033:2;15013:18;;;15006:30;-1:-1:-1;;;15052:18:1;;;15045:46;15108:18;;53058:36:0::1;14966:166:1::0;52176:243:0;52279:19;;52223:4;;-1:-1:-1;;;52279:19:0;;;;52330:25;;;;;:81;;;52391:20;52372:15;:39;;52330:81;52310:101;;;52176:243;:::o;28979:185::-;29117:39;29134:4;29140:2;29144:7;29117:39;;;;;;;;;;;;:16;:39::i;50851:692::-;51007:12;:10;:12::i;:::-;50999:59;;;;-1:-1:-1;;;50999:59:0;;10806:2:1;50999:59:0;;;10788:21:1;10845:2;10825:18;;;10818:30;10884:34;10864:18;;;10857:62;-1:-1:-1;;;10935:18:1;;;10928:32;10977:19;;50999:59:0;10778:224:1;50999:59:0;51122:15;;-1:-1:-1;;;51122:15:0;;;;51110:8;51091:16;51104:2;51091:12;:16::i;:::-;:27;;;;:::i;:::-;:46;;51069:118;;;;-1:-1:-1;;;51069:118:0;;15339:2:1;51069:118:0;;;15321:21:1;15378:2;15358:18;;;15351:30;-1:-1:-1;;;15397:18:1;;;15390:52;15459:18;;51069:118:0;15311:172:1;51069:118:0;51279:20;;-1:-1:-1;;8113:2:1;8109:15;;;8105:53;51279:20:0;;;8093:66:1;51254:12:0;;8175::1;;51279:20:0;;;;;;;;;;;;51269:31;;;;;;51254:46;;51333;51352:12;;51333:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51366:6:0;;;-1:-1:-1;51374:4:0;;-1:-1:-1;51333:18:0;:46::i;:::-;51311:111;;;;-1:-1:-1;;;51311:111:0;;14650:2:1;51311:111:0;;;14632:21:1;14689:2;14669:18;;;14662:30;-1:-1:-1;;;14708:18:1;;;14701:45;14763:18;;51311:111:0;14622:165:1;51311:111:0;51468:8;51454:11;;:22;;;;:::i;:::-;51441:9;:35;;51433:69;;;;-1:-1:-1;;;51433:69:0;;13220:2:1;51433:69:0;;;13202:21:1;13259:2;13239:18;;;13232:30;-1:-1:-1;;;13278:18:1;;;13271:51;13339:18;;51433:69:0;13192:171:1;51433:69:0;51513:22;51522:2;51526:8;51513;:22::i;:::-;50851:692;;;;;:::o;49267:102::-;49321:4;49345:16;49353:7;49345;:16::i;52805:116::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;52885:28:::1;:13;52901:12:::0;;52885:28:::1;:::i;26178:125::-:0;26242:7;26269:21;26282:7;26269:12;:21::i;:::-;:26;;26178:125;-1:-1:-1;;26178:125:0:o;49168:91::-;49208:13;49241:10;:8;:10::i;:::-;49234:17;;49168:91;:::o;23626:206::-;23690:7;-1:-1:-1;;;;;23714:19:0;;23710:60;;23742:28;;-1:-1:-1;;;23742:28:0;;;;;;;;;;;23710:60;-1:-1:-1;;;;;;23796:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23796:27:0;;23626:206::o;44330:103::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;44395:30:::1;44422:1;44395:18;:30::i;:::-;44330:103::o:0;48303:635::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;48472:15;48450:117:::1;;;::::0;-1:-1:-1;;;48450:117:0;;12018:2:1;48450:117:0::1;::::0;::::1;12000:21:1::0;12057:2;12037:18;;;12030:30;12096:34;12076:18;;;12069:62;-1:-1:-1;;;12147:18:1;;;12140:50;12207:19;;48450:117:0::1;11990:242:1::0;48450:117:0::1;22760:12:::0;;22550:7;22744:13;:28;48602:10:::1;:26;;;48580:126;;;::::0;-1:-1:-1;;;48580:126:0;;16040:2:1;48580:126:0::1;::::0;::::1;16022:21:1::0;16079:2;16059:18;;;16052:30;16118:34;16098:18;;;16091:62;-1:-1:-1;;;16169:18:1;;;16162:48;16227:19;;48580:126:0::1;16012:240:1::0;48580:126:0::1;48719:9;:22:::0;;;48752:11:::1;:26:::0;;;48789:9:::1;:22:::0;;-1:-1:-1;;;;48789:22:0::1;-1:-1:-1::0;;;48789:22:0::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;48829:101:::1;::::0;;17276:25:1;;;17332:2;17317:18;;17310:34;;;17360:18;;;17353:47;;;;48829:101:0::1;::::0;17264:2:1;17249:18;48829:101:0::1;;;;;;;48303:635:::0;;;:::o;53229:168::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;53368:21:0;53381:7;53368:12;:21::i;49410:334::-;49561:30;;-1:-1:-1;;15979:10:0;8113:2:1;8109:15;8105:53;49561:30:0;;;8093:66:1;49514:4:0;;;;8175:12:1;;49561:30:0;;;;;;;;;;;;49551:41;;;;;;49536:56;;49625:46;49644:12;;49625:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49658:6:0;;;-1:-1:-1;49666:4:0;;-1:-1:-1;49625:18:0;:46::i;:::-;49603:111;;;;-1:-1:-1;;;49603:111:0;;14650:2:1;49603:111:0;;;14632:21:1;14689:2;14669:18;;;14662:30;-1:-1:-1;;;14708:18:1;;;14701:45;14763:18;;49603:111:0;14622:165:1;49603:111:0;-1:-1:-1;49732:4:0;;49410:334;-1:-1:-1;;;49410:334:0:o;26539:104::-;26595:13;26628:7;26621:14;;;;;:::i;28149:287::-;-1:-1:-1;;;;;28248:24:0;;15979:10;28248:24;28244:54;;;28281:17;;-1:-1:-1;;;28281:17:0;;;;;;;;;;;28244:54;15979:10;28311:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28311:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28311:53:0;;;;;;;;;;28380:48;;9976:41:1;;;28311:42:0;;15979:10;28380:48;;9949:18:1;28380:48:0;;;;;;;28149:287;;:::o;29235:369::-;29402:28;29412:4;29418:2;29422:7;29402:9;:28::i;:::-;-1:-1:-1;;;;;29445:13:0;;8314:20;8362:8;;29445:76;;;;;29465:56;29496:4;29502:2;29506:7;29515:5;29465:30;:56::i;:::-;29464:57;29445:76;29441:156;;;29545:40;;-1:-1:-1;;;29545:40:0;;;;;;;;;;;29441:156;29235:369;;;;:::o;49927:236::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;50021:11:::1;::::0;::::1;::::0;;::::1;::::0;:30:::1;;-1:-1:-1::0;50036:15:0::1;::::0;::::1;::::0;::::1;50021:30;50013:64;;;::::0;-1:-1:-1;;;50013:64:0;;15690:2:1;50013:64:0::1;::::0;::::1;15672:21:1::0;15729:2;15709:18;;;15702:30;-1:-1:-1;;;15748:18:1;;;15741:51;15809:18;;50013:64:0::1;15662:171:1::0;50013:64:0::1;50088:15;:24:::0;;-1:-1:-1;;;;50123:32:0;-1:-1:-1;;;50088:24:0::1;::::0;;::::1;;-1:-1:-1::0;;;;50123:32:0;;-1:-1:-1;;;50123:32:0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;49927:236::o;26714:318::-;26787:13;26818:16;26826:7;26818;:16::i;:::-;26813:59;;26843:29;;-1:-1:-1;;;26843:29:0;;;;;;;;;;;26813:59;26885:21;26909:10;:8;:10::i;:::-;26885:34;;26943:7;26937:21;26962:1;26937:26;;:87;;;;;;;;;;;;;;;;;26990:7;26999:18;:7;:16;:18::i;:::-;26973:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26937:87;26930:94;26714:318;-1:-1:-1;;;26714:318:0:o;50382:377::-;48097:9;48110:10;48097:23;48089:66;;;;-1:-1:-1;;;48089:66:0;;13930:2:1;48089:66:0;;;13912:21:1;13969:2;13949:18;;;13942:30;14008:32;13988:18;;;13981:60;14058:18;;48089:66:0;13902:180:1;48089:66:0;50513:16:::1;:14;:16::i;:::-;50505:60;;;::::0;-1:-1:-1;;;50505:60:0;;13570:2:1;50505:60:0::1;::::0;::::1;13552:21:1::0;13609:2;13589:18;;;13582:30;13648:33;13628:18;;;13621:61;13699:18;;50505:60:0::1;13542:181:1::0;50505:60:0::1;47737:2;50584:21:::0;::::1;;50576:64;;;::::0;-1:-1:-1;;;50576:64:0;;12861:2:1;50576:64:0::1;::::0;::::1;12843:21:1::0;12900:2;12880:18;;;12873:30;12939:32;12919:18;;;12912:60;12989:18;;50576:64:0::1;12833:180:1::0;50576:64:0::1;50684:8;50672:9;;:20;;;;:::i;:::-;50659:9;:33;;50651:67;;;::::0;-1:-1:-1;;;50651:67:0;;13220:2:1;50651:67:0::1;::::0;::::1;13202:21:1::0;13259:2;13239:18;;;13232:30;-1:-1:-1;;;13278:18:1;;;13271:51;13339:18;;50651:67:0::1;13192:171:1::0;50651:67:0::1;50729:22;50738:2;50742:8;50729;:22::i;:::-;50382:377:::0;;:::o;51971:197::-;52066:15;;52014:4;;-1:-1:-1;;;52066:15:0;;;;52100:21;;;;;:60;;-1:-1:-1;52125:15:0;:35;;;51971:197;-1:-1:-1;51971:197:0:o;48946:113::-;-1:-1:-1;;;;;24010:19:0;;49004:7;24010:19;;;:12;:19;;;;;:32;-1:-1:-1;;;24010:32:0;;-1:-1:-1;;;;;24010:32:0;49031:20;23914:137;50171:203;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;50262:21:::1;::::0;::::1;50254:67;;;::::0;-1:-1:-1;;;50254:67:0;;11209:2:1;50254:67:0::1;::::0;::::1;11191:21:1::0;11248:2;11228:18;;;11221:30;11287:34;11267:18;;;11260:62;-1:-1:-1;;;11338:18:1;;;11331:31;11379:19;;50254:67:0::1;11181:223:1::0;50254:67:0::1;50332:15;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;50332:34:0::1;-1:-1:-1::0;;;;;50332:34:0;;::::1;::::0;;;::::1;::::0;;50171:203::o;44588:201::-;43752:6;;-1:-1:-1;;;;;43752:6:0;15979:10;43899:23;43891:68;;;;-1:-1:-1;;;43891:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44677:22:0;::::1;44669:73;;;::::0;-1:-1:-1;;;44669:73:0;;11611:2:1;44669:73:0::1;::::0;::::1;11593:21:1::0;11650:2;11630:18;;;11623:30;11689:34;11669:18;;;11662:62;-1:-1:-1;;;11740:18:1;;;11733:36;11786:19;;44669:73:0::1;11583:228:1::0;44669:73:0::1;44753:28;44772:8;44753:18;:28::i;29859:174::-:0;29916:4;29980:13;;29970:7;:23;29940:85;;;;-1:-1:-1;;29998:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;29998:27:0;;;;29997:28;;29859:174::o;51551:375::-;51668:9;;-1:-1:-1;;;51668:9:0;;;;51656:8;51640:13;22760:12;;22550:7;22744:13;:28;;22506:303;51640:13;:24;;;;:::i;:::-;:37;;51618:140;;;;-1:-1:-1;;;51618:140:0;;12439:2:1;51618:140:0;;;12421:21:1;12478:2;12458:18;;;12451:30;12517:34;12497:18;;;12490:62;-1:-1:-1;;;12568:18:1;;;12561:51;12629:19;;51618:140:0;12411:243:1;51618:140:0;51802:1;51791:8;:12;:40;;;;-1:-1:-1;47651:2:0;51807:24;;;51791:40;51769:113;;;;-1:-1:-1;;;51769:113:0;;10454:2:1;51769:113:0;;;10436:21:1;10493:2;10473:18;;;10466:30;10532:25;10512:18;;;10505:53;10575:18;;51769:113:0;10426:173:1;51769:113:0;51895:23;51905:2;51909:8;51895:9;:23::i;38016:196::-;38131:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38131:29:0;-1:-1:-1;;;;;38131:29:0;;;;;;;;;38176:28;;38131:24;;38176:28;;;;;;;38016:196;;;:::o;32959:2130::-;33074:35;33112:21;33125:7;33112:12;:21::i;:::-;33074:59;;33172:4;-1:-1:-1;;;;;33150:26:0;:13;:18;;;-1:-1:-1;;;;;33150:26:0;;33146:67;;33185:28;;-1:-1:-1;;;33185:28:0;;;;;;;;;;;33146:67;33226:22;15979:10;-1:-1:-1;;;;;33252:20:0;;;;:73;;-1:-1:-1;33289:36:0;33306:4;15979:10;28507:164;:::i;33289:36::-;33252:126;;;-1:-1:-1;15979:10:0;33342:20;33354:7;33342:11;:20::i;:::-;-1:-1:-1;;;;;33342:36:0;;33252:126;33226:153;;33397:17;33392:66;;33423:35;;-1:-1:-1;;;33423:35:0;;;;;;;;;;;33392:66;-1:-1:-1;;;;;33473:16:0;;33469:52;;33498:23;;-1:-1:-1;;;33498:23:0;;;;;;;;;;;33469:52;33642:35;33659:1;33663:7;33672:4;33642:8;:35::i;:::-;-1:-1:-1;;;;;33973:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;33973:31:0;;;-1:-1:-1;;;;;33973:31:0;;;-1:-1:-1;;33973:31:0;;;;;;;34019:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34019:29:0;;;;;;;;;;;34099:20;;;:11;:20;;;;;;34134:18;;-1:-1:-1;;;;;;34167:49:0;;;;-1:-1:-1;;;34200:15:0;34167:49;;;;;;;;;;34490:11;;34550:24;;;;;34593:13;;34099:20;;34550:24;;34593:13;34589:384;;34803:13;;34788:11;:28;34784:174;;34841:20;;34910:28;;;;-1:-1:-1;;;;;34884:54:0;-1:-1:-1;;;34884:54:0;-1:-1:-1;;;;;;34884:54:0;;;-1:-1:-1;;;;;34841:20:0;;34884:54;;;;34784:174;32959:2130;;;35020:7;35016:2;-1:-1:-1;;;;;35001:27:0;35010:4;-1:-1:-1;;;;;35001:27:0;;;;;;;;;;;35039:42;29235:369;41360:1332;41430:13;41426:49;;41452:23;;-1:-1:-1;;;41452:23:0;;;;;;;;;;;41426:49;22336:7;41490:13;41486:64;;41531:19;;-1:-1:-1;;;41531:19:0;;;;;;;;;;;41486:64;41597:24;;41636:30;41632:106;;-1:-1:-1;22336:7:0;41632:106;41781:13;;41752:25;:42;41748:81;;41803:26;;-1:-1:-1;;;41803:26:0;;;;;;;;;;;41748:81;41975:16;42131:13;41994:36;;;-1:-1:-1;;41994:40:0;;;-1:-1:-1;42112:97:0;;;-1:-1:-1;42176:13:0;;-1:-1:-1;;42176:17:0;42112:97;42242:25;42225:393;42274:8;42269:1;:13;42225:393;;42343:1;42312:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;42312:19:0;:33;:59;;;;-1:-1:-1;42350:14:0;;;;:11;:14;;;;;:21;-1:-1:-1;;;42350:21:0;;;;42349:22;42312:59;42308:295;;;42396:31;42430:15;42443:1;42430:12;:15::i;:::-;42490:14;;;42468;;;:11;:14;;;;;;;;:36;;42559:24;;;;;-1:-1:-1;;;;;42527:56:0;-1:-1:-1;;;42527:56:0;-1:-1:-1;;;;;;42527:56:0;;;-1:-1:-1;;;;;42468:36:0;;;42527:56;;;;;;;-1:-1:-1;42308:295:0;42284:3;;42225:393;;;-1:-1:-1;42672:1:0;42661:12;42634:24;:39;-1:-1:-1;;41360:1332:0:o;45936:190::-;46061:4;46114;46085:25;46098:5;46105:4;46085:12;:25::i;:::-;:33;;45936:190;-1:-1:-1;;;;45936:190:0:o;25007:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;25118:7:0;25201:13;;25194:4;:20;25163:886;;;25235:31;25269:17;;;:11;:17;;;;;;;;;25235:51;;;;;;;;;-1:-1:-1;;;;;25235:51:0;;;;-1:-1:-1;;;25235:51:0;;-1:-1:-1;;;;;25235:51:0;;;;;;;;-1:-1:-1;;;25235:51:0;;;;;;;;;;;;;;25305:729;;25355:14;;-1:-1:-1;;;;;25355:28:0;;25351:101;;25419:9;25007:1109;-1:-1:-1;;;25007:1109:0:o;25351:101::-;-1:-1:-1;;;25794:6:0;25839:17;;;;:11;:17;;;;;;;;;25827:29;;;;;;;;;-1:-1:-1;;;;;25827:29:0;;;;;-1:-1:-1;;;25827:29:0;;-1:-1:-1;;;;;25827:29:0;;;;;;;;-1:-1:-1;;;25827:29:0;;;;;;;;;;;;;25887:28;25883:109;;25955:9;25007:1109;-1:-1:-1;;;25007:1109:0:o;25883:109::-;25754:261;;;25163:886;;26077:31;;-1:-1:-1;;;26077:31:0;;;;;;;;;;;52683:114;52743:13;52776;52769:20;;;;;:::i;44949:191::-;45042:6;;;-1:-1:-1;;;;;45059:17:0;;;-1:-1:-1;;;;;;45059:17:0;;;;;;;45092:40;;45042:6;;;45059:17;45042:6;;45092:40;;45023:16;;45092:40;44949:191;;:::o;38704:667::-;38888:72;;-1:-1:-1;;;38888:72:0;;38867:4;;-1:-1:-1;;;;;38888:36:0;;;;;:72;;15979:10;;38939:4;;38945:7;;38954:5;;38888:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38888:72:0;;;;;;;;-1:-1:-1;;38888:72:0;;;;;;;;;;;;:::i;:::-;;;38884:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39122:13:0;;39118:235;;39168:40;;-1:-1:-1;;;39168:40:0;;;;;;;;;;;39118:235;39311:6;39305:13;39296:6;39292:2;39288:15;39281:38;38884:480;-1:-1:-1;;;;;;39007:55:0;-1:-1:-1;;;39007:55:0;;-1:-1:-1;38884:480:0;38704:667;;;;;;:::o;16376:723::-;16432:13;16653:10;16649:53;;-1:-1:-1;;16680:10:0;;;;;;;;;;;;-1:-1:-1;;;16680:10:0;;;;;16376:723::o;16649:53::-;16727:5;16712:12;16768:78;16775:9;;16768:78;;16801:8;;;;:::i;:::-;;-1:-1:-1;16824:10:0;;-1:-1:-1;16832:2:0;16824:10;;:::i;:::-;;;16768:78;;;16856:19;16888:6;-1:-1:-1;;;;;16878:17:0;;;;;-1:-1:-1;;;16878:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16878:17:0;;16856:39;;16906:154;16913:10;;16906:154;;16940:11;16950:1;16940:11;;:::i;:::-;;-1:-1:-1;17009:10:0;17017:2;17009:5;:10;:::i;:::-;16996:24;;:2;:24;:::i;:::-;16983:39;;16966:6;16973;16966:14;;;;;;-1:-1:-1;;;16966:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;16966:56:0;;;;;;;;-1:-1:-1;17037:11:0;17046:2;17037:11;;:::i;:::-;;;16906:154;;30041:104;30110:27;30120:2;30124:8;30110:27;;;;;;;;;;;;:9;:27::i;46488:701::-;46571:7;46614:4;46571:7;46629:523;46653:5;:12;46649:1;:16;46629:523;;;46687:20;46710:5;46716:1;46710:8;;;;;;-1:-1:-1;;;46710:8:0;;;;;;;;;;;;;;;46687:31;;46753:12;46737;:28;46733:408;;46890:44;;;;;;8355:19:1;;;8390:12;;;8383:28;;;8427:12;;46890:44:0;;;;;;;;;;;;46880:55;;;;;;46865:70;;46733:408;;;47080:44;;;;;;8355:19:1;;;8390:12;;;8383:28;;;8427:12;;47080:44:0;;;;;;;;;;;;47070:55;;;;;;47055:70;;46733:408;-1:-1:-1;46667:3:0;;;;:::i;:::-;;;;46629:523;;;-1:-1:-1;47169:12:0;46488:701;-1:-1:-1;;;46488:701:0:o;30508:163::-;30631:32;30637:2;30641:8;30651:5;30658:4;31069:20;31092:13;-1:-1:-1;;;;;31120:16:0;;31116:48;;31145:19;;-1:-1:-1;;;31145:19:0;;;;;;;;;;;31116:48;31179:13;31175:44;;31201:18;;-1:-1:-1;;;31201:18:0;;;;;;;;;;;31175:44;-1:-1:-1;;;;;31570:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;31629:49:0;;-1:-1:-1;;;;;31570:44:0;;;;;;;31629:49;;;-1:-1:-1;;;;;31570:44:0;;;;;;31629:49;;;;;;;;;;;;;;;;31695:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;31745:66:0;;;;-1:-1:-1;;;31795:15:0;31745:66;;;;;;;;;;31695:25;31892:23;;;31936:4;:23;;;;-1:-1:-1;;;;;;31944:13:0;;8314:20;8362:8;;31944:15;31932:641;;;31980:314;32011:38;;32036:12;;-1:-1:-1;;;;;32011:38:0;;;32028:1;;32011:38;;32028:1;;32011:38;32077:69;32116:1;32120:2;32124:14;;;;;;32140:5;32077:30;:69::i;:::-;32072:174;;32182:40;;-1:-1:-1;;;32182:40:0;;;;;;;;;;;32072:174;32289:3;32273:12;:19;;31980:314;;32375:12;32358:13;;:29;32354:43;;32389:8;;;32354:43;31932:641;;;32438:120;32469:40;;32494:14;;;;;-1:-1:-1;;;;;32469:40:0;;;32486:1;;32469:40;;32486:1;;32469:40;32553:3;32537:12;:19;;32438:120;;31932:641;-1:-1:-1;32587:13:0;:28;32637:60;29235:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:391::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:2;;342:6;334;327:22;286:2;-1:-1:-1;370:20:1;;-1:-1:-1;;;;;402:30:1;;399:2;;;452:8;442;435:26;399:2;496:4;488:6;484:17;472:29;;556:3;549:4;539:6;536:1;532:14;524:6;520:27;516:38;513:47;510:2;;;573:1;570;563:12;510:2;276:307;;;;;:::o;588:159::-;655:20;;715:6;704:18;;694:29;;684:2;;737:1;734;727:12;752:163;819:20;;879:10;868:22;;858:33;;848:2;;905:1;902;895:12;920:196;979:6;1032:2;1020:9;1011:7;1007:23;1003:32;1000:2;;;1053:6;1045;1038:22;1000:2;1081:29;1100:9;1081:29;:::i;1121:270::-;1189:6;1197;1250:2;1238:9;1229:7;1225:23;1221:32;1218:2;;;1271:6;1263;1256:22;1218:2;1299:29;1318:9;1299:29;:::i;:::-;1289:39;;1347:38;1381:2;1370:9;1366:18;1347:38;:::i;:::-;1337:48;;1208:183;;;;;:::o;1396:338::-;1473:6;1481;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1591:29;1610:9;1591:29;:::i;:::-;1581:39;;1639:38;1673:2;1662:9;1658:18;1639:38;:::i;:::-;1629:48;;1724:2;1713:9;1709:18;1696:32;1686:42;;1500:234;;;;;:::o;1739:1183::-;1834:6;1842;1850;1858;1911:3;1899:9;1890:7;1886:23;1882:33;1879:2;;;1933:6;1925;1918:22;1879:2;1961:29;1980:9;1961:29;:::i;:::-;1951:39;;2009:38;2043:2;2032:9;2028:18;2009:38;:::i;:::-;1999:48;;2094:2;2083:9;2079:18;2066:32;2056:42;;2149:2;2138:9;2134:18;2121:32;-1:-1:-1;;;;;2213:2:1;2205:6;2202:14;2199:2;;;2234:6;2226;2219:22;2199:2;2277:6;2266:9;2262:22;2252:32;;2322:7;2315:4;2311:2;2307:13;2303:27;2293:2;;2349:6;2341;2334:22;2293:2;2390;2377:16;2412:2;2408;2405:10;2402:2;;;2418:18;;:::i;:::-;2493:2;2487:9;2461:2;2547:13;;-1:-1:-1;;2543:22:1;;;2567:2;2539:31;2535:40;2523:53;;;2591:18;;;2611:22;;;2588:46;2585:2;;;2637:18;;:::i;:::-;2677:10;2673:2;2666:22;2712:2;2704:6;2697:18;2752:7;2747:2;2742;2738;2734:11;2730:20;2727:33;2724:2;;;2778:6;2770;2763:22;2724:2;2839;2834;2830;2826:11;2821:2;2813:6;2809:15;2796:46;2862:15;;;2879:2;2858:24;2851:40;;;;1869:1053;;;;-1:-1:-1;1869:1053:1;;-1:-1:-1;;;;1869:1053:1:o;2927:367::-;2992:6;3000;3053:2;3041:9;3032:7;3028:23;3024:32;3021:2;;;3074:6;3066;3059:22;3021:2;3102:29;3121:9;3102:29;:::i;:::-;3092:39;;3181:2;3170:9;3166:18;3153:32;3228:5;3221:13;3214:21;3207:5;3204:32;3194:2;;3255:6;3247;3240:22;3194:2;3283:5;3273:15;;;3011:283;;;;;:::o;3299:264::-;3367:6;3375;3428:2;3416:9;3407:7;3403:23;3399:32;3396:2;;;3449:6;3441;3434:22;3396:2;3477:29;3496:9;3477:29;:::i;:::-;3467:39;3553:2;3538:18;;;;3525:32;;-1:-1:-1;;;3386:177:1:o;3568:599::-;3672:6;3680;3688;3696;3749:2;3737:9;3728:7;3724:23;3720:32;3717:2;;;3770:6;3762;3755:22;3717:2;3798:29;3817:9;3798:29;:::i;:::-;3788:39;;3874:2;3863:9;3859:18;3846:32;3836:42;;3929:2;3918:9;3914:18;3901:32;-1:-1:-1;;;;;3948:6:1;3945:30;3942:2;;;3993:6;3985;3978:22;3942:2;4037:70;4099:7;4090:6;4079:9;4075:22;4037:70;:::i;:::-;3707:460;;;;-1:-1:-1;4126:8:1;-1:-1:-1;;;;3707:460:1:o;4172:457::-;4258:6;4266;4319:2;4307:9;4298:7;4294:23;4290:32;4287:2;;;4340:6;4332;4325:22;4287:2;4385:9;4372:23;-1:-1:-1;;;;;4410:6:1;4407:30;4404:2;;;4455:6;4447;4440:22;4404:2;4499:70;4561:7;4552:6;4541:9;4537:22;4499:70;:::i;:::-;4588:8;;4473:96;;-1:-1:-1;4277:352:1;-1:-1:-1;;;;4277:352:1:o;4634:697::-;4752:6;4760;4813:2;4801:9;4792:7;4788:23;4784:32;4781:2;;;4834:6;4826;4819:22;4781:2;4879:9;4866:23;-1:-1:-1;;;;;4949:2:1;4941:6;4938:14;4935:2;;;4970:6;4962;4955:22;4935:2;5013:6;5002:9;4998:22;4988:32;;5058:7;5051:4;5047:2;5043:13;5039:27;5029:2;;5085:6;5077;5070:22;5029:2;5130;5117:16;5156:2;5148:6;5145:14;5142:2;;;5177:6;5169;5162:22;5142:2;5235:7;5230:2;5220:6;5217:1;5213:14;5209:2;5205:23;5201:32;5198:45;5195:2;;;5261:6;5253;5246:22;5195:2;5297;5289:11;;;;;5319:6;;-1:-1:-1;4771:560:1;;-1:-1:-1;;;;4771:560:1:o;5336:190::-;5395:6;5448:2;5436:9;5427:7;5423:23;5419:32;5416:2;;;5469:6;5461;5454:22;5416:2;-1:-1:-1;5497:23:1;;5406:120;-1:-1:-1;5406:120:1:o;5531:255::-;5589:6;5642:2;5630:9;5621:7;5617:23;5613:32;5610:2;;;5663:6;5655;5648:22;5610:2;5707:9;5694:23;5726:30;5750:5;5726:30;:::i;5791:259::-;5860:6;5913:2;5901:9;5892:7;5888:23;5884:32;5881:2;;;5934:6;5926;5919:22;5881:2;5971:9;5965:16;5990:30;6014:5;5990:30;:::i;6055:642::-;6126:6;6134;6187:2;6175:9;6166:7;6162:23;6158:32;6155:2;;;6208:6;6200;6193:22;6155:2;6253:9;6240:23;-1:-1:-1;;;;;6323:2:1;6315:6;6312:14;6309:2;;;6344:6;6336;6329:22;6309:2;6387:6;6376:9;6372:22;6362:32;;6432:7;6425:4;6421:2;6417:13;6413:27;6403:2;;6459:6;6451;6444:22;6403:2;6504;6491:16;6530:2;6522:6;6519:14;6516:2;;;6551:6;6543;6536:22;6516:2;6601:7;6596:2;6587:6;6583:2;6579:15;6575:24;6572:37;6569:2;;;6627:6;6619;6612:22;6702:194;6760:6;6813:2;6801:9;6792:7;6788:23;6784:32;6781:2;;;6834:6;6826;6819:22;6781:2;6862:28;6880:9;6862:28;:::i;7096:330::-;7172:6;7180;7188;7241:2;7229:9;7220:7;7216:23;7212:32;7209:2;;;7262:6;7254;7247:22;7209:2;7303:9;7290:23;7280:33;;7360:2;7349:9;7345:18;7332:32;7322:42;;7383:37;7416:2;7405:9;7401:18;7383:37;:::i;:::-;7373:47;;7199:227;;;;;:::o;7431:266::-;7497:6;7505;7558:2;7546:9;7537:7;7533:23;7529:32;7526:2;;;7579:6;7571;7564:22;7526:2;7607:28;7625:9;7607:28;:::i;:::-;7597:38;;7654:37;7687:2;7676:9;7672:18;7654:37;:::i;7702:257::-;7743:3;7781:5;7775:12;7808:6;7803:3;7796:19;7824:63;7880:6;7873:4;7868:3;7864:14;7857:4;7850:5;7846:16;7824:63;:::i;:::-;7941:2;7920:15;-1:-1:-1;;7916:29:1;7907:39;;;;7948:4;7903:50;;7751:208;-1:-1:-1;;7751:208:1:o;8450:470::-;8629:3;8667:6;8661:13;8683:53;8729:6;8724:3;8717:4;8709:6;8705:17;8683:53;:::i;:::-;8799:13;;8758:16;;;;8821:57;8799:13;8758:16;8855:4;8843:17;;8821:57;:::i;:::-;8894:20;;8637:283;-1:-1:-1;;;;8637:283:1:o;9343:488::-;-1:-1:-1;;;;;9612:15:1;;;9594:34;;9664:15;;9659:2;9644:18;;9637:43;9711:2;9696:18;;9689:34;;;9759:3;9754:2;9739:18;;9732:31;;;9537:4;;9780:45;;9805:19;;9797:6;9780:45;:::i;:::-;9772:53;9546:285;-1:-1:-1;;;;;;9546:285:1:o;10028:219::-;10177:2;10166:9;10159:21;10140:4;10197:44;10237:2;10226:9;10222:18;10214:6;10197:44;:::i;14087:356::-;14289:2;14271:21;;;14308:18;;;14301:30;14367:34;14362:2;14347:18;;14340:62;14434:2;14419:18;;14261:182::o;17411:128::-;17451:3;17482:1;17478:6;17475:1;17472:13;17469:2;;;17488:18;;:::i;:::-;-1:-1:-1;17524:9:1;;17459:80::o;17544:120::-;17584:1;17610;17600:2;;17615:18;;:::i;:::-;-1:-1:-1;17649:9:1;;17590:74::o;17669:168::-;17709:7;17775:1;17771;17767:6;17763:14;17760:1;17757:21;17752:1;17745:9;17738:17;17734:45;17731:2;;;17782:18;;:::i;:::-;-1:-1:-1;17822:9:1;;17721:116::o;17842:125::-;17882:4;17910:1;17907;17904:8;17901:2;;;17915:18;;:::i;:::-;-1:-1:-1;17952:9:1;;17891:76::o;17972:258::-;18044:1;18054:113;18068:6;18065:1;18062:13;18054:113;;;18144:11;;;18138:18;18125:11;;;18118:39;18090:2;18083:10;18054:113;;;18185:6;18182:1;18179:13;18176:2;;;-1:-1:-1;;18220:1:1;18202:16;;18195:27;18025:205::o;18235:380::-;18314:1;18310:12;;;;18357;;;18378:2;;18432:4;18424:6;18420:17;18410:27;;18378:2;18485;18477:6;18474:14;18454:18;18451:38;18448:2;;;18531:10;18526:3;18522:20;18519:1;18512:31;18566:4;18563:1;18556:15;18594:4;18591:1;18584:15;18448:2;;18290:325;;;:::o;18620:135::-;18659:3;-1:-1:-1;;18680:17:1;;18677:2;;;18700:18;;:::i;:::-;-1:-1:-1;18747:1:1;18736:13;;18667:88::o;18760:112::-;18792:1;18818;18808:2;;18823:18;;:::i;:::-;-1:-1:-1;18857:9:1;;18798:74::o;18877:127::-;18938:10;18933:3;18929:20;18926:1;18919:31;18969:4;18966:1;18959:15;18993:4;18990:1;18983:15;19009:127;19070:10;19065:3;19061:20;19058:1;19051:31;19101:4;19098:1;19091:15;19125:4;19122:1;19115:15;19141:127;19202:10;19197:3;19193:20;19190:1;19183:31;19233:4;19230:1;19223:15;19257:4;19254:1;19247:15;19273:131;-1:-1:-1;;;;;;19347:32:1;;19337:43;;19327:2;;19394:1;19391;19384:12
Swarm Source
ipfs://b983740c261394d5b5b1e2f55528de2269e374c152c28a6e6da4a59e78559100
Loading...
Loading
Loading...
Loading
OVERVIEW
** Metaplaces World is a collection of Metaverse lands NFTs where you can build your Metaplaces houses, offices and commerces. ** There are various types of Metaplaces world land, each with their own environment. Combine multiple land NFTs to generate a larger plot of land and...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.