GWEI GUYS: GWEI Token
Source Code
Token Contract
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 6,213 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24179152 | 20 days ago | IN | 0 ETH | 0.00000172 | ||||
| Set Approval For... | 24170190 | 21 days ago | IN | 0 ETH | 0.00003139 | ||||
| Safe Transfer Fr... | 24161235 | 22 days ago | IN | 0 ETH | 0.00000346 | ||||
| Safe Transfer Fr... | 24161231 | 22 days ago | IN | 0 ETH | 0.00000423 | ||||
| Set Approval For... | 24082685 | 33 days ago | IN | 0 ETH | 0.0000011 | ||||
| Set Approval For... | 23905908 | 58 days ago | IN | 0 ETH | 0.00000179 | ||||
| Set Approval For... | 23458363 | 121 days ago | IN | 0 ETH | 0.00000526 | ||||
| Set Approval For... | 23410203 | 127 days ago | IN | 0 ETH | 0.00000714 | ||||
| Safe Transfer Fr... | 23280710 | 145 days ago | IN | 0 ETH | 0.00000804 | ||||
| Set Approval For... | 22387071 | 270 days ago | IN | 0 ETH | 0.00003768 | ||||
| Set Approval For... | 22248055 | 290 days ago | IN | 0 ETH | 0.00002567 | ||||
| Set Approval For... | 22185784 | 298 days ago | IN | 0 ETH | 0.00002208 | ||||
| Set Approval For... | 22181961 | 299 days ago | IN | 0 ETH | 0.00005013 | ||||
| Set Approval For... | 22181878 | 299 days ago | IN | 0 ETH | 0.00005907 | ||||
| Set Approval For... | 22129233 | 306 days ago | IN | 0 ETH | 0.00003901 | ||||
| Set Approval For... | 21966910 | 329 days ago | IN | 0 ETH | 0.00004848 | ||||
| Set Approval For... | 21707861 | 365 days ago | IN | 0 ETH | 0.00009001 | ||||
| Set Approval For... | 21524820 | 391 days ago | IN | 0 ETH | 0.00029653 | ||||
| Set Approval For... | 21524579 | 391 days ago | IN | 0 ETH | 0.00031084 | ||||
| Safe Transfer Fr... | 21104827 | 449 days ago | IN | 0 ETH | 0.0002861 | ||||
| Safe Transfer Fr... | 21104824 | 449 days ago | IN | 0 ETH | 0.00028448 | ||||
| Safe Transfer Fr... | 21104820 | 449 days ago | IN | 0 ETH | 0.00029357 | ||||
| Safe Transfer Fr... | 21104192 | 450 days ago | IN | 0 ETH | 0.00050719 | ||||
| Set Approval For... | 21069600 | 454 days ago | IN | 0 ETH | 0.00039735 | ||||
| Set Approval For... | 20376430 | 551 days ago | IN | 0 ETH | 0.00020828 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15739288 | 1201 days ago | 4.664 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
GWEIGUYS
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-10-13
*/
/**
________ ___ __ _______ ___ ________ ___ ___ ___ ___ ________
|\ ____\|\ \ |\ \|\ ___ \ |\ \ |\ ____\|\ \|\ \ |\ \ / /|\ ____\
\ \ \___|\ \ \ \ \ \ \ __/|\ \ \ \ \ \___|\ \ \\\ \ \ \ \/ / | \ \___|_
\ \ \ __\ \ \ __\ \ \ \ \_|/_\ \ \ \ \ \ __\ \ \\\ \ \ \ / / \ \_____ \
\ \ \|\ \ \ \|\__\_\ \ \ \_|\ \ \ \ \ \ \|\ \ \ \\\ \ \/ / / \|____|\ \
\ \_______\ \____________\ \_______\ \__\ \ \_______\ \_______\__/ / / ____\_\ \
\|_______|\|____________|\|_______|\|__| \|_______|\|_______|\___/ / |\_________\
\|___|/ \|_________|
*/
// SPDX-License-Identifier: MIT
//Developer Info:
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: contracts/new.sol
pragma solidity ^0.8.4;
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 {}
}
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);
}
}
pragma solidity ^0.8.7;
contract GWEIGUYS is ERC721A, Ownable {
using Strings for uint256;
string private uriPrefix ;
string private uriSuffix = ".json";
string public hiddenURL;
uint256 public cost = 0.003 ether;
uint16 public maxSupply = 4269;
uint8 public maxMintAmountPerTx = 11;
uint8 public maxFreeMintAmountPerWallet = 1;
bool public paused = true;
bool public reveal =false;
mapping (address => uint8) public NFTPerPublicAddress;
constructor() ERC721A("GWEI GUYS", "GWEI") {
}
function mint(uint8 _mintAmount) external payable {
uint16 totalSupply = uint16(totalSupply());
uint8 nft = NFTPerPublicAddress[msg.sender];
require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction.");
require(!paused, "The contract is paused!");
if(nft >= maxFreeMintAmountPerWallet)
{
require(msg.value >= cost * _mintAmount, "Insufficient funds!");
}
else {
uint8 costAmount = _mintAmount + nft;
if(costAmount > maxFreeMintAmountPerWallet)
{
costAmount = costAmount - maxFreeMintAmountPerWallet;
require(msg.value >= cost * costAmount, "Insufficient funds!");
}
}
_safeMint(msg.sender , _mintAmount);
NFTPerPublicAddress[msg.sender] = _mintAmount + nft;
delete totalSupply;
delete _mintAmount;
}
function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
uint16 totalSupply = uint16(totalSupply());
require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
_safeMint(_receiver , _mintAmount);
delete _mintAmount;
delete _receiver;
delete totalSupply;
}
function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
uint16 totalSupply = uint16(totalSupply());
uint totalAmount = _amountPerAddress * addresses.length;
require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply.");
for (uint256 i = 0; i < addresses.length; i++) {
_safeMint(addresses[i], _amountPerAddress);
}
delete _amountPerAddress;
delete totalSupply;
}
function setMaxSupply(uint16 _maxSupply) external onlyOwner {
maxSupply = _maxSupply;
}
function tokenURI(uint256 _tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(_tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if ( reveal == false)
{
return hiddenURL;
}
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
: "";
}
function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
maxFreeMintAmountPerWallet = _limit;
delete _limit;
}
function setUriPrefix(string memory _uriPrefix) external onlyOwner {
uriPrefix = _uriPrefix;
}
function setHiddenUri(string memory _uriPrefix) external onlyOwner {
hiddenURL = _uriPrefix;
}
function setPaused() external onlyOwner {
paused = !paused;
}
function setCost(uint _cost) external onlyOwner{
cost = _cost;
}
function setRevealed() external onlyOwner{
reveal = !reveal;
}
function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
maxMintAmountPerTx = _maxtx;
}
function withdraw() external onlyOwner {
uint _balance = address(this).balance;
payable(msg.sender).transfer(_balance );
}
function _baseURI() internal view override returns (string memory) {
return uriPrefix;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000125565b50660aa87bee538000600c55600d805465ffffffffffff19166401010b10ad1790553480156200005757600080fd5b50604080518082018252600981526847574549204755595360b81b6020808301918252835180850190945260048452634757454960e01b908401528151919291620000a59160029162000125565b508051620000bb90600390602084019062000125565b50506000805550620000cd33620000d3565b62000208565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013390620001cb565b90600052602060002090601f016020900481019282620001575760008555620001a2565b82601f106200017257805160ff1916838001178555620001a2565b82800160010185558215620001a2579182015b82811115620001a257825182559160200191906001019062000185565b50620001b0929150620001b4565b5090565b5b80821115620001b05760008155600101620001b5565b600181811c90821680620001e057607f821691505b602082108114156200020257634e487b7160e01b600052602260045260246000fd5b50919050565b6122f480620002186000396000f3fe60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c71461062c578063e985e9c51461065c578063eef440af146106a5578063f2fde38b146106ba578063f8bf5172146106da57600080fd5b8063aa0622901461057e578063b88d4fde1461059e578063c87b56dd146105be578063cffb6e20146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b146104d657806394354fd0146104f457806395d89b4114610526578063a22cb4651461053b578063a475b5dd1461055b57600080fd5b80636ecd23061461046e57806370a0823114610481578063715018a6146104a15780637ec4a659146104b657600080fd5b80632f6f98e1116101a657806342842e0e1161017557806342842e0e146103cc57806344a0d68a146103ec5780634d9c18481461040c5780635c975abb1461042c5780636352211e1461044e57600080fd5b80632f6f98e11461036d57806337a66d851461038d5780633bd64968146103a25780633ccfd60b146103b757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd4565b6106fb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e57565b61074d565b005b34801561028257600080fd5b5061028b610798565b60405161024b9190612075565b3480156102a457600080fd5b506102b86102b3366004611e8e565b61082a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611daa565b61086e565b3480156102fc57600080fd5b5061027461030b366004611e0e565b6108fc565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b5060015460005403610326565b34801561035957600080fd5b50610274610368366004611cb6565b61093d565b34801561037957600080fd5b50610274610388366004611e72565b610948565b34801561039957600080fd5b506102746109c5565b3480156103ae57600080fd5b50610274610a12565b3480156103c357600080fd5b50610274610a61565b3480156103d857600080fd5b506102746103e7366004611cb6565b610aba565b3480156103f857600080fd5b50610274610407366004611e8e565b610ad5565b34801561041857600080fd5b50610274610427366004611ea7565b610b04565b34801561043857600080fd5b50600d5461023f90640100000000900460ff1681565b34801561045a57600080fd5b506102b8610469366004611e8e565b610b4e565b61027461047c366004611ea7565b610b60565b34801561048d57600080fd5b5061032661049c366004611c68565b610dc7565b3480156104ad57600080fd5b50610274610e16565b3480156104c257600080fd5b506102746104d1366004611e0e565b610e4c565b3480156104e257600080fd5b506008546001600160a01b03166102b8565b34801561050057600080fd5b50600d546105149062010000900460ff1681565b60405160ff909116815260200161024b565b34801561053257600080fd5b5061028b610e89565b34801561054757600080fd5b50610274610556366004611d6e565b610e98565b34801561056757600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561058a57600080fd5b50610274610599366004611ea7565b610f2e565b3480156105aa57600080fd5b506102746105b9366004611cf2565b610f76565b3480156105ca57600080fd5b5061028b6105d9366004611e8e565b610fc7565b3480156105ea57600080fd5b506102746105f9366004611ec2565b61113a565b34801561060a57600080fd5b50600d546106199061ffff1681565b60405161ffff909116815260200161024b565b34801561063857600080fd5b50610514610647366004611c68565b600e6020526000908152604090205460ff1681565b34801561066857600080fd5b5061023f610677366004611c83565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b157600080fd5b5061028b611214565b3480156106c657600080fd5b506102746106d5366004611c68565b6112a2565b3480156106e657600080fd5b50600d54610514906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072c57506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790612088565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107a7906121e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906121e6565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261133d565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610b4e565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ce57506108cc8133610677565b155b156108ec576040516367d9dca160e11b815260040160405180910390fd5b6108f7838383611368565b505050565b6008546001600160a01b031633146109265760405162461bcd60e51b815260040161077790612088565b805161093990600b906020840190611b1a565b5050565b6108f78383836113c4565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161077790612088565b60006109816001546000540390565b600d5490915061ffff1661099584836120ea565b61ffff1611156109b75760405162461bcd60e51b8152600401610777906120bd565b6108f7828461ffff166115b4565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161077790612088565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161077790612088565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161077790612088565b6040514790339082156108fc029083906000818181858888f19350505050158015610939573d6000803e3d6000fd5b6108f783838360405180602001604052806000815250610f76565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260040161077790612088565b600c55565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161077790612088565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610b59826115ce565b5192915050565b6000610b6f6001546000540390565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610b9c908516846120ea565b61ffff161115610bbe5760405162461bcd60e51b8152600401610777906120bd565b600d5462010000900460ff16610bd48285612128565b60ff161115610c255760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610777565b600d54640100000000900460ff1615610c805760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610777565b600d5460ff6301000000909104811690821610610cf2578260ff16600c54610ca89190612161565b341015610ced5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610d8a565b6000610cfe8285612128565b600d5490915060ff630100000090910481169082161115610d8857600d54610d30906301000000900460ff1682612197565b90508060ff16600c54610d439190612161565b341015610d885760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b505b610d97338460ff166115b4565b610da18184612128565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610df0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161077790612088565b610e4a60006116ea565b565b6008546001600160a01b03163314610e765760405162461bcd60e51b815260040161077790612088565b8051610939906009906020840190611b1a565b6060600380546107a7906121e6565b6001600160a01b038216331415610ec25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f585760405162461bcd60e51b815260040161077790612088565b600d805460ff909216620100000262ff000019909216919091179055565b610f818484846113c4565b6001600160a01b0383163b15158015610fa35750610fa18484848461173c565b155b15610fc1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fd28261133d565b6110365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b600d5465010000000000900460ff166110db57600b8054611056906121e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906121e6565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b50505050509050919050565b60006110e5611834565b905060008151116111055760405180602001604052806000815250611133565b8061110f84611843565b600a60405160200161112393929190611f74565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111645760405162461bcd60e51b815260040161077790612088565b60006111736001546000540390565b905060006111848360ff8716612161565b600d5490915061ffff9081169061119e9083908516612110565b11156111bc5760405162461bcd60e51b8152600401610777906120bd565b60005b8381101561120c576111fa8585838181106111dc576111dc61227c565b90506020020160208101906111f19190611c68565b8760ff166115b4565b8061120481612221565b9150506111bf565b505050505050565b600b8054611221906121e6565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906121e6565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b6008546001600160a01b031633146112cc5760405162461bcd60e51b815260040161077790612088565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61133a816116ea565b50565b6000805482108015610747575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113cf826115ce565b9050836001600160a01b031681600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061142457506114248533610677565b8061143f5750336114348461082a565b6001600160a01b0316145b90508061145f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661148657604051633a954ecd60e21b815260040160405180910390fd5b61149260008487611368565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611568576000548214611568578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610939828260405180602001604052806000815250611941565b6040805160608101825260008082526020820181905291810191909152816000548110156116d157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116cf5780516001600160a01b031615611665579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ca579392505050565b611665565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611771903390899088908890600401612038565b602060405180830381600087803b15801561178b57600080fd5b505af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190611df1565b60015b611816573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b50805161180e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107a7906121e6565b6060816118675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611891578061187b81612221565b915061188a9050600a8361214d565b915061186b565b60008167ffffffffffffffff8111156118ac576118ac612292565b6040519080825280601f01601f1916602001820160405280156118d6576020820181803683370190505b5090505b841561182c576118eb600183612180565b91506118f8600a8661223c565b611903906030612110565b60f81b8183815181106119185761191861227c565b60200101906001600160f81b031916908160001a90535061193a600a8661214d565b94506118da565b6108f783838360016000546001600160a01b03851661197257604051622e076360e81b815260040160405180910390fd5b836119905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a4257506001600160a01b0387163b15155b15611acb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a93600088848060010195508861173c565b611ab0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a48578260005414611ac657600080fd5b611b11565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611acc575b506000556115ad565b828054611b26906121e6565b90600052602060002090601f016020900481019282611b485760008555611b8e565b82601f10611b6157805160ff1916838001178555611b8e565b82800160010185558215611b8e579182015b82811115611b8e578251825591602001919060010190611b73565b50611b9a929150611b9e565b5090565b5b80821115611b9a5760008155600101611b9f565b600067ffffffffffffffff80841115611bce57611bce612292565b604051601f8501601f19908116603f01168101908282118183101715611bf657611bf6612292565b81604052809350858152868686011115611c0f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c4057600080fd5b919050565b803561ffff81168114611c4057600080fd5b803560ff81168114611c4057600080fd5b600060208284031215611c7a57600080fd5b61113382611c29565b60008060408385031215611c9657600080fd5b611c9f83611c29565b9150611cad60208401611c29565b90509250929050565b600080600060608486031215611ccb57600080fd5b611cd484611c29565b9250611ce260208501611c29565b9150604084013590509250925092565b60008060008060808587031215611d0857600080fd5b611d1185611c29565b9350611d1f60208601611c29565b925060408501359150606085013567ffffffffffffffff811115611d4257600080fd5b8501601f81018713611d5357600080fd5b611d6287823560208401611bb3565b91505092959194509250565b60008060408385031215611d8157600080fd5b611d8a83611c29565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060408385031215611dbd57600080fd5b611dc683611c29565b946020939093013593505050565b600060208284031215611de657600080fd5b8135611133816122a8565b600060208284031215611e0357600080fd5b8151611133816122a8565b600060208284031215611e2057600080fd5b813567ffffffffffffffff811115611e3757600080fd5b8201601f81018413611e4857600080fd5b61182c84823560208401611bb3565b600060208284031215611e6957600080fd5b61113382611c45565b60008060408385031215611e8557600080fd5b611c9f83611c45565b600060208284031215611ea057600080fd5b5035919050565b600060208284031215611eb957600080fd5b61113382611c57565b600080600060408486031215611ed757600080fd5b611ee084611c57565b9250602084013567ffffffffffffffff80821115611efd57600080fd5b818601915086601f830112611f1157600080fd5b813581811115611f2057600080fd5b8760208260051b8501011115611f3557600080fd5b6020830194508093505050509250925092565b60008151808452611f608160208601602086016121ba565b601f01601f19169290920160200192915050565b600084516020611f878285838a016121ba565b855191840191611f9a8184848a016121ba565b8554920191600090600181811c9080831680611fb757607f831692505b858310811415611fd557634e487b7160e01b85526022600452602485fd5b808015611fe95760018114611ffa57612027565b60ff19851688528388019550612027565b60008b81526020902060005b8581101561201f5781548a820152908401908801612006565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611f48565b9695505050505050565b6020815260006111336020830184611f48565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff80831681851680830382111561210757612107612250565b01949350505050565b6000821982111561212357612123612250565b500190565b600060ff821660ff84168060ff0382111561214557612145612250565b019392505050565b60008261215c5761215c612266565b500490565b600081600019048311821515161561217b5761217b612250565b500290565b60008282101561219257612192612250565b500390565b600060ff821660ff8416808210156121b1576121b1612250565b90039392505050565b60005b838110156121d55781810151838201526020016121bd565b83811115610fc15750506000910152565b600181811c908216806121fa57607f821691505b6020821081141561221b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223557612235612250565b5060010190565b60008261224b5761224b612266565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133a57600080fdfea2646970667358221220f4a278b50580246fe980f77952dae66053b6cffc08ebe3c84bd0a6cfdf0162db64736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80636ecd230611610123578063aa062290116100ab578063e94053c71161006f578063e94053c71461062c578063e985e9c51461065c578063eef440af146106a5578063f2fde38b146106ba578063f8bf5172146106da57600080fd5b8063aa0622901461057e578063b88d4fde1461059e578063c87b56dd146105be578063cffb6e20146105de578063d5abeb01146105fe57600080fd5b80638da5cb5b116100f25780638da5cb5b146104d657806394354fd0146104f457806395d89b4114610526578063a22cb4651461053b578063a475b5dd1461055b57600080fd5b80636ecd23061461046e57806370a0823114610481578063715018a6146104a15780637ec4a659146104b657600080fd5b80632f6f98e1116101a657806342842e0e1161017557806342842e0e146103cc57806344a0d68a146103ec5780634d9c18481461040c5780635c975abb1461042c5780636352211e1461044e57600080fd5b80632f6f98e11461036d57806337a66d851461038d5780633bd64968146103a25780633ccfd60b146103b757600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780631067fcc7146102f057806313faede61461031057806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306421c2f1461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611dd4565b6106fb565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611e57565b61074d565b005b34801561028257600080fd5b5061028b610798565b60405161024b9190612075565b3480156102a457600080fd5b506102b86102b3366004611e8e565b61082a565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b506102746102eb366004611daa565b61086e565b3480156102fc57600080fd5b5061027461030b366004611e0e565b6108fc565b34801561031c57600080fd5b50610326600c5481565b60405190815260200161024b565b34801561034057600080fd5b5060015460005403610326565b34801561035957600080fd5b50610274610368366004611cb6565b61093d565b34801561037957600080fd5b50610274610388366004611e72565b610948565b34801561039957600080fd5b506102746109c5565b3480156103ae57600080fd5b50610274610a12565b3480156103c357600080fd5b50610274610a61565b3480156103d857600080fd5b506102746103e7366004611cb6565b610aba565b3480156103f857600080fd5b50610274610407366004611e8e565b610ad5565b34801561041857600080fd5b50610274610427366004611ea7565b610b04565b34801561043857600080fd5b50600d5461023f90640100000000900460ff1681565b34801561045a57600080fd5b506102b8610469366004611e8e565b610b4e565b61027461047c366004611ea7565b610b60565b34801561048d57600080fd5b5061032661049c366004611c68565b610dc7565b3480156104ad57600080fd5b50610274610e16565b3480156104c257600080fd5b506102746104d1366004611e0e565b610e4c565b3480156104e257600080fd5b506008546001600160a01b03166102b8565b34801561050057600080fd5b50600d546105149062010000900460ff1681565b60405160ff909116815260200161024b565b34801561053257600080fd5b5061028b610e89565b34801561054757600080fd5b50610274610556366004611d6e565b610e98565b34801561056757600080fd5b50600d5461023f9065010000000000900460ff1681565b34801561058a57600080fd5b50610274610599366004611ea7565b610f2e565b3480156105aa57600080fd5b506102746105b9366004611cf2565b610f76565b3480156105ca57600080fd5b5061028b6105d9366004611e8e565b610fc7565b3480156105ea57600080fd5b506102746105f9366004611ec2565b61113a565b34801561060a57600080fd5b50600d546106199061ffff1681565b60405161ffff909116815260200161024b565b34801561063857600080fd5b50610514610647366004611c68565b600e6020526000908152604090205460ff1681565b34801561066857600080fd5b5061023f610677366004611c83565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106b157600080fd5b5061028b611214565b3480156106c657600080fd5b506102746106d5366004611c68565b6112a2565b3480156106e657600080fd5b50600d54610514906301000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061072c57506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146107805760405162461bcd60e51b815260040161077790612088565b60405180910390fd5b600d805461ffff191661ffff92909216919091179055565b6060600280546107a7906121e6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906121e6565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261133d565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610b4e565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108ce57506108cc8133610677565b155b156108ec576040516367d9dca160e11b815260040160405180910390fd5b6108f7838383611368565b505050565b6008546001600160a01b031633146109265760405162461bcd60e51b815260040161077790612088565b805161093990600b906020840190611b1a565b5050565b6108f78383836113c4565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161077790612088565b60006109816001546000540390565b600d5490915061ffff1661099584836120ea565b61ffff1611156109b75760405162461bcd60e51b8152600401610777906120bd565b6108f7828461ffff166115b4565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161077790612088565b600d805464ff000000001981166401000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161077790612088565b600d805465ff0000000000198116650100000000009182900460ff1615909102179055565b6008546001600160a01b03163314610a8b5760405162461bcd60e51b815260040161077790612088565b6040514790339082156108fc029083906000818181858888f19350505050158015610939573d6000803e3d6000fd5b6108f783838360405180602001604052806000815250610f76565b6008546001600160a01b03163314610aff5760405162461bcd60e51b815260040161077790612088565b600c55565b6008546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161077790612088565b600d805460ff90921663010000000263ff00000019909216919091179055565b6000610b59826115ce565b5192915050565b6000610b6f6001546000540390565b336000908152600e6020526040902054600d5491925060ff9081169161ffff1690610b9c908516846120ea565b61ffff161115610bbe5760405162461bcd60e51b8152600401610777906120bd565b600d5462010000900460ff16610bd48285612128565b60ff161115610c255760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610777565b600d54640100000000900460ff1615610c805760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610777565b600d5460ff6301000000909104811690821610610cf2578260ff16600c54610ca89190612161565b341015610ced5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b610d8a565b6000610cfe8285612128565b600d5490915060ff630100000090910481169082161115610d8857600d54610d30906301000000900460ff1682612197565b90508060ff16600c54610d439190612161565b341015610d885760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610777565b505b610d97338460ff166115b4565b610da18184612128565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610df0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e405760405162461bcd60e51b815260040161077790612088565b610e4a60006116ea565b565b6008546001600160a01b03163314610e765760405162461bcd60e51b815260040161077790612088565b8051610939906009906020840190611b1a565b6060600380546107a7906121e6565b6001600160a01b038216331415610ec25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f585760405162461bcd60e51b815260040161077790612088565b600d805460ff909216620100000262ff000019909216919091179055565b610f818484846113c4565b6001600160a01b0383163b15158015610fa35750610fa18484848461173c565b155b15610fc1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fd28261133d565b6110365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b600d5465010000000000900460ff166110db57600b8054611056906121e6565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906121e6565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b50505050509050919050565b60006110e5611834565b905060008151116111055760405180602001604052806000815250611133565b8061110f84611843565b600a60405160200161112393929190611f74565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111645760405162461bcd60e51b815260040161077790612088565b60006111736001546000540390565b905060006111848360ff8716612161565b600d5490915061ffff9081169061119e9083908516612110565b11156111bc5760405162461bcd60e51b8152600401610777906120bd565b60005b8381101561120c576111fa8585838181106111dc576111dc61227c565b90506020020160208101906111f19190611c68565b8760ff166115b4565b8061120481612221565b9150506111bf565b505050505050565b600b8054611221906121e6565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906121e6565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b6008546001600160a01b031633146112cc5760405162461bcd60e51b815260040161077790612088565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61133a816116ea565b50565b6000805482108015610747575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113cf826115ce565b9050836001600160a01b031681600001516001600160a01b0316146114065760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061142457506114248533610677565b8061143f5750336114348461082a565b6001600160a01b0316145b90508061145f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661148657604051633a954ecd60e21b815260040160405180910390fd5b61149260008487611368565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611568576000548214611568578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610939828260405180602001604052806000815250611941565b6040805160608101825260008082526020820181905291810191909152816000548110156116d157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906116cf5780516001600160a01b031615611665579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156116ca579392505050565b611665565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611771903390899088908890600401612038565b602060405180830381600087803b15801561178b57600080fd5b505af19250505080156117bb575060408051601f3d908101601f191682019092526117b891810190611df1565b60015b611816573d8080156117e9576040519150601f19603f3d011682016040523d82523d6000602084013e6117ee565b606091505b50805161180e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107a7906121e6565b6060816118675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611891578061187b81612221565b915061188a9050600a8361214d565b915061186b565b60008167ffffffffffffffff8111156118ac576118ac612292565b6040519080825280601f01601f1916602001820160405280156118d6576020820181803683370190505b5090505b841561182c576118eb600183612180565b91506118f8600a8661223c565b611903906030612110565b60f81b8183815181106119185761191861227c565b60200101906001600160f81b031916908160001a90535061193a600a8661214d565b94506118da565b6108f783838360016000546001600160a01b03851661197257604051622e076360e81b815260040160405180910390fd5b836119905760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611a4257506001600160a01b0387163b15155b15611acb575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a93600088848060010195508861173c565b611ab0576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611a48578260005414611ac657600080fd5b611b11565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611acc575b506000556115ad565b828054611b26906121e6565b90600052602060002090601f016020900481019282611b485760008555611b8e565b82601f10611b6157805160ff1916838001178555611b8e565b82800160010185558215611b8e579182015b82811115611b8e578251825591602001919060010190611b73565b50611b9a929150611b9e565b5090565b5b80821115611b9a5760008155600101611b9f565b600067ffffffffffffffff80841115611bce57611bce612292565b604051601f8501601f19908116603f01168101908282118183101715611bf657611bf6612292565b81604052809350858152868686011115611c0f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c4057600080fd5b919050565b803561ffff81168114611c4057600080fd5b803560ff81168114611c4057600080fd5b600060208284031215611c7a57600080fd5b61113382611c29565b60008060408385031215611c9657600080fd5b611c9f83611c29565b9150611cad60208401611c29565b90509250929050565b600080600060608486031215611ccb57600080fd5b611cd484611c29565b9250611ce260208501611c29565b9150604084013590509250925092565b60008060008060808587031215611d0857600080fd5b611d1185611c29565b9350611d1f60208601611c29565b925060408501359150606085013567ffffffffffffffff811115611d4257600080fd5b8501601f81018713611d5357600080fd5b611d6287823560208401611bb3565b91505092959194509250565b60008060408385031215611d8157600080fd5b611d8a83611c29565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060408385031215611dbd57600080fd5b611dc683611c29565b946020939093013593505050565b600060208284031215611de657600080fd5b8135611133816122a8565b600060208284031215611e0357600080fd5b8151611133816122a8565b600060208284031215611e2057600080fd5b813567ffffffffffffffff811115611e3757600080fd5b8201601f81018413611e4857600080fd5b61182c84823560208401611bb3565b600060208284031215611e6957600080fd5b61113382611c45565b60008060408385031215611e8557600080fd5b611c9f83611c45565b600060208284031215611ea057600080fd5b5035919050565b600060208284031215611eb957600080fd5b61113382611c57565b600080600060408486031215611ed757600080fd5b611ee084611c57565b9250602084013567ffffffffffffffff80821115611efd57600080fd5b818601915086601f830112611f1157600080fd5b813581811115611f2057600080fd5b8760208260051b8501011115611f3557600080fd5b6020830194508093505050509250925092565b60008151808452611f608160208601602086016121ba565b601f01601f19169290920160200192915050565b600084516020611f878285838a016121ba565b855191840191611f9a8184848a016121ba565b8554920191600090600181811c9080831680611fb757607f831692505b858310811415611fd557634e487b7160e01b85526022600452602485fd5b808015611fe95760018114611ffa57612027565b60ff19851688528388019550612027565b60008b81526020902060005b8581101561201f5781548a820152908401908801612006565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206b90830184611f48565b9695505050505050565b6020815260006111336020830184611f48565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff80831681851680830382111561210757612107612250565b01949350505050565b6000821982111561212357612123612250565b500190565b600060ff821660ff84168060ff0382111561214557612145612250565b019392505050565b60008261215c5761215c612266565b500490565b600081600019048311821515161561217b5761217b612250565b500290565b60008282101561219257612192612250565b500390565b600060ff821660ff8416808210156121b1576121b1612250565b90039392505050565b60005b838110156121d55781810151838201526020016121bd565b83811115610fc15750506000910152565b600181811c908216806121fa57607f821691505b6020821081141561221b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561223557612235612250565b5060010190565b60008261224b5761224b612266565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461133a57600080fdfea2646970667358221220f4a278b50580246fe980f77952dae66053b6cffc08ebe3c84bd0a6cfdf0162db64736f6c63430008070033
Deployed Bytecode Sourcemap
44949:4025:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25273:305;;;;;;;;;;-1:-1:-1;25273:305:0;;;;;:::i;:::-;;:::i;:::-;;;8357:14:1;;8350:22;8332:41;;8320:2;8305:18;25273:305:0;;;;;;;;47383:97;;;;;;;;;;-1:-1:-1;47383:97:0;;;;;:::i;:::-;;:::i;:::-;;28386:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29889:204::-;;;;;;;;;;-1:-1:-1;29889:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7655:32:1;;;7637:51;;7625:2;7610:18;29889:204:0;7491:203:1;29452:371:0;;;;;;;;;;-1:-1:-1;29452:371:0;;;;;:::i;:::-;;:::i;48257:102::-;;;;;;;;;;-1:-1:-1;48257:102:0;;;;;:::i;:::-;;:::i;45137:33::-;;;;;;;;;;;;;;;;;;;11536:25:1;;;11524:2;11509:18;45137:33:0;11390:177:1;24522:303:0;;;;;;;;;;-1:-1:-1;24776:12:0;;24566:7;24760:13;:28;24522:303;;30754:170;;;;;;;;;;-1:-1:-1;30754:170:0;;;;;:::i;:::-;;:::i;46567:326::-;;;;;;;;;;-1:-1:-1;46567:326:0;;;;;:::i;:::-;;:::i;48367:74::-;;;;;;;;;;;;;:::i;48528:70::-;;;;;;;;;;;;;:::i;48722:144::-;;;;;;;;;;;;;:::i;30995:185::-;;;;;;;;;;-1:-1:-1;30995:185:0;;;;;:::i;:::-;;:::i;48447:76::-;;;;;;;;;;-1:-1:-1;48447:76:0;;;;;:::i;:::-;;:::i;47998:134::-;;;;;;;;;;-1:-1:-1;47998:134:0;;;;;:::i;:::-;;:::i;45376:25::-;;;;;;;;;;-1:-1:-1;45376:25:0;;;;;;;;;;;28194:125;;;;;;;;;;-1:-1:-1;28194:125:0;;;;;:::i;:::-;;:::i;45583:976::-;;;;;;:::i;:::-;;:::i;25642:206::-;;;;;;;;;;-1:-1:-1;25642:206:0;;;;;:::i;:::-;;:::i;44095:103::-;;;;;;;;;;;;;:::i;48150:102::-;;;;;;;;;;-1:-1:-1;48150:102:0;;;;;:::i;:::-;;:::i;43443:87::-;;;;;;;;;;-1:-1:-1;43516:6:0;;-1:-1:-1;;;;;43516:6:0;43443:87;;45219:36;;;;;;;;;;-1:-1:-1;45219:36:0;;;;;;;;;;;;;;11744:4:1;11732:17;;;11714:36;;11702:2;11687:18;45219:36:0;11572:184:1;28555:104:0;;;;;;;;;;;;;:::i;30165:287::-;;;;;;;;;;-1:-1:-1;30165:287:0;;;;;:::i;:::-;;:::i;45406:25::-;;;;;;;;;;-1:-1:-1;45406:25:0;;;;;;;;;;;48604:107;;;;;;;;;;-1:-1:-1;48604:107:0;;;;;:::i;:::-;;:::i;31251:369::-;;;;;;;;;;-1:-1:-1;31251:369:0;;;;;:::i;:::-;;:::i;47495:490::-;;;;;;;;;;-1:-1:-1;47495:490:0;;;;;:::i;:::-;;:::i;46899:473::-;;;;;;;;;;-1:-1:-1;46899:473:0;;;;;:::i;:::-;;:::i;45184:30::-;;;;;;;;;;-1:-1:-1;45184:30:0;;;;;;;;;;;11371:6:1;11359:19;;;11341:38;;11329:2;11314:18;45184:30:0;11197:188:1;45439:53:0;;;;;;;;;;-1:-1:-1;45439:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30523:164;;;;;;;;;;-1:-1:-1;30523:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30644:25:0;;;30620:4;30644:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30523:164;45097:23;;;;;;;;;;;;;:::i;44353:201::-;;;;;;;;;;-1:-1:-1;44353:201:0;;;;;:::i;:::-;;:::i;45262:43::-;;;;;;;;;;-1:-1:-1;45262:43:0;;;;;;;;;;;25273:305;25375:4;-1:-1:-1;;;;;;25412:40:0;;-1:-1:-1;;;25412:40:0;;:105;;-1:-1:-1;;;;;;;25469:48:0;;-1:-1:-1;;;25469:48:0;25412:105;:158;;;-1:-1:-1;;;;;;;;;;15307:40:0;;;25534:36;25392:178;25273:305;-1:-1:-1;;25273:305:0:o;47383:97::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;;;;;;;;;47452:9:::1;:22:::0;;-1:-1:-1;;47452:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47383:97::o;28386:100::-;28440:13;28473:5;28466:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28386:100;:::o;29889:204::-;29957:7;29982:16;29990:7;29982;:16::i;:::-;29977:64;;30007:34;;-1:-1:-1;;;30007:34:0;;;;;;;;;;;29977:64;-1:-1:-1;30061:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30061:24:0;;29889:204::o;29452:371::-;29525:13;29541:24;29557:7;29541:15;:24::i;:::-;29525:40;;29586:5;-1:-1:-1;;;;;29580:11:0;:2;-1:-1:-1;;;;;29580:11:0;;29576:48;;;29600:24;;-1:-1:-1;;;29600:24:0;;;;;;;;;;;29576:48;3748:10;-1:-1:-1;;;;;29641:21:0;;;;;;:63;;-1:-1:-1;29667:37:0;29684:5;3748:10;30523:164;:::i;29667:37::-;29666:38;29641:63;29637:138;;;29728:35;;-1:-1:-1;;;29728:35:0;;;;;;;;;;;29637:138;29787:28;29796:2;29800:7;29809:5;29787:8;:28::i;:::-;29514:309;29452:371;;:::o;48257:102::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;48331:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48257:102:::0;:::o;30754:170::-;30888:28;30898:4;30904:2;30908:7;30888:9;:28::i;46567:326::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;46650:18:::1;46678:13;24776:12:::0;;24566:7;24760:13;:28;;24522:303;46678:13:::1;46736:9;::::0;46650:42;;-1:-1:-1;46736:9:0::1;;46707:25;46721:11:::0;46650:42;46707:25:::1;:::i;:::-;:38;;;;46699:70;;;;-1:-1:-1::0;;;46699:70:0::1;;;;;;;:::i;:::-;46777:34;46787:9;46799:11;46777:34;;:9;:34::i;48367:74::-:0;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;48424:6:::1;::::0;;-1:-1:-1;;48414:16:0;::::1;48424:6:::0;;;;::::1;;;48423:7;48414:16:::0;;::::1;;::::0;;48367:74::o;48528:70::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;48587:6:::1;::::0;;-1:-1:-1;;48577:16:0;::::1;48587:6:::0;;;;::::1;;;48586:7;48577:16:::0;;::::1;;::::0;;48528:70::o;48722:144::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;48811:39:::1;::::0;48782:21:::1;::::0;48819:10:::1;::::0;48811:39;::::1;;;::::0;48782:21;;48766:13:::1;48811:39:::0;48766:13;48811:39;48782:21;48819:10;48811:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;30995:185:::0;31133:39;31150:4;31156:2;31160:7;31133:39;;;;;;;;;;;;:16;:39::i;48447:76::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;48503:4:::1;:12:::0;48447:76::o;47998:134::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;48072:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48072:35:0;;::::1;::::0;;;::::1;::::0;;47998:134::o;28194:125::-;28258:7;28285:21;28298:7;28285:12;:21::i;:::-;:26;;28194:125;-1:-1:-1;;28194:125:0:o;45583:976::-;45642:18;45670:13;24776:12;;24566:7;24760:13;:28;;24522:303;45670:13;45724:10;45692:9;45704:31;;;:19;:31;;;;;;45779:9;;45642:42;;-1:-1:-1;45704:31:0;;;;;45779:9;;;45750:25;;;;45642:42;45750:25;:::i;:::-;:38;;;;45742:70;;;;-1:-1:-1;;;45742:70:0;;;;;;;:::i;:::-;45848:18;;;;;;;45827:17;45841:3;45827:11;:17;:::i;:::-;:39;;;;45819:80;;;;-1:-1:-1;;;45819:80:0;;10694:2:1;45819:80:0;;;10676:21:1;10733:2;10713:18;;;10706:30;10772;10752:18;;;10745:58;10820:18;;45819:80:0;10492:352:1;45819:80:0;45917:6;;;;;;;45916:7;45908:43;;;;-1:-1:-1;;;45908:43:0;;9578:2:1;45908:43:0;;;9560:21:1;9617:2;9597:18;;;9590:30;9656:25;9636:18;;;9629:53;9699:18;;45908:43:0;9376:347:1;45908:43:0;45976:26;;;;;;;;;45969:33;;;;45966:417;;46044:11;46037:18;;:4;;:18;;;;:::i;:::-;46024:9;:31;;46016:63;;;;-1:-1:-1;;;46016:63:0;;11051:2:1;46016:63:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:49;11168:18;;46016:63:0;10849:343:1;46016:63:0;45966:417;;;46110:16;46129:17;46143:3;46129:11;:17;:::i;:::-;46173:26;;46110:36;;-1:-1:-1;46173:26:0;;;;;;;46160:39;;;;46157:199;;;46246:26;;46233:39;;46246:26;;;;;46233:10;:39;:::i;:::-;46220:52;;46311:10;46304:17;;:4;;:17;;;;:::i;:::-;46291:9;:30;;46283:62;;;;-1:-1:-1;;;46283:62:0;;11051:2:1;46283:62:0;;;11033:21:1;11090:2;11070:18;;;11063:30;-1:-1:-1;;;11109:18:1;;;11102:49;11168:18;;46283:62:0;10849:343:1;46283:62:0;46098:285;45966:417;46399:35;46409:10;46422:11;46399:35;;:9;:35::i;:::-;46477:17;46491:3;46477:11;:17;:::i;:::-;46463:10;46443:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;46443:51:0;;;;;;;;;;;;-1:-1:-1;;;45583:976:0:o;25642:206::-;25706:7;-1:-1:-1;;;;;25730:19:0;;25726:60;;25758:28;;-1:-1:-1;;;25758:28:0;;;;;;;;;;;25726:60;-1:-1:-1;;;;;;25812:19:0;;;;;:12;:19;;;;;:27;;;;25642:206::o;44095:103::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;44160:30:::1;44187:1;44160:18;:30::i;:::-;44095:103::o:0;48150:102::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;48224:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;28555:104::-:0;28611:13;28644:7;28637:14;;;;;:::i;30165:287::-;-1:-1:-1;;;;;30264:24:0;;3748:10;30264:24;30260:54;;;30297:17;;-1:-1:-1;;;30297:17:0;;;;;;;;;;;30260:54;3748:10;30327:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30327:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30327:53:0;;;;;;;;;;30396:48;;8332:41:1;;;30327:42:0;;3748:10;30396:48;;8305:18:1;30396:48:0;;;;;;;30165:287;;:::o;48604:107::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;48676:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48676:27:0;;::::1;::::0;;;::::1;::::0;;48604:107::o;31251:369::-;31418:28;31428:4;31434:2;31438:7;31418:9;:28::i;:::-;-1:-1:-1;;;;;31461:13:0;;5410:19;:23;;31461:76;;;;;31481:56;31512:4;31518:2;31522:7;31531:5;31481:30;:56::i;:::-;31480:57;31461:76;31457:156;;;31561:40;;-1:-1:-1;;;31561:40:0;;;;;;;;;;;31457:156;31251:369;;;;:::o;47495:490::-;47594:13;47635:17;47643:8;47635:7;:17::i;:::-;47619:98;;;;-1:-1:-1;;;47619:98:0;;9930:2:1;47619:98:0;;;9912:21:1;9969:2;9949:18;;;9942:30;10008:34;9988:18;;;9981:62;-1:-1:-1;;;10059:18:1;;;10052:45;10114:19;;47619:98:0;9728:411:1;47619:98:0;47735:6;;;;;;;47730:50;;47767:9;47760:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47495:490;;;:::o;47730:50::-;47794:28;47825:10;:8;:10::i;:::-;47794:41;;47880:1;47855:14;47849:28;:32;:130;;;;;;;;;;;;;;;;;47917:14;47933:19;:8;:17;:19::i;:::-;47954:9;47900:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47849:130;47842:137;47495:490;-1:-1:-1;;;47495:490:0:o;46899:473::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;46999:18:::1;47027:13;24776:12:::0;;24566:7;24760:13;:28;;24522:303;47027:13:::1;46999:42:::0;-1:-1:-1;47049:16:0::1;47070:36;47090:9:::0;47070:36:::1;::::0;::::1;;:::i;:::-;47150:9;::::0;47049:57;;-1:-1:-1;47150:9:0::1;::::0;;::::1;::::0;47121:25:::1;::::0;47049:57;;47121:25;::::1;;:::i;:::-;:38;;47113:70;;;;-1:-1:-1::0;;;47113:70:0::1;;;;;;;:::i;:::-;47196:9;47191:116;47211:20:::0;;::::1;47191:116;;;47253:42;47263:9;;47273:1;47263:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47277:17;47253:42;;:9;:42::i;:::-;47233:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47191:116;;;-1:-1:-1::0;;;;;;46899:473:0:o;45097:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44353:201::-;43516:6;;-1:-1:-1;;;;;43516:6:0;3748:10;43663:23;43655:69;;;;-1:-1:-1;;;43655:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44442:22:0;::::1;44434:73;;;::::0;-1:-1:-1;;;44434:73:0;;8810:2:1;44434:73:0::1;::::0;::::1;8792:21:1::0;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:36;8985:19;;44434:73:0::1;8608:402:1::0;44434:73:0::1;44518:28;44537:8;44518:18;:28::i;:::-;44353:201:::0;:::o;31875:187::-;31932:4;31996:13;;31986:7;:23;31956:98;;;;-1:-1:-1;;32027:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32027:27:0;;;;32026:28;;31875:187::o;40045:196::-;40160:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40160:29:0;-1:-1:-1;;;;;40160:29:0;;;;;;;;;40205:28;;40160:24;;40205:28;;;;;;;40045:196;;;:::o;34988:2130::-;35103:35;35141:21;35154:7;35141:12;:21::i;:::-;35103:59;;35201:4;-1:-1:-1;;;;;35179:26:0;:13;:18;;;-1:-1:-1;;;;;35179:26:0;;35175:67;;35214:28;;-1:-1:-1;;;35214:28:0;;;;;;;;;;;35175:67;35255:22;3748:10;-1:-1:-1;;;;;35281:20:0;;;;:73;;-1:-1:-1;35318:36:0;35335:4;3748:10;30523:164;:::i;35318:36::-;35281:126;;;-1:-1:-1;3748:10:0;35371:20;35383:7;35371:11;:20::i;:::-;-1:-1:-1;;;;;35371:36:0;;35281:126;35255:153;;35426:17;35421:66;;35452:35;;-1:-1:-1;;;35452:35:0;;;;;;;;;;;35421:66;-1:-1:-1;;;;;35502:16:0;;35498:52;;35527:23;;-1:-1:-1;;;35527:23:0;;;;;;;;;;;35498:52;35671:35;35688:1;35692:7;35701:4;35671:8;:35::i;:::-;-1:-1:-1;;;;;36002:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36002:31:0;;;;;;;-1:-1:-1;;36002:31:0;;;;;;;36048:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36048:29:0;;;;;;;;;;;36128:20;;;:11;:20;;;;;;36163:18;;-1:-1:-1;;;;;;36196:49:0;;;;-1:-1:-1;;;36229:15:0;36196:49;;;;;;;;;;36519:11;;36579:24;;;;;36622:13;;36128:20;;36579:24;;36622:13;36618:384;;36832:13;;36817:11;:28;36813:174;;36870:20;;36939:28;;;;36913:54;;-1:-1:-1;;;36913:54:0;-1:-1:-1;;;;;;36913:54:0;;;-1:-1:-1;;;;;36870:20:0;;36913:54;;;;36813:174;35977:1036;;;37049:7;37045:2;-1:-1:-1;;;;;37030:27:0;37039:4;-1:-1:-1;;;;;37030:27:0;;;;;;;;;;;37068:42;35092:2026;;34988:2130;;;:::o;32070:104::-;32139:27;32149:2;32153:8;32139:27;;;;;;;;;;;;:9;:27::i;27023:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27134:7:0;27217:13;;27210:4;:20;27179:886;;;27251:31;27285:17;;;:11;:17;;;;;;;;;27251:51;;;;;;;;;-1:-1:-1;;;;;27251:51:0;;;;-1:-1:-1;;;27251:51:0;;;;;;;;;;;-1:-1:-1;;;27251:51:0;;;;;;;;;;;;;;27321:729;;27371:14;;-1:-1:-1;;;;;27371:28:0;;27367:101;;27435:9;27023:1109;-1:-1:-1;;;27023:1109:0:o;27367:101::-;-1:-1:-1;;;27810:6:0;27855:17;;;;:11;:17;;;;;;;;;27843:29;;;;;;;;;-1:-1:-1;;;;;27843:29:0;;;;;-1:-1:-1;;;27843:29:0;;;;;;;;;;;-1:-1:-1;;;27843:29:0;;;;;;;;;;;;;27903:28;27899:109;;27971:9;27023:1109;-1:-1:-1;;;27023:1109:0:o;27899:109::-;27770:261;;;27232:833;27179:886;28093:31;;-1:-1:-1;;;28093:31:0;;;;;;;;;;;44714:191;44807:6;;;-1:-1:-1;;;;;44824:17:0;;;-1:-1:-1;;;;;;44824:17:0;;;;;;;44857:40;;44807:6;;;44824:17;44807:6;;44857:40;;44788:16;;44857:40;44777:128;44714:191;:::o;40733:667::-;40917:72;;-1:-1:-1;;;40917:72:0;;40896:4;;-1:-1:-1;;;;;40917:36:0;;;;;:72;;3748:10;;40968:4;;40974:7;;40983:5;;40917:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40917:72:0;;;;;;;;-1:-1:-1;;40917:72:0;;;;;;;;;;;;:::i;:::-;;;40913:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41151:13:0;;41147:235;;41197:40;;-1:-1:-1;;;41197:40:0;;;;;;;;;;;41147:235;41340:6;41334:13;41325:6;41321:2;41317:15;41310:38;40913:480;-1:-1:-1;;;;;;41036:55:0;-1:-1:-1;;;41036:55:0;;-1:-1:-1;40913:480:0;40733:667;;;;;;:::o;48874:97::-;48927:13;48956:9;48949:16;;;;;:::i;1230:723::-;1286:13;1507:10;1503:53;;-1:-1:-1;;1534:10:0;;;;;;;;;;;;-1:-1:-1;;;1534:10:0;;;;;1230:723::o;1503:53::-;1581:5;1566:12;1622:78;1629:9;;1622:78;;1655:8;;;;:::i;:::-;;-1:-1:-1;1678:10:0;;-1:-1:-1;1686:2:0;1678:10;;:::i;:::-;;;1622:78;;;1710:19;1742:6;1732:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1732:17:0;;1710:39;;1760:154;1767:10;;1760:154;;1794:11;1804:1;1794:11;;:::i;:::-;;-1:-1:-1;1863:10:0;1871:2;1863:5;:10;:::i;:::-;1850:24;;:2;:24;:::i;:::-;1837:39;;1820:6;1827;1820:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1820:56:0;;;;;;;;-1:-1:-1;1891:11:0;1900:2;1891:11;;:::i;:::-;;;1760:154;;32537:163;32660:32;32666:2;32670:8;32680:5;32687:4;33098:20;33121:13;-1:-1:-1;;;;;33149:16:0;;33145:48;;33174:19;;-1:-1:-1;;;33174:19:0;;;;;;;;;;;33145:48;33208:13;33204:44;;33230:18;;-1:-1:-1;;;33230:18:0;;;;;;;;;;;33204:44;-1:-1:-1;;;;;33599:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;33658:49:0;;33599:44;;;;;;;;33658:49;;;;-1:-1:-1;;33599:44:0;;;;;;33658:49;;;;;;;;;;;;;;;;33724:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33774:66:0;;;;-1:-1:-1;;;33824:15:0;33774:66;;;;;;;;;;33724:25;33921:23;;;33965:4;:23;;;;-1:-1:-1;;;;;;33973:13:0;;5410:19;:23;;33973:15;33961:641;;;34009:314;34040:38;;34065:12;;-1:-1:-1;;;;;34040:38:0;;;34057:1;;34040:38;;34057:1;;34040:38;34106:69;34145:1;34149:2;34153:14;;;;;;34169:5;34106:30;:69::i;:::-;34101:174;;34211:40;;-1:-1:-1;;;34211:40:0;;;;;;;;;;;34101:174;34318:3;34302:12;:19;;34009:314;;34404:12;34387:13;;:29;34383:43;;34418:8;;;34383:43;33961:641;;;34467:120;34498:40;;34523:14;;;;;-1:-1:-1;;;;;34498:40:0;;;34515:1;;34498:40;;34515:1;;34498:40;34582:3;34566:12;:19;;34467:120;;33961:641;-1:-1:-1;34616:13:0;:28;34666:60;31251:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:156;1058:20;;1118:4;1107:16;;1097:27;;1087:55;;1138:1;1135;1128:12;1153:186;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1304:29;1323:9;1304:29;:::i;1344:260::-;1412:6;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:52;;;1489:1;1486;1479:12;1441:52;1512:29;1531:9;1512:29;:::i;:::-;1502:39;;1560:38;1594:2;1583:9;1579:18;1560:38;:::i;:::-;1550:48;;1344:260;;;;;:::o;1609:328::-;1686:6;1694;1702;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;;1842:38;1876:2;1865:9;1861:18;1842:38;:::i;:::-;1832:48;;1927:2;1916:9;1912:18;1899:32;1889:42;;1609:328;;;;;:::o;1942:666::-;2037:6;2045;2053;2061;2114:3;2102:9;2093:7;2089:23;2085:33;2082:53;;;2131:1;2128;2121:12;2082:53;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;2287:2;2276:9;2272:18;2259:32;2249:42;;2342:2;2331:9;2327:18;2314:32;2369:18;2361:6;2358:30;2355:50;;;2401:1;2398;2391:12;2355:50;2424:22;;2477:4;2469:13;;2465:27;-1:-1:-1;2455:55:1;;2506:1;2503;2496:12;2455:55;2529:73;2594:7;2589:2;2576:16;2571:2;2567;2563:11;2529:73;:::i;:::-;2519:83;;;1942:666;;;;;;;:::o;2613:347::-;2678:6;2686;2739:2;2727:9;2718:7;2714:23;2710:32;2707:52;;;2755:1;2752;2745:12;2707:52;2778:29;2797:9;2778:29;:::i;:::-;2768:39;;2857:2;2846:9;2842:18;2829:32;2904:5;2897:13;2890:21;2883:5;2880:32;2870:60;;2926:1;2923;2916:12;2870:60;2949:5;2939:15;;;2613:347;;;;;:::o;2965:254::-;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;3209:2;3194:18;;;;3181:32;;-1:-1:-1;;;2965:254:1:o;3224:245::-;3282:6;3335:2;3323:9;3314:7;3310:23;3306:32;3303:52;;;3351:1;3348;3341:12;3303:52;3390:9;3377:23;3409:30;3433:5;3409:30;:::i;3474:249::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3644:9;3638:16;3663:30;3687:5;3663:30;:::i;3728:450::-;3797:6;3850:2;3838:9;3829:7;3825:23;3821:32;3818:52;;;3866:1;3863;3856:12;3818:52;3906:9;3893:23;3939:18;3931:6;3928:30;3925:50;;;3971:1;3968;3961:12;3925:50;3994:22;;4047:4;4039:13;;4035:27;-1:-1:-1;4025:55:1;;4076:1;4073;4066:12;4025:55;4099:73;4164:7;4159:2;4146:16;4141:2;4137;4133:11;4099:73;:::i;4183:184::-;4241:6;4294:2;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4333:28;4351:9;4333:28;:::i;4372:258::-;4439:6;4447;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4539:28;4557:9;4539:28;:::i;4635:180::-;4694:6;4747:2;4735:9;4726:7;4722:23;4718:32;4715:52;;;4763:1;4760;4753:12;4715:52;-1:-1:-1;4786:23:1;;4635:180;-1:-1:-1;4635:180:1:o;4820:182::-;4877:6;4930:2;4918:9;4909:7;4905:23;4901:32;4898:52;;;4946:1;4943;4936:12;4898:52;4969:27;4986:9;4969:27;:::i;5007:685::-;5100:6;5108;5116;5169:2;5157:9;5148:7;5144:23;5140:32;5137:52;;;5185:1;5182;5175:12;5137:52;5208:27;5225:9;5208:27;:::i;:::-;5198:37;;5286:2;5275:9;5271:18;5258:32;5309:18;5350:2;5342:6;5339:14;5336:34;;;5366:1;5363;5356:12;5336:34;5404:6;5393:9;5389:22;5379:32;;5449:7;5442:4;5438:2;5434:13;5430:27;5420:55;;5471:1;5468;5461:12;5420:55;5511:2;5498:16;5537:2;5529:6;5526:14;5523:34;;;5553:1;5550;5543:12;5523:34;5606:7;5601:2;5591:6;5588:1;5584:14;5580:2;5576:23;5572:32;5569:45;5566:65;;;5627:1;5624;5617:12;5566:65;5658:2;5654;5650:11;5640:21;;5680:6;5670:16;;;;;5007:685;;;;;:::o;5697:257::-;5738:3;5776:5;5770:12;5803:6;5798:3;5791:19;5819:63;5875:6;5868:4;5863:3;5859:14;5852:4;5845:5;5841:16;5819:63;:::i;:::-;5936:2;5915:15;-1:-1:-1;;5911:29:1;5902:39;;;;5943:4;5898:50;;5697:257;-1:-1:-1;;5697:257:1:o;5959:1527::-;6183:3;6221:6;6215:13;6247:4;6260:51;6304:6;6299:3;6294:2;6286:6;6282:15;6260:51;:::i;:::-;6374:13;;6333:16;;;;6396:55;6374:13;6333:16;6418:15;;;6396:55;:::i;:::-;6540:13;;6473:20;;;6513:1;;6600;6622:18;;;;6675;;;;6702:93;;6780:4;6770:8;6766:19;6754:31;;6702:93;6843:2;6833:8;6830:16;6810:18;6807:40;6804:167;;;-1:-1:-1;;;6870:33:1;;6926:4;6923:1;6916:15;6956:4;6877:3;6944:17;6804:167;6987:18;7014:110;;;;7138:1;7133:328;;;;6980:481;;7014:110;-1:-1:-1;;7049:24:1;;7035:39;;7094:20;;;;-1:-1:-1;7014:110:1;;7133:328;11834:1;11827:14;;;11871:4;11858:18;;7228:1;7242:169;7256:8;7253:1;7250:15;7242:169;;;7338:14;;7323:13;;;7316:37;7381:16;;;;7273:10;;7242:169;;;7246:3;;7442:8;7435:5;7431:20;7424:27;;6980:481;-1:-1:-1;7477:3:1;;5959:1527;-1:-1:-1;;;;;;;;;;;5959:1527:1:o;7699:488::-;-1:-1:-1;;;;;7968:15:1;;;7950:34;;8020:15;;8015:2;8000:18;;7993:43;8067:2;8052:18;;8045:34;;;8115:3;8110:2;8095:18;;8088:31;;;7893:4;;8136:45;;8161:19;;8153:6;8136:45;:::i;:::-;8128:53;7699:488;-1:-1:-1;;;;;;7699:488:1:o;8384:219::-;8533:2;8522:9;8515:21;8496:4;8553:44;8593:2;8582:9;8578:18;8570:6;8553:44;:::i;9015:356::-;9217:2;9199:21;;;9236:18;;;9229:30;9295:34;9290:2;9275:18;;9268:62;9362:2;9347:18;;9015:356::o;10144:343::-;10346:2;10328:21;;;10385:2;10365:18;;;10358:30;-1:-1:-1;;;10419:2:1;10404:18;;10397:49;10478:2;10463:18;;10144:343::o;11887:224::-;11926:3;11954:6;11987:2;11984:1;11980:10;12017:2;12014:1;12010:10;12048:3;12044:2;12040:12;12035:3;12032:21;12029:47;;;12056:18;;:::i;:::-;12092:13;;11887:224;-1:-1:-1;;;;11887:224:1:o;12116:128::-;12156:3;12187:1;12183:6;12180:1;12177:13;12174:39;;;12193:18;;:::i;:::-;-1:-1:-1;12229:9:1;;12116:128::o;12249:204::-;12287:3;12323:4;12320:1;12316:12;12355:4;12352:1;12348:12;12390:3;12384:4;12380:14;12375:3;12372:23;12369:49;;;12398:18;;:::i;:::-;12434:13;;12249:204;-1:-1:-1;;;12249:204:1:o;12458:120::-;12498:1;12524;12514:35;;12529:18;;:::i;:::-;-1:-1:-1;12563:9:1;;12458:120::o;12583:168::-;12623:7;12689:1;12685;12681:6;12677:14;12674:1;12671:21;12666:1;12659:9;12652:17;12648:45;12645:71;;;12696:18;;:::i;:::-;-1:-1:-1;12736:9:1;;12583:168::o;12756:125::-;12796:4;12824:1;12821;12818:8;12815:34;;;12829:18;;:::i;:::-;-1:-1:-1;12866:9:1;;12756:125::o;12886:195::-;12924:4;12961;12958:1;12954:12;12993:4;12990:1;12986:12;13018:3;13013;13010:12;13007:38;;;13025:18;;:::i;:::-;13062:13;;;12886:195;-1:-1:-1;;;12886:195:1:o;13086:258::-;13158:1;13168:113;13182:6;13179:1;13176:13;13168:113;;;13258:11;;;13252:18;13239:11;;;13232:39;13204:2;13197:10;13168:113;;;13299:6;13296:1;13293:13;13290:48;;;-1:-1:-1;;13334:1:1;13316:16;;13309:27;13086:258::o;13349:380::-;13428:1;13424:12;;;;13471;;;13492:61;;13546:4;13538:6;13534:17;13524:27;;13492:61;13599:2;13591:6;13588:14;13568:18;13565:38;13562:161;;;13645:10;13640:3;13636:20;13633:1;13626:31;13680:4;13677:1;13670:15;13708:4;13705:1;13698:15;13562:161;;13349:380;;;:::o;13734:135::-;13773:3;-1:-1:-1;;13794:17:1;;13791:43;;;13814:18;;:::i;:::-;-1:-1:-1;13861:1:1;13850:13;;13734:135::o;13874:112::-;13906:1;13932;13922:35;;13937:18;;:::i;:::-;-1:-1:-1;13971:9:1;;13874:112::o;13991:127::-;14052:10;14047:3;14043:20;14040:1;14033:31;14083:4;14080:1;14073:15;14107:4;14104:1;14097:15;14123:127;14184:10;14179:3;14175:20;14172:1;14165:31;14215:4;14212:1;14205:15;14239:4;14236:1;14229:15;14255:127;14316:10;14311:3;14307:20;14304:1;14297:31;14347:4;14344:1;14337:15;14371:4;14368:1;14361:15;14387:127;14448:10;14443:3;14439:20;14436:1;14429:31;14479:4;14476:1;14469:15;14503:4;14500:1;14493:15;14519:131;-1:-1:-1;;;;;;14593:32:1;;14583:43;;14573:71;;14640:1;14637;14630:12
Swarm Source
ipfs://f4a278b50580246fe980f77952dae66053b6cffc08ebe3c84bd0a6cfdf0162db
Loading...
Loading
Loading...
Loading
OVERVIEW
YOU PAPERED EVERYTHING AND YOU'LL PAPER THIS TOO!!!!Net Worth in USD
$1.12
Net Worth in ETH
0.000381
Token Allocations
ETH
100.00%
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ARB | 100.00% | $2,937.36 | 0.00038069 | $1.12 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.