Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,000 ARC
Holders
467
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 ARCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ApeRidersClub
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-23 */ //Ape Riders Club //Author: https://twitter.com/Crypto_n_that // SPDX-License-Identifier: No License // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.7.0 <0.9.0; contract deployedContract { function balanceOf(address) public returns (uint256) {} } contract ApeRidersClub is ERC721A, Ownable { using Strings for uint256; string public baseURI = "https://storage.googleapis.com/aperidersclub/revealed/"; string public notRevealedUri = "https://storage.googleapis.com/aperidersclub/unrevealed/unreveal.json"; uint256 public cost = 0 ether; uint256 public maxSupply = 5000; bool public paused = false; bool public revealed = false; uint256 public mintStartTime = 0; mapping(address => bool) internal admins; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol) { admins[0x008bF945e25CD8FAa2D76badd8fe50F0536fA21b] = true; admins[0xFb01396F5cb5f01B57A9D5Dfbf716C9e2B062907] = true; admins[0x394b24722dAD58bf477ea155984253a69D140E02] = true; } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount, address _receivingAddress) public payable { uint256 supply = totalSupply(); uint256 rideBalance = deployedContract(0x1748B24faf9780B74E5A9f3Feb41553E712E94aa).balanceOf(_receivingAddress); uint256 totalMinted = balanceOf(_receivingAddress); uint256 allowance = (10 + (rideBalance * 10)) - totalMinted; require(_mintAmount > 0, "You need to mint at least 1 NFT"); require(supply + _mintAmount <= maxSupply, "Max NFT limit exceeded"); if (msg.sender != owner()) { if (admins[msg.sender] != true) { require(mintStartTime>0, "Ape Riders Club mint has not started"); require(!paused, "The contract is paused"); require(_mintAmount <= allowance, "Max mint amount exceeded"); } } _safeMint(_receivingAddress, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function pause(bool _state) public onlyOwner { paused = _state; } function startMint() public onlyOwner { mintStartTime = block.timestamp; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receivingAddress","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526036608081815290620021b360a0396009906200002290826200026a565b50604051806080016040528060458152602001620021e960459139600a906200004c90826200026a565b506000600b819055611388600c55600d805461ffff19169055600e553480156200007557600080fd5b506040516200222e3803806200222e8339810160408190526200009891620003e5565b81816002620000a883826200026a565b506003620000b782826200026a565b5050600160005550620000ca3362000173565b5050600f6020527f5a570fcb37519a1559cf93bb8d8912e83ccf3dc806ab3f80e8e76dddad370c268054600160ff1991821681179092557f7982d2e749941cf17d297b5416986aabc5740907a0e8441e30c66a4c7b8b42fa805482168317905573394b24722dad58bf477ea155984253a69d140e026000527f47a23a13c30f14bf136d86a9a870c9b175fe18aac84f2aa872b32d35349d5378805490911690911790556200044f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001f057607f821691505b6020821081036200021157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200026557600081815260208120601f850160051c81016020861015620002405750805b601f850160051c820191505b8181101562000261578281556001016200024c565b5050505b505050565b81516001600160401b03811115620002865762000286620001c5565b6200029e81620002978454620001db565b8462000217565b602080601f831160018114620002d65760008415620002bd5750858301515b600019600386901b1c1916600185901b17855562000261565b600085815260208120601f198616915b828110156200030757888601518255948401946001909101908401620002e6565b5085821015620003265787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200034857600080fd5b81516001600160401b0380821115620003655762000365620001c5565b604051601f8301601f19908116603f01168101908282118183101715620003905762000390620001c5565b81604052838152602092508683858801011115620003ad57600080fd5b600091505b83821015620003d15785820183015181830184015290820190620003b2565b600093810190920192909252949350505050565b60008060408385031215620003f957600080fd5b82516001600160401b03808211156200041157600080fd5b6200041f8683870162000336565b935060208501519150808211156200043657600080fd5b50620004458582860162000336565b9150509250929050565b611d54806200045f6000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146104b7578063d5abeb01146104d7578063e985e9c5146104ed578063f2fde38b1461050d57600080fd5b806395d89b411461044d578063a22cb46514610462578063a475b5dd14610482578063b88d4fde1461049757600080fd5b8063715018a6116100d1578063715018a6146103f15780638da5cb5b14610406578063931e2e491461042457806394bf804d1461043a57600080fd5b80636352211e1461039c5780636c0360eb146103bc57806370a08231146103d157600080fd5b806318160ddd1161016457806342842e0e1161013e57806342842e0e14610323578063518302271461034357806355f804b3146103625780635c975abb1461038257600080fd5b806318160ddd146102d157806323b872dd146102ee5780632be095611461030e57600080fd5b8063081812fc116101a0578063081812fc14610240578063081c8c4414610278578063095ea7b31461028d57806313faede6146102ad57600080fd5b806301ffc9a7146101c757806302329a29146101fc57806306fdde031461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611705565b61052d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021c610217366004611737565b61057f565b005b34801561022a57600080fd5b506102336105c5565b6040516101f391906117a2565b34801561024c57600080fd5b5061026061025b3660046117b5565b610657565b6040516001600160a01b0390911681526020016101f3565b34801561028457600080fd5b5061023361069b565b34801561029957600080fd5b5061021c6102a83660046117e5565b610729565b3480156102b957600080fd5b506102c3600b5481565b6040519081526020016101f3565b3480156102dd57600080fd5b5060015460005403600019016102c3565b3480156102fa57600080fd5b5061021c61030936600461180f565b6107b6565b34801561031a57600080fd5b5061021c6107c1565b34801561032f57600080fd5b5061021c61033e36600461180f565b6107f1565b34801561034f57600080fd5b50600d546101e790610100900460ff1681565b34801561036e57600080fd5b5061021c61037d3660046118d7565b61080c565b34801561038e57600080fd5b50600d546101e79060ff1681565b3480156103a857600080fd5b506102606103b73660046117b5565b610846565b3480156103c857600080fd5b50610233610858565b3480156103dd57600080fd5b506102c36103ec366004611920565b610865565b3480156103fd57600080fd5b5061021c6108b4565b34801561041257600080fd5b506008546001600160a01b0316610260565b34801561043057600080fd5b506102c3600e5481565b61021c61044836600461193b565b6108ea565b34801561045957600080fd5b50610233610b95565b34801561046e57600080fd5b5061021c61047d366004611967565b610ba4565b34801561048e57600080fd5b5061021c610c39565b3480156104a357600080fd5b5061021c6104b2366004611991565b610c74565b3480156104c357600080fd5b506102336104d23660046117b5565b610cc5565b3480156104e357600080fd5b506102c3600c5481565b3480156104f957600080fd5b506101e7610508366004611a0d565b610e36565b34801561051957600080fd5b5061021c610528366004611920565b610e64565b60006001600160e01b031982166380ac58cd60e01b148061055e57506001600160e01b03198216635b5e139f60e01b145b8061057957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105b25760405162461bcd60e51b81526004016105a990611a37565b60405180910390fd5b600d805460ff1916911515919091179055565b6060600280546105d490611a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461060090611a6c565b801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b5050505050905090565b600061066282610eff565b61067f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600a80546106a890611a6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106d490611a6c565b80156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b505050505081565b600061073482610846565b9050806001600160a01b0316836001600160a01b0316036107685760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061078857506107868133610e36565b155b156107a6576040516367d9dca160e11b815260040160405180910390fd5b6107b1838383610f38565b505050565b6107b1838383610f94565b6008546001600160a01b031633146107eb5760405162461bcd60e51b81526004016105a990611a37565b42600e55565b6107b183838360405180602001604052806000815250610c74565b6008546001600160a01b031633146108365760405162461bcd60e51b81526004016105a990611a37565b60096108428282611aec565b5050565b600061085182611184565b5192915050565b600980546106a890611a6c565b60006001600160a01b03821661088e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108de5760405162461bcd60e51b81526004016105a990611a37565b6108e860006112ad565b565b60006108ff6001546000546000199190030190565b6040516370a0823160e01b81526001600160a01b0384166004820152909150600090731748b24faf9780b74e5a9f3feb41553e712e94aa906370a08231906024016020604051808303816000875af115801561095f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109839190611bac565b9050600061099084610865565b90506000816109a084600a611bdb565b6109ab90600a611bf2565b6109b59190611c05565b905060008611610a075760405162461bcd60e51b815260206004820152601f60248201527f596f75206e65656420746f206d696e74206174206c656173742031204e46540060448201526064016105a9565b600c54610a148786611bf2565b1115610a5b5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016105a9565b6008546001600160a01b03163314610b8357336000908152600f602052604090205460ff161515600114610b83576000600e5411610ae75760405162461bcd60e51b8152602060048201526024808201527f4170652052696465727320436c7562206d696e7420686173206e6f74207374616044820152631c9d195960e21b60648201526084016105a9565b600d5460ff1615610b335760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016105a9565b80861115610b835760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e74206578636565646564000000000000000060448201526064016105a9565b610b8d85876112ff565b505050505050565b6060600380546105d490611a6c565b336001600160a01b03831603610bcd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610c635760405162461bcd60e51b81526004016105a990611a37565b600d805461ff001916610100179055565b610c7f848484610f94565b6001600160a01b0383163b15158015610ca15750610c9f84848484611319565b155b15610cbf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cd082610eff565b610d345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a9565b600d54610100900460ff161515600003610dda57600a8054610d5590611a6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190611a6c565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b50505050509050919050565b6000610de4611405565b90506000815111610e045760405180602001604052806000815250610e2f565b80610e0e84611414565b604051602001610e1f929190611c18565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610e8e5760405162461bcd60e51b81526004016105a990611a37565b6001600160a01b038116610ef35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a9565b610efc816112ad565b50565b600081600111158015610f13575060005482105b8015610579575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f9f82611184565b9050836001600160a01b031681600001516001600160a01b031614610fd65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ff45750610ff48533610e36565b8061100f57503361100484610657565b6001600160a01b0316145b90508061102f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661105657604051633a954ecd60e21b815260040160405180910390fd5b61106260008487610f38565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611138576000548214611138578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156111b4575060005481105b1561129457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112925780516001600160a01b031615611228579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561128d579392505050565b611228565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610842828260405180602001604052806000815250611515565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061134e903390899088908890600401611c57565b6020604051808303816000875af1925050508015611389575060408051601f3d908101601f1916820190925261138691810190611c94565b60015b6113e7573d8080156113b7576040519150601f19603f3d011682016040523d82523d6000602084013e6113bc565b606091505b5080516000036113df576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105d490611a6c565b60608160000361143b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611465578061144f81611cb1565b915061145e9050600a83611ce0565b915061143f565b60008167ffffffffffffffff8111156114805761148061184b565b6040519080825280601f01601f1916602001820160405280156114aa576020820181803683370190505b5090505b84156113fd576114bf600183611c05565b91506114cc600a86611cf4565b6114d7906030611bf2565b60f81b8183815181106114ec576114ec611d08565b60200101906001600160f81b031916908160001a90535061150e600a86611ce0565b94506114ae565b6107b183838360016000546001600160a01b03851661154657604051622e076360e81b815260040160405180910390fd5b836000036115675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561161957506001600160a01b0387163b15155b156116a1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461166a6000888480600101955088611319565b611687576040516368d2bf6b60e11b815260040160405180910390fd5b80820361161f57826000541461169c57600080fd5b6116e6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036116a2575b5060005561117d565b6001600160e01b031981168114610efc57600080fd5b60006020828403121561171757600080fd5b8135610e2f816116ef565b8035801515811461173257600080fd5b919050565b60006020828403121561174957600080fd5b610e2f82611722565b60005b8381101561176d578181015183820152602001611755565b50506000910152565b6000815180845261178e816020860160208601611752565b601f01601f19169290920160200192915050565b602081526000610e2f6020830184611776565b6000602082840312156117c757600080fd5b5035919050565b80356001600160a01b038116811461173257600080fd5b600080604083850312156117f857600080fd5b611801836117ce565b946020939093013593505050565b60008060006060848603121561182457600080fd5b61182d846117ce565b925061183b602085016117ce565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561187c5761187c61184b565b604051601f8501601f19908116603f011681019082821181831017156118a4576118a461184b565b816040528093508581528686860111156118bd57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118e957600080fd5b813567ffffffffffffffff81111561190057600080fd5b8201601f8101841361191157600080fd5b6113fd84823560208401611861565b60006020828403121561193257600080fd5b610e2f826117ce565b6000806040838503121561194e57600080fd5b8235915061195e602084016117ce565b90509250929050565b6000806040838503121561197a57600080fd5b611983836117ce565b915061195e60208401611722565b600080600080608085870312156119a757600080fd5b6119b0856117ce565b93506119be602086016117ce565b925060408501359150606085013567ffffffffffffffff8111156119e157600080fd5b8501601f810187136119f257600080fd5b611a0187823560208401611861565b91505092959194509250565b60008060408385031215611a2057600080fd5b611a29836117ce565b915061195e602084016117ce565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a8057607f821691505b602082108103611aa057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107b157600081815260208120601f850160051c81016020861015611acd5750805b601f850160051c820191505b81811015610b8d57828155600101611ad9565b815167ffffffffffffffff811115611b0657611b0661184b565b611b1a81611b148454611a6c565b84611aa6565b602080601f831160018114611b4f5760008415611b375750858301515b600019600386901b1c1916600185901b178555610b8d565b600085815260208120601f198616915b82811015611b7e57888601518255948401946001909101908401611b5f565b5085821015611b9c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611bbe57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761057957610579611bc5565b8082018082111561057957610579611bc5565b8181038181111561057957610579611bc5565b60008351611c2a818460208801611752565b835190830190611c3e818360208801611752565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a90830184611776565b9695505050505050565b600060208284031215611ca657600080fd5b8151610e2f816116ef565b600060018201611cc357611cc3611bc5565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611cef57611cef611cca565b500490565b600082611d0357611d03611cca565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208ba857774e5a430aabd88a81d179d6383384ee3025ecdf9641c07ab6ba47f4cc64736f6c6343000811003368747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f617065726964657273636c75622f72657665616c65642f68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f617065726964657273636c75622f756e72657665616c65642f756e72657665616c2e6a736f6e00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4170652052696465727320436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034152430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146104b7578063d5abeb01146104d7578063e985e9c5146104ed578063f2fde38b1461050d57600080fd5b806395d89b411461044d578063a22cb46514610462578063a475b5dd14610482578063b88d4fde1461049757600080fd5b8063715018a6116100d1578063715018a6146103f15780638da5cb5b14610406578063931e2e491461042457806394bf804d1461043a57600080fd5b80636352211e1461039c5780636c0360eb146103bc57806370a08231146103d157600080fd5b806318160ddd1161016457806342842e0e1161013e57806342842e0e14610323578063518302271461034357806355f804b3146103625780635c975abb1461038257600080fd5b806318160ddd146102d157806323b872dd146102ee5780632be095611461030e57600080fd5b8063081812fc116101a0578063081812fc14610240578063081c8c4414610278578063095ea7b31461028d57806313faede6146102ad57600080fd5b806301ffc9a7146101c757806302329a29146101fc57806306fdde031461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611705565b61052d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021c610217366004611737565b61057f565b005b34801561022a57600080fd5b506102336105c5565b6040516101f391906117a2565b34801561024c57600080fd5b5061026061025b3660046117b5565b610657565b6040516001600160a01b0390911681526020016101f3565b34801561028457600080fd5b5061023361069b565b34801561029957600080fd5b5061021c6102a83660046117e5565b610729565b3480156102b957600080fd5b506102c3600b5481565b6040519081526020016101f3565b3480156102dd57600080fd5b5060015460005403600019016102c3565b3480156102fa57600080fd5b5061021c61030936600461180f565b6107b6565b34801561031a57600080fd5b5061021c6107c1565b34801561032f57600080fd5b5061021c61033e36600461180f565b6107f1565b34801561034f57600080fd5b50600d546101e790610100900460ff1681565b34801561036e57600080fd5b5061021c61037d3660046118d7565b61080c565b34801561038e57600080fd5b50600d546101e79060ff1681565b3480156103a857600080fd5b506102606103b73660046117b5565b610846565b3480156103c857600080fd5b50610233610858565b3480156103dd57600080fd5b506102c36103ec366004611920565b610865565b3480156103fd57600080fd5b5061021c6108b4565b34801561041257600080fd5b506008546001600160a01b0316610260565b34801561043057600080fd5b506102c3600e5481565b61021c61044836600461193b565b6108ea565b34801561045957600080fd5b50610233610b95565b34801561046e57600080fd5b5061021c61047d366004611967565b610ba4565b34801561048e57600080fd5b5061021c610c39565b3480156104a357600080fd5b5061021c6104b2366004611991565b610c74565b3480156104c357600080fd5b506102336104d23660046117b5565b610cc5565b3480156104e357600080fd5b506102c3600c5481565b3480156104f957600080fd5b506101e7610508366004611a0d565b610e36565b34801561051957600080fd5b5061021c610528366004611920565b610e64565b60006001600160e01b031982166380ac58cd60e01b148061055e57506001600160e01b03198216635b5e139f60e01b145b8061057957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105b25760405162461bcd60e51b81526004016105a990611a37565b60405180910390fd5b600d805460ff1916911515919091179055565b6060600280546105d490611a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461060090611a6c565b801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b5050505050905090565b600061066282610eff565b61067f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600a80546106a890611a6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106d490611a6c565b80156107215780601f106106f657610100808354040283529160200191610721565b820191906000526020600020905b81548152906001019060200180831161070457829003601f168201915b505050505081565b600061073482610846565b9050806001600160a01b0316836001600160a01b0316036107685760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061078857506107868133610e36565b155b156107a6576040516367d9dca160e11b815260040160405180910390fd5b6107b1838383610f38565b505050565b6107b1838383610f94565b6008546001600160a01b031633146107eb5760405162461bcd60e51b81526004016105a990611a37565b42600e55565b6107b183838360405180602001604052806000815250610c74565b6008546001600160a01b031633146108365760405162461bcd60e51b81526004016105a990611a37565b60096108428282611aec565b5050565b600061085182611184565b5192915050565b600980546106a890611a6c565b60006001600160a01b03821661088e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108de5760405162461bcd60e51b81526004016105a990611a37565b6108e860006112ad565b565b60006108ff6001546000546000199190030190565b6040516370a0823160e01b81526001600160a01b0384166004820152909150600090731748b24faf9780b74e5a9f3feb41553e712e94aa906370a08231906024016020604051808303816000875af115801561095f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109839190611bac565b9050600061099084610865565b90506000816109a084600a611bdb565b6109ab90600a611bf2565b6109b59190611c05565b905060008611610a075760405162461bcd60e51b815260206004820152601f60248201527f596f75206e65656420746f206d696e74206174206c656173742031204e46540060448201526064016105a9565b600c54610a148786611bf2565b1115610a5b5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016105a9565b6008546001600160a01b03163314610b8357336000908152600f602052604090205460ff161515600114610b83576000600e5411610ae75760405162461bcd60e51b8152602060048201526024808201527f4170652052696465727320436c7562206d696e7420686173206e6f74207374616044820152631c9d195960e21b60648201526084016105a9565b600d5460ff1615610b335760405162461bcd60e51b8152602060048201526016602482015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016105a9565b80861115610b835760405162461bcd60e51b815260206004820152601860248201527f4d6178206d696e7420616d6f756e74206578636565646564000000000000000060448201526064016105a9565b610b8d85876112ff565b505050505050565b6060600380546105d490611a6c565b336001600160a01b03831603610bcd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610c635760405162461bcd60e51b81526004016105a990611a37565b600d805461ff001916610100179055565b610c7f848484610f94565b6001600160a01b0383163b15158015610ca15750610c9f84848484611319565b155b15610cbf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cd082610eff565b610d345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a9565b600d54610100900460ff161515600003610dda57600a8054610d5590611a6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8190611a6c565b8015610dce5780601f10610da357610100808354040283529160200191610dce565b820191906000526020600020905b815481529060010190602001808311610db157829003601f168201915b50505050509050919050565b6000610de4611405565b90506000815111610e045760405180602001604052806000815250610e2f565b80610e0e84611414565b604051602001610e1f929190611c18565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610e8e5760405162461bcd60e51b81526004016105a990611a37565b6001600160a01b038116610ef35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a9565b610efc816112ad565b50565b600081600111158015610f13575060005482105b8015610579575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f9f82611184565b9050836001600160a01b031681600001516001600160a01b031614610fd65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ff45750610ff48533610e36565b8061100f57503361100484610657565b6001600160a01b0316145b90508061102f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661105657604051633a954ecd60e21b815260040160405180910390fd5b61106260008487610f38565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611138576000548214611138578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156111b4575060005481105b1561129457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112925780516001600160a01b031615611228579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561128d579392505050565b611228565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610842828260405180602001604052806000815250611515565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061134e903390899088908890600401611c57565b6020604051808303816000875af1925050508015611389575060408051601f3d908101601f1916820190925261138691810190611c94565b60015b6113e7573d8080156113b7576040519150601f19603f3d011682016040523d82523d6000602084013e6113bc565b606091505b5080516000036113df576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105d490611a6c565b60608160000361143b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611465578061144f81611cb1565b915061145e9050600a83611ce0565b915061143f565b60008167ffffffffffffffff8111156114805761148061184b565b6040519080825280601f01601f1916602001820160405280156114aa576020820181803683370190505b5090505b84156113fd576114bf600183611c05565b91506114cc600a86611cf4565b6114d7906030611bf2565b60f81b8183815181106114ec576114ec611d08565b60200101906001600160f81b031916908160001a90535061150e600a86611ce0565b94506114ae565b6107b183838360016000546001600160a01b03851661154657604051622e076360e81b815260040160405180910390fd5b836000036115675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561161957506001600160a01b0387163b15155b156116a1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461166a6000888480600101955088611319565b611687576040516368d2bf6b60e11b815260040160405180910390fd5b80820361161f57826000541461169c57600080fd5b6116e6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036116a2575b5060005561117d565b6001600160e01b031981168114610efc57600080fd5b60006020828403121561171757600080fd5b8135610e2f816116ef565b8035801515811461173257600080fd5b919050565b60006020828403121561174957600080fd5b610e2f82611722565b60005b8381101561176d578181015183820152602001611755565b50506000910152565b6000815180845261178e816020860160208601611752565b601f01601f19169290920160200192915050565b602081526000610e2f6020830184611776565b6000602082840312156117c757600080fd5b5035919050565b80356001600160a01b038116811461173257600080fd5b600080604083850312156117f857600080fd5b611801836117ce565b946020939093013593505050565b60008060006060848603121561182457600080fd5b61182d846117ce565b925061183b602085016117ce565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561187c5761187c61184b565b604051601f8501601f19908116603f011681019082821181831017156118a4576118a461184b565b816040528093508581528686860111156118bd57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118e957600080fd5b813567ffffffffffffffff81111561190057600080fd5b8201601f8101841361191157600080fd5b6113fd84823560208401611861565b60006020828403121561193257600080fd5b610e2f826117ce565b6000806040838503121561194e57600080fd5b8235915061195e602084016117ce565b90509250929050565b6000806040838503121561197a57600080fd5b611983836117ce565b915061195e60208401611722565b600080600080608085870312156119a757600080fd5b6119b0856117ce565b93506119be602086016117ce565b925060408501359150606085013567ffffffffffffffff8111156119e157600080fd5b8501601f810187136119f257600080fd5b611a0187823560208401611861565b91505092959194509250565b60008060408385031215611a2057600080fd5b611a29836117ce565b915061195e602084016117ce565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a8057607f821691505b602082108103611aa057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107b157600081815260208120601f850160051c81016020861015611acd5750805b601f850160051c820191505b81811015610b8d57828155600101611ad9565b815167ffffffffffffffff811115611b0657611b0661184b565b611b1a81611b148454611a6c565b84611aa6565b602080601f831160018114611b4f5760008415611b375750858301515b600019600386901b1c1916600185901b178555610b8d565b600085815260208120601f198616915b82811015611b7e57888601518255948401946001909101908401611b5f565b5085821015611b9c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611bbe57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761057957610579611bc5565b8082018082111561057957610579611bc5565b8181038181111561057957610579611bc5565b60008351611c2a818460208801611752565b835190830190611c3e818360208801611752565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8a90830184611776565b9695505050505050565b600060208284031215611ca657600080fd5b8151610e2f816116ef565b600060018201611cc357611cc3611bc5565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611cef57611cef611cca565b500490565b600082611d0357611d03611cca565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208ba857774e5a430aabd88a81d179d6383384ee3025ecdf9641c07ab6ba47f4cc64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4170652052696465727320436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034152430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Ape Riders Club
Arg [1] : _symbol (string): ARC
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 4170652052696465727320436c75620000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4152430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46507:2638:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24512:305;;;;;;;;;;-1:-1:-1;24512:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24512:305:0;;;;;;;;48979:73;;;;;;;;;;-1:-1:-1;48979:73:0;;;;;:::i;:::-;;:::i;:::-;;27625:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29128:204::-;;;;;;;;;;-1:-1:-1;29128:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2047:32:1;;;2029:51;;2017:2;2002:18;29128:204:0;1883:203:1;46672:102:0;;;;;;;;;;;;;:::i;28691:371::-;;;;;;;;;;-1:-1:-1;28691:371:0;;;;;:::i;:::-;;:::i;46779:29::-;;;;;;;;;;;;;;;;;;;2674:25:1;;;2662:2;2647:18;46779:29:0;2528:177:1;23761:303:0;;;;;;;;;;-1:-1:-1;23618:1:0;24015:12;23805:7;23999:13;:28;-1:-1:-1;;23999:46:0;23761:303;;29993:170;;;;;;;;;;-1:-1:-1;29993:170:0;;;;;:::i;:::-;;:::i;49058:82::-;;;;;;;;;;;;;:::i;30234:185::-;;;;;;;;;;-1:-1:-1;30234:185:0;;;;;:::i;:::-;;:::i;46880:28::-;;;;;;;;;;-1:-1:-1;46880:28:0;;;;;;;;;;;48875:98;;;;;;;;;;-1:-1:-1;48875:98:0;;;;;:::i;:::-;;:::i;46849:26::-;;;;;;;;;;-1:-1:-1;46849:26:0;;;;;;;;27433:125;;;;;;;;;;-1:-1:-1;27433:125:0;;;;;:::i;:::-;;:::i;46587:80::-;;;;;;;;;;;;;:::i;24881:206::-;;;;;;;;;;-1:-1:-1;24881:206:0;;;;;:::i;:::-;;:::i;45558:103::-;;;;;;;;;;;;;:::i;44906:87::-;;;;;;;;;;-1:-1:-1;44979:6:0;;-1:-1:-1;;;;;44979:6:0;44906:87;;46913:32;;;;;;;;;;;;;;;;47432:853;;;;;;:::i;:::-;;:::i;27794:104::-;;;;;;;;;;;;;:::i;29404:287::-;;;;;;;;;;-1:-1:-1;29404:287:0;;;;;:::i;:::-;;:::i;48804:65::-;;;;;;;;;;;;;:::i;30490:369::-;;;;;;;;;;-1:-1:-1;30490:369:0;;;;;:::i;:::-;;:::i;48291:491::-;;;;;;;;;;-1:-1:-1;48291:491:0;;;;;:::i;:::-;;:::i;46813:31::-;;;;;;;;;;;;;;;;29762:164;;;;;;;;;;-1:-1:-1;29762:164:0;;;;;:::i;:::-;;:::i;45816:201::-;;;;;;;;;;-1:-1:-1;45816:201:0;;;;;:::i;:::-;;:::i;24512:305::-;24614:4;-1:-1:-1;;;;;;24651:40:0;;-1:-1:-1;;;24651:40:0;;:105;;-1:-1:-1;;;;;;;24708:48:0;;-1:-1:-1;;;24708:48:0;24651:105;:158;;;-1:-1:-1;;;;;;;;;;14546:40:0;;;24773:36;24631:178;24512:305;-1:-1:-1;;24512:305:0:o;48979:73::-;44979:6;;-1:-1:-1;;;;;44979:6:0;2987:10;45126:23;45118:69;;;;-1:-1:-1;;;45118:69:0;;;;;;;:::i;:::-;;;;;;;;;49031:6:::1;:15:::0;;-1:-1:-1;;49031:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48979:73::o;27625:100::-;27679:13;27712:5;27705:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27625:100;:::o;29128:204::-;29196:7;29221:16;29229:7;29221;:16::i;:::-;29216:64;;29246:34;;-1:-1:-1;;;29246:34:0;;;;;;;;;;;29216:64;-1:-1:-1;29300:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29300:24:0;;29128:204::o;46672:102::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28691:371::-;28764:13;28780:24;28796:7;28780:15;:24::i;:::-;28764:40;;28825:5;-1:-1:-1;;;;;28819:11:0;:2;-1:-1:-1;;;;;28819:11:0;;28815:48;;28839:24;;-1:-1:-1;;;28839:24:0;;;;;;;;;;;28815:48;2987:10;-1:-1:-1;;;;;28880:21:0;;;;;;:63;;-1:-1:-1;28906:37:0;28923:5;2987:10;29762:164;:::i;28906:37::-;28905:38;28880:63;28876:138;;;28967:35;;-1:-1:-1;;;28967:35:0;;;;;;;;;;;28876:138;29026:28;29035:2;29039:7;29048:5;29026:8;:28::i;:::-;28753:309;28691:371;;:::o;29993:170::-;30127:28;30137:4;30143:2;30147:7;30127:9;:28::i;49058:82::-;44979:6;;-1:-1:-1;;;;;44979:6:0;2987:10;45126:23;45118:69;;;;-1:-1:-1;;;45118:69:0;;;;;;;:::i;:::-;49119:15:::1;49103:13;:31:::0;49058:82::o;30234:185::-;30372:39;30389:4;30395:2;30399:7;30372:39;;;;;;;;;;;;:16;:39::i;48875:98::-;44979:6;;-1:-1:-1;;;;;44979:6:0;2987:10;45126:23;45118:69;;;;-1:-1:-1;;;45118:69:0;;;;;;;:::i;:::-;48946:7:::1;:21;48956:11:::0;48946:7;:21:::1;:::i;:::-;;48875:98:::0;:::o;27433:125::-;27497:7;27524:21;27537:7;27524:12;:21::i;:::-;:26;;27433:125;-1:-1:-1;;27433:125:0:o;46587:80::-;;;;;;;:::i;24881:206::-;24945:7;-1:-1:-1;;;;;24969:19:0;;24965:60;;24997:28;;-1:-1:-1;;;24997:28:0;;;;;;;;;;;24965:60;-1:-1:-1;;;;;;25051:19:0;;;;;:12;:19;;;;;:27;;;;24881:206::o;45558:103::-;44979:6;;-1:-1:-1;;;;;44979:6:0;2987:10;45126:23;45118:69;;;;-1:-1:-1;;;45118:69:0;;;;;;;:::i;:::-;45623:30:::1;45650:1;45623:18;:30::i;:::-;45558:103::o:0;47432:853::-;47516:14;47533:13;23618:1;24015:12;23805:7;23999:13;-1:-1:-1;;23999:28:0;;;:46;;23761:303;47533:13;47575:89;;-1:-1:-1;;;47575:89:0;;-1:-1:-1;;;;;2047:32:1;;47575:89:0;;;2029:51:1;47516:30:0;;-1:-1:-1;47553:19:0;;47592:42;;47575:70;;2002:18:1;;47575:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47553:111;;47671:19;47693:28;47703:17;47693:9;:28::i;:::-;47671:50;-1:-1:-1;47728:17:0;47671:50;47755:16;:11;47769:2;47755:16;:::i;:::-;47749:23;;:2;:23;:::i;:::-;47748:39;;;;:::i;:::-;47728:59;;47816:1;47802:11;:15;47794:59;;;;-1:-1:-1;;;47794:59:0;;9823:2:1;47794:59:0;;;9805:21:1;9862:2;9842:18;;;9835:30;9901:33;9881:18;;;9874:61;9952:18;;47794:59:0;9621:355:1;47794:59:0;47892:9;;47868:20;47877:11;47868:6;:20;:::i;:::-;:33;;47860:68;;;;-1:-1:-1;;;47860:68:0;;10183:2:1;47860:68:0;;;10165:21:1;10222:2;10202:18;;;10195:30;-1:-1:-1;;;10241:18:1;;;10234:52;10303:18;;47860:68:0;9981:346:1;47860:68:0;44979:6;;-1:-1:-1;;;;;44979:6:0;47941:10;:21;47937:295;;47986:10;47979:18;;;;:6;:18;;;;;;;;:26;;:18;:26;47975:250;;48042:1;48028:13;;:15;48020:64;;;;-1:-1:-1;;;48020:64:0;;10534:2:1;48020:64:0;;;10516:21:1;10573:2;10553:18;;;10546:30;10612:34;10592:18;;;10585:62;-1:-1:-1;;;10663:18:1;;;10656:34;10707:19;;48020:64:0;10332:400:1;48020:64:0;48106:6;;;;48105:7;48097:42;;;;-1:-1:-1;;;48097:42:0;;10939:2:1;48097:42:0;;;10921:21:1;10978:2;10958:18;;;10951:30;-1:-1:-1;;;10997:18:1;;;10990:52;11059:18;;48097:42:0;10737:346:1;48097:42:0;48175:9;48160:11;:24;;48152:61;;;;-1:-1:-1;;;48152:61:0;;11290:2:1;48152:61:0;;;11272:21:1;11329:2;11309:18;;;11302:30;11368:26;11348:18;;;11341:54;11412:18;;48152:61:0;11088:348:1;48152:61:0;48238:41;48248:17;48267:11;48238:9;:41::i;:::-;47509:776;;;;47432:853;;:::o;27794:104::-;27850:13;27883:7;27876:14;;;;;:::i;29404:287::-;2987:10;-1:-1:-1;;;;;29503:24:0;;;29499:54;;29536:17;;-1:-1:-1;;;29536:17:0;;;;;;;;;;;29499:54;2987:10;29566:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29566:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29566:53:0;;;;;;;;;;29635:48;;540:41:1;;;29566:42:0;;2987:10;29635:48;;513:18:1;29635:48:0;;;;;;;29404:287;;:::o;48804:65::-;44979:6;;-1:-1:-1;;;;;44979:6:0;2987:10;45126:23;45118:69;;;;-1:-1:-1;;;45118:69:0;;;;;;;:::i;:::-;48848:8:::1;:15:::0;;-1:-1:-1;;48848:15:0::1;;;::::0;;48804:65::o;30490:369::-;30657:28;30667:4;30673:2;30677:7;30657:9;:28::i;:::-;-1:-1:-1;;;;;30700:13:0;;4649:19;:23;;30700:76;;;;;30720:56;30751:4;30757:2;30761:7;30770:5;30720:30;:56::i;:::-;30719:57;30700:76;30696:156;;;30800:40;;-1:-1:-1;;;30800:40:0;;;;;;;;;;;30696:156;30490:369;;;;:::o;48291:491::-;48389:13;48430:16;48438:7;48430;:16::i;:::-;48414:97;;;;-1:-1:-1;;;48414:97:0;;11643:2:1;48414:97:0;;;11625:21:1;11682:2;11662:18;;;11655:30;11721:34;11701:18;;;11694:62;-1:-1:-1;;;11772:18:1;;;11765:45;11827:19;;48414:97:0;11441:411:1;48414:97:0;48527:8;;;;;;;:17;;48539:5;48527:17;48524:62;;48564:14;48557:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48291:491;;;:::o;48524:62::-;48594:28;48625:10;:8;:10::i;:::-;48594:41;;48680:1;48655:14;48649:28;:32;:127;;;;;;;;;;;;;;;;;48717:14;48733:18;:7;:16;:18::i;:::-;48700:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48649:127;48642:134;48291:491;-1:-1:-1;;;48291:491:0:o;29762:164::-;-1:-1:-1;;;;;29883:25:0;;;29859:4;29883:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29762:164::o;45816:201::-;44979:6;;-1:-1:-1;;;;;44979:6:0;2987:10;45126:23;45118:69;;;;-1:-1:-1;;;45118:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45905:22:0;::::1;45897:73;;;::::0;-1:-1:-1;;;45897:73:0;;12727:2:1;45897:73:0::1;::::0;::::1;12709:21:1::0;12766:2;12746:18;;;12739:30;12805:34;12785:18;;;12778:62;-1:-1:-1;;;12856:18:1;;;12849:36;12902:19;;45897:73:0::1;12525:402:1::0;45897:73:0::1;45981:28;46000:8;45981:18;:28::i;:::-;45816:201:::0;:::o;31114:187::-;31171:4;31214:7;23618:1;31195:26;;:53;;;;;31235:13;;31225:7;:23;31195:53;:98;;;;-1:-1:-1;;31266:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31266:27:0;;;;31265:28;;31114:187::o;39284:196::-;39399:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39399:29:0;-1:-1:-1;;;;;39399:29:0;;;;;;;;;39444:28;;39399:24;;39444:28;;;;;;;39284:196;;;:::o;34227:2130::-;34342:35;34380:21;34393:7;34380:12;:21::i;:::-;34342:59;;34440:4;-1:-1:-1;;;;;34418:26:0;:13;:18;;;-1:-1:-1;;;;;34418:26:0;;34414:67;;34453:28;;-1:-1:-1;;;34453:28:0;;;;;;;;;;;34414:67;34494:22;2987:10;-1:-1:-1;;;;;34520:20:0;;;;:73;;-1:-1:-1;34557:36:0;34574:4;2987:10;29762:164;:::i;34557:36::-;34520:126;;;-1:-1:-1;2987:10:0;34610:20;34622:7;34610:11;:20::i;:::-;-1:-1:-1;;;;;34610:36:0;;34520:126;34494:153;;34665:17;34660:66;;34691:35;;-1:-1:-1;;;34691:35:0;;;;;;;;;;;34660:66;-1:-1:-1;;;;;34741:16:0;;34737:52;;34766:23;;-1:-1:-1;;;34766:23:0;;;;;;;;;;;34737:52;34910:35;34927:1;34931:7;34940:4;34910:8;:35::i;:::-;-1:-1:-1;;;;;35241:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35241:31:0;;;;;;;-1:-1:-1;;35241:31:0;;;;;;;35287:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35287:29:0;;;;;;;;;;;35367:20;;;:11;:20;;;;;;35402:18;;-1:-1:-1;;;;;;35435:49:0;;;;-1:-1:-1;;;35468:15:0;35435:49;;;;;;;;;;35758:11;;35818:24;;;;;35861:13;;35367:20;;35818:24;;35861:13;35857:384;;36071:13;;36056:11;:28;36052:174;;36109:20;;36178:28;;;;36152:54;;-1:-1:-1;;;36152:54:0;-1:-1:-1;;;;;;36152:54:0;;;-1:-1:-1;;;;;36109:20:0;;36152:54;;;;36052:174;35216:1036;;;36288:7;36284:2;-1:-1:-1;;;;;36269:27:0;36278:4;-1:-1:-1;;;;;36269:27:0;;;;;;;;;;;36307:42;34331:2026;;34227:2130;;;:::o;26262:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26373:7:0;;23618:1;26422:23;;:47;;;;;26456:13;;26449:4;:20;26422:47;26418:886;;;26490:31;26524:17;;;:11;:17;;;;;;;;;26490:51;;;;;;;;;-1:-1:-1;;;;;26490:51:0;;;;-1:-1:-1;;;26490:51:0;;;;;;;;;;;-1:-1:-1;;;26490:51:0;;;;;;;;;;;;;;26560:729;;26610:14;;-1:-1:-1;;;;;26610:28:0;;26606:101;;26674:9;26262:1109;-1:-1:-1;;;26262:1109:0:o;26606:101::-;-1:-1:-1;;;27049:6:0;27094:17;;;;:11;:17;;;;;;;;;27082:29;;;;;;;;;-1:-1:-1;;;;;27082:29:0;;;;;-1:-1:-1;;;27082:29:0;;;;;;;;;;;-1:-1:-1;;;27082:29:0;;;;;;;;;;;;;27142:28;27138:109;;27210:9;26262:1109;-1:-1:-1;;;26262:1109:0:o;27138:109::-;27009:261;;;26471:833;26418:886;27332:31;;-1:-1:-1;;;27332:31:0;;;;;;;;;;;46177:191;46270:6;;;-1:-1:-1;;;;;46287:17:0;;;-1:-1:-1;;;;;;46287:17:0;;;;;;;46320:40;;46270:6;;;46287:17;46270:6;;46320:40;;46251:16;;46320:40;46240:128;46177:191;:::o;31309:104::-;31378:27;31388:2;31392:8;31378:27;;;;;;;;;;;;:9;:27::i;39972:667::-;40156:72;;-1:-1:-1;;;40156:72:0;;40135:4;;-1:-1:-1;;;;;40156:36:0;;;;;:72;;2987:10;;40207:4;;40213:7;;40222:5;;40156:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40156:72:0;;;;;;;;-1:-1:-1;;40156:72:0;;;;;;;;;;;;:::i;:::-;;;40152:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40390:6;:13;40407:1;40390:18;40386:235;;40436:40;;-1:-1:-1;;;40436:40:0;;;;;;;;;;;40386:235;40579:6;40573:13;40564:6;40560:2;40556:15;40549:38;40152:480;-1:-1:-1;;;;;;40275:55:0;-1:-1:-1;;;40275:55:0;;-1:-1:-1;40152:480:0;39972:667;;;;;;:::o;47311:102::-;47371:13;47400:7;47393:14;;;;;:::i;469:723::-;525:13;746:5;755:1;746:10;742:53;;-1:-1:-1;;773:10:0;;;;;;;;;;;;-1:-1:-1;;;773:10:0;;;;;469:723::o;742:53::-;820:5;805:12;861:78;868:9;;861:78;;894:8;;;;:::i;:::-;;-1:-1:-1;917:10:0;;-1:-1:-1;925:2:0;917:10;;:::i;:::-;;;861:78;;;949:19;981:6;971:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;971:17:0;;949:39;;999:154;1006:10;;999:154;;1033:11;1043:1;1033:11;;:::i;:::-;;-1:-1:-1;1102:10:0;1110:2;1102:5;:10;:::i;:::-;1089:24;;:2;:24;:::i;:::-;1076:39;;1059:6;1066;1059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1059:56:0;;;;;;;;-1:-1:-1;1130:11:0;1139:2;1130:11;;:::i;:::-;;;999:154;;31776:163;31899:32;31905:2;31909:8;31919:5;31926:4;32337:20;32360:13;-1:-1:-1;;;;;32388:16:0;;32384:48;;32413:19;;-1:-1:-1;;;32413:19:0;;;;;;;;;;;32384:48;32447:8;32459:1;32447:13;32443:44;;32469:18;;-1:-1:-1;;;32469:18:0;;;;;;;;;;;32443:44;-1:-1:-1;;;;;32838:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32897:49:0;;32838:44;;;;;;;;32897:49;;;;-1:-1:-1;;32838:44:0;;;;;;32897:49;;;;;;;;;;;;;;;;32963:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33013:66:0;;;;-1:-1:-1;;;33063:15:0;33013:66;;;;;;;;;;32963:25;33160:23;;;33204:4;:23;;;;-1:-1:-1;;;;;;33212:13:0;;4649:19;:23;;33212:15;33200:641;;;33248:314;33279:38;;33304:12;;-1:-1:-1;;;;;33279:38:0;;;33296:1;;33279:38;;33296:1;;33279:38;33345:69;33384:1;33388:2;33392:14;;;;;;33408:5;33345:30;:69::i;:::-;33340:174;;33450:40;;-1:-1:-1;;;33450:40:0;;;;;;;;;;;33340:174;33557:3;33541:12;:19;33248:314;;33643:12;33626:13;;:29;33622:43;;33657:8;;;33622:43;33200:641;;;33706:120;33737:40;;33762:14;;;;;-1:-1:-1;;;;;33737:40:0;;;33754:1;;33737:40;;33754:1;;33737:40;33821:3;33805:12;:19;33706:120;;33200:641;-1:-1:-1;33855:13:0;:28;33905:60;30490:369;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2091:173::-;2159:20;;-1:-1:-1;;;;;2208:31:1;;2198:42;;2188:70;;2254:1;2251;2244:12;2269:254;2337:6;2345;2398:2;2386:9;2377:7;2373:23;2369:32;2366:52;;;2414:1;2411;2404:12;2366:52;2437:29;2456:9;2437:29;:::i;:::-;2427:39;2513:2;2498:18;;;;2485:32;;-1:-1:-1;;;2269:254:1:o;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:127::-;3104:10;3099:3;3095:20;3092:1;3085:31;3135:4;3132:1;3125:15;3159:4;3156:1;3149:15;3175:632;3240:5;3270:18;3311:2;3303:6;3300:14;3297:40;;;3317:18;;:::i;:::-;3392:2;3386:9;3360:2;3446:15;;-1:-1:-1;;3442:24:1;;;3468:2;3438:33;3434:42;3422:55;;;3492:18;;;3512:22;;;3489:46;3486:72;;;3538:18;;:::i;:::-;3578:10;3574:2;3567:22;3607:6;3598:15;;3637:6;3629;3622:22;3677:3;3668:6;3663:3;3659:16;3656:25;3653:45;;;3694:1;3691;3684:12;3653:45;3744:6;3739:3;3732:4;3724:6;3720:17;3707:44;3799:1;3792:4;3783:6;3775;3771:19;3767:30;3760:41;;;;3175:632;;;;;:::o;3812:451::-;3881:6;3934:2;3922:9;3913:7;3909:23;3905:32;3902:52;;;3950:1;3947;3940:12;3902:52;3990:9;3977:23;4023:18;4015:6;4012:30;4009:50;;;4055:1;4052;4045:12;4009:50;4078:22;;4131:4;4123:13;;4119:27;-1:-1:-1;4109:55:1;;4160:1;4157;4150:12;4109:55;4183:74;4249:7;4244:2;4231:16;4226:2;4222;4218:11;4183:74;:::i;4268:186::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4419:29;4438:9;4419:29;:::i;4459:254::-;4527:6;4535;4588:2;4576:9;4567:7;4563:23;4559:32;4556:52;;;4604:1;4601;4594:12;4556:52;4640:9;4627:23;4617:33;;4669:38;4703:2;4692:9;4688:18;4669:38;:::i;:::-;4659:48;;4459:254;;;;;:::o;4718:::-;4783:6;4791;4844:2;4832:9;4823:7;4819:23;4815:32;4812:52;;;4860:1;4857;4850:12;4812:52;4883:29;4902:9;4883:29;:::i;:::-;4873:39;;4931:35;4962:2;4951:9;4947:18;4931:35;:::i;4977:667::-;5072:6;5080;5088;5096;5149:3;5137:9;5128:7;5124:23;5120:33;5117:53;;;5166:1;5163;5156:12;5117:53;5189:29;5208:9;5189:29;:::i;:::-;5179:39;;5237:38;5271:2;5260:9;5256:18;5237:38;:::i;:::-;5227:48;;5322:2;5311:9;5307:18;5294:32;5284:42;;5377:2;5366:9;5362:18;5349:32;5404:18;5396:6;5393:30;5390:50;;;5436:1;5433;5426:12;5390:50;5459:22;;5512:4;5504:13;;5500:27;-1:-1:-1;5490:55:1;;5541:1;5538;5531:12;5490:55;5564:74;5630:7;5625:2;5612:16;5607:2;5603;5599:11;5564:74;:::i;:::-;5554:84;;;4977:667;;;;;;;:::o;5649:260::-;5717:6;5725;5778:2;5766:9;5757:7;5753:23;5749:32;5746:52;;;5794:1;5791;5784:12;5746:52;5817:29;5836:9;5817:29;:::i;:::-;5807:39;;5865:38;5899:2;5888:9;5884:18;5865:38;:::i;5914:356::-;6116:2;6098:21;;;6135:18;;;6128:30;6194:34;6189:2;6174:18;;6167:62;6261:2;6246:18;;5914:356::o;6275:380::-;6354:1;6350:12;;;;6397;;;6418:61;;6472:4;6464:6;6460:17;6450:27;;6418:61;6525:2;6517:6;6514:14;6494:18;6491:38;6488:161;;6571:10;6566:3;6562:20;6559:1;6552:31;6606:4;6603:1;6596:15;6634:4;6631:1;6624:15;6488:161;;6275:380;;;:::o;6786:545::-;6888:2;6883:3;6880:11;6877:448;;;6924:1;6949:5;6945:2;6938:17;6994:4;6990:2;6980:19;7064:2;7052:10;7048:19;7045:1;7041:27;7035:4;7031:38;7100:4;7088:10;7085:20;7082:47;;;-1:-1:-1;7123:4:1;7082:47;7178:2;7173:3;7169:12;7166:1;7162:20;7156:4;7152:31;7142:41;;7233:82;7251:2;7244:5;7241:13;7233:82;;;7296:17;;;7277:1;7266:13;7233:82;;7507:1352;7633:3;7627:10;7660:18;7652:6;7649:30;7646:56;;;7682:18;;:::i;:::-;7711:97;7801:6;7761:38;7793:4;7787:11;7761:38;:::i;:::-;7755:4;7711:97;:::i;:::-;7863:4;;7927:2;7916:14;;7944:1;7939:663;;;;8646:1;8663:6;8660:89;;;-1:-1:-1;8715:19:1;;;8709:26;8660:89;-1:-1:-1;;7464:1:1;7460:11;;;7456:24;7452:29;7442:40;7488:1;7484:11;;;7439:57;8762:81;;7909:944;;7939:663;6733:1;6726:14;;;6770:4;6757:18;;-1:-1:-1;;7975:20:1;;;8093:236;8107:7;8104:1;8101:14;8093:236;;;8196:19;;;8190:26;8175:42;;8288:27;;;;8256:1;8244:14;;;;8123:19;;8093:236;;;8097:3;8357:6;8348:7;8345:19;8342:201;;;8418:19;;;8412:26;-1:-1:-1;;8501:1:1;8497:14;;;8513:3;8493:24;8489:37;8485:42;8470:58;8455:74;;8342:201;-1:-1:-1;;;;;8589:1:1;8573:14;;;8569:22;8556:36;;-1:-1:-1;7507:1352:1:o;8864:184::-;8934:6;8987:2;8975:9;8966:7;8962:23;8958:32;8955:52;;;9003:1;9000;8993:12;8955:52;-1:-1:-1;9026:16:1;;8864:184;-1:-1:-1;8864:184:1:o;9053:127::-;9114:10;9109:3;9105:20;9102:1;9095:31;9145:4;9142:1;9135:15;9169:4;9166:1;9159:15;9185:168;9258:9;;;9289;;9306:15;;;9300:22;;9286:37;9276:71;;9327:18;;:::i;9358:125::-;9423:9;;;9444:10;;;9441:36;;;9457:18;;:::i;9488:128::-;9555:9;;;9576:11;;;9573:37;;;9590:18;;:::i;11857:663::-;12137:3;12175:6;12169:13;12191:66;12250:6;12245:3;12238:4;12230:6;12226:17;12191:66;:::i;:::-;12320:13;;12279:16;;;;12342:70;12320:13;12279:16;12389:4;12377:17;;12342:70;:::i;:::-;-1:-1:-1;;;12434:20:1;;12463:22;;;12512:1;12501:13;;11857:663;-1:-1:-1;;;;11857:663:1:o;12932:489::-;-1:-1:-1;;;;;13201:15:1;;;13183:34;;13253:15;;13248:2;13233:18;;13226:43;13300:2;13285:18;;13278:34;;;13348:3;13343:2;13328:18;;13321:31;;;13126:4;;13369:46;;13395:19;;13387:6;13369:46;:::i;:::-;13361:54;12932:489;-1:-1:-1;;;;;;12932:489:1:o;13426:249::-;13495:6;13548:2;13536:9;13527:7;13523:23;13519:32;13516:52;;;13564:1;13561;13554:12;13516:52;13596:9;13590:16;13615:30;13639:5;13615:30;:::i;13680:135::-;13719:3;13740:17;;;13737:43;;13760:18;;:::i;:::-;-1:-1:-1;13807:1:1;13796:13;;13680:135::o;13820:127::-;13881:10;13876:3;13872:20;13869:1;13862:31;13912:4;13909:1;13902:15;13936:4;13933:1;13926:15;13952:120;13992:1;14018;14008:35;;14023:18;;:::i;:::-;-1:-1:-1;14057:9:1;;13952:120::o;14077:112::-;14109:1;14135;14125:35;;14140:18;;:::i;:::-;-1:-1:-1;14174:9:1;;14077:112::o;14194:127::-;14255:10;14250:3;14246:20;14243:1;14236:31;14286:4;14283:1;14276:15;14310:4;14307:1;14300:15
Swarm Source
ipfs://8ba857774e5a430aabd88a81d179d6383384ee3025ecdf9641c07ab6ba47f4cc
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.