ERC-721
Source Code
Overview
Max Total Supply
5,000 The Knowers
Holders
1,083
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 The KnowersLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Knowers
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/**
*Submitted for verification at Arbiscan.io on 2023-11-16
*/
// SPDX-License-Identifier: MIT
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/[email protected]
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
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);
}
}
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File @openzeppelin/contracts/token/ERC721/[email protected]
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* 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;
/**
* @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 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 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 the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @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);
}
// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File @openzeppelin/contracts/token/ERC721/[email protected]
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File @openzeppelin/contracts/utils/[email protected]
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File @openzeppelin/contracts/utils/introspection/[email protected]
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File @openzeppelin/contracts/utils/[email protected]
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// File @openzeppelin/contracts/token/ERC721/[email protected]
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
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 overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
contract Knowers is ERC721Enumerable, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenIdCounter;
using Strings for uint256;
mapping(address => bool) public whitelist;
mapping(address => bool) public freeGroup;
IERC20 public arbToken; // ARB Token address
address public treasuryWallet;
uint256 public standardPrice = 1 * 10**18;
uint256 public whitelistPrice = 1 * 10**18;
uint256 public constant MAX_SUPPLY = 5000;
string public mainURI;
string public ext = "";
bool public mintingEnabled = false;
bool public whitelistSaleEnabled = false;
bool public freeSaleEnabled = false;
bool public publicSaleEnabled = false;
constructor(address _arbTokenAddress) ERC721("The Knowers", "The Knowers") {
arbToken = IERC20(_arbTokenAddress);
treasuryWallet = msg.sender;
}
function setPrices(uint256 _standardPrice, uint256 _whitelistPrice) external onlyOwner {
standardPrice = _standardPrice;
whitelistPrice = _whitelistPrice;
}
function mint(address recipient) external {
require(mintingEnabled, "Minting is currently disabled");
uint256 price = getMintPrice(msg.sender);
uint256 userBalance = arbToken.balanceOf(msg.sender);
require(userBalance >= price, "Insufficient ARB balance");
uint256 allowedAmount = arbToken.allowance(msg.sender, address(this));
require(allowedAmount >= price, "Contract not allowed to spend enough ARB");
if(price > 0) {
require(arbToken.transferFrom(msg.sender, treasuryWallet, price), "Token transfer failed");
}
_mintNFT(recipient);
}
function mintMultiple(address recipient, uint256 numToMint) external {
require(mintingEnabled, "Minting is currently disabled");
uint256 totalPrice = getMintPrice(msg.sender) * numToMint;
uint256 userBalance = arbToken.balanceOf(msg.sender);
require(userBalance >= totalPrice, "Insufficient ARB balance");
uint256 allowedAmount = arbToken.allowance(msg.sender, address(this));
require(allowedAmount >= totalPrice, "Contract not allowed to spend enough ARB");
require(arbToken.transferFrom(msg.sender, treasuryWallet, totalPrice), "Token transfer failed");
for(uint256 i = 0; i < numToMint; i++) {
_mintNFT(recipient);
}
}
function getMintPrice(address user) public view returns (uint256) {
if (freeGroup[user]) return 0;
if (whitelist[user]) return whitelistPrice;
return standardPrice;
}
function _mintNFT(address recipient) internal {
require(_tokenIdCounter.current() < MAX_SUPPLY, "All NFTs have been minted");
_tokenIdCounter.increment();
uint256 newTokenId = _tokenIdCounter.current();
_safeMint(recipient, newTokenId);
}
function _setMainURI(string memory _mainURI) public onlyOwner {
mainURI = _mainURI;
}
function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
{
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
return bytes(mainURI).length > 0
? string(abi.encodePacked(mainURI, tokenId.toString(), ext))
: "";
}
function remainingNFTs() external view returns (uint256) {
return MAX_SUPPLY - _tokenIdCounter.current();
}
function enableMinting() external onlyOwner {
mintingEnabled = true;
}
function disableMinting() external onlyOwner {
mintingEnabled = false;
}
function setTreasuryWallet(address _newWallet) external onlyOwner {
require(_newWallet != address(0), "Invalid address");
treasuryWallet = _newWallet;
}
function getSelfAddress() public view returns(address) {
return address(this);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_arbTokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_mainURI","type":"string"}],"name":"_setMainURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"arbToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ext","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeGroup","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSelfAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"numToMint","type":"uint256"}],"name":"mintMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_standardPrice","type":"uint256"},{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"standardPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]Contract Creation Code
670de0b6b3a7640000601081905560115560a06040819052600060808190526200002c9160139162000168565b506014805463ffffffff191690553480156200004757600080fd5b5060405162002994380380620029948339810160408190526200006a916200020e565b604080518082018252600b8082526a546865204b6e6f7765727360a81b602080840182815285518087019096529285528401528151919291620000b09160009162000168565b508051620000c690600190602084019062000168565b505050620000e3620000dd6200011260201b60201c565b62000116565b600e80546001600160a01b039092166001600160a01b0319928316179055600f8054909116331790556200027b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000176906200023e565b90600052602060002090601f0160209004810192826200019a5760008555620001e5565b82601f10620001b557805160ff1916838001178555620001e5565b82800160010185558215620001e5579182015b82811115620001e5578251825591602001919060010190620001c8565b50620001f3929150620001f7565b5090565b5b80821115620001f35760008155600101620001f8565b60006020828403121562000220578081fd5b81516001600160a01b038116811462000237578182fd5b9392505050565b6002810460018216806200025357607f821691505b602082108114156200027557634e487b7160e01b600052602260045260246000fd5b50919050565b612709806200028b6000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c8063715018a611610146578063a8602fea116100c3578063e797ec1b11610087578063e797ec1b1461049e578063e8cd2433146104a6578063e985e9c5146104ae578063f2fde38b146104c1578063f556fcdb146104d4578063fc1a1c36146104dc5761025e565b8063a8602fea1461044a578063b3fa4a4c1461045d578063b88d4fde14610470578063c87b56dd14610483578063cf9f23b5146104965761025e565b806395d89b411161010a57806395d89b41146104015780639b19251a146104095780639c99ec991461041c5780639fd6db121461042f578063a22cb465146104375761025e565b8063715018a6146103ce578063719d0f2b146103d65780637e5cd5c1146103e957806384909df5146103f15780638da5cb5b146103f95761025e565b806323b872dd116101df5780634626402b116101a35780634626402b146103675780634f6ccce71461036f5780636352211e146103825780636356ace0146103955780636a627842146103a857806370a08231146103bb5761025e565b806323b872dd1461031e5780632ab91bba146103315780632f745c591461033957806332cb6b0c1461034c57806342842e0e146103545761025e565b8063081812fc11610226578063081812fc146102d3578063095ea7b3146102f357806318160ddd146103065780631ae8432d1461030e5780631f1525e2146103165761025e565b806301ffc9a71461026357806304bffefd1461028c57806305fefda7146102a15780630694d6c5146102b657806306fdde03146102be575b600080fd5b610276610271366004611d5d565b6104e4565b6040516102839190611fb2565b60405180910390f35b610294610511565b6040516102839190612560565b6102b46102af366004611e0b565b61052e565b005b610276610541565b6102c661054f565b6040516102839190611fbd565b6102e66102e1366004611ddb565b6105e1565b6040516102839190611f23565b6102b4610301366004611d18565b610608565b6102946106a9565b6102e66106af565b6102946106be565b6102b461032c366004611c2e565b6106c4565b6102766106fc565b610294610347366004611d18565b61070c565b61029461075e565b6102b4610362366004611c2e565b610764565b6102e661077f565b61029461037d366004611ddb565b61078e565b6102e6610390366004611ddb565b6107e9565b6102766103a3366004611bdb565b61081e565b6102b46103b6366004611bdb565b610833565b6102946103c9366004611bdb565b610a69565b6102b4610aad565b6102946103e4366004611bdb565b610ac1565b6102b4610b1c565b610276610b30565b6102e6610b3f565b6102c6610b4e565b610276610417366004611bdb565b610b5d565b6102b461042a366004611d95565b610b72565b610276610b91565b6102b4610445366004611ce2565b610b9a565b6102b4610458366004611bdb565b610bac565b6102b461046b366004611d18565b610bfc565b6102b461047e366004611c69565b610e56565b6102c6610491366004611ddb565b610e8f565b6102c6610f16565b6102b4610fa4565b6102c6610fbb565b6102766104bc366004611bfc565b610fc8565b6102b46104cf366004611bdb565b610ff6565b6102e6611030565b610294611034565b60006001600160e01b0319821663780e9d6360e01b148061050957506105098261103a565b90505b919050565b600061051d600b61107a565b610529906113886125c0565b905090565b61053661107e565b601091909155601155565b601454610100900460ff1681565b60606000805461055e90612603565b80601f016020809104026020016040519081016040528092919081815260200182805461058a90612603565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b60006105ec826110bd565b506000908152600460205260409020546001600160a01b031690565b6000610613826107e9565b9050806001600160a01b0316836001600160a01b031614156106505760405162461bcd60e51b815260040161064790612485565b60405180910390fd5b806001600160a01b03166106626110e2565b6001600160a01b0316148061067e575061067e816104bc6110e2565b61069a5760405162461bcd60e51b8152600401610647906122b9565b6106a483836110e6565b505050565b60085490565b600e546001600160a01b031681565b60105481565b6106d56106cf6110e2565b82611154565b6106f15760405162461bcd60e51b815260040161064790612512565b6106a48383836111b3565b6014546301000000900460ff1681565b600061071783610a69565b82106107355760405162461bcd60e51b815260040161064790611ff9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61138881565b6106a483838360405180602001604052806000815250610e56565b600f546001600160a01b031681565b60006107986106a9565b82106107b65760405162461bcd60e51b8152600401610647906124c6565b600882815481106107d757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105095760405162461bcd60e51b81526004016106479061244e565b600d6020526000908152604090205460ff1681565b60145460ff166108555760405162461bcd60e51b81526004016106479061220a565b600061086033610ac1565b600e546040516370a0823160e01b81529192506000916001600160a01b03909116906370a0823190610896903390600401611f23565b60206040518083038186803b1580156108ae57600080fd5b505afa1580156108c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e69190611df3565b9050818110156109085760405162461bcd60e51b815260040161064790612158565b600e54604051636eb1769f60e11b81526000916001600160a01b03169063dd62ed3e9061093b9033903090600401611f37565b60206040518083038186803b15801561095357600080fd5b505afa158015610967573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098b9190611df3565b9050828110156109ad5760405162461bcd60e51b8152600401610647906123b7565b8215610a5a57600e54600f546040516323b872dd60e01b81526001600160a01b03928316926323b872dd926109ec923392909116908890600401611f51565b602060405180830381600087803b158015610a0657600080fd5b505af1158015610a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3e9190611d41565b610a5a5760405162461bcd60e51b81526004016106479061228a565b610a63846112e6565b50505050565b60006001600160a01b038216610a915760405162461bcd60e51b815260040161064790612241565b506001600160a01b031660009081526003602052604090205490565b610ab561107e565b610abf6000611332565b565b6001600160a01b0381166000908152600d602052604081205460ff1615610aea5750600061050c565b6001600160a01b0382166000908152600c602052604090205460ff1615610b14575060115461050c565b505060105490565b610b2461107e565b6014805460ff19169055565b60145462010000900460ff1681565b600a546001600160a01b031690565b60606001805461055e90612603565b600c6020526000908152604090205460ff1681565b610b7a61107e565b8051610b8d906012906020840190611abb565b5050565b60145460ff1681565b610b8d610ba56110e2565b8383611384565b610bb461107e565b6001600160a01b038116610bda5760405162461bcd60e51b815260040161064790611fd0565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60145460ff16610c1e5760405162461bcd60e51b81526004016106479061220a565b600081610c2a33610ac1565b610c3491906125a1565b600e546040516370a0823160e01b81529192506000916001600160a01b03909116906370a0823190610c6a903390600401611f23565b60206040518083038186803b158015610c8257600080fd5b505afa158015610c96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cba9190611df3565b905081811015610cdc5760405162461bcd60e51b815260040161064790612158565b600e54604051636eb1769f60e11b81526000916001600160a01b03169063dd62ed3e90610d0f9033903090600401611f37565b60206040518083038186803b158015610d2757600080fd5b505afa158015610d3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5f9190611df3565b905082811015610d815760405162461bcd60e51b8152600401610647906123b7565b600e54600f546040516323b872dd60e01b81526001600160a01b03928316926323b872dd92610dba923392909116908890600401611f51565b602060405180830381600087803b158015610dd457600080fd5b505af1158015610de8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0c9190611d41565b610e285760405162461bcd60e51b81526004016106479061228a565b60005b84811015610e4e57610e3c866112e6565b80610e468161263e565b915050610e2b565b505050505050565b610e67610e616110e2565b83611154565b610e835760405162461bcd60e51b815260040161064790612512565b610a6384848484611427565b6060610e9a8261145a565b610eb65760405162461bcd60e51b8152600401610647906123ff565b600060128054610ec590612603565b905011610ee15760405180602001604052806000815250610509565b6012610eec83611477565b6013604051602001610f0093929190611ef0565b6040516020818303038152906040529050919050565b60138054610f2390612603565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f90612603565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505081565b610fac61107e565b6014805460ff19166001179055565b60128054610f2390612603565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ffe61107e565b6001600160a01b0381166110245760405162461bcd60e51b815260040161064790612096565b61102d81611332565b50565b3090565b60115481565b60006001600160e01b031982166380ac58cd60e01b148061106b57506001600160e01b03198216635b5e139f60e01b145b80610509575061050982611592565b5490565b6110866110e2565b6001600160a01b0316611097610b3f565b6001600160a01b031614610abf5760405162461bcd60e51b815260040161064790612382565b6110c68161145a565b61102d5760405162461bcd60e51b81526004016106479061244e565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061111b826107e9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611160836107e9565b9050806001600160a01b0316846001600160a01b0316148061118757506111878185610fc8565b806111ab5750836001600160a01b03166111a0846105e1565b6001600160a01b0316145b949350505050565b826001600160a01b03166111c6826107e9565b6001600160a01b0316146111ec5760405162461bcd60e51b8152600401610647906120dc565b6001600160a01b0382166112125760405162461bcd60e51b81526004016106479061218f565b61121d8383836115ab565b6112286000826110e6565b6001600160a01b03831660009081526003602052604081208054600192906112519084906125c0565b90915550506001600160a01b038216600090815260036020526040812080546001929061127f908490612575565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46106a48383836106a4565b6113886112f3600b61107a565b106113105760405162461bcd60e51b81526004016106479061234b565b61131a600b611634565b6000611326600b61107a565b9050610b8d828261163d565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156113b65760405162461bcd60e51b8152600401610647906121d3565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061141a908590611fb2565b60405180910390a3505050565b6114328484846111b3565b61143e84848484611657565b610a635760405162461bcd60e51b815260040161064790612044565b6000908152600260205260409020546001600160a01b0316151590565b60608161149c57506040805180820190915260018152600360fc1b602082015261050c565b8160005b81156114c657806114b08161263e565b91506114bf9050600a8361258d565b91506114a0565b60008167ffffffffffffffff8111156114ef57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611519576020820181803683370190505b5090505b84156111ab5761152e6001836125c0565b915061153b600a86612659565b611546906030612575565b60f81b81838151811061156957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061158b600a8661258d565b945061151d565b6001600160e01b031981166301ffc9a760e01b14919050565b6115b68383836106a4565b6001600160a01b0383166115d2576115cd81611772565b6115f5565b816001600160a01b0316836001600160a01b0316146115f5576115f583826117b6565b6001600160a01b0382166116115761160c81611853565b6106a4565b826001600160a01b0316826001600160a01b0316146106a4576106a4828261192c565b80546001019055565b610b8d828260405180602001604052806000815250611970565b600061166b846001600160a01b03166119a3565b1561176757836001600160a01b031663150b7a026116876110e2565b8786866040518563ffffffff1660e01b81526004016116a99493929190611f75565b602060405180830381600087803b1580156116c357600080fd5b505af19250505080156116f3575060408051601f3d908101601f191682019092526116f091810190611d79565b60015b61174d573d808015611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b5080516117455760405162461bcd60e51b815260040161064790612044565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ab565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016117c384610a69565b6117cd91906125c0565b600083815260076020526040902054909150808214611820576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611865906001906125c0565b6000838152600960205260408120546008805493945090928490811061189b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118ca57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061191057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061193783610a69565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61197a83836119d4565b6119876000848484611657565b6106a45760405162461bcd60e51b815260040161064790612044565b600080826001600160a01b0316803b806020016040519081016040528181526000908060200190933c511192915050565b6001600160a01b0382166119fa5760405162461bcd60e51b815260040161064790612316565b611a038161145a565b15611a205760405162461bcd60e51b815260040161064790612121565b611a2c600083836115ab565b6001600160a01b0382166000908152600360205260408120805460019290611a55908490612575565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610b8d600083836106a4565b828054611ac790612603565b90600052602060002090601f016020900481019282611ae95760008555611b2f565b82601f10611b0257805160ff1916838001178555611b2f565b82800160010185558215611b2f579182015b82811115611b2f578251825591602001919060010190611b14565b50611b3b929150611b3f565b5090565b5b80821115611b3b5760008155600101611b40565b600067ffffffffffffffff80841115611b6f57611b6f612699565b604051601f8501601f191681016020018281118282101715611b9357611b93612699565b604052848152915081838501861015611bab57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461050c57600080fd5b600060208284031215611bec578081fd5b611bf582611bc4565b9392505050565b60008060408385031215611c0e578081fd5b611c1783611bc4565b9150611c2560208401611bc4565b90509250929050565b600080600060608486031215611c42578081fd5b611c4b84611bc4565b9250611c5960208501611bc4565b9150604084013590509250925092565b60008060008060808587031215611c7e578081fd5b611c8785611bc4565b9350611c9560208601611bc4565b925060408501359150606085013567ffffffffffffffff811115611cb7578182fd5b8501601f81018713611cc7578182fd5b611cd687823560208401611b54565b91505092959194509250565b60008060408385031215611cf4578182fd5b611cfd83611bc4565b91506020830135611d0d816126af565b809150509250929050565b60008060408385031215611d2a578182fd5b611d3383611bc4565b946020939093013593505050565b600060208284031215611d52578081fd5b8151611bf5816126af565b600060208284031215611d6e578081fd5b8135611bf5816126bd565b600060208284031215611d8a578081fd5b8151611bf5816126bd565b600060208284031215611da6578081fd5b813567ffffffffffffffff811115611dbc578182fd5b8201601f81018413611dcc578182fd5b6111ab84823560208401611b54565b600060208284031215611dec578081fd5b5035919050565b600060208284031215611e04578081fd5b5051919050565b60008060408385031215611e1d578182fd5b50508035926020909101359150565b60008151808452611e448160208601602086016125d7565b601f01601f19169290920160200192915050565b805460009060028104600180831680611e7257607f831692505b6020808410821415611e9257634e487b7160e01b86526022600452602486fd5b818015611ea65760018114611eb757611ee4565b60ff19861689528489019650611ee4565b611ec088612569565b60005b86811015611edc5781548b820152908501908301611ec3565b505084890196505b50505050505092915050565b6000611efc8286611e58565b8451611f0c8183602089016125d7565b611f1881830186611e58565b979650505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fa890830184611e2c565b9695505050505050565b901515815260200190565b600060208252611bf56020830184611e2c565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526018908201527f496e73756666696369656e74204152422062616c616e63650000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f4d696e74696e672069732063757272656e746c792064697361626c6564000000604082015260600190565b60208082526029908201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616040820152683634b21037bbb732b960b91b606082015260800190565b602080825260159082015274151bdad95b881d1c985b9cd9995c8819985a5b1959605a1b604082015260600190565b6020808252603e908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60408201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526019908201527f416c6c204e4654732068617665206265656e206d696e74656400000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f436f6e7472616374206e6f7420616c6c6f77656420746f207370656e6420656e60408201526737bab3b41020a92160c11b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156125885761258861266d565b500190565b60008261259c5761259c612683565b500490565b60008160001904831182151516156125bb576125bb61266d565b500290565b6000828210156125d2576125d261266d565b500390565b60005b838110156125f25781810151838201526020016125da565b83811115610a635750506000910152565b60028104600182168061261757607f821691505b6020821081141561263857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126525761265261266d565b5060010190565b60008261266857612668612683565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461102d57600080fd5b6001600160e01b03198116811461102d57600080fdfea2646970667358221220060a824f955c275df4774086bb3c4a3e54d9b80d2bcccbfd4a49732cdcf25d1964736f6c63430008000033000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061025e5760003560e01c8063715018a611610146578063a8602fea116100c3578063e797ec1b11610087578063e797ec1b1461049e578063e8cd2433146104a6578063e985e9c5146104ae578063f2fde38b146104c1578063f556fcdb146104d4578063fc1a1c36146104dc5761025e565b8063a8602fea1461044a578063b3fa4a4c1461045d578063b88d4fde14610470578063c87b56dd14610483578063cf9f23b5146104965761025e565b806395d89b411161010a57806395d89b41146104015780639b19251a146104095780639c99ec991461041c5780639fd6db121461042f578063a22cb465146104375761025e565b8063715018a6146103ce578063719d0f2b146103d65780637e5cd5c1146103e957806384909df5146103f15780638da5cb5b146103f95761025e565b806323b872dd116101df5780634626402b116101a35780634626402b146103675780634f6ccce71461036f5780636352211e146103825780636356ace0146103955780636a627842146103a857806370a08231146103bb5761025e565b806323b872dd1461031e5780632ab91bba146103315780632f745c591461033957806332cb6b0c1461034c57806342842e0e146103545761025e565b8063081812fc11610226578063081812fc146102d3578063095ea7b3146102f357806318160ddd146103065780631ae8432d1461030e5780631f1525e2146103165761025e565b806301ffc9a71461026357806304bffefd1461028c57806305fefda7146102a15780630694d6c5146102b657806306fdde03146102be575b600080fd5b610276610271366004611d5d565b6104e4565b6040516102839190611fb2565b60405180910390f35b610294610511565b6040516102839190612560565b6102b46102af366004611e0b565b61052e565b005b610276610541565b6102c661054f565b6040516102839190611fbd565b6102e66102e1366004611ddb565b6105e1565b6040516102839190611f23565b6102b4610301366004611d18565b610608565b6102946106a9565b6102e66106af565b6102946106be565b6102b461032c366004611c2e565b6106c4565b6102766106fc565b610294610347366004611d18565b61070c565b61029461075e565b6102b4610362366004611c2e565b610764565b6102e661077f565b61029461037d366004611ddb565b61078e565b6102e6610390366004611ddb565b6107e9565b6102766103a3366004611bdb565b61081e565b6102b46103b6366004611bdb565b610833565b6102946103c9366004611bdb565b610a69565b6102b4610aad565b6102946103e4366004611bdb565b610ac1565b6102b4610b1c565b610276610b30565b6102e6610b3f565b6102c6610b4e565b610276610417366004611bdb565b610b5d565b6102b461042a366004611d95565b610b72565b610276610b91565b6102b4610445366004611ce2565b610b9a565b6102b4610458366004611bdb565b610bac565b6102b461046b366004611d18565b610bfc565b6102b461047e366004611c69565b610e56565b6102c6610491366004611ddb565b610e8f565b6102c6610f16565b6102b4610fa4565b6102c6610fbb565b6102766104bc366004611bfc565b610fc8565b6102b46104cf366004611bdb565b610ff6565b6102e6611030565b610294611034565b60006001600160e01b0319821663780e9d6360e01b148061050957506105098261103a565b90505b919050565b600061051d600b61107a565b610529906113886125c0565b905090565b61053661107e565b601091909155601155565b601454610100900460ff1681565b60606000805461055e90612603565b80601f016020809104026020016040519081016040528092919081815260200182805461058a90612603565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b60006105ec826110bd565b506000908152600460205260409020546001600160a01b031690565b6000610613826107e9565b9050806001600160a01b0316836001600160a01b031614156106505760405162461bcd60e51b815260040161064790612485565b60405180910390fd5b806001600160a01b03166106626110e2565b6001600160a01b0316148061067e575061067e816104bc6110e2565b61069a5760405162461bcd60e51b8152600401610647906122b9565b6106a483836110e6565b505050565b60085490565b600e546001600160a01b031681565b60105481565b6106d56106cf6110e2565b82611154565b6106f15760405162461bcd60e51b815260040161064790612512565b6106a48383836111b3565b6014546301000000900460ff1681565b600061071783610a69565b82106107355760405162461bcd60e51b815260040161064790611ff9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61138881565b6106a483838360405180602001604052806000815250610e56565b600f546001600160a01b031681565b60006107986106a9565b82106107b65760405162461bcd60e51b8152600401610647906124c6565b600882815481106107d757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105095760405162461bcd60e51b81526004016106479061244e565b600d6020526000908152604090205460ff1681565b60145460ff166108555760405162461bcd60e51b81526004016106479061220a565b600061086033610ac1565b600e546040516370a0823160e01b81529192506000916001600160a01b03909116906370a0823190610896903390600401611f23565b60206040518083038186803b1580156108ae57600080fd5b505afa1580156108c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e69190611df3565b9050818110156109085760405162461bcd60e51b815260040161064790612158565b600e54604051636eb1769f60e11b81526000916001600160a01b03169063dd62ed3e9061093b9033903090600401611f37565b60206040518083038186803b15801561095357600080fd5b505afa158015610967573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098b9190611df3565b9050828110156109ad5760405162461bcd60e51b8152600401610647906123b7565b8215610a5a57600e54600f546040516323b872dd60e01b81526001600160a01b03928316926323b872dd926109ec923392909116908890600401611f51565b602060405180830381600087803b158015610a0657600080fd5b505af1158015610a1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3e9190611d41565b610a5a5760405162461bcd60e51b81526004016106479061228a565b610a63846112e6565b50505050565b60006001600160a01b038216610a915760405162461bcd60e51b815260040161064790612241565b506001600160a01b031660009081526003602052604090205490565b610ab561107e565b610abf6000611332565b565b6001600160a01b0381166000908152600d602052604081205460ff1615610aea5750600061050c565b6001600160a01b0382166000908152600c602052604090205460ff1615610b14575060115461050c565b505060105490565b610b2461107e565b6014805460ff19169055565b60145462010000900460ff1681565b600a546001600160a01b031690565b60606001805461055e90612603565b600c6020526000908152604090205460ff1681565b610b7a61107e565b8051610b8d906012906020840190611abb565b5050565b60145460ff1681565b610b8d610ba56110e2565b8383611384565b610bb461107e565b6001600160a01b038116610bda5760405162461bcd60e51b815260040161064790611fd0565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b60145460ff16610c1e5760405162461bcd60e51b81526004016106479061220a565b600081610c2a33610ac1565b610c3491906125a1565b600e546040516370a0823160e01b81529192506000916001600160a01b03909116906370a0823190610c6a903390600401611f23565b60206040518083038186803b158015610c8257600080fd5b505afa158015610c96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cba9190611df3565b905081811015610cdc5760405162461bcd60e51b815260040161064790612158565b600e54604051636eb1769f60e11b81526000916001600160a01b03169063dd62ed3e90610d0f9033903090600401611f37565b60206040518083038186803b158015610d2757600080fd5b505afa158015610d3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5f9190611df3565b905082811015610d815760405162461bcd60e51b8152600401610647906123b7565b600e54600f546040516323b872dd60e01b81526001600160a01b03928316926323b872dd92610dba923392909116908890600401611f51565b602060405180830381600087803b158015610dd457600080fd5b505af1158015610de8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0c9190611d41565b610e285760405162461bcd60e51b81526004016106479061228a565b60005b84811015610e4e57610e3c866112e6565b80610e468161263e565b915050610e2b565b505050505050565b610e67610e616110e2565b83611154565b610e835760405162461bcd60e51b815260040161064790612512565b610a6384848484611427565b6060610e9a8261145a565b610eb65760405162461bcd60e51b8152600401610647906123ff565b600060128054610ec590612603565b905011610ee15760405180602001604052806000815250610509565b6012610eec83611477565b6013604051602001610f0093929190611ef0565b6040516020818303038152906040529050919050565b60138054610f2390612603565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f90612603565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505081565b610fac61107e565b6014805460ff19166001179055565b60128054610f2390612603565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ffe61107e565b6001600160a01b0381166110245760405162461bcd60e51b815260040161064790612096565b61102d81611332565b50565b3090565b60115481565b60006001600160e01b031982166380ac58cd60e01b148061106b57506001600160e01b03198216635b5e139f60e01b145b80610509575061050982611592565b5490565b6110866110e2565b6001600160a01b0316611097610b3f565b6001600160a01b031614610abf5760405162461bcd60e51b815260040161064790612382565b6110c68161145a565b61102d5760405162461bcd60e51b81526004016106479061244e565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061111b826107e9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611160836107e9565b9050806001600160a01b0316846001600160a01b0316148061118757506111878185610fc8565b806111ab5750836001600160a01b03166111a0846105e1565b6001600160a01b0316145b949350505050565b826001600160a01b03166111c6826107e9565b6001600160a01b0316146111ec5760405162461bcd60e51b8152600401610647906120dc565b6001600160a01b0382166112125760405162461bcd60e51b81526004016106479061218f565b61121d8383836115ab565b6112286000826110e6565b6001600160a01b03831660009081526003602052604081208054600192906112519084906125c0565b90915550506001600160a01b038216600090815260036020526040812080546001929061127f908490612575565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46106a48383836106a4565b6113886112f3600b61107a565b106113105760405162461bcd60e51b81526004016106479061234b565b61131a600b611634565b6000611326600b61107a565b9050610b8d828261163d565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156113b65760405162461bcd60e51b8152600401610647906121d3565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319061141a908590611fb2565b60405180910390a3505050565b6114328484846111b3565b61143e84848484611657565b610a635760405162461bcd60e51b815260040161064790612044565b6000908152600260205260409020546001600160a01b0316151590565b60608161149c57506040805180820190915260018152600360fc1b602082015261050c565b8160005b81156114c657806114b08161263e565b91506114bf9050600a8361258d565b91506114a0565b60008167ffffffffffffffff8111156114ef57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611519576020820181803683370190505b5090505b84156111ab5761152e6001836125c0565b915061153b600a86612659565b611546906030612575565b60f81b81838151811061156957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061158b600a8661258d565b945061151d565b6001600160e01b031981166301ffc9a760e01b14919050565b6115b68383836106a4565b6001600160a01b0383166115d2576115cd81611772565b6115f5565b816001600160a01b0316836001600160a01b0316146115f5576115f583826117b6565b6001600160a01b0382166116115761160c81611853565b6106a4565b826001600160a01b0316826001600160a01b0316146106a4576106a4828261192c565b80546001019055565b610b8d828260405180602001604052806000815250611970565b600061166b846001600160a01b03166119a3565b1561176757836001600160a01b031663150b7a026116876110e2565b8786866040518563ffffffff1660e01b81526004016116a99493929190611f75565b602060405180830381600087803b1580156116c357600080fd5b505af19250505080156116f3575060408051601f3d908101601f191682019092526116f091810190611d79565b60015b61174d573d808015611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b5080516117455760405162461bcd60e51b815260040161064790612044565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ab565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016117c384610a69565b6117cd91906125c0565b600083815260076020526040902054909150808214611820576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611865906001906125c0565b6000838152600960205260408120546008805493945090928490811061189b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118ca57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061191057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061193783610a69565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b61197a83836119d4565b6119876000848484611657565b6106a45760405162461bcd60e51b815260040161064790612044565b600080826001600160a01b0316803b806020016040519081016040528181526000908060200190933c511192915050565b6001600160a01b0382166119fa5760405162461bcd60e51b815260040161064790612316565b611a038161145a565b15611a205760405162461bcd60e51b815260040161064790612121565b611a2c600083836115ab565b6001600160a01b0382166000908152600360205260408120805460019290611a55908490612575565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610b8d600083836106a4565b828054611ac790612603565b90600052602060002090601f016020900481019282611ae95760008555611b2f565b82601f10611b0257805160ff1916838001178555611b2f565b82800160010185558215611b2f579182015b82811115611b2f578251825591602001919060010190611b14565b50611b3b929150611b3f565b5090565b5b80821115611b3b5760008155600101611b40565b600067ffffffffffffffff80841115611b6f57611b6f612699565b604051601f8501601f191681016020018281118282101715611b9357611b93612699565b604052848152915081838501861015611bab57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461050c57600080fd5b600060208284031215611bec578081fd5b611bf582611bc4565b9392505050565b60008060408385031215611c0e578081fd5b611c1783611bc4565b9150611c2560208401611bc4565b90509250929050565b600080600060608486031215611c42578081fd5b611c4b84611bc4565b9250611c5960208501611bc4565b9150604084013590509250925092565b60008060008060808587031215611c7e578081fd5b611c8785611bc4565b9350611c9560208601611bc4565b925060408501359150606085013567ffffffffffffffff811115611cb7578182fd5b8501601f81018713611cc7578182fd5b611cd687823560208401611b54565b91505092959194509250565b60008060408385031215611cf4578182fd5b611cfd83611bc4565b91506020830135611d0d816126af565b809150509250929050565b60008060408385031215611d2a578182fd5b611d3383611bc4565b946020939093013593505050565b600060208284031215611d52578081fd5b8151611bf5816126af565b600060208284031215611d6e578081fd5b8135611bf5816126bd565b600060208284031215611d8a578081fd5b8151611bf5816126bd565b600060208284031215611da6578081fd5b813567ffffffffffffffff811115611dbc578182fd5b8201601f81018413611dcc578182fd5b6111ab84823560208401611b54565b600060208284031215611dec578081fd5b5035919050565b600060208284031215611e04578081fd5b5051919050565b60008060408385031215611e1d578182fd5b50508035926020909101359150565b60008151808452611e448160208601602086016125d7565b601f01601f19169290920160200192915050565b805460009060028104600180831680611e7257607f831692505b6020808410821415611e9257634e487b7160e01b86526022600452602486fd5b818015611ea65760018114611eb757611ee4565b60ff19861689528489019650611ee4565b611ec088612569565b60005b86811015611edc5781548b820152908501908301611ec3565b505084890196505b50505050505092915050565b6000611efc8286611e58565b8451611f0c8183602089016125d7565b611f1881830186611e58565b979650505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fa890830184611e2c565b9695505050505050565b901515815260200190565b600060208252611bf56020830184611e2c565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526018908201527f496e73756666696369656e74204152422062616c616e63650000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f4d696e74696e672069732063757272656e746c792064697361626c6564000000604082015260600190565b60208082526029908201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616040820152683634b21037bbb732b960b91b606082015260800190565b602080825260159082015274151bdad95b881d1c985b9cd9995c8819985a5b1959605a1b604082015260600190565b6020808252603e908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60408201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526019908201527f416c6c204e4654732068617665206265656e206d696e74656400000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f436f6e7472616374206e6f7420616c6c6f77656420746f207370656e6420656e60408201526737bab3b41020a92160c11b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156125885761258861266d565b500190565b60008261259c5761259c612683565b500490565b60008160001904831182151516156125bb576125bb61266d565b500290565b6000828210156125d2576125d261266d565b500390565b60005b838110156125f25781810151838201526020016125da565b83811115610a635750506000910152565b60028104600182168061261757607f821691505b6020821081141561263857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126525761265261266d565b5060010190565b60008261266857612668612683565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461102d57600080fd5b6001600160e01b03198116811461102d57600080fdfea2646970667358221220060a824f955c275df4774086bb3c4a3e54d9b80d2bcccbfd4a49732cdcf25d1964736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548
-----Decoded View---------------
Arg [0] : _arbTokenAddress (address): 0x912CE59144191C1204E64559FE8253a0e49E6548
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000912ce59144191c1204e64559fe8253a0e49e6548
Deployed Bytecode Sourcemap
49801:4058:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40926:224;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53262:121;;;:::i;:::-;;;;;;;:::i;50722:181::-;;;;;;:::i;:::-;;:::i;:::-;;50412:40;;;:::i;26614:100::-;;;:::i;:::-;;;;;;;:::i;28127:171::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27644:417::-;;;;;;:::i;:::-;;:::i;41566:113::-;;;:::i;50077:22::-;;;:::i;50165:41::-;;;:::i;28827:336::-;;;;;;:::i;:::-;;:::i;50501:37::-;;;:::i;41234:256::-;;;;;;:::i;:::-;;:::i;50264:41::-;;;:::i;29234:185::-;;;;;;:::i;:::-;;:::i;50127:29::-;;;:::i;41756:233::-;;;;;;:::i;:::-;;:::i;26325:222::-;;;;;;:::i;:::-;;:::i;50027:41::-;;;;;;:::i;:::-;;:::i;50911:654::-;;;;;;:::i;:::-;;:::i;26056:207::-;;;;;;:::i;:::-;;:::i;2680:103::-;;;:::i;52327:198::-;;;;;;:::i;:::-;;:::i;53483:86::-;;;:::i;50459:35::-;;;:::i;2032:87::-;;;:::i;26783:104::-;;;:::i;49979:41::-;;;;;;:::i;:::-;;:::i;52820:99::-;;;;;;:::i;:::-;;:::i;50371:34::-;;;:::i;28370:155::-;;;;;;:::i;:::-;;:::i;53577:175::-;;;;;;:::i;:::-;;:::i;51583:732::-;;;;;;:::i;:::-;;:::i;29490:323::-;;;;;;:::i;:::-;;:::i;52927:327::-;;;;;;:::i;:::-;;:::i;50340:22::-;;;:::i;53391:84::-;;;:::i;50312:21::-;;;:::i;28596:164::-;;;;;;:::i;:::-;;:::i;2938:201::-;;;;;;:::i;:::-;;:::i;53760:94::-;;;:::i;50215:42::-;;;:::i;40926:224::-;41028:4;-1:-1:-1;;;;;;41052:50:0;;-1:-1:-1;;;41052:50:0;;:90;;;41106:36;41130:11;41106:23;:36::i;:::-;41045:97;;40926:224;;;;:::o;53262:121::-;53310:7;53350:25;:15;:23;:25::i;:::-;53337:38;;50301:4;53337:38;:::i;:::-;53330:45;;53262:121;:::o;50722:181::-;1918:13;:11;:13::i;:::-;50820::::1;:30:::0;;;;50863:14:::1;:32:::0;50722:181::o;50412:40::-;;;;;;;;;:::o;26614:100::-;26668:13;26701:5;26694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26614:100;:::o;28127:171::-;28203:7;28223:23;28238:7;28223:14;:23::i;:::-;-1:-1:-1;28266:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28266:24:0;;28127:171::o;27644:417::-;27725:13;27741:23;27756:7;27741:14;:23::i;:::-;27725:39;;27789:5;-1:-1:-1;;;;;27783:11:0;:2;-1:-1:-1;;;;;27783:11:0;;;27775:57;;;;-1:-1:-1;;;27775:57:0;;;;;;;:::i;:::-;;;;;;;;;27883:5;-1:-1:-1;;;;;27867:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27867:21:0;;:62;;;;27892:37;27909:5;27916:12;:10;:12::i;27892:37::-;27845:174;;;;-1:-1:-1;;;27845:174:0;;;;;;;:::i;:::-;28032:21;28041:2;28045:7;28032:8;:21::i;:::-;27644:417;;;:::o;41566:113::-;41654:10;:17;41566:113;:::o;50077:22::-;;;-1:-1:-1;;;;;50077:22:0;;:::o;50165:41::-;;;;:::o;28827:336::-;29022:41;29041:12;:10;:12::i;:::-;29055:7;29022:18;:41::i;:::-;29014:100;;;;-1:-1:-1;;;29014:100:0;;;;;;;:::i;:::-;29127:28;29137:4;29143:2;29147:7;29127:9;:28::i;50501:37::-;;;;;;;;;:::o;41234:256::-;41331:7;41367:23;41384:5;41367:16;:23::i;:::-;41359:5;:31;41351:87;;;;-1:-1:-1;;;41351:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;41456:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41234:256::o;50264:41::-;50301:4;50264:41;:::o;29234:185::-;29372:39;29389:4;29395:2;29399:7;29372:39;;;;;;;;;;;;:16;:39::i;50127:29::-;;;-1:-1:-1;;;;;50127:29:0;;:::o;41756:233::-;41831:7;41867:30;:28;:30::i;:::-;41859:5;:38;41851:95;;;;-1:-1:-1;;;41851:95:0;;;;;;;:::i;:::-;41964:10;41975:5;41964:17;;;;;;-1:-1:-1;;;41964:17:0;;;;;;;;;;;;;;;;;41957:24;;41756:233;;;:::o;26325:222::-;26397:7;26433:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26433:16:0;26468:19;26460:56;;;;-1:-1:-1;;;26460:56:0;;;;;;;:::i;50027:41::-;;;;;;;;;;;;;;;:::o;50911:654::-;50972:14;;;;50964:56;;;;-1:-1:-1;;;50964:56:0;;;;;;;:::i;:::-;51033:13;51049:24;51062:10;51049:12;:24::i;:::-;51108:8;;:30;;-1:-1:-1;;;51108:30:0;;51033:40;;-1:-1:-1;51086:19:0;;-1:-1:-1;;;;;51108:8:0;;;;:18;;:30;;51127:10;;51108:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51086:52;;51172:5;51157:11;:20;;51149:57;;;;-1:-1:-1;;;51149:57:0;;;;;;;:::i;:::-;51243:8;;:45;;-1:-1:-1;;;51243:45:0;;51219:21;;-1:-1:-1;;;;;51243:8:0;;:18;;:45;;51262:10;;51282:4;;51243:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51219:69;;51324:5;51307:13;:22;;51299:75;;;;-1:-1:-1;;;51299:75:0;;;;;;;:::i;:::-;51390:9;;51387:131;;51424:8;;51458:14;;51424:56;;-1:-1:-1;;;51424:56:0;;-1:-1:-1;;;;;51424:8:0;;;;:21;;:56;;51446:10;;51458:14;;;;51474:5;;51424:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51416:90;;;;-1:-1:-1;;;51416:90:0;;;;;;;:::i;:::-;51538:19;51547:9;51538:8;:19::i;:::-;50911:654;;;;:::o;26056:207::-;26128:7;-1:-1:-1;;;;;26156:19:0;;26148:73;;;;-1:-1:-1;;;26148:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26239:16:0;;;;;:9;:16;;;;;;;26056:207::o;2680:103::-;1918:13;:11;:13::i;:::-;2745:30:::1;2772:1;2745:18;:30::i;:::-;2680:103::o:0;52327:198::-;-1:-1:-1;;;;;52408:15:0;;52384:7;52408:15;;;:9;:15;;;;;;;;52404:29;;;-1:-1:-1;52432:1:0;52425:8;;52404:29;-1:-1:-1;;;;;52448:15:0;;;;;;:9;:15;;;;;;;;52444:42;;;-1:-1:-1;52472:14:0;;52465:21;;52444:42;-1:-1:-1;;52504:13:0;;;52327:198::o;53483:86::-;1918:13;:11;:13::i;:::-;53539:14:::1;:22:::0;;-1:-1:-1;;53539:22:0::1;::::0;;53483:86::o;50459:35::-;;;;;;;;;:::o;2032:87::-;2105:6;;-1:-1:-1;;;;;2105:6:0;2032:87;:::o;26783:104::-;26839:13;26872:7;26865:14;;;;;:::i;49979:41::-;;;;;;;;;;;;;;;:::o;52820:99::-;1918:13;:11;:13::i;:::-;52893:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52820:99:::0;:::o;50371:34::-;;;;;;:::o;28370:155::-;28465:52;28484:12;:10;:12::i;:::-;28498:8;28508;28465:18;:52::i;53577:175::-;1918:13;:11;:13::i;:::-;-1:-1:-1;;;;;53662:24:0;::::1;53654:52;;;;-1:-1:-1::0;;;53654:52:0::1;;;;;;;:::i;:::-;53717:14;:27:::0;;-1:-1:-1;;;;;;53717:27:0::1;-1:-1:-1::0;;;;;53717:27:0;;;::::1;::::0;;;::::1;::::0;;53577:175::o;51583:732::-;51671:14;;;;51663:56;;;;-1:-1:-1;;;51663:56:0;;;;;;;:::i;:::-;51732:18;51780:9;51753:24;51766:10;51753:12;:24::i;:::-;:36;;;;:::i;:::-;51824:8;;:30;;-1:-1:-1;;;51824:30:0;;51732:57;;-1:-1:-1;51802:19:0;;-1:-1:-1;;;;;51824:8:0;;;;:18;;:30;;51843:10;;51824:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51802:52;;51888:10;51873:11;:25;;51865:62;;;;-1:-1:-1;;;51865:62:0;;;;;;;:::i;:::-;51964:8;;:45;;-1:-1:-1;;;51964:45:0;;51940:21;;-1:-1:-1;;;;;51964:8:0;;:18;;:45;;51983:10;;52003:4;;51964:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51940:69;;52045:10;52028:13;:27;;52020:80;;;;-1:-1:-1;;;52020:80:0;;;;;;;:::i;:::-;52121:8;;52155:14;;52121:61;;-1:-1:-1;;;52121:61:0;;-1:-1:-1;;;;;52121:8:0;;;;:21;;:61;;52143:10;;52155:14;;;;52171:10;;52121:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52113:95;;;;-1:-1:-1;;;52113:95:0;;;;;;;:::i;:::-;52225:9;52221:85;52244:9;52240:1;:13;52221:85;;;52275:19;52284:9;52275:8;:19::i;:::-;52255:3;;;;:::i;:::-;;;;52221:85;;;;51583:732;;;;;:::o;29490:323::-;29664:41;29683:12;:10;:12::i;:::-;29697:7;29664:18;:41::i;:::-;29656:100;;;;-1:-1:-1;;;29656:100:0;;;;;;;:::i;:::-;29767:38;29781:4;29787:2;29791:7;29800:4;29767:13;:38::i;52927:327::-;53000:13;53041:16;53049:7;53041;:16::i;:::-;53033:76;;;;-1:-1:-1;;;53033:76:0;;;;;;;:::i;:::-;53151:1;53133:7;53127:21;;;;;:::i;:::-;;;:25;:117;;;;;;;;;;;;;;;;;53192:7;53201:18;:7;:16;:18::i;:::-;53221:3;53175:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53120:124;;52927:327;;;:::o;50340:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53391:84::-;1918:13;:11;:13::i;:::-;53446:14:::1;:21:::0;;-1:-1:-1;;53446:21:0::1;53463:4;53446:21;::::0;;53391:84::o;50312:21::-;;;;;;;:::i;28596:164::-;-1:-1:-1;;;;;28717:25:0;;;28693:4;28717:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28596:164::o;2938:201::-;1918:13;:11;:13::i;:::-;-1:-1:-1;;;;;3027:22:0;::::1;3019:73;;;;-1:-1:-1::0;;;3019:73:0::1;;;;;;;:::i;:::-;3103:28;3122:8;3103:18;:28::i;:::-;2938:201:::0;:::o;53760:94::-;53841:4;53760:94;:::o;50215:42::-;;;;:::o;25687:305::-;25789:4;-1:-1:-1;;;;;;25826:40:0;;-1:-1:-1;;;25826:40:0;;:105;;-1:-1:-1;;;;;;;25883:48:0;;-1:-1:-1;;;25883:48:0;25826:105;:158;;;;25948:36;25972:11;25948:23;:36::i;4228:114::-;4320:14;;4228:114::o;2197:132::-;2272:12;:10;:12::i;:::-;-1:-1:-1;;;;;2261:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2261:23:0;;2253:68;;;;-1:-1:-1;;;2253:68:0;;;;;;;:::i;36102:135::-;36184:16;36192:7;36184;:16::i;:::-;36176:53;;;;-1:-1:-1;;;36176:53:0;;;;;;;:::i;600:98::-;680:10;600:98;:::o;35381:174::-;35456:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35456:29:0;-1:-1:-1;;;;;35456:29:0;;;;;;;;:24;;35510:23;35456:24;35510:14;:23::i;:::-;-1:-1:-1;;;;;35501:46:0;;;;;;;;;;;35381:174;;:::o;31614:264::-;31707:4;31724:13;31740:23;31755:7;31740:14;:23::i;:::-;31724:39;;31793:5;-1:-1:-1;;;;;31782:16:0;:7;-1:-1:-1;;;;;31782:16:0;;:52;;;;31802:32;31819:5;31826:7;31802:16;:32::i;:::-;31782:87;;;;31862:7;-1:-1:-1;;;;;31838:31:0;:20;31850:7;31838:11;:20::i;:::-;-1:-1:-1;;;;;31838:31:0;;31782:87;31774:96;31614:264;-1:-1:-1;;;;31614:264:0:o;34637:625::-;34796:4;-1:-1:-1;;;;;34769:31:0;:23;34784:7;34769:14;:23::i;:::-;-1:-1:-1;;;;;34769:31:0;;34761:81;;;;-1:-1:-1;;;34761:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34861:16:0;;34853:65;;;;-1:-1:-1;;;34853:65:0;;;;;;;:::i;:::-;34931:39;34952:4;34958:2;34962:7;34931:20;:39::i;:::-;35035:29;35052:1;35056:7;35035:8;:29::i;:::-;-1:-1:-1;;;;;35077:15:0;;;;;;:9;:15;;;;;:20;;35096:1;;35077:15;:20;;35096:1;;35077:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35108:13:0;;;;;;:9;:13;;;;;:18;;35125:1;;35108:13;:18;;35125:1;;35108:18;:::i;:::-;;;;-1:-1:-1;;35137:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35137:21:0;-1:-1:-1;;;;;35137:21:0;;;;;;;;;35176:27;;35137:16;;35176:27;;;;;;;35216:38;35236:4;35242:2;35246:7;35216:19;:38::i;52533:279::-;50301:4;52598:25;:15;:23;:25::i;:::-;:38;52590:76;;;;-1:-1:-1;;;52590:76:0;;;;;;;:::i;:::-;52677:27;:15;:25;:27::i;:::-;52715:18;52736:25;:15;:23;:25::i;:::-;52715:46;;52772:32;52782:9;52793:10;52772:9;:32::i;3299:191::-;3392:6;;;-1:-1:-1;;;;;3409:17:0;;;-1:-1:-1;;;;;;3409:17:0;;;;;;;3442:40;;3392:6;;;3409:17;3392:6;;3442:40;;3373:16;;3442:40;3299:191;;:::o;35698:315::-;35853:8;-1:-1:-1;;;;;35844:17:0;:5;-1:-1:-1;;;;;35844:17:0;;;35836:55;;;;-1:-1:-1;;;35836:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35902:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;35902:46:0;;;;;;;35964:41;;;;;35902:46;;35964:41;:::i;:::-;;;;;;;;35698:315;;;:::o;30694:313::-;30850:28;30860:4;30866:2;30870:7;30850:9;:28::i;:::-;30897:47;30920:4;30926:2;30930:7;30939:4;30897:22;:47::i;:::-;30889:110;;;;-1:-1:-1;;;30889:110:0;;;;;;;:::i;31320:127::-;31385:4;31409:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31409:16:0;:30;;;31320:127::o;22230:723::-;22286:13;22507:10;22503:53;;-1:-1:-1;22534:10:0;;;;;;;;;;;;-1:-1:-1;;;22534:10:0;;;;;;22503:53;22581:5;22566:12;22622:78;22629:9;;22622:78;;22655:8;;;;:::i;:::-;;-1:-1:-1;22678:10:0;;-1:-1:-1;22686:2:0;22678:10;;:::i;:::-;;;22622:78;;;22710:19;22742:6;22732:17;;;;;;-1:-1:-1;;;22732:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22732:17:0;;22710:39;;22760:154;22767:10;;22760:154;;22794:11;22804:1;22794:11;;:::i;:::-;;-1:-1:-1;22863:10:0;22871:2;22863:5;:10;:::i;:::-;22850:24;;:2;:24;:::i;:::-;22837:39;;22820:6;22827;22820:14;;;;;;-1:-1:-1;;;22820:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;22820:56:0;;;;;;;;-1:-1:-1;22891:11:0;22900:2;22891:11;;:::i;:::-;;;22760:154;;21651:157;-1:-1:-1;;;;;;21760:40:0;;-1:-1:-1;;;21760:40:0;21651:157;;;:::o;42602:589::-;42746:45;42773:4;42779:2;42783:7;42746:26;:45::i;:::-;-1:-1:-1;;;;;42808:18:0;;42804:187;;42843:40;42875:7;42843:31;:40::i;:::-;42804:187;;;42913:2;-1:-1:-1;;;;;42905:10:0;:4;-1:-1:-1;;;;;42905:10:0;;42901:90;;42932:47;42965:4;42971:7;42932:32;:47::i;:::-;-1:-1:-1;;;;;43005:16:0;;43001:183;;43038:45;43075:7;43038:36;:45::i;:::-;43001:183;;;43111:4;-1:-1:-1;;;;;43105:10:0;:2;-1:-1:-1;;;;;43105:10:0;;43101:83;;43132:40;43160:2;43164:7;43132:27;:40::i;4350:127::-;4439:19;;4457:1;4439:19;;;4350:127::o;32220:110::-;32296:26;32306:2;32310:7;32296:26;;;;;;;;;;;;:9;:26::i;36801:853::-;36955:4;36976:15;:2;-1:-1:-1;;;;;36976:13:0;;:15::i;:::-;36972:675;;;37028:2;-1:-1:-1;;;;;37012:36:0;;37049:12;:10;:12::i;:::-;37063:4;37069:7;37078:4;37012:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37012:71:0;;;;;;;;-1:-1:-1;;37012:71:0;;;;;;;;;;;;:::i;:::-;;;37008:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37253:13:0;;37249:328;;37296:60;;-1:-1:-1;;;37296:60:0;;;;;;;:::i;37249:328::-;37527:6;37521:13;37512:6;37508:2;37504:15;37497:38;37008:584;-1:-1:-1;;;;;;37134:51:0;-1:-1:-1;;;37134:51:0;;-1:-1:-1;37127:58:0;;36972:675;-1:-1:-1;37631:4:0;36801:853;;;;;;:::o;43914:164::-;44018:10;:17;;43991:24;;;;:15;:24;;;;;:44;;;44046:24;;;;;;;;;;;;43914:164::o;44705:988::-;44971:22;45021:1;44996:22;45013:4;44996:16;:22::i;:::-;:26;;;;:::i;:::-;45033:18;45054:26;;;:17;:26;;;;;;44971:51;;-1:-1:-1;45187:28:0;;;45183:328;;-1:-1:-1;;;;;45254:18:0;;45232:19;45254:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45305:30;;;;;;:44;;;45422:30;;:17;:30;;;;;:43;;;45183:328;-1:-1:-1;45607:26:0;;;;:17;:26;;;;;;;;45600:33;;;-1:-1:-1;;;;;45651:18:0;;;;;:12;:18;;;;;:34;;;;;;;45644:41;44705:988::o;45988:1079::-;46266:10;:17;46241:22;;46266:21;;46286:1;;46266:21;:::i;:::-;46298:18;46319:24;;;:15;:24;;;;;;46692:10;:26;;46241:46;;-1:-1:-1;46319:24:0;;46241:46;;46692:26;;;;-1:-1:-1;;;46692:26:0;;;;;;;;;;;;;;;;;46670:48;;46756:11;46731:10;46742;46731:22;;;;;;-1:-1:-1;;;46731:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46836:28;;;:15;:28;;;;;;;:41;;;47008:24;;;;;47001:31;47043:10;:16;;;;;-1:-1:-1;;;47043:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45988:1079;;;;:::o;43492:221::-;43577:14;43594:20;43611:2;43594:16;:20::i;:::-;-1:-1:-1;;;;;43625:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43670:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43492:221:0:o;32557:319::-;32686:18;32692:2;32696:7;32686:5;:18::i;:::-;32737:53;32768:1;32772:2;32776:7;32785:4;32737:22;:53::i;:::-;32715:153;;;;-1:-1:-1;;;32715:153:0;;;;;;;:::i;13483:326::-;13543:4;13800:1;13778:7;-1:-1:-1;;;;;13778:12:0;;;;;;;;;;;;;;;;;;;;;;;;:19;:23;;13483:326;-1:-1:-1;;13483:326:0:o;33212:439::-;-1:-1:-1;;;;;33292:16:0;;33284:61;;;;-1:-1:-1;;;33284:61:0;;;;;;;:::i;:::-;33365:16;33373:7;33365;:16::i;:::-;33364:17;33356:58;;;;-1:-1:-1;;;33356:58:0;;;;;;;:::i;:::-;33427:45;33456:1;33460:2;33464:7;33427:20;:45::i;:::-;-1:-1:-1;;;;;33485:13:0;;;;;;:9;:13;;;;;:18;;33502:1;;33485:13;:18;;33502:1;;33485:18;:::i;:::-;;;;-1:-1:-1;;33514:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33514:21:0;-1:-1:-1;;;;;33514:21:0;;;;;;;;33553:33;;33514:16;;;33553:33;;33514:16;;33553:33;33599:44;33627:1;33631:2;33635:7;33599:19;:44::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;:::-;957:41;876:128;-1:-1:-1;;;876:128:1:o;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:329::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2611:30;2635:5;2611:30;:::i;:::-;2660:5;2650:15;;;2426:245;;;;;:::o;2676:266::-;;;2805:2;2793:9;2784:7;2780:23;2776:32;2773:2;;;2826:6;2818;2811:22;2773:2;2854:31;2875:9;2854:31;:::i;:::-;2844:41;2932:2;2917:18;;;;2904:32;;-1:-1:-1;;;2763:179:1:o;2947:257::-;;3067:2;3055:9;3046:7;3042:23;3038:32;3035:2;;;3088:6;3080;3073:22;3035:2;3125:9;3119:16;3144:30;3168:5;3144:30;:::i;3209:257::-;;3320:2;3308:9;3299:7;3295:23;3291:32;3288:2;;;3341:6;3333;3326:22;3288:2;3385:9;3372:23;3404:32;3430:5;3404:32;:::i;3471:261::-;;3593:2;3581:9;3572:7;3568:23;3564:32;3561:2;;;3614:6;3606;3599:22;3561:2;3651:9;3645:16;3670:32;3696:5;3670:32;:::i;3737:482::-;;3859:2;3847:9;3838:7;3834:23;3830:32;3827:2;;;3880:6;3872;3865:22;3827:2;3925:9;3912:23;3958:18;3950:6;3947:30;3944:2;;;3995:6;3987;3980:22;3944:2;4023:22;;4076:4;4068:13;;4064:27;-1:-1:-1;4054:2:1;;4110:6;4102;4095:22;4054:2;4138:75;4205:7;4200:2;4187:16;4182:2;4178;4174:11;4138:75;:::i;4224:190::-;;4336:2;4324:9;4315:7;4311:23;4307:32;4304:2;;;4357:6;4349;4342:22;4304:2;-1:-1:-1;4385:23:1;;4294:120;-1:-1:-1;4294:120:1:o;4419:194::-;;4542:2;4530:9;4521:7;4517:23;4513:32;4510:2;;;4563:6;4555;4548:22;4510:2;-1:-1:-1;4591:16:1;;4500:113;-1:-1:-1;4500:113:1:o;4618:258::-;;;4747:2;4735:9;4726:7;4722:23;4718:32;4715:2;;;4768:6;4760;4753:22;4715:2;-1:-1:-1;;4796:23:1;;;4866:2;4851:18;;;4838:32;;-1:-1:-1;4705:171:1:o;4881:259::-;;4962:5;4956:12;4989:6;4984:3;4977:19;5005:63;5061:6;5054:4;5049:3;5045:14;5038:4;5031:5;5027:16;5005:63;:::i;:::-;5122:2;5101:15;-1:-1:-1;;5097:29:1;5088:39;;;;5129:4;5084:50;;4932:208;-1:-1:-1;;4932:208:1:o;5145:982::-;5232:12;;5145:982;;5304:1;5289:17;;5325:1;5361:18;;;;5388:2;;5442:4;5434:6;5430:17;5420:27;;5388:2;5468;5516;5508:6;5505:14;5485:18;5482:38;5479:2;;;-1:-1:-1;;;5543:33:1;;5599:4;5596:1;5589:15;5629:4;5550:3;5617:17;5479:2;5660:18;5687:104;;;;5805:1;5800:321;;;;5653:468;;5687:104;-1:-1:-1;;5720:24:1;;5708:37;;5765:16;;;;-1:-1:-1;5687:104:1;;5800:321;5836:38;5868:5;5836:38;:::i;:::-;5896:1;5910:165;5924:6;5921:1;5918:13;5910:165;;;6002:14;;5989:11;;;5982:35;6045:16;;;;5939:10;;5910:165;;;5914:3;;6104:6;6099:3;6095:16;6088:23;;5653:468;;;;;;;5205:922;;;;:::o;6132:460::-;;6381:40;6417:3;6409:6;6381:40;:::i;:::-;6450:6;6444:13;6466:52;6511:6;6507:2;6500:4;6492:6;6488:17;6466:52;:::i;:::-;6534;6578:6;6574:2;6570:15;6562:6;6534:52;:::i;:::-;6527:59;6361:231;-1:-1:-1;;;;;;;6361:231:1:o;6597:203::-;-1:-1:-1;;;;;6761:32:1;;;;6743:51;;6731:2;6716:18;;6698:102::o;6805:304::-;-1:-1:-1;;;;;7035:15:1;;;7017:34;;7087:15;;7082:2;7067:18;;7060:43;6967:2;6952:18;;6934:175::o;7114:375::-;-1:-1:-1;;;;;7372:15:1;;;7354:34;;7424:15;;;;7419:2;7404:18;;7397:43;7471:2;7456:18;;7449:34;;;;7304:2;7289:18;;7271:218::o;7494:490::-;-1:-1:-1;;;;;7763:15:1;;;7745:34;;7815:15;;7810:2;7795:18;;7788:43;7862:2;7847:18;;7840:34;;;7910:3;7905:2;7890:18;;7883:31;;;7494:490;;7931:47;;7958:19;;7950:6;7931:47;:::i;:::-;7923:55;7697:287;-1:-1:-1;;;;;;7697:287:1:o;7989:187::-;8154:14;;8147:22;8129:41;;8117:2;8102:18;;8084:92::o;8404:221::-;;8553:2;8542:9;8535:21;8573:46;8615:2;8604:9;8600:18;8592:6;8573:46;:::i;8630:339::-;8832:2;8814:21;;;8871:2;8851:18;;;8844:30;-1:-1:-1;;;8905:2:1;8890:18;;8883:45;8960:2;8945:18;;8804:165::o;8974:407::-;9176:2;9158:21;;;9215:2;9195:18;;;9188:30;9254:34;9249:2;9234:18;;9227:62;-1:-1:-1;;;9320:2:1;9305:18;;9298:41;9371:3;9356:19;;9148:233::o;9386:414::-;9588:2;9570:21;;;9627:2;9607:18;;;9600:30;9666:34;9661:2;9646:18;;9639:62;-1:-1:-1;;;9732:2:1;9717:18;;9710:48;9790:3;9775:19;;9560:240::o;9805:402::-;10007:2;9989:21;;;10046:2;10026:18;;;10019:30;10085:34;10080:2;10065:18;;10058:62;-1:-1:-1;;;10151:2:1;10136:18;;10129:36;10197:3;10182:19;;9979:228::o;10212:401::-;10414:2;10396:21;;;10453:2;10433:18;;;10426:30;10492:34;10487:2;10472:18;;10465:62;-1:-1:-1;;;10558:2:1;10543:18;;10536:35;10603:3;10588:19;;10386:227::o;10618:352::-;10820:2;10802:21;;;10859:2;10839:18;;;10832:30;10898;10893:2;10878:18;;10871:58;10961:2;10946:18;;10792:178::o;10975:348::-;11177:2;11159:21;;;11216:2;11196:18;;;11189:30;11255:26;11250:2;11235:18;;11228:54;11314:2;11299:18;;11149:174::o;11328:400::-;11530:2;11512:21;;;11569:2;11549:18;;;11542:30;11608:34;11603:2;11588:18;;11581:62;-1:-1:-1;;;11674:2:1;11659:18;;11652:34;11718:3;11703:19;;11502:226::o;11733:349::-;11935:2;11917:21;;;11974:2;11954:18;;;11947:30;12013:27;12008:2;11993:18;;11986:55;12073:2;12058:18;;11907:175::o;12087:353::-;12289:2;12271:21;;;12328:2;12308:18;;;12301:30;12367:31;12362:2;12347:18;;12340:59;12431:2;12416:18;;12261:179::o;12445:405::-;12647:2;12629:21;;;12686:2;12666:18;;;12659:30;12725:34;12720:2;12705:18;;12698:62;-1:-1:-1;;;12791:2:1;12776:18;;12769:39;12840:3;12825:19;;12619:231::o;12855:345::-;13057:2;13039:21;;;13096:2;13076:18;;;13069:30;-1:-1:-1;;;13130:2:1;13115:18;;13108:51;13191:2;13176:18;;13029:171::o;13205:426::-;13407:2;13389:21;;;13446:2;13426:18;;;13419:30;13485:34;13480:2;13465:18;;13458:62;13556:32;13551:2;13536:18;;13529:60;13621:3;13606:19;;13379:252::o;13636:356::-;13838:2;13820:21;;;13857:18;;;13850:30;13916:34;13911:2;13896:18;;13889:62;13983:2;13968:18;;13810:182::o;13997:349::-;14199:2;14181:21;;;14238:2;14218:18;;;14211:30;14277:27;14272:2;14257:18;;14250:55;14337:2;14322:18;;14171:175::o;14351:356::-;14553:2;14535:21;;;14572:18;;;14565:30;14631:34;14626:2;14611:18;;14604:62;14698:2;14683:18;;14525:182::o;14712:404::-;14914:2;14896:21;;;14953:2;14933:18;;;14926:30;14992:34;14987:2;14972:18;;14965:62;-1:-1:-1;;;15058:2:1;15043:18;;15036:38;15106:3;15091:19;;14886:230::o;15121:411::-;15323:2;15305:21;;;15362:2;15342:18;;;15335:30;15401:34;15396:2;15381:18;;15374:62;-1:-1:-1;;;15467:2:1;15452:18;;15445:45;15522:3;15507:19;;15295:237::o;15537:348::-;15739:2;15721:21;;;15778:2;15758:18;;;15751:30;15817:26;15812:2;15797:18;;15790:54;15876:2;15861:18;;15711:174::o;15890:397::-;16092:2;16074:21;;;16131:2;16111:18;;;16104:30;16170:34;16165:2;16150:18;;16143:62;-1:-1:-1;;;16236:2:1;16221:18;;16214:31;16277:3;16262:19;;16064:223::o;16292:408::-;16494:2;16476:21;;;16533:2;16513:18;;;16506:30;16572:34;16567:2;16552:18;;16545:62;-1:-1:-1;;;16638:2:1;16623:18;;16616:42;16690:3;16675:19;;16466:234::o;16705:410::-;16907:2;16889:21;;;16946:2;16926:18;;;16919:30;16985:34;16980:2;16965:18;;16958:62;-1:-1:-1;;;17051:2:1;17036:18;;17029:44;17105:3;17090:19;;16879:236::o;17120:177::-;17266:25;;;17254:2;17239:18;;17221:76::o;17302:129::-;;17370:17;;;17420:4;17404:21;;;17360:71::o;17436:128::-;;17507:1;17503:6;17500:1;17497:13;17494:2;;;17513:18;;:::i;:::-;-1:-1:-1;17549:9:1;;17484:80::o;17569:120::-;;17635:1;17625:2;;17640:18;;:::i;:::-;-1:-1:-1;17674:9:1;;17615:74::o;17694:168::-;;17800:1;17796;17792:6;17788:14;17785:1;17782:21;17777:1;17770:9;17763:17;17759:45;17756:2;;;17807:18;;:::i;:::-;-1:-1:-1;17847:9:1;;17746:116::o;17867:125::-;;17935:1;17932;17929:8;17926:2;;;17940:18;;:::i;:::-;-1:-1:-1;17977:9:1;;17916:76::o;17997:258::-;18069:1;18079:113;18093:6;18090:1;18087:13;18079:113;;;18169:11;;;18163:18;18150:11;;;18143:39;18115:2;18108:10;18079:113;;;18210:6;18207:1;18204:13;18201:2;;;-1:-1:-1;;18245:1:1;18227:16;;18220:27;18050:205::o;18260:380::-;18345:1;18335:12;;18392:1;18382:12;;;18403:2;;18457:4;18449:6;18445:17;18435:27;;18403:2;18510;18502:6;18499:14;18479:18;18476:38;18473:2;;;18556:10;18551:3;18547:20;18544:1;18537:31;18591:4;18588:1;18581:15;18619:4;18616:1;18609:15;18473:2;;18315:325;;;:::o;18645:135::-;;-1:-1:-1;;18705:17:1;;18702:2;;;18725:18;;:::i;:::-;-1:-1:-1;18772:1:1;18761:13;;18692:88::o;18785:112::-;;18843:1;18833:2;;18848:18;;:::i;:::-;-1:-1:-1;18882:9:1;;18823:74::o;18902:127::-;18963:10;18958:3;18954:20;18951:1;18944:31;18994:4;18991:1;18984:15;19018:4;19015:1;19008:15;19034:127;19095:10;19090:3;19086:20;19083:1;19076:31;19126:4;19123:1;19116:15;19150:4;19147:1;19140:15;19166:127;19227:10;19222:3;19218:20;19215:1;19208:31;19258:4;19255:1;19248:15;19282:4;19279:1;19272:15;19298:120;19386:5;19379:13;19372:21;19365:5;19362:32;19352:2;;19408:1;19405;19398:12;19423:133;-1:-1:-1;;;;;;19499:32:1;;19489:43;;19479:2;;19546:1;19543;19536:12
Swarm Source
ipfs://060a824f955c275df4774086bb3c4a3e54d9b80d2bcccbfd4a49732cdcf25d19
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.