ERC-721
Source Code
Overview
Max Total Supply
5,000 Taggers
Holders
2,392
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TaggersLoading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
TaggersNFT
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-09-15
*/
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// 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/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @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/ERC721A.sol
// Creator: Chiru Labs
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 1;
}
/**
* @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;
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
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 {
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 (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 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) 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;
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 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 {}
}
pragma solidity ^0.8.0;
contract TaggersNFT is ERC721A, Ownable, ReentrancyGuard {
using Address for address;
using Strings for uint;
string public baseURI = "ipfs://bafybeigm62wa2x26clgmdc2avjd3vaptlr6ipbwwjzzktn75k7puxbzvoa/";
string public hiddenbaseURI = "ipfs://bafkreia47b3fri2tltqjwbbuw5zzecanbt5gglxezlywlttpcib6uuybdm";
uint256 public maxSupply = 5000;
uint256 public MAX_MINTS_PER_WALLET = 5;
uint256 public PUBLIC_SALE_PRICE = 0.06 ether;
uint256 public MAX_FREE_PER_WALLET = 2;
bool public isPublicSaleActive = false;
bool revealed = false;
constructor(
) ERC721A("NFT Taggers", "Taggers") {
_safeMint(msg.sender, 200);
}
function mint(uint256 numberOfTokens)
external
payable
{
require(isPublicSaleActive, "Public sale is not open");
require(totalSupply() + numberOfTokens < maxSupply + 1, "No more");
require(balanceOf(msg.sender) + numberOfTokens <= MAX_MINTS_PER_WALLET, "Max mints per wallet exceeded");
uint overFree;
if(balanceOf(msg.sender) == 0 && numberOfTokens == 1){
overFree = 0;
}
if(balanceOf(msg.sender) == 0 && numberOfTokens == 2){
overFree = 0;
}
if(balanceOf(msg.sender) == 0 && numberOfTokens > 2){
overFree = numberOfTokens - 2;
}
if(balanceOf(msg.sender) == 1 && numberOfTokens == 1){
overFree = 0;
}
if(balanceOf(msg.sender) == 1 && numberOfTokens > 1){
overFree = numberOfTokens - 1;
}
if(balanceOf(msg.sender) > 1 && numberOfTokens >= 1){
overFree = numberOfTokens;
}
if (overFree == 0) {
require(
msg.value >= 0,
"Incorrect ETH value sent"
);
} else {
require(msg.value >= (overFree * PUBLIC_SALE_PRICE), "Incorrect ETH value sent");
}
_safeMint(msg.sender, numberOfTokens);
}
function setBaseURI(string memory _newBaseURI)
public
onlyOwner
{
baseURI = _newBaseURI;
}
function treasuryMint(uint quantity)
public
onlyOwner
{
require(
quantity > 0,
"Invalid mint amount"
);
require(
totalSupply() + quantity <= maxSupply,
"Maximum supply exceeded"
);
_safeMint(msg.sender, quantity);
}
function withdraw()
public
onlyOwner
nonReentrant
{
Address.sendValue(payable(msg.sender), address(this).balance);
}
function tokenURI(uint _tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(_tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if(revealed){
return bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, (_tokenId).toString(), ".json"))
: "";
}
else {
return bytes(baseURI).length > 0
? string(abi.encodePacked(hiddenbaseURI))
: "";
}
}
function _baseURI()
internal
view
virtual
override
returns (string memory)
{
return baseURI;
}
function setIsPublicSaleActive(bool _isPublicSaleActive)
external
onlyOwner
{
isPublicSaleActive = _isPublicSaleActive;
}
function setReveal(bool _reveal)
external
onlyOwner
{
revealed = _reveal;
}
function setSalePrice(uint256 _price)
external
onlyOwner
{
PUBLIC_SALE_PRICE = _price;
}
function setMaxLimitPerWALLET(uint256 _limit)
external
onlyOwner
{
MAX_MINTS_PER_WALLET = _limit;
}
}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":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"hiddenbaseURI","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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerWALLET","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
61010060405260436080818152906200271d60a039600a90620000239082620004fa565b50604051806080016040528060428152602001620026bb60429139600b906200004d9082620004fa565b50611388600c556005600d5566d529ae9e860000600e556002600f556010805461ffff191690553480156200008157600080fd5b506040518060400160405280600b81526020016a4e4654205461676765727360a81b815250604051806040016040528060078152602001665461676765727360c81b8152508160029081620000d79190620004fa565b506003620000e68282620004fa565b5050600160005550620000f93362000111565b60016009556200010b3360c862000163565b62000674565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001858282604051806020016040528060008152506200018960201b60201c565b5050565b6000546001600160a01b038416620001b357604051622e076360e81b815260040160405180910390fd5b82600003620001d55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546001600160801b031981166001600160401b038083168b018116918217680100000000000000006001600160401b031990941690921783900481168b0181169092021790915585845260048352922080546001600160e01b0319168417600160a01b4290941693909302929092179091558291828601916200027e919062000352811b6200108017901c565b15620002fd575b60405182906001600160a01b03881690600090600080516020620026fd833981519152908290a46001820191620002c29060009088908762000361565b620002e0576040516368d2bf6b60e11b815260040160405180910390fd5b80820362000285578260005414620002f757600080fd5b62000332565b5b6040516001830192906001600160a01b03881690600090600080516020620026fd833981519152908290a4808203620002fe575b5060009081556200034c908583866001600160e01b038516565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000398903390899088908890600401620005c6565b6020604051808303816000875af1925050508015620003d6575060408051601f3d908101601f19168201909252620003d39181019062000641565b60015b62000438573d80801562000407576040519150601f19603f3d011682016040523d82523d6000602084013e6200040c565b606091505b50805160000362000430576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200048057607f821691505b602082108103620004a157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004f557600081815260208120601f850160051c81016020861015620004d05750805b601f850160051c820191505b81811015620004f157828155600101620004dc565b5050505b505050565b81516001600160401b0381111562000516576200051662000455565b6200052e816200052784546200046b565b84620004a7565b602080601f8311600181146200056657600084156200054d5750858301515b600019600386901b1c1916600185901b178555620004f1565b600085815260208120601f198616915b82811015620005975788860151825594840194600190910190840162000576565b5085821015620005b65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006155785810182015185820160a001528101620005f7565b828111156200062857600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200065457600080fd5b81516001600160e01b0319811681146200066d57600080fd5b9392505050565b61203780620006846000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063e78fba2211610064578063e78fba221461053a578063e985e9c514610550578063efdc778814610599578063f2fde38b146105b957600080fd5b8063b88d4fde146104cf578063c87b56dd146104ef578063d5abeb011461050f578063da07bbfa1461052557600080fd5b806395d89b41116100d157806395d89b411461047157806398710d1e14610486578063a0712d681461049c578063a22cb465146104af57600080fd5b806370a08231146103fe578063715018a61461041e57806378560899146104335780638da5cb5b1461045357600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461038957806355f804b3146103a95780636352211e146103c95780636c0360eb146103e957600080fd5b806323b872dd1461031457806328cad13d146103345780632a3f300c146103545780633ccfd60b1461037457600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806318160ddd146102bd5780631919fed7146102da5780631e84c413146102fa57600080fd5b806301ffc9a7146101e857806306fdde031461021d57806307e89ec01461023f578063081812fc14610263575b600080fd5b3480156101f457600080fd5b5061020861020336600461198c565b6105d9565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261062b565b6040516102149190611a08565b34801561024b57600080fd5b50610255600e5481565b604051908152602001610214565b34801561026f57600080fd5b5061028361027e366004611a1b565b6106bd565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004611a4b565b610701565b005b3480156102c957600080fd5b506001546000540360001901610255565b3480156102e657600080fd5b506102bb6102f5366004611a1b565b61078e565b34801561030657600080fd5b506010546102089060ff1681565b34801561032057600080fd5b506102bb61032f366004611a75565b6107c6565b34801561034057600080fd5b506102bb61034f366004611ac1565b6107d1565b34801561036057600080fd5b506102bb61036f366004611ac1565b61080e565b34801561038057600080fd5b506102bb610852565b34801561039557600080fd5b506102bb6103a4366004611a75565b6108e4565b3480156103b557600080fd5b506102bb6103c4366004611b68565b6108ff565b3480156103d557600080fd5b506102836103e4366004611a1b565b610939565b3480156103f557600080fd5b5061023261094b565b34801561040a57600080fd5b50610255610419366004611bb1565b6109d9565b34801561042a57600080fd5b506102bb610a28565b34801561043f57600080fd5b506102bb61044e366004611a1b565b610a5e565b34801561045f57600080fd5b506008546001600160a01b0316610283565b34801561047d57600080fd5b50610232610a8d565b34801561049257600080fd5b50610255600f5481565b6102bb6104aa366004611a1b565b610a9c565b3480156104bb57600080fd5b506102bb6104ca366004611bcc565b610cf2565b3480156104db57600080fd5b506102bb6104ea366004611bff565b610d87565b3480156104fb57600080fd5b5061023261050a366004611a1b565b610dd8565b34801561051b57600080fd5b50610255600c5481565b34801561053157600080fd5b50610232610ef5565b34801561054657600080fd5b50610255600d5481565b34801561055c57600080fd5b5061020861056b366004611c7b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a557600080fd5b506102bb6105b4366004611a1b565b610f02565b3480156105c557600080fd5b506102bb6105d4366004611bb1565b610fe8565b60006001600160e01b031982166380ac58cd60e01b148061060a57506001600160e01b03198216635b5e139f60e01b145b8061062557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461063a90611ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461066690611ca5565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b60006106c88261108f565b6106e5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061070c82610939565b9050806001600160a01b0316836001600160a01b0316036107405760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610760575061075e813361056b565b155b1561077e576040516367d9dca160e11b815260040160405180910390fd5b6107898383836110c8565b505050565b6008546001600160a01b031633146107c15760405162461bcd60e51b81526004016107b890611cdf565b60405180910390fd5b600e55565b610789838383611124565b6008546001600160a01b031633146107fb5760405162461bcd60e51b81526004016107b890611cdf565b6010805460ff1916911515919091179055565b6008546001600160a01b031633146108385760405162461bcd60e51b81526004016107b890611cdf565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b0316331461087c5760405162461bcd60e51b81526004016107b890611cdf565b6002600954036108ce5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107b8565b60026009556108dd3347611313565b6001600955565b61078983838360405180602001604052806000815250610d87565b6008546001600160a01b031633146109295760405162461bcd60e51b81526004016107b890611cdf565b600a6109358282611d62565b5050565b60006109448261142c565b5192915050565b600a805461095890611ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461098490611ca5565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b505050505081565b60006001600160a01b038216610a02576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a525760405162461bcd60e51b81526004016107b890611cdf565b610a5c6000611555565b565b6008546001600160a01b03163314610a885760405162461bcd60e51b81526004016107b890611cdf565b600d55565b60606003805461063a90611ca5565b60105460ff16610aee5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e00000000000000000060448201526064016107b8565b600c54610afc906001611e38565b6001546000548391900360001901610b149190611e38565b10610b4b5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107b8565b600d5481610b58336109d9565b610b629190611e38565b1115610bb05760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e7473207065722077616c6c657420657863656564656400000060448201526064016107b8565b6000610bbb336109d9565b158015610bc85750816001145b15610bd1575060005b610bda336109d9565b158015610be75750816002145b15610bf0575060005b610bf9336109d9565b158015610c065750600282115b15610c1957610c16600283611e50565b90505b610c22336109d9565b6001148015610c315750816001145b15610c3a575060005b610c43336109d9565b6001148015610c525750600182115b15610c6557610c62600183611e50565b90505b6001610c70336109d9565b118015610c7e575060018210155b15610c865750805b8015610ce857600e54610c999082611e67565b341015610ce85760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016107b8565b61093533836115a7565b336001600160a01b03831603610d1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d92848484611124565b6001600160a01b0383163b15158015610db45750610db2848484846115c1565b155b15610dd2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610de38261108f565b610e475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b8565b601054610100900460ff1615610eb3576000600a8054610e6690611ca5565b905011610e825760405180602001604052806000815250610625565b600a610e8d836116ad565b604051602001610e9e929190611ef9565b60405160208183030381529060405292915050565b6000600a8054610ec290611ca5565b905011610ede5760405180602001604052806000815250610625565b600b604051602001610e9e9190611f2e565b919050565b600b805461095890611ca5565b6008546001600160a01b03163314610f2c5760405162461bcd60e51b81526004016107b890611cdf565b60008111610f725760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016107b8565b600c546001546000548391900360001901610f8d9190611e38565b1115610fdb5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c7920657863656564656400000000000000000060448201526064016107b8565b610fe533826115a7565b50565b6008546001600160a01b031633146110125760405162461bcd60e51b81526004016107b890611cdf565b6001600160a01b0381166110775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b8565b610fe581611555565b6001600160a01b03163b151590565b6000816001111580156110a3575060005482105b8015610625575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061112f8261142c565b9050836001600160a01b031681600001516001600160a01b0316146111665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111845750611184853361056b565b8061119f575033611194846106bd565b6001600160a01b0316145b9050806111bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111e657604051633a954ecd60e21b815260040160405180910390fd5b6111f2600084876110c8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112c85760005482146112c8578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b804710156113635760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107b8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113b0576040519150601f19603f3d011682016040523d82523d6000602084013e6113b5565b606091505b50509050806107895760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107b8565b6040805160608101825260008082526020820181905291810191909152818060011115801561145c575060005481105b1561153c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061153a5780516001600160a01b0316156114d0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611535579392505050565b6114d0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109358282604051806020016040528060008152506117ae565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115f6903390899088908890600401611f3a565b6020604051808303816000875af1925050508015611631575060408051601f3d908101601f1916820190925261162e91810190611f77565b60015b61168f573d80801561165f576040519150601f19603f3d011682016040523d82523d6000602084013e611664565b606091505b508051600003611687576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116fe57806116e881611f94565b91506116f79050600a83611fc3565b91506116d8565b60008167ffffffffffffffff81111561171957611719611adc565b6040519080825280601f01601f191660200182016040528015611743576020820181803683370190505b5090505b84156116a557611758600183611e50565b9150611765600a86611fd7565b611770906030611e38565b60f81b81838151811061178557611785611feb565b60200101906001600160f81b031916908160001a9053506117a7600a86611fc3565b9450611747565b6000546001600160a01b0384166117d757604051622e076360e81b815260040160405180910390fd5b826000036117f85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611921575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118ea60008784806001019550876115c1565b611907576040516368d2bf6b60e11b815260040160405180910390fd5b80820361189f57826000541461191c57600080fd5b611966565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611922575b506000908155610dd29085838684565b6001600160e01b031981168114610fe557600080fd5b60006020828403121561199e57600080fd5b81356119a981611976565b9392505050565b60005b838110156119cb5781810151838201526020016119b3565b83811115610dd25750506000910152565b600081518084526119f48160208601602086016119b0565b601f01601f19169290920160200192915050565b6020815260006119a960208301846119dc565b600060208284031215611a2d57600080fd5b5035919050565b80356001600160a01b0381168114610ef057600080fd5b60008060408385031215611a5e57600080fd5b611a6783611a34565b946020939093013593505050565b600080600060608486031215611a8a57600080fd5b611a9384611a34565b9250611aa160208501611a34565b9150604084013590509250925092565b80358015158114610ef057600080fd5b600060208284031215611ad357600080fd5b6119a982611ab1565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b0d57611b0d611adc565b604051601f8501601f19908116603f01168101908282118183101715611b3557611b35611adc565b81604052809350858152868686011115611b4e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b7a57600080fd5b813567ffffffffffffffff811115611b9157600080fd5b8201601f81018413611ba257600080fd5b6116a584823560208401611af2565b600060208284031215611bc357600080fd5b6119a982611a34565b60008060408385031215611bdf57600080fd5b611be883611a34565b9150611bf660208401611ab1565b90509250929050565b60008060008060808587031215611c1557600080fd5b611c1e85611a34565b9350611c2c60208601611a34565b925060408501359150606085013567ffffffffffffffff811115611c4f57600080fd5b8501601f81018713611c6057600080fd5b611c6f87823560208401611af2565b91505092959194509250565b60008060408385031215611c8e57600080fd5b611c9783611a34565b9150611bf660208401611a34565b600181811c90821680611cb957607f821691505b602082108103611cd957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561078957600081815260208120601f850160051c81016020861015611d3b5750805b601f850160051c820191505b81811015611d5a57828155600101611d47565b505050505050565b815167ffffffffffffffff811115611d7c57611d7c611adc565b611d9081611d8a8454611ca5565b84611d14565b602080601f831160018114611dc55760008415611dad5750858301515b600019600386901b1c1916600185901b178555611d5a565b600085815260208120601f198616915b82811015611df457888601518255948401946001909101908401611dd5565b5085821015611e125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e4b57611e4b611e22565b500190565b600082821015611e6257611e62611e22565b500390565b6000816000190483118215151615611e8157611e81611e22565b500290565b60008154611e9381611ca5565b60018281168015611eab5760018114611ec057611eef565b60ff1984168752821515830287019450611eef565b8560005260208060002060005b85811015611ee65781548a820152908401908201611ecd565b50505082870194505b5050505092915050565b6000611f058285611e86565b8351611f158183602088016119b0565b64173539b7b760d91b9101908152600501949350505050565b60006119a98284611e86565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f6d908301846119dc565b9695505050505050565b600060208284031215611f8957600080fd5b81516119a981611976565b600060018201611fa657611fa6611e22565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611fd257611fd2611fad565b500490565b600082611fe657611fe6611fad565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212200189bc1305323bf52db8fd27d55ad1c1f6e1f8e02cb5d27b80b23c94b0a88cc264736f6c634300080f0033697066733a2f2f6261666b726569613437623366726932746c74716a7762627577357a7a6563616e62743567676c78657a6c79776c7474706369623675757962646dddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef697066733a2f2f62616679626569676d3632776132783236636c676d64633261766a6433766170746c723669706277776a7a7a6b746e37356b37707578627a766f612f
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063e78fba2211610064578063e78fba221461053a578063e985e9c514610550578063efdc778814610599578063f2fde38b146105b957600080fd5b8063b88d4fde146104cf578063c87b56dd146104ef578063d5abeb011461050f578063da07bbfa1461052557600080fd5b806395d89b41116100d157806395d89b411461047157806398710d1e14610486578063a0712d681461049c578063a22cb465146104af57600080fd5b806370a08231146103fe578063715018a61461041e57806378560899146104335780638da5cb5b1461045357600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461038957806355f804b3146103a95780636352211e146103c95780636c0360eb146103e957600080fd5b806323b872dd1461031457806328cad13d146103345780632a3f300c146103545780633ccfd60b1461037457600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806318160ddd146102bd5780631919fed7146102da5780631e84c413146102fa57600080fd5b806301ffc9a7146101e857806306fdde031461021d57806307e89ec01461023f578063081812fc14610263575b600080fd5b3480156101f457600080fd5b5061020861020336600461198c565b6105d9565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261062b565b6040516102149190611a08565b34801561024b57600080fd5b50610255600e5481565b604051908152602001610214565b34801561026f57600080fd5b5061028361027e366004611a1b565b6106bd565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b6366004611a4b565b610701565b005b3480156102c957600080fd5b506001546000540360001901610255565b3480156102e657600080fd5b506102bb6102f5366004611a1b565b61078e565b34801561030657600080fd5b506010546102089060ff1681565b34801561032057600080fd5b506102bb61032f366004611a75565b6107c6565b34801561034057600080fd5b506102bb61034f366004611ac1565b6107d1565b34801561036057600080fd5b506102bb61036f366004611ac1565b61080e565b34801561038057600080fd5b506102bb610852565b34801561039557600080fd5b506102bb6103a4366004611a75565b6108e4565b3480156103b557600080fd5b506102bb6103c4366004611b68565b6108ff565b3480156103d557600080fd5b506102836103e4366004611a1b565b610939565b3480156103f557600080fd5b5061023261094b565b34801561040a57600080fd5b50610255610419366004611bb1565b6109d9565b34801561042a57600080fd5b506102bb610a28565b34801561043f57600080fd5b506102bb61044e366004611a1b565b610a5e565b34801561045f57600080fd5b506008546001600160a01b0316610283565b34801561047d57600080fd5b50610232610a8d565b34801561049257600080fd5b50610255600f5481565b6102bb6104aa366004611a1b565b610a9c565b3480156104bb57600080fd5b506102bb6104ca366004611bcc565b610cf2565b3480156104db57600080fd5b506102bb6104ea366004611bff565b610d87565b3480156104fb57600080fd5b5061023261050a366004611a1b565b610dd8565b34801561051b57600080fd5b50610255600c5481565b34801561053157600080fd5b50610232610ef5565b34801561054657600080fd5b50610255600d5481565b34801561055c57600080fd5b5061020861056b366004611c7b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a557600080fd5b506102bb6105b4366004611a1b565b610f02565b3480156105c557600080fd5b506102bb6105d4366004611bb1565b610fe8565b60006001600160e01b031982166380ac58cd60e01b148061060a57506001600160e01b03198216635b5e139f60e01b145b8061062557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461063a90611ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461066690611ca5565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b60006106c88261108f565b6106e5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061070c82610939565b9050806001600160a01b0316836001600160a01b0316036107405760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610760575061075e813361056b565b155b1561077e576040516367d9dca160e11b815260040160405180910390fd5b6107898383836110c8565b505050565b6008546001600160a01b031633146107c15760405162461bcd60e51b81526004016107b890611cdf565b60405180910390fd5b600e55565b610789838383611124565b6008546001600160a01b031633146107fb5760405162461bcd60e51b81526004016107b890611cdf565b6010805460ff1916911515919091179055565b6008546001600160a01b031633146108385760405162461bcd60e51b81526004016107b890611cdf565b601080549115156101000261ff0019909216919091179055565b6008546001600160a01b0316331461087c5760405162461bcd60e51b81526004016107b890611cdf565b6002600954036108ce5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107b8565b60026009556108dd3347611313565b6001600955565b61078983838360405180602001604052806000815250610d87565b6008546001600160a01b031633146109295760405162461bcd60e51b81526004016107b890611cdf565b600a6109358282611d62565b5050565b60006109448261142c565b5192915050565b600a805461095890611ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461098490611ca5565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b505050505081565b60006001600160a01b038216610a02576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a525760405162461bcd60e51b81526004016107b890611cdf565b610a5c6000611555565b565b6008546001600160a01b03163314610a885760405162461bcd60e51b81526004016107b890611cdf565b600d55565b60606003805461063a90611ca5565b60105460ff16610aee5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e00000000000000000060448201526064016107b8565b600c54610afc906001611e38565b6001546000548391900360001901610b149190611e38565b10610b4b5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107b8565b600d5481610b58336109d9565b610b629190611e38565b1115610bb05760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e7473207065722077616c6c657420657863656564656400000060448201526064016107b8565b6000610bbb336109d9565b158015610bc85750816001145b15610bd1575060005b610bda336109d9565b158015610be75750816002145b15610bf0575060005b610bf9336109d9565b158015610c065750600282115b15610c1957610c16600283611e50565b90505b610c22336109d9565b6001148015610c315750816001145b15610c3a575060005b610c43336109d9565b6001148015610c525750600182115b15610c6557610c62600183611e50565b90505b6001610c70336109d9565b118015610c7e575060018210155b15610c865750805b8015610ce857600e54610c999082611e67565b341015610ce85760405162461bcd60e51b815260206004820152601860248201527f496e636f7272656374204554482076616c75652073656e74000000000000000060448201526064016107b8565b61093533836115a7565b336001600160a01b03831603610d1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d92848484611124565b6001600160a01b0383163b15158015610db45750610db2848484846115c1565b155b15610dd2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610de38261108f565b610e475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107b8565b601054610100900460ff1615610eb3576000600a8054610e6690611ca5565b905011610e825760405180602001604052806000815250610625565b600a610e8d836116ad565b604051602001610e9e929190611ef9565b60405160208183030381529060405292915050565b6000600a8054610ec290611ca5565b905011610ede5760405180602001604052806000815250610625565b600b604051602001610e9e9190611f2e565b919050565b600b805461095890611ca5565b6008546001600160a01b03163314610f2c5760405162461bcd60e51b81526004016107b890611cdf565b60008111610f725760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016107b8565b600c546001546000548391900360001901610f8d9190611e38565b1115610fdb5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c7920657863656564656400000000000000000060448201526064016107b8565b610fe533826115a7565b50565b6008546001600160a01b031633146110125760405162461bcd60e51b81526004016107b890611cdf565b6001600160a01b0381166110775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b8565b610fe581611555565b6001600160a01b03163b151590565b6000816001111580156110a3575060005482105b8015610625575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061112f8261142c565b9050836001600160a01b031681600001516001600160a01b0316146111665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111845750611184853361056b565b8061119f575033611194846106bd565b6001600160a01b0316145b9050806111bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111e657604051633a954ecd60e21b815260040160405180910390fd5b6111f2600084876110c8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112c85760005482146112c8578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b804710156113635760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107b8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113b0576040519150601f19603f3d011682016040523d82523d6000602084013e6113b5565b606091505b50509050806107895760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107b8565b6040805160608101825260008082526020820181905291810191909152818060011115801561145c575060005481105b1561153c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061153a5780516001600160a01b0316156114d0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611535579392505050565b6114d0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109358282604051806020016040528060008152506117ae565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115f6903390899088908890600401611f3a565b6020604051808303816000875af1925050508015611631575060408051601f3d908101601f1916820190925261162e91810190611f77565b60015b61168f573d80801561165f576040519150601f19603f3d011682016040523d82523d6000602084013e611664565b606091505b508051600003611687576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116fe57806116e881611f94565b91506116f79050600a83611fc3565b91506116d8565b60008167ffffffffffffffff81111561171957611719611adc565b6040519080825280601f01601f191660200182016040528015611743576020820181803683370190505b5090505b84156116a557611758600183611e50565b9150611765600a86611fd7565b611770906030611e38565b60f81b81838151811061178557611785611feb565b60200101906001600160f81b031916908160001a9053506117a7600a86611fc3565b9450611747565b6000546001600160a01b0384166117d757604051622e076360e81b815260040160405180910390fd5b826000036117f85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611921575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118ea60008784806001019550876115c1565b611907576040516368d2bf6b60e11b815260040160405180910390fd5b80820361189f57826000541461191c57600080fd5b611966565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611922575b506000908155610dd29085838684565b6001600160e01b031981168114610fe557600080fd5b60006020828403121561199e57600080fd5b81356119a981611976565b9392505050565b60005b838110156119cb5781810151838201526020016119b3565b83811115610dd25750506000910152565b600081518084526119f48160208601602086016119b0565b601f01601f19169290920160200192915050565b6020815260006119a960208301846119dc565b600060208284031215611a2d57600080fd5b5035919050565b80356001600160a01b0381168114610ef057600080fd5b60008060408385031215611a5e57600080fd5b611a6783611a34565b946020939093013593505050565b600080600060608486031215611a8a57600080fd5b611a9384611a34565b9250611aa160208501611a34565b9150604084013590509250925092565b80358015158114610ef057600080fd5b600060208284031215611ad357600080fd5b6119a982611ab1565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b0d57611b0d611adc565b604051601f8501601f19908116603f01168101908282118183101715611b3557611b35611adc565b81604052809350858152868686011115611b4e57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b7a57600080fd5b813567ffffffffffffffff811115611b9157600080fd5b8201601f81018413611ba257600080fd5b6116a584823560208401611af2565b600060208284031215611bc357600080fd5b6119a982611a34565b60008060408385031215611bdf57600080fd5b611be883611a34565b9150611bf660208401611ab1565b90509250929050565b60008060008060808587031215611c1557600080fd5b611c1e85611a34565b9350611c2c60208601611a34565b925060408501359150606085013567ffffffffffffffff811115611c4f57600080fd5b8501601f81018713611c6057600080fd5b611c6f87823560208401611af2565b91505092959194509250565b60008060408385031215611c8e57600080fd5b611c9783611a34565b9150611bf660208401611a34565b600181811c90821680611cb957607f821691505b602082108103611cd957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561078957600081815260208120601f850160051c81016020861015611d3b5750805b601f850160051c820191505b81811015611d5a57828155600101611d47565b505050505050565b815167ffffffffffffffff811115611d7c57611d7c611adc565b611d9081611d8a8454611ca5565b84611d14565b602080601f831160018114611dc55760008415611dad5750858301515b600019600386901b1c1916600185901b178555611d5a565b600085815260208120601f198616915b82811015611df457888601518255948401946001909101908401611dd5565b5085821015611e125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e4b57611e4b611e22565b500190565b600082821015611e6257611e62611e22565b500390565b6000816000190483118215151615611e8157611e81611e22565b500290565b60008154611e9381611ca5565b60018281168015611eab5760018114611ec057611eef565b60ff1984168752821515830287019450611eef565b8560005260208060002060005b85811015611ee65781548a820152908401908201611ecd565b50505082870194505b5050505092915050565b6000611f058285611e86565b8351611f158183602088016119b0565b64173539b7b760d91b9101908152600501949350505050565b60006119a98284611e86565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f6d908301846119dc565b9695505050505050565b600060208284031215611f8957600080fd5b81516119a981611976565b600060018201611fa657611fa6611e22565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611fd257611fd2611fad565b500490565b600082611fe657611fe6611fad565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212200189bc1305323bf52db8fd27d55ad1c1f6e1f8e02cb5d27b80b23c94b0a88cc264736f6c634300080f0033
Deployed Bytecode Sourcemap
48538:3644:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29691:305;;;;;;;;;;-1:-1:-1;29691:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29691:305:0;;;;;;;;32804:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48942:45::-;;;;;;;;;;;;;;;;;;;1489:25:1;;;1477:2;1462:18;48942:45:0;1343:177:1;34307:204:0;;;;;;;;;;-1:-1:-1;34307:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;34307:204:0;1710:203:1;33870:371:0;;;;;;;;;;-1:-1:-1;33870:371:0;;;;;:::i;:::-;;:::i;:::-;;28940:303;;;;;;;;;;-1:-1:-1;28797:1:0;29194:12;28984:7;29178:13;:28;-1:-1:-1;;29178:46:0;28940:303;;51932:115;;;;;;;;;;-1:-1:-1;51932:115:0;;;;;:::i;:::-;;:::i;49035:38::-;;;;;;;;;;-1:-1:-1;49035:38:0;;;;;;;;35172:170;;;;;;;;;;-1:-1:-1;35172:170:0;;;;;:::i;:::-;;:::i;51668:148::-;;;;;;;;;;-1:-1:-1;51668:148:0;;;;;:::i;:::-;;:::i;51822:102::-;;;;;;;;;;-1:-1:-1;51822:102:0;;;;;:::i;:::-;;:::i;50864:142::-;;;;;;;;;;;;;:::i;35413:185::-;;;;;;;;;;-1:-1:-1;35413:185:0;;;;;:::i;:::-;;:::i;50457:111::-;;;;;;;;;;-1:-1:-1;50457:111:0;;;;;:::i;:::-;;:::i;32612:125::-;;;;;;;;;;-1:-1:-1;32612:125:0;;;;;:::i;:::-;;:::i;48661:93::-;;;;;;;;;;;;;:::i;30060:206::-;;;;;;;;;;-1:-1:-1;30060:206:0;;;;;:::i;:::-;;:::i;7457:103::-;;;;;;;;;;;;;:::i;52053:126::-;;;;;;;;;;-1:-1:-1;52053:126:0;;;;;:::i;:::-;;:::i;6806:87::-;;;;;;;;;;-1:-1:-1;6879:6:0;;-1:-1:-1;;;;;6879:6:0;6806:87;;32973:104;;;;;;;;;;;;;:::i;48992:38::-;;;;;;;;;;;;;;;;49209:1242;;;;;;:::i;:::-;;:::i;34583:287::-;;;;;;;;;;-1:-1:-1;34583:287:0;;;;;:::i;:::-;;:::i;35669:369::-;;;;;;;;;;-1:-1:-1;35669:369:0;;;;;:::i;:::-;;:::i;51012:514::-;;;;;;;;;;-1:-1:-1;51012:514:0;;;;;:::i;:::-;;:::i;48862:31::-;;;;;;;;;;;;;;;;48759:98;;;;;;;;;;;;;:::i;48898:39::-;;;;;;;;;;;;;;;;34941:164;;;;;;;;;;-1:-1:-1;34941:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35062:25:0;;;35038:4;35062:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34941:164;50574:284;;;;;;;;;;-1:-1:-1;50574:284:0;;;;;:::i;:::-;;:::i;7715:201::-;;;;;;;;;;-1:-1:-1;7715:201:0;;;;;:::i;:::-;;:::i;29691:305::-;29793:4;-1:-1:-1;;;;;;29830:40:0;;-1:-1:-1;;;29830:40:0;;:105;;-1:-1:-1;;;;;;;29887:48:0;;-1:-1:-1;;;29887:48:0;29830:105;:158;;;-1:-1:-1;;;;;;;;;;19699:40:0;;;29952:36;29810:178;29691:305;-1:-1:-1;;29691:305:0:o;32804:100::-;32858:13;32891:5;32884:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32804:100;:::o;34307:204::-;34375:7;34400:16;34408:7;34400;:16::i;:::-;34395:64;;34425:34;;-1:-1:-1;;;34425:34:0;;;;;;;;;;;34395:64;-1:-1:-1;34479:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34479:24:0;;34307:204::o;33870:371::-;33943:13;33959:24;33975:7;33959:15;:24::i;:::-;33943:40;;34004:5;-1:-1:-1;;;;;33998:11:0;:2;-1:-1:-1;;;;;33998:11:0;;33994:48;;34018:24;;-1:-1:-1;;;34018:24:0;;;;;;;;;;;33994:48;5610:10;-1:-1:-1;;;;;34059:21:0;;;;;;:63;;-1:-1:-1;34085:37:0;34102:5;5610:10;34941:164;:::i;34085:37::-;34084:38;34059:63;34055:138;;;34146:35;;-1:-1:-1;;;34146:35:0;;;;;;;;;;;34055:138;34205:28;34214:2;34218:7;34227:5;34205:8;:28::i;:::-;33932:309;33870:371;;:::o;51932:115::-;6879:6;;-1:-1:-1;;;;;6879:6:0;5610:10;7026:23;7018:68;;;;-1:-1:-1;;;7018:68:0;;;;;;;:::i;:::-;;;;;;;;;52015:17:::1;:26:::0;51932:115::o;35172:170::-;35306:28;35316:4;35322:2;35326:7;35306:9;:28::i;51668:148::-;6879:6;;-1:-1:-1;;;;;6879:6:0;5610:10;7026:23;7018:68;;;;-1:-1:-1;;;7018:68:0;;;;;;;:::i;:::-;51770:18:::1;:40:::0;;-1:-1:-1;;51770:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51668:148::o;51822:102::-;6879:6;;-1:-1:-1;;;;;6879:6:0;5610:10;7026:23;7018:68;;;;-1:-1:-1;;;7018:68:0;;;;;;;:::i;:::-;51900:8:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;51900:18:0;;::::1;::::0;;;::::1;::::0;;51822:102::o;50864:142::-;6879:6;;-1:-1:-1;;;;;6879:6:0;5610:10;7026:23;7018:68;;;;-1:-1:-1;;;7018:68:0;;;;;;;:::i;:::-;1780:1:::1;2378:7;;:19:::0;2370:63:::1;;;::::0;-1:-1:-1;;;2370:63:0;;6598:2:1;2370:63:0::1;::::0;::::1;6580:21:1::0;6637:2;6617:18;;;6610:30;6676:33;6656:18;;;6649:61;6727:18;;2370:63:0::1;6396:355:1::0;2370:63:0::1;1780:1;2511:7;:18:::0;50939:61:::2;50965:10;50978:21;50939:17;:61::i;:::-;1736:1:::1;2690:7;:22:::0;50864:142::o;35413:185::-;35551:39;35568:4;35574:2;35578:7;35551:39;;;;;;;;;;;;:16;:39::i;50457:111::-;6879:6;;-1:-1:-1;;;;;6879:6:0;5610:10;7026:23;7018:68;;;;-1:-1:-1;;;7018:68:0;;;;;;;:::i;:::-;50541:7:::1;:21;50551:11:::0;50541:7;:21:::1;:::i;:::-;;50457:111:::0;:::o;32612:125::-;32676:7;32703:21;32716:7;32703:12;:21::i;:::-;:26;;32612:125;-1:-1:-1;;32612:125:0:o;48661:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30060:206::-;30124:7;-1:-1:-1;;;;;30148:19:0;;30144:60;;30176:28;;-1:-1:-1;;;30176:28:0;;;;;;;;;;;30144:60;-1:-1:-1;;;;;;30230:19:0;;;;;:12;:19;;;;;:27;;;;30060:206::o;7457:103::-;6879:6;;-1:-1:-1;;;;;6879:6:0;5610:10;7026:23;7018:68;;;;-1:-1:-1;;;7018:68:0;;;;;;;:::i;:::-;7522:30:::1;7549:1;7522:18;:30::i;:::-;7457:103::o:0;52053:126::-;6879:6;;-1:-1:-1;;;;;6879:6:0;5610:10;7026:23;7018:68;;;;-1:-1:-1;;;7018:68:0;;;;;;;:::i;:::-;52144:20:::1;:29:::0;52053:126::o;32973:104::-;33029:13;33062:7;33055:14;;;;;:::i;49209:1242::-;49296:18;;;;49288:54;;;;-1:-1:-1;;;49288:54:0;;9162:2:1;49288:54:0;;;9144:21:1;9201:2;9181:18;;;9174:30;9240:25;9220:18;;;9213:53;9283:18;;49288:54:0;8960:347:1;49288:54:0;49390:9;;:13;;49402:1;49390:13;:::i;:::-;28797:1;29194:12;28984:7;29178:13;49373:14;;29178:28;;-1:-1:-1;;29178:46:0;49357:30;;;;:::i;:::-;:46;49349:66;;;;-1:-1:-1;;;49349:66:0;;9779:2:1;49349:66:0;;;9761:21:1;9818:1;9798:18;;;9791:29;-1:-1:-1;;;9836:18:1;;;9829:37;9883:18;;49349:66:0;9577:330:1;49349:66:0;49472:20;;49454:14;49430:21;49440:10;49430:9;:21::i;:::-;:38;;;;:::i;:::-;:62;;49422:104;;;;-1:-1:-1;;;49422:104:0;;10114:2:1;49422:104:0;;;10096:21:1;10153:2;10133:18;;;10126:30;10192:31;10172:18;;;10165:59;10241:18;;49422:104:0;9912:353:1;49422:104:0;49535:13;49558:21;49568:10;49558:9;:21::i;:::-;:26;:49;;;;;49588:14;49606:1;49588:19;49558:49;49555:84;;;-1:-1:-1;49630:1:0;49555:84;49648:21;49658:10;49648:9;:21::i;:::-;:26;:49;;;;;49678:14;49696:1;49678:19;49648:49;49645:84;;;-1:-1:-1;49720:1:0;49645:84;49738:21;49748:10;49738:9;:21::i;:::-;:26;:48;;;;;49785:1;49768:14;:18;49738:48;49735:100;;;49809:18;49826:1;49809:14;:18;:::i;:::-;49798:29;;49735:100;49844:21;49854:10;49844:9;:21::i;:::-;49869:1;49844:26;:49;;;;;49874:14;49892:1;49874:19;49844:49;49841:84;;;-1:-1:-1;49916:1:0;49841:84;49934:21;49944:10;49934:9;:21::i;:::-;49959:1;49934:26;:48;;;;;49981:1;49964:14;:18;49934:48;49931:100;;;50005:18;50022:1;50005:14;:18;:::i;:::-;49994:29;;49931:100;50064:1;50040:21;50050:10;50040:9;:21::i;:::-;:25;:48;;;;;50087:1;50069:14;:19;;50040:48;50037:96;;;-1:-1:-1;50111:14:0;50037:96;50147:249;;;;50337:17;;50326:28;;:8;:28;:::i;:::-;50312:9;:43;;50304:80;;;;-1:-1:-1;;;50304:80:0;;10602:2:1;50304:80:0;;;10584:21:1;10641:2;10621:18;;;10614:30;10680:26;10660:18;;;10653:54;10724:18;;50304:80:0;10400:348:1;50304:80:0;50408:37;50418:10;50430:14;50408:9;:37::i;34583:287::-;5610:10;-1:-1:-1;;;;;34682:24:0;;;34678:54;;34715:17;;-1:-1:-1;;;34715:17:0;;;;;;;;;;;34678:54;5610:10;34745:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34745:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34745:53:0;;;;;;;;;;34814:48;;540:41:1;;;34745:42:0;;5610:10;34814:48;;513:18:1;34814:48:0;;;;;;;34583:287;;:::o;35669:369::-;35836:28;35846:4;35852:2;35856:7;35836:9;:28::i;:::-;-1:-1:-1;;;;;35879:13:0;;9802:19;:23;;35879:76;;;;;35899:56;35930:4;35936:2;35940:7;35949:5;35899:30;:56::i;:::-;35898:57;35879:76;35875:156;;;35979:40;;-1:-1:-1;;;35979:40:0;;;;;;;;;;;35875:156;35669:369;;;;:::o;51012:514::-;51108:13;51149:17;51157:8;51149:7;:17::i;:::-;51133:98;;;;-1:-1:-1;;;51133:98:0;;11128:2:1;51133:98:0;;;11110:21:1;11167:2;11147:18;;;11140:30;11206:34;11186:18;;;11179:62;-1:-1:-1;;;11257:18:1;;;11250:45;11312:19;;51133:98:0;10926:411:1;51133:98:0;51241:8;;;;;;;51238:277;;;51288:1;51270:7;51264:21;;;;;:::i;:::-;;;:25;:116;;;;;;;;;;;;;;;;;51325:7;51334:21;51335:8;51334:19;:21::i;:::-;51308:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51257:123;51012:514;-1:-1:-1;;51012:514:0:o;51238:277::-;51441:1;51423:7;51417:21;;;;;:::i;:::-;;;:25;:90;;;;;;;;;;;;;;;;;51478:13;51461:31;;;;;;;;:::i;51238:277::-;51012:514;;;:::o;48759:98::-;;;;;;;:::i;50574:284::-;6879:6;;-1:-1:-1;;;;;6879:6:0;5610:10;7026:23;7018:68;;;;-1:-1:-1;;;7018:68:0;;;;;;;:::i;:::-;50675:1:::1;50664:8;:12;50648:65;;;::::0;-1:-1:-1;;;50648:65:0;;13021:2:1;50648:65:0::1;::::0;::::1;13003:21:1::0;13060:2;13040:18;;;13033:30;-1:-1:-1;;;13079:18:1;;;13072:49;13138:18;;50648:65:0::1;12819:343:1::0;50648:65:0::1;50764:9;::::0;28797:1;29194:12;28984:7;29178:13;50752:8;;29178:28;;-1:-1:-1;;29178:46:0;50736:24:::1;;;;:::i;:::-;:37;;50720:94;;;::::0;-1:-1:-1;;;50720:94:0;;13369:2:1;50720:94:0::1;::::0;::::1;13351:21:1::0;13408:2;13388:18;;;13381:30;13447:25;13427:18;;;13420:53;13490:18;;50720:94:0::1;13167:347:1::0;50720:94:0::1;50821:31;50831:10;50843:8;50821:9;:31::i;:::-;50574:284:::0;:::o;7715:201::-;6879:6;;-1:-1:-1;;;;;6879:6:0;5610:10;7026:23;7018:68;;;;-1:-1:-1;;;7018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7804:22:0;::::1;7796:73;;;::::0;-1:-1:-1;;;7796:73:0;;13721:2:1;7796:73:0::1;::::0;::::1;13703:21:1::0;13760:2;13740:18;;;13733:30;13799:34;13779:18;;;13772:62;-1:-1:-1;;;13850:18:1;;;13843:36;13896:19;;7796:73:0::1;13519:402:1::0;7796:73:0::1;7880:28;7899:8;7880:18;:28::i;9507:326::-:0;-1:-1:-1;;;;;9802:19:0;;:23;;;9507:326::o;36293:174::-;36350:4;36393:7;28797:1;36374:26;;:53;;;;;36414:13;;36404:7;:23;36374:53;:85;;;;-1:-1:-1;;36432:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36432:27:0;;;;36431:28;;36293:174::o;45519:196::-;45634:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45634:29:0;-1:-1:-1;;;;;45634:29:0;;;;;;;;;45679:28;;45634:24;;45679:28;;;;;;;45519:196;;;:::o;40467:2130::-;40582:35;40620:21;40633:7;40620:12;:21::i;:::-;40582:59;;40680:4;-1:-1:-1;;;;;40658:26:0;:13;:18;;;-1:-1:-1;;;;;40658:26:0;;40654:67;;40693:28;;-1:-1:-1;;;40693:28:0;;;;;;;;;;;40654:67;40734:22;5610:10;-1:-1:-1;;;;;40760:20:0;;;;:73;;-1:-1:-1;40797:36:0;40814:4;5610:10;34941:164;:::i;40797:36::-;40760:126;;;-1:-1:-1;5610:10:0;40850:20;40862:7;40850:11;:20::i;:::-;-1:-1:-1;;;;;40850:36:0;;40760:126;40734:153;;40905:17;40900:66;;40931:35;;-1:-1:-1;;;40931:35:0;;;;;;;;;;;40900:66;-1:-1:-1;;;;;40981:16:0;;40977:52;;41006:23;;-1:-1:-1;;;41006:23:0;;;;;;;;;;;40977:52;41150:35;41167:1;41171:7;41180:4;41150:8;:35::i;:::-;-1:-1:-1;;;;;41481:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41481:31:0;;;;;;;-1:-1:-1;;41481:31:0;;;;;;;41527:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41527:29:0;;;;;;;;;;;41607:20;;;:11;:20;;;;;;41642:18;;-1:-1:-1;;;;;;41675:49:0;;;;-1:-1:-1;;;41708:15:0;41675:49;;;;;;;;;;41998:11;;42058:24;;;;;42101:13;;41607:20;;42058:24;;42101:13;42097:384;;42311:13;;42296:11;:28;42292:174;;42349:20;;42418:28;;;;42392:54;;-1:-1:-1;;;42392:54:0;-1:-1:-1;;;;;;42392:54:0;;;-1:-1:-1;;;;;42349:20:0;;42392:54;;;;42292:174;41456:1036;;;42528:7;42524:2;-1:-1:-1;;;;;42509:27:0;42518:4;-1:-1:-1;;;;;42509:27:0;;;;;;;;;;;40571:2026;;40467:2130;;;:::o;10768:317::-;10883:6;10858:21;:31;;10850:73;;;;-1:-1:-1;;;10850:73:0;;14128:2:1;10850:73:0;;;14110:21:1;14167:2;14147:18;;;14140:30;14206:31;14186:18;;;14179:59;14255:18;;10850:73:0;13926:353:1;10850:73:0;10937:12;10955:9;-1:-1:-1;;;;;10955:14:0;10977:6;10955:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10936:52;;;11007:7;10999:78;;;;-1:-1:-1;;;10999:78:0;;14696:2:1;10999:78:0;;;14678:21:1;14735:2;14715:18;;;14708:30;14774:34;14754:18;;;14747:62;14845:28;14825:18;;;14818:56;14891:19;;10999:78:0;14494:422:1;31441:1109:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31552:7:0;;28797:1;31601:23;;:47;;;;;31635:13;;31628:4;:20;31601:47;31597:886;;;31669:31;31703:17;;;:11;:17;;;;;;;;;31669:51;;;;;;;;;-1:-1:-1;;;;;31669:51:0;;;;-1:-1:-1;;;31669:51:0;;;;;;;;;;;-1:-1:-1;;;31669:51:0;;;;;;;;;;;;;;31739:729;;31789:14;;-1:-1:-1;;;;;31789:28:0;;31785:101;;31853:9;31441:1109;-1:-1:-1;;;31441:1109:0:o;31785:101::-;-1:-1:-1;;;32228:6:0;32273:17;;;;:11;:17;;;;;;;;;32261:29;;;;;;;;;-1:-1:-1;;;;;32261:29:0;;;;;-1:-1:-1;;;32261:29:0;;;;;;;;;;;-1:-1:-1;;;32261:29:0;;;;;;;;;;;;;32321:28;32317:109;;32389:9;31441:1109;-1:-1:-1;;;31441:1109:0:o;32317:109::-;32188:261;;;31650:833;31597:886;32511:31;;-1:-1:-1;;;32511:31:0;;;;;;;;;;;8076:191;8169:6;;;-1:-1:-1;;;;;8186:17:0;;;-1:-1:-1;;;;;;8186:17:0;;;;;;;8219:40;;8169:6;;;8186:17;8169:6;;8219:40;;8150:16;;8219:40;8139:128;8076:191;:::o;36551:104::-;36620:27;36630:2;36634:8;36620:27;;;;;;;;;;;;:9;:27::i;46207:667::-;46391:72;;-1:-1:-1;;;46391:72:0;;46370:4;;-1:-1:-1;;;;;46391:36:0;;;;;:72;;5610:10;;46442:4;;46448:7;;46457:5;;46391:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46391:72:0;;;;;;;;-1:-1:-1;;46391:72:0;;;;;;;;;;;;:::i;:::-;;;46387:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46625:6;:13;46642:1;46625:18;46621:235;;46671:40;;-1:-1:-1;;;46671:40:0;;;;;;;;;;;46621:235;46814:6;46808:13;46799:6;46795:2;46791:15;46784:38;46387:480;-1:-1:-1;;;;;;46510:55:0;-1:-1:-1;;;46510:55:0;;-1:-1:-1;46387:480:0;46207:667;;;;;;:::o;3092:723::-;3148:13;3369:5;3378:1;3369:10;3365:53;;-1:-1:-1;;3396:10:0;;;;;;;;;;;;-1:-1:-1;;;3396:10:0;;;;;3092:723::o;3365:53::-;3443:5;3428:12;3484:78;3491:9;;3484:78;;3517:8;;;;:::i;:::-;;-1:-1:-1;3540:10:0;;-1:-1:-1;3548:2:0;3540:10;;:::i;:::-;;;3484:78;;;3572:19;3604:6;3594:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3594:17:0;;3572:39;;3622:154;3629:10;;3622:154;;3656:11;3666:1;3656:11;;:::i;:::-;;-1:-1:-1;3725:10:0;3733:2;3725:5;:10;:::i;:::-;3712:24;;:2;:24;:::i;:::-;3699:39;;3682:6;3689;3682:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3682:56:0;;;;;;;;-1:-1:-1;3753:11:0;3762:2;3753:11;;:::i;:::-;;;3622:154;;37029:1751;37152:20;37175:13;-1:-1:-1;;;;;37203:16:0;;37199:48;;37228:19;;-1:-1:-1;;;37228:19:0;;;;;;;;;;;37199:48;37262:8;37274:1;37262:13;37258:44;;37284:18;;-1:-1:-1;;;37284:18:0;;;;;;;;;;;37258:44;-1:-1:-1;;;;;37653:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37712:49:0;;37653:44;;;;;;;;37712:49;;;;-1:-1:-1;;37653:44:0;;;;;;37712:49;;;;;;;;;;;;;;;;37778:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37828:66:0;;;-1:-1:-1;;;37878:15:0;37828:66;;;;;;;;;;;;;37778:25;;37975:23;;;;9802:19;:23;38015:633;;38055:314;38086:38;;38111:12;;-1:-1:-1;;;;;38086:38:0;;;38103:1;;38086:38;;38103:1;;38086:38;38152:69;38191:1;38195:2;38199:14;;;;;;38215:5;38152:30;:69::i;:::-;38147:174;;38257:40;;-1:-1:-1;;;38257:40:0;;;;;;;;;;;38147:174;38364:3;38348:12;:19;38055:314;;38450:12;38433:13;;:29;38429:43;;38464:8;;;38429:43;38015:633;;;38513:120;38544:40;;38569:14;;;;;-1:-1:-1;;;;;38544:40:0;;;38561:1;;38544:40;;38561:1;;38544:40;38628:3;38612:12;:19;38513:120;;38015:633;-1:-1:-1;38662:13:0;:28;;;38712:60;;38745:2;38749:12;38763:8;38712:60;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2096:254;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:160::-;2753:20;;2809:13;;2802:21;2792:32;;2782:60;;2838:1;2835;2828:12;2853:180;2909:6;2962:2;2950:9;2941:7;2937:23;2933:32;2930:52;;;2978:1;2975;2968:12;2930:52;3001:26;3017:9;3001:26;:::i;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:632;3235:5;3265:18;3306:2;3298:6;3295:14;3292:40;;;3312:18;;:::i;:::-;3387:2;3381:9;3355:2;3441:15;;-1:-1:-1;;3437:24:1;;;3463:2;3433:33;3429:42;3417:55;;;3487:18;;;3507:22;;;3484:46;3481:72;;;3533:18;;:::i;:::-;3573:10;3569:2;3562:22;3602:6;3593:15;;3632:6;3624;3617:22;3672:3;3663:6;3658:3;3654:16;3651:25;3648:45;;;3689:1;3686;3679:12;3648:45;3739:6;3734:3;3727:4;3719:6;3715:17;3702:44;3794:1;3787:4;3778:6;3770;3766:19;3762:30;3755:41;;;;3170:632;;;;;:::o;3807:451::-;3876:6;3929:2;3917:9;3908:7;3904:23;3900:32;3897:52;;;3945:1;3942;3935:12;3897:52;3985:9;3972:23;4018:18;4010:6;4007:30;4004:50;;;4050:1;4047;4040:12;4004:50;4073:22;;4126:4;4118:13;;4114:27;-1:-1:-1;4104:55:1;;4155:1;4152;4145:12;4104:55;4178:74;4244:7;4239:2;4226:16;4221:2;4217;4213:11;4178:74;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6035:356::-;6237:2;6219:21;;;6256:18;;;6249:30;6315:34;6310:2;6295:18;;6288:62;6382:2;6367:18;;6035:356::o;6882:545::-;6984:2;6979:3;6976:11;6973:448;;;7020:1;7045:5;7041:2;7034:17;7090:4;7086:2;7076:19;7160:2;7148:10;7144:19;7141:1;7137:27;7131:4;7127:38;7196:4;7184:10;7181:20;7178:47;;;-1:-1:-1;7219:4:1;7178:47;7274:2;7269:3;7265:12;7262:1;7258:20;7252:4;7248:31;7238:41;;7329:82;7347:2;7340:5;7337:13;7329:82;;;7392:17;;;7373:1;7362:13;7329:82;;;7333:3;;;6882:545;;;:::o;7603:1352::-;7729:3;7723:10;7756:18;7748:6;7745:30;7742:56;;;7778:18;;:::i;:::-;7807:97;7897:6;7857:38;7889:4;7883:11;7857:38;:::i;:::-;7851:4;7807:97;:::i;:::-;7959:4;;8023:2;8012:14;;8040:1;8035:663;;;;8742:1;8759:6;8756:89;;;-1:-1:-1;8811:19:1;;;8805:26;8756:89;-1:-1:-1;;7560:1:1;7556:11;;;7552:24;7548:29;7538:40;7584:1;7580:11;;;7535:57;8858:81;;8005:944;;8035:663;6829:1;6822:14;;;6866:4;6853:18;;-1:-1:-1;;8071:20:1;;;8189:236;8203:7;8200:1;8197:14;8189:236;;;8292:19;;;8286:26;8271:42;;8384:27;;;;8352:1;8340:14;;;;8219:19;;8189:236;;;8193:3;8453:6;8444:7;8441:19;8438:201;;;8514:19;;;8508:26;-1:-1:-1;;8597:1:1;8593:14;;;8609:3;8589:24;8585:37;8581:42;8566:58;8551:74;;8438:201;-1:-1:-1;;;;;8685:1:1;8669:14;;;8665:22;8652:36;;-1:-1:-1;7603:1352:1:o;9312:127::-;9373:10;9368:3;9364:20;9361:1;9354:31;9404:4;9401:1;9394:15;9428:4;9425:1;9418:15;9444:128;9484:3;9515:1;9511:6;9508:1;9505:13;9502:39;;;9521:18;;:::i;:::-;-1:-1:-1;9557:9:1;;9444:128::o;10270:125::-;10310:4;10338:1;10335;10332:8;10329:34;;;10343:18;;:::i;:::-;-1:-1:-1;10380:9:1;;10270:125::o;10753:168::-;10793:7;10859:1;10855;10851:6;10847:14;10844:1;10841:21;10836:1;10829:9;10822:17;10818:45;10815:71;;;10866:18;;:::i;:::-;-1:-1:-1;10906:9:1;;10753:168::o;11342:722::-;11392:3;11433:5;11427:12;11462:36;11488:9;11462:36;:::i;:::-;11517:1;11534:18;;;11561:133;;;;11708:1;11703:355;;;;11527:531;;11561:133;-1:-1:-1;;11594:24:1;;11582:37;;11667:14;;11660:22;11648:35;;11639:45;;;-1:-1:-1;11561:133:1;;11703:355;11734:5;11731:1;11724:16;11763:4;11808:2;11805:1;11795:16;11833:1;11847:165;11861:6;11858:1;11855:13;11847:165;;;11939:14;;11926:11;;;11919:35;11982:16;;;;11876:10;;11847:165;;;11851:3;;;12041:6;12036:3;12032:16;12025:23;;11527:531;;;;;11342:722;;;;:::o;12069:543::-;12346:3;12374:38;12408:3;12400:6;12374:38;:::i;:::-;12441:6;12435:13;12457:52;12502:6;12498:2;12491:4;12483:6;12479:17;12457:52;:::i;:::-;-1:-1:-1;;;12531:15:1;;12555:22;;;12604:1;12593:13;;12069:543;-1:-1:-1;;;;12069:543:1:o;12617:197::-;12745:3;12770:38;12804:3;12796:6;12770:38;:::i;14921:489::-;-1:-1:-1;;;;;15190:15:1;;;15172:34;;15242:15;;15237:2;15222:18;;15215:43;15289:2;15274:18;;15267:34;;;15337:3;15332:2;15317:18;;15310:31;;;15115:4;;15358:46;;15384:19;;15376:6;15358:46;:::i;:::-;15350:54;14921:489;-1:-1:-1;;;;;;14921:489:1:o;15415:249::-;15484:6;15537:2;15525:9;15516:7;15512:23;15508:32;15505:52;;;15553:1;15550;15543:12;15505:52;15585:9;15579:16;15604:30;15628:5;15604:30;:::i;15669:135::-;15708:3;15729:17;;;15726:43;;15749:18;;:::i;:::-;-1:-1:-1;15796:1:1;15785:13;;15669:135::o;15809:127::-;15870:10;15865:3;15861:20;15858:1;15851:31;15901:4;15898:1;15891:15;15925:4;15922:1;15915:15;15941:120;15981:1;16007;15997:35;;16012:18;;:::i;:::-;-1:-1:-1;16046:9:1;;15941:120::o;16066:112::-;16098:1;16124;16114:35;;16129:18;;:::i;:::-;-1:-1:-1;16163:9:1;;16066:112::o;16183:127::-;16244:10;16239:3;16235:20;16232:1;16225:31;16275:4;16272:1;16265:15;16299:4;16296:1;16289:15
Swarm Source
ipfs://0189bc1305323bf52db8fd27d55ad1c1f6e1f8e02cb5d27b80b23c94b0a88cc2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.