ERC-721
Overview
Max Total Supply
4,492 3Hi
Holders
2,003
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 3HiLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hustlers3dInc
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-29 */ // SPDX-License-Identifier: MIT //Developer Info: //Written by Ghazanfar Perdakh //Email: [email protected] //Whatsapp NO.: +923331578650 //fiverr: fiverr.com/ghazanfarperdakh // 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.8.7; contract Hustlers3dInc is ERC721A, Ownable { using Strings for uint256; string private uriPrefix = "ipfs://QmXygxc8W6jeRYe925k9dWr6Lt2QQm8XzEUUM3g9kBF7Pr/" ; string private uriSuffix = ".json"; uint16 public maxSupply = 4000; constructor() ERC721A("3D Hustlers.inc", "3Hi") { } function Airdrop(uint16 _mintAmount, address[] calldata _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); for(uint16 i ; i < _receiver.length ; i ++) { _safeMint(_receiver[i] , _mintAmount);} delete _mintAmount; delete totalSupply; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete totalSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address[]","name":"_receiver","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052603660808181529062001bb160a0398051620000299160099160209091019062000149565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600a9162000149565b50600b805461ffff1916610fa01790553480156200007557600080fd5b50604080518082018252600f81526e334420487573746c6572732e696e6360881b60208083019182528351808501909452600384526233486960e81b908401528151919291620000c89160029162000149565b508051620000de90600390602084019062000149565b5050600160005550620000f133620000f7565b6200022c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015790620001ef565b90600052602060002090601f0160209004810192826200017b5760008555620001c6565b82601f106200019657805160ff1916838001178555620001c6565b82800160010185558215620001c6579182015b82811115620001c6578251825591602001919060010190620001a9565b50620001d4929150620001d8565b5090565b5b80821115620001d45760008155600101620001d9565b600181811c908216806200020457607f821691505b602082108114156200022657634e487b7160e01b600052602260045260246000fd5b50919050565b611975806200023c6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a22cb4651161007c578063a22cb46514610297578063b88d4fde146102aa578063c87b56dd146102bd578063d5abeb01146102d0578063e985e9c5146102f1578063f2fde38b1461032d57600080fd5b8063715018a6146102505780637ec4a659146102585780638da5cb5b1461026b57806395bb20db1461027c57806395d89b411461028f57600080fd5b806318160ddd1161010a57806318160ddd146101d757806323b872dd146101f15780632f6f98e11461020457806342842e0e146102175780636352211e1461022a57806370a082311461023d57600080fd5b806301ffc9a71461014757806306421c2f1461016f57806306fdde0314610184578063081812fc14610199578063095ea7b3146101c4575b600080fd5b61015a6101553660046114e2565b610340565b60405190151581526020015b60405180910390f35b61018261017d366004611565565b610392565b005b61018c6103dd565b6040516101669190611768565b6101ac6101a7366004611622565b61046f565b6040516001600160a01b039091168152602001610166565b6101826101d23660046114b8565b6104b3565b60015460005403600019015b604051908152602001610166565b6101826101ff3660046113c4565b610541565b610182610212366004611580565b61054c565b6101826102253660046113c4565b6105f5565b6101ac610238366004611622565b610610565b6101e361024b366004611376565b610622565b610182610671565b61018261026636600461151c565b6106a7565b6008546001600160a01b03166101ac565b61018261028a36600461159c565b6106e8565b61018c6107e3565b6101826102a536600461147c565b6107f2565b6101826102b8366004611400565b610888565b61018c6102cb366004611622565b6108d9565b600b546102de9061ffff1681565b60405161ffff9091168152602001610166565b61015a6102ff366004611391565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61018261033b366004611376565b6109a7565b60006001600160e01b031982166380ac58cd60e01b148061037157506001600160e01b03198216635b5e139f60e01b145b8061038c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146103c55760405162461bcd60e51b81526004016103bc9061177b565b60405180910390fd5b600b805461ffff191661ffff92909216919091179055565b6060600280546103ec90611845565b80601f016020809104026020016040519081016040528092919081815260200182805461041890611845565b80156104655780601f1061043a57610100808354040283529160200191610465565b820191906000526020600020905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b600061047a82610a42565b610497576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104be82610610565b9050806001600160a01b0316836001600160a01b031614156104f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610513575061051181336102ff565b155b15610531576040516367d9dca160e11b815260040160405180910390fd5b61053c838383610a7b565b505050565b61053c838383610ad7565b6008546001600160a01b031633146105765760405162461bcd60e51b81526004016103bc9061177b565b600061058b6001546000546000199190030190565b600b5490915061ffff1661059f84836117b0565b61ffff1611156105e75760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016103bc565b61053c828461ffff16610cc6565b61053c83838360405180602001604052806000815250610888565b600061061b82610ce0565b5192915050565b60006001600160a01b03821661064b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461069b5760405162461bcd60e51b81526004016103bc9061177b565b6106a56000610e09565b565b6008546001600160a01b031633146106d15760405162461bcd60e51b81526004016103bc9061177b565b80516106e4906009906020840190611239565b5050565b6008546001600160a01b031633146107125760405162461bcd60e51b81526004016103bc9061177b565b60006107276001546000546000199190030190565b600b5490915061ffff1661073b85836117b0565b61ffff1611156107835760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016103bc565b60005b61ffff81168311156107dc576107ca84848361ffff168181106107ab576107ab6118fd565b90506020020160208101906107c09190611376565b8661ffff16610cc6565b806107d481611880565b915050610786565b5050505050565b6060600380546103ec90611845565b6001600160a01b03821633141561081c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610893848484610ad7565b6001600160a01b0383163b151580156108b557506108b384848484610e5b565b155b156108d3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606108e482610a42565b6109485760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103bc565b6000610952610f53565b9050600081511161097257604051806020016040528060008152506109a0565b8061097c84610f62565b600a60405160200161099093929190611667565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146109d15760405162461bcd60e51b81526004016103bc9061177b565b6001600160a01b038116610a365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bc565b610a3f81610e09565b50565b600081600111158015610a56575060005482105b801561038c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ae282610ce0565b9050836001600160a01b031681600001516001600160a01b031614610b195760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610b375750610b3785336102ff565b80610b52575033610b478461046f565b6001600160a01b0316145b905080610b7257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610b9957604051633a954ecd60e21b815260040160405180910390fd5b610ba560008487610a7b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610c7b576000548214610c7b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6106e4828260405180602001604052806000815250611060565b60408051606081018252600080825260208201819052918101919091528180600111158015610d10575060005481105b15610df057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610dee5780516001600160a01b031615610d84579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610de9579392505050565b610d84565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e9090339089908890889060040161172b565b602060405180830381600087803b158015610eaa57600080fd5b505af1925050508015610eda575060408051601f3d908101601f19168201909252610ed7918101906114ff565b60015b610f35573d808015610f08576040519150601f19603f3d011682016040523d82523d6000602084013e610f0d565b606091505b508051610f2d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103ec90611845565b606081610f865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fb05780610f9a816118a2565b9150610fa99050600a836117ee565b9150610f8a565b60008167ffffffffffffffff811115610fcb57610fcb611913565b6040519080825280601f01601f191660200182016040528015610ff5576020820181803683370190505b5090505b8415610f4b5761100a600183611802565b9150611017600a866118bd565b6110229060306117d6565b60f81b818381518110611037576110376118fd565b60200101906001600160f81b031916908160001a905350611059600a866117ee565b9450610ff9565b61053c83838360016000546001600160a01b03851661109157604051622e076360e81b815260040160405180910390fd5b836110af5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561116157506001600160a01b0387163b15155b156111ea575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46111b26000888480600101955088610e5b565b6111cf576040516368d2bf6b60e11b815260040160405180910390fd5b808214156111675782600054146111e557600080fd5b611230565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156111eb575b506000556107dc565b82805461124590611845565b90600052602060002090601f01602090048101928261126757600085556112ad565b82601f1061128057805160ff19168380011785556112ad565b828001600101855582156112ad579182015b828111156112ad578251825591602001919060010190611292565b506112b99291506112bd565b5090565b5b808211156112b957600081556001016112be565b600067ffffffffffffffff808411156112ed576112ed611913565b604051601f8501601f19908116603f0116810190828211818310171561131557611315611913565b8160405280935085815286868601111561132e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461135f57600080fd5b919050565b803561ffff8116811461135f57600080fd5b60006020828403121561138857600080fd5b6109a082611348565b600080604083850312156113a457600080fd5b6113ad83611348565b91506113bb60208401611348565b90509250929050565b6000806000606084860312156113d957600080fd5b6113e284611348565b92506113f060208501611348565b9150604084013590509250925092565b6000806000806080858703121561141657600080fd5b61141f85611348565b935061142d60208601611348565b925060408501359150606085013567ffffffffffffffff81111561145057600080fd5b8501601f8101871361146157600080fd5b611470878235602084016112d2565b91505092959194509250565b6000806040838503121561148f57600080fd5b61149883611348565b9150602083013580151581146114ad57600080fd5b809150509250929050565b600080604083850312156114cb57600080fd5b6114d483611348565b946020939093013593505050565b6000602082840312156114f457600080fd5b81356109a081611929565b60006020828403121561151157600080fd5b81516109a081611929565b60006020828403121561152e57600080fd5b813567ffffffffffffffff81111561154557600080fd5b8201601f8101841361155657600080fd5b610f4b848235602084016112d2565b60006020828403121561157757600080fd5b6109a082611364565b6000806040838503121561159357600080fd5b6113ad83611364565b6000806000604084860312156115b157600080fd5b6115ba84611364565b9250602084013567ffffffffffffffff808211156115d757600080fd5b818601915086601f8301126115eb57600080fd5b8135818111156115fa57600080fd5b8760208260051b850101111561160f57600080fd5b6020830194508093505050509250925092565b60006020828403121561163457600080fd5b5035919050565b60008151808452611653816020860160208601611819565b601f01601f19169290920160200192915050565b60008451602061167a8285838a01611819565b85519184019161168d8184848a01611819565b8554920191600090600181811c90808316806116aa57607f831692505b8583108114156116c857634e487b7160e01b85526022600452602485fd5b8080156116dc57600181146116ed5761171a565b60ff1985168852838801955061171a565b60008b81526020902060005b858110156117125781548a8201529084019088016116f9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061175e9083018461163b565b9695505050505050565b6020815260006109a0602083018461163b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156117cd576117cd6118d1565b01949350505050565b600082198211156117e9576117e96118d1565b500190565b6000826117fd576117fd6118e7565b500490565b600082821015611814576118146118d1565b500390565b60005b8381101561183457818101518382015260200161181c565b838111156108d35750506000910152565b600181811c9082168061185957607f821691505b6020821081141561187a57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415611898576118986118d1565b6001019392505050565b60006000198214156118b6576118b66118d1565b5060010190565b6000826118cc576118cc6118e7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3f57600080fdfea26469706673582212203eace1250712f114512c28b4293635f08f49e549a60bba75f9dfc6c16079375664736f6c63430008070033697066733a2f2f516d58796778633857366a655259653932356b39645772364c743251516d38587a4555554d3367396b42463750722f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a22cb4651161007c578063a22cb46514610297578063b88d4fde146102aa578063c87b56dd146102bd578063d5abeb01146102d0578063e985e9c5146102f1578063f2fde38b1461032d57600080fd5b8063715018a6146102505780637ec4a659146102585780638da5cb5b1461026b57806395bb20db1461027c57806395d89b411461028f57600080fd5b806318160ddd1161010a57806318160ddd146101d757806323b872dd146101f15780632f6f98e11461020457806342842e0e146102175780636352211e1461022a57806370a082311461023d57600080fd5b806301ffc9a71461014757806306421c2f1461016f57806306fdde0314610184578063081812fc14610199578063095ea7b3146101c4575b600080fd5b61015a6101553660046114e2565b610340565b60405190151581526020015b60405180910390f35b61018261017d366004611565565b610392565b005b61018c6103dd565b6040516101669190611768565b6101ac6101a7366004611622565b61046f565b6040516001600160a01b039091168152602001610166565b6101826101d23660046114b8565b6104b3565b60015460005403600019015b604051908152602001610166565b6101826101ff3660046113c4565b610541565b610182610212366004611580565b61054c565b6101826102253660046113c4565b6105f5565b6101ac610238366004611622565b610610565b6101e361024b366004611376565b610622565b610182610671565b61018261026636600461151c565b6106a7565b6008546001600160a01b03166101ac565b61018261028a36600461159c565b6106e8565b61018c6107e3565b6101826102a536600461147c565b6107f2565b6101826102b8366004611400565b610888565b61018c6102cb366004611622565b6108d9565b600b546102de9061ffff1681565b60405161ffff9091168152602001610166565b61015a6102ff366004611391565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61018261033b366004611376565b6109a7565b60006001600160e01b031982166380ac58cd60e01b148061037157506001600160e01b03198216635b5e139f60e01b145b8061038c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146103c55760405162461bcd60e51b81526004016103bc9061177b565b60405180910390fd5b600b805461ffff191661ffff92909216919091179055565b6060600280546103ec90611845565b80601f016020809104026020016040519081016040528092919081815260200182805461041890611845565b80156104655780601f1061043a57610100808354040283529160200191610465565b820191906000526020600020905b81548152906001019060200180831161044857829003601f168201915b5050505050905090565b600061047a82610a42565b610497576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104be82610610565b9050806001600160a01b0316836001600160a01b031614156104f35760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610513575061051181336102ff565b155b15610531576040516367d9dca160e11b815260040160405180910390fd5b61053c838383610a7b565b505050565b61053c838383610ad7565b6008546001600160a01b031633146105765760405162461bcd60e51b81526004016103bc9061177b565b600061058b6001546000546000199190030190565b600b5490915061ffff1661059f84836117b0565b61ffff1611156105e75760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016103bc565b61053c828461ffff16610cc6565b61053c83838360405180602001604052806000815250610888565b600061061b82610ce0565b5192915050565b60006001600160a01b03821661064b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461069b5760405162461bcd60e51b81526004016103bc9061177b565b6106a56000610e09565b565b6008546001600160a01b031633146106d15760405162461bcd60e51b81526004016103bc9061177b565b80516106e4906009906020840190611239565b5050565b6008546001600160a01b031633146107125760405162461bcd60e51b81526004016103bc9061177b565b60006107276001546000546000199190030190565b600b5490915061ffff1661073b85836117b0565b61ffff1611156107835760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016103bc565b60005b61ffff81168311156107dc576107ca84848361ffff168181106107ab576107ab6118fd565b90506020020160208101906107c09190611376565b8661ffff16610cc6565b806107d481611880565b915050610786565b5050505050565b6060600380546103ec90611845565b6001600160a01b03821633141561081c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610893848484610ad7565b6001600160a01b0383163b151580156108b557506108b384848484610e5b565b155b156108d3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606108e482610a42565b6109485760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103bc565b6000610952610f53565b9050600081511161097257604051806020016040528060008152506109a0565b8061097c84610f62565b600a60405160200161099093929190611667565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146109d15760405162461bcd60e51b81526004016103bc9061177b565b6001600160a01b038116610a365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bc565b610a3f81610e09565b50565b600081600111158015610a56575060005482105b801561038c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ae282610ce0565b9050836001600160a01b031681600001516001600160a01b031614610b195760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610b375750610b3785336102ff565b80610b52575033610b478461046f565b6001600160a01b0316145b905080610b7257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610b9957604051633a954ecd60e21b815260040160405180910390fd5b610ba560008487610a7b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610c7b576000548214610c7b578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6106e4828260405180602001604052806000815250611060565b60408051606081018252600080825260208201819052918101919091528180600111158015610d10575060005481105b15610df057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610dee5780516001600160a01b031615610d84579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610de9579392505050565b610d84565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610e9090339089908890889060040161172b565b602060405180830381600087803b158015610eaa57600080fd5b505af1925050508015610eda575060408051601f3d908101601f19168201909252610ed7918101906114ff565b60015b610f35573d808015610f08576040519150601f19603f3d011682016040523d82523d6000602084013e610f0d565b606091505b508051610f2d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103ec90611845565b606081610f865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fb05780610f9a816118a2565b9150610fa99050600a836117ee565b9150610f8a565b60008167ffffffffffffffff811115610fcb57610fcb611913565b6040519080825280601f01601f191660200182016040528015610ff5576020820181803683370190505b5090505b8415610f4b5761100a600183611802565b9150611017600a866118bd565b6110229060306117d6565b60f81b818381518110611037576110376118fd565b60200101906001600160f81b031916908160001a905350611059600a866117ee565b9450610ff9565b61053c83838360016000546001600160a01b03851661109157604051622e076360e81b815260040160405180910390fd5b836110af5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561116157506001600160a01b0387163b15155b156111ea575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46111b26000888480600101955088610e5b565b6111cf576040516368d2bf6b60e11b815260040160405180910390fd5b808214156111675782600054146111e557600080fd5b611230565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156111eb575b506000556107dc565b82805461124590611845565b90600052602060002090601f01602090048101928261126757600085556112ad565b82601f1061128057805160ff19168380011785556112ad565b828001600101855582156112ad579182015b828111156112ad578251825591602001919060010190611292565b506112b99291506112bd565b5090565b5b808211156112b957600081556001016112be565b600067ffffffffffffffff808411156112ed576112ed611913565b604051601f8501601f19908116603f0116810190828211818310171561131557611315611913565b8160405280935085815286868601111561132e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461135f57600080fd5b919050565b803561ffff8116811461135f57600080fd5b60006020828403121561138857600080fd5b6109a082611348565b600080604083850312156113a457600080fd5b6113ad83611348565b91506113bb60208401611348565b90509250929050565b6000806000606084860312156113d957600080fd5b6113e284611348565b92506113f060208501611348565b9150604084013590509250925092565b6000806000806080858703121561141657600080fd5b61141f85611348565b935061142d60208601611348565b925060408501359150606085013567ffffffffffffffff81111561145057600080fd5b8501601f8101871361146157600080fd5b611470878235602084016112d2565b91505092959194509250565b6000806040838503121561148f57600080fd5b61149883611348565b9150602083013580151581146114ad57600080fd5b809150509250929050565b600080604083850312156114cb57600080fd5b6114d483611348565b946020939093013593505050565b6000602082840312156114f457600080fd5b81356109a081611929565b60006020828403121561151157600080fd5b81516109a081611929565b60006020828403121561152e57600080fd5b813567ffffffffffffffff81111561154557600080fd5b8201601f8101841361155657600080fd5b610f4b848235602084016112d2565b60006020828403121561157757600080fd5b6109a082611364565b6000806040838503121561159357600080fd5b6113ad83611364565b6000806000604084860312156115b157600080fd5b6115ba84611364565b9250602084013567ffffffffffffffff808211156115d757600080fd5b818601915086601f8301126115eb57600080fd5b8135818111156115fa57600080fd5b8760208260051b850101111561160f57600080fd5b6020830194508093505050509250925092565b60006020828403121561163457600080fd5b5035919050565b60008151808452611653816020860160208601611819565b601f01601f19169290920160200192915050565b60008451602061167a8285838a01611819565b85519184019161168d8184848a01611819565b8554920191600090600181811c90808316806116aa57607f831692505b8583108114156116c857634e487b7160e01b85526022600452602485fd5b8080156116dc57600181146116ed5761171a565b60ff1985168852838801955061171a565b60008b81526020902060005b858110156117125781548a8201529084019088016116f9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061175e9083018461163b565b9695505050505050565b6020815260006109a0602083018461163b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff8083168185168083038211156117cd576117cd6118d1565b01949350505050565b600082198211156117e9576117e96118d1565b500190565b6000826117fd576117fd6118e7565b500490565b600082821015611814576118146118d1565b500390565b60005b8381101561183457818101518382015260200161181c565b838111156108d35750506000910152565b600181811c9082168061185957607f821691505b6020821081141561187a57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415611898576118986118d1565b6001019392505050565b60006000198214156118b6576118b66118d1565b5060010190565b6000826118cc576118cc6118e7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3f57600080fdfea26469706673582212203eace1250712f114512c28b4293635f08f49e549a60bba75f9dfc6c16079375664736f6c63430008070033
Deployed Bytecode Sourcemap
46500:1874:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24600:305;;;;;;:::i;:::-;;:::i;:::-;;;8011:14:1;;8004:22;7986:41;;7974:2;7959:18;24600:305:0;;;;;;;;48160:95;;;;;;:::i;:::-;;:::i;:::-;;27713:100;;;:::i;:::-;;;;;;;:::i;29216:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7309:32:1;;;7291:51;;7279:2;7264:18;29216:204:0;7145:203:1;28779:371:0;;;;;;:::i;:::-;;:::i;23849:303::-;23706:1;24103:12;23893:7;24087:13;:28;-1:-1:-1;;24087:46:0;23849:303;;;10133:25:1;;;10121:2;10106:18;23849:303:0;9987:177:1;30081:170:0;;;;;;:::i;:::-;;:::i;47283:308::-;;;;;;:::i;:::-;;:::i;30322:185::-;;;;;;:::i;:::-;;:::i;27521:125::-;;;;;;:::i;:::-;;:::i;24969:206::-;;;;;;:::i;:::-;;:::i;45646:103::-;;;:::i;48052:102::-;;;;;;:::i;:::-;;:::i;44994:87::-;45067:6;;-1:-1:-1;;;;;45067:6:0;44994:87;;46905:373;;;;;;:::i;:::-;;:::i;27882:104::-;;;:::i;29492:287::-;;;;;;:::i;:::-;;:::i;30578:369::-;;;;;;:::i;:::-;;:::i;47608:430::-;;;;;;:::i;:::-;;:::i;46716:31::-;;;;;;;;;;;;9968:6:1;9956:19;;;9938:38;;9926:2;9911:18;46716:31:0;9794:188:1;29850:164:0;;;;;;:::i;:::-;-1:-1:-1;;;;;29971:25:0;;;29947:4;29971:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29850:164;45904:201;;;;;;:::i;:::-;;:::i;24600:305::-;24702:4;-1:-1:-1;;;;;;24739:40:0;;-1:-1:-1;;;24739:40:0;;:105;;-1:-1:-1;;;;;;;24796:48:0;;-1:-1:-1;;;24796:48:0;24739:105;:158;;;-1:-1:-1;;;;;;;;;;14634:40:0;;;24861:36;24719:178;24600:305;-1:-1:-1;;24600:305:0:o;48160:95::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;;;;;;;;;48227:9:::1;:22:::0;;-1:-1:-1;;48227:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;48160:95::o;27713:100::-;27767:13;27800:5;27793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27713:100;:::o;29216:204::-;29284:7;29309:16;29317:7;29309;:16::i;:::-;29304:64;;29334:34;;-1:-1:-1;;;29334:34:0;;;;;;;;;;;29304:64;-1:-1:-1;29388:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29388:24:0;;29216:204::o;28779:371::-;28852:13;28868:24;28884:7;28868:15;:24::i;:::-;28852:40;;28913:5;-1:-1:-1;;;;;28907:11:0;:2;-1:-1:-1;;;;;28907:11:0;;28903:48;;;28927:24;;-1:-1:-1;;;28927:24:0;;;;;;;;;;;28903:48;3075:10;-1:-1:-1;;;;;28968:21:0;;;;;;:63;;-1:-1:-1;28994:37:0;29011:5;3075:10;29850:164;:::i;28994:37::-;28993:38;28968:63;28964:138;;;29055:35;;-1:-1:-1;;;29055:35:0;;;;;;;;;;;28964:138;29114:28;29123:2;29127:7;29136:5;29114:8;:28::i;:::-;28841:309;28779:371;;:::o;30081:170::-;30215:28;30225:4;30231:2;30235:7;30215:9;:28::i;47283:308::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;47366:18:::1;47394:13;23706:1:::0;24103:12;23893:7;24087:13;-1:-1:-1;;24087:28:0;;;:46;;23849:303;47394:13:::1;47452:9;::::0;47366:42;;-1:-1:-1;47452:9:0::1;;47423:25;47437:11:::0;47366:42;47423:25:::1;:::i;:::-;:38;;;;47415:70;;;::::0;-1:-1:-1;;;47415:70:0;;9648:2:1;47415:70:0::1;::::0;::::1;9630:21:1::0;9687:2;9667:18;;;9660:30;-1:-1:-1;;;9706:18:1;;;9699:49;9765:18;;47415:70:0::1;9446:343:1::0;47415:70:0::1;47491:34;47501:9;47513:11;47491:34;;:9;:34::i;30322:185::-:0;30460:39;30477:4;30483:2;30487:7;30460:39;;;;;;;;;;;;:16;:39::i;27521:125::-;27585:7;27612:21;27625:7;27612:12;:21::i;:::-;:26;;27521:125;-1:-1:-1;;27521:125:0:o;24969:206::-;25033:7;-1:-1:-1;;;;;25057:19:0;;25053:60;;25085:28;;-1:-1:-1;;;25085:28:0;;;;;;;;;;;25053:60;-1:-1:-1;;;;;;25139:19:0;;;;;:12;:19;;;;;:27;;;;24969:206::o;45646:103::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;45711:30:::1;45738:1;45711:18;:30::i;:::-;45646:103::o:0;48052:102::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;48126:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48052:102:::0;:::o;46905:373::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;46999:18:::1;47027:13;23706:1:::0;24103:12;23893:7;24087:13;-1:-1:-1;;24087:28:0;;;:46;;23849:303;47027:13:::1;47085:9;::::0;46999:42;;-1:-1:-1;47085:9:0::1;;47056:25;47070:11:::0;46999:42;47056:25:::1;:::i;:::-;:38;;;;47048:70;;;::::0;-1:-1:-1;;;47048:70:0;;9648:2:1;47048:70:0::1;::::0;::::1;9630:21:1::0;9687:2;9667:18;;;9660:30;-1:-1:-1;;;9706:18:1;;;9699:49;9765:18;;47048:70:0::1;9446:343:1::0;47048:70:0::1;47129:8;47125:90;47140:20;::::0;::::1;::::0;-1:-1:-1;47125:90:0::1;;;47176:37;47186:9;;47196:1;47186:12;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;47201:11;47176:37;;:9;:37::i;:::-;47163:4:::0;::::1;::::0;::::1;:::i;:::-;;;;47125:90;;;-1:-1:-1::0;;;;;46905:373:0:o;27882:104::-;27938:13;27971:7;27964:14;;;;;:::i;29492:287::-;-1:-1:-1;;;;;29591:24:0;;3075:10;29591:24;29587:54;;;29624:17;;-1:-1:-1;;;29624:17:0;;;;;;;;;;;29587:54;3075:10;29654:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29654:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29654:53:0;;;;;;;;;;29723:48;;7986:41:1;;;29654:42:0;;3075:10;29723:48;;7959:18:1;29723:48:0;;;;;;;29492:287;;:::o;30578:369::-;30745:28;30755:4;30761:2;30765:7;30745:9;:28::i;:::-;-1:-1:-1;;;;;30788:13:0;;4737:19;:23;;30788:76;;;;;30808:56;30839:4;30845:2;30849:7;30858:5;30808:30;:56::i;:::-;30807:57;30788:76;30784:156;;;30888:40;;-1:-1:-1;;;30888:40:0;;;;;;;;;;;30784:156;30578:369;;;;:::o;47608:430::-;47707:13;47748:17;47756:8;47748:7;:17::i;:::-;47732:98;;;;-1:-1:-1;;;47732:98:0;;9232:2:1;47732:98:0;;;9214:21:1;9271:2;9251:18;;;9244:30;9310:34;9290:18;;;9283:62;-1:-1:-1;;;9361:18:1;;;9354:45;9416:19;;47732:98:0;9030:411:1;47732:98:0;47847:28;47878:10;:8;:10::i;:::-;47847:41;;47933:1;47908:14;47902:28;:32;:130;;;;;;;;;;;;;;;;;47970:14;47986:19;:8;:17;:19::i;:::-;48007:9;47953:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47902:130;47895:137;47608:430;-1:-1:-1;;;47608:430:0:o;45904:201::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45993:22:0;::::1;45985:73;;;::::0;-1:-1:-1;;;45985:73:0;;8464:2:1;45985:73:0::1;::::0;::::1;8446:21:1::0;8503:2;8483:18;;;8476:30;8542:34;8522:18;;;8515:62;-1:-1:-1;;;8593:18:1;;;8586:36;8639:19;;45985:73:0::1;8262:402:1::0;45985:73:0::1;46069:28;46088:8;46069:18;:28::i;:::-;45904:201:::0;:::o;31202:187::-;31259:4;31302:7;23706:1;31283:26;;:53;;;;;31323:13;;31313:7;:23;31283:53;:98;;;;-1:-1:-1;;31354:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31354:27:0;;;;31353:28;;31202:187::o;39372:196::-;39487:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39487:29:0;-1:-1:-1;;;;;39487:29:0;;;;;;;;;39532:28;;39487:24;;39532:28;;;;;;;39372:196;;;:::o;34315:2130::-;34430:35;34468:21;34481:7;34468:12;:21::i;:::-;34430:59;;34528:4;-1:-1:-1;;;;;34506:26:0;:13;:18;;;-1:-1:-1;;;;;34506:26:0;;34502:67;;34541:28;;-1:-1:-1;;;34541:28:0;;;;;;;;;;;34502:67;34582:22;3075:10;-1:-1:-1;;;;;34608:20:0;;;;:73;;-1:-1:-1;34645:36:0;34662:4;3075:10;29850:164;:::i;34645:36::-;34608:126;;;-1:-1:-1;3075:10:0;34698:20;34710:7;34698:11;:20::i;:::-;-1:-1:-1;;;;;34698:36:0;;34608:126;34582:153;;34753:17;34748:66;;34779:35;;-1:-1:-1;;;34779:35:0;;;;;;;;;;;34748:66;-1:-1:-1;;;;;34829:16:0;;34825:52;;34854:23;;-1:-1:-1;;;34854:23:0;;;;;;;;;;;34825:52;34998:35;35015:1;35019:7;35028:4;34998:8;:35::i;:::-;-1:-1:-1;;;;;35329:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35329:31:0;;;;;;;-1:-1:-1;;35329:31:0;;;;;;;35375:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35375:29:0;;;;;;;;;;;35455:20;;;:11;:20;;;;;;35490:18;;-1:-1:-1;;;;;;35523:49:0;;;;-1:-1:-1;;;35556:15:0;35523:49;;;;;;;;;;35846:11;;35906:24;;;;;35949:13;;35455:20;;35906:24;;35949:13;35945:384;;36159:13;;36144:11;:28;36140:174;;36197:20;;36266:28;;;;36240:54;;-1:-1:-1;;;36240:54:0;-1:-1:-1;;;;;;36240:54:0;;;-1:-1:-1;;;;;36197:20:0;;36240:54;;;;36140:174;35304:1036;;;36376:7;36372:2;-1:-1:-1;;;;;36357:27:0;36366:4;-1:-1:-1;;;;;36357:27:0;;;;;;;;;;;34419:2026;;34315:2130;;;:::o;31397:104::-;31466:27;31476:2;31480:8;31466:27;;;;;;;;;;;;:9;:27::i;26350:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26461:7:0;;23706:1;26510:23;;:47;;;;;26544:13;;26537:4;:20;26510:47;26506:886;;;26578:31;26612:17;;;:11;:17;;;;;;;;;26578:51;;;;;;;;;-1:-1:-1;;;;;26578:51:0;;;;-1:-1:-1;;;26578:51:0;;;;;;;;;;;-1:-1:-1;;;26578:51:0;;;;;;;;;;;;;;26648:729;;26698:14;;-1:-1:-1;;;;;26698:28:0;;26694:101;;26762:9;26350:1109;-1:-1:-1;;;26350:1109:0:o;26694:101::-;-1:-1:-1;;;27137:6:0;27182:17;;;;:11;:17;;;;;;;;;27170:29;;;;;;;;;-1:-1:-1;;;;;27170:29:0;;;;;-1:-1:-1;;;27170:29:0;;;;;;;;;;;-1:-1:-1;;;27170:29:0;;;;;;;;;;;;;27230:28;27226:109;;27298:9;26350:1109;-1:-1:-1;;;26350:1109:0:o;27226:109::-;27097:261;;;26559:833;26506:886;27420:31;;-1:-1:-1;;;27420:31:0;;;;;;;;;;;46265:191;46358:6;;;-1:-1:-1;;;;;46375:17:0;;;-1:-1:-1;;;;;;46375:17:0;;;;;;;46408:40;;46358:6;;;46375:17;46358:6;;46408:40;;46339:16;;46408:40;46328:128;46265:191;:::o;40060:667::-;40244:72;;-1:-1:-1;;;40244:72:0;;40223:4;;-1:-1:-1;;;;;40244:36:0;;;;;:72;;3075:10;;40295:4;;40301:7;;40310:5;;40244:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40244:72:0;;;;;;;;-1:-1:-1;;40244:72:0;;;;;;;;;;;;:::i;:::-;;;40240:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40478:13:0;;40474:235;;40524:40;;-1:-1:-1;;;40524:40:0;;;;;;;;;;;40474:235;40667:6;40661:13;40652:6;40648:2;40644:15;40637:38;40240:480;-1:-1:-1;;;;;;40363:55:0;-1:-1:-1;;;40363:55:0;;-1:-1:-1;40240:480:0;40060:667;;;;;;:::o;48274:97::-;48327:13;48356:9;48349:16;;;;;:::i;557:723::-;613:13;834:10;830:53;;-1:-1:-1;;861:10:0;;;;;;;;;;;;-1:-1:-1;;;861:10:0;;;;;557:723::o;830:53::-;908:5;893:12;949:78;956:9;;949:78;;982:8;;;;:::i;:::-;;-1:-1:-1;1005:10:0;;-1:-1:-1;1013:2:0;1005:10;;:::i;:::-;;;949:78;;;1037:19;1069:6;1059:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1059:17:0;;1037:39;;1087:154;1094:10;;1087:154;;1121:11;1131:1;1121:11;;:::i;:::-;;-1:-1:-1;1190:10:0;1198:2;1190:5;:10;:::i;:::-;1177:24;;:2;:24;:::i;:::-;1164:39;;1147:6;1154;1147:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1147:56:0;;;;;;;;-1:-1:-1;1218:11:0;1227:2;1218:11;;:::i;:::-;;;1087:154;;31864:163;31987:32;31993:2;31997:8;32007:5;32014:4;32425:20;32448:13;-1:-1:-1;;;;;32476:16:0;;32472:48;;32501:19;;-1:-1:-1;;;32501:19:0;;;;;;;;;;;32472:48;32535:13;32531:44;;32557:18;;-1:-1:-1;;;32557:18:0;;;;;;;;;;;32531:44;-1:-1:-1;;;;;32926:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32985:49:0;;32926:44;;;;;;;;32985:49;;;;-1:-1:-1;;32926:44:0;;;;;;32985:49;;;;;;;;;;;;;;;;33051:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33101:66:0;;;;-1:-1:-1;;;33151:15:0;33101:66;;;;;;;;;;33051:25;33248:23;;;33292:4;:23;;;;-1:-1:-1;;;;;;33300:13:0;;4737:19;:23;;33300:15;33288:641;;;33336:314;33367:38;;33392:12;;-1:-1:-1;;;;;33367:38:0;;;33384:1;;33367:38;;33384:1;;33367:38;33433:69;33472:1;33476:2;33480:14;;;;;;33496:5;33433:30;:69::i;:::-;33428:174;;33538:40;;-1:-1:-1;;;33538:40:0;;;;;;;;;;;33428:174;33645:3;33629:12;:19;;33336:314;;33731:12;33714:13;;:29;33710:43;;33745:8;;;33710:43;33288:641;;;33794:120;33825:40;;33850:14;;;;;-1:-1:-1;;;;;33825:40:0;;;33842:1;;33825:40;;33842:1;;33825:40;33909:3;33893:12;:19;;33794:120;;33288:641;-1:-1:-1;33943:13:0;:28;33993:60;30578:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:159::-;895:20;;955:6;944:18;;934:29;;924:57;;977:1;974;967:12;992:186;1051:6;1104:2;1092:9;1083:7;1079:23;1075:32;1072:52;;;1120:1;1117;1110:12;1072:52;1143:29;1162:9;1143:29;:::i;1183:260::-;1251:6;1259;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;:::-;1341:39;;1399:38;1433:2;1422:9;1418:18;1399:38;:::i;:::-;1389:48;;1183:260;;;;;:::o;1448:328::-;1525:6;1533;1541;1594:2;1582:9;1573:7;1569:23;1565:32;1562:52;;;1610:1;1607;1600:12;1562:52;1633:29;1652:9;1633:29;:::i;:::-;1623:39;;1681:38;1715:2;1704:9;1700:18;1681:38;:::i;:::-;1671:48;;1766:2;1755:9;1751:18;1738:32;1728:42;;1448:328;;;;;:::o;1781:666::-;1876:6;1884;1892;1900;1953:3;1941:9;1932:7;1928:23;1924:33;1921:53;;;1970:1;1967;1960:12;1921:53;1993:29;2012:9;1993:29;:::i;:::-;1983:39;;2041:38;2075:2;2064:9;2060:18;2041:38;:::i;:::-;2031:48;;2126:2;2115:9;2111:18;2098:32;2088:42;;2181:2;2170:9;2166:18;2153:32;2208:18;2200:6;2197:30;2194:50;;;2240:1;2237;2230:12;2194:50;2263:22;;2316:4;2308:13;;2304:27;-1:-1:-1;2294:55:1;;2345:1;2342;2335:12;2294:55;2368:73;2433:7;2428:2;2415:16;2410:2;2406;2402:11;2368:73;:::i;:::-;2358:83;;;1781:666;;;;;;;:::o;2452:347::-;2517:6;2525;2578:2;2566:9;2557:7;2553:23;2549:32;2546:52;;;2594:1;2591;2584:12;2546:52;2617:29;2636:9;2617:29;:::i;:::-;2607:39;;2696:2;2685:9;2681:18;2668:32;2743:5;2736:13;2729:21;2722:5;2719:32;2709:60;;2765:1;2762;2755:12;2709:60;2788:5;2778:15;;;2452:347;;;;;:::o;2804:254::-;2872:6;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;2972:29;2991:9;2972:29;:::i;:::-;2962:39;3048:2;3033:18;;;;3020:32;;-1:-1:-1;;;2804:254:1:o;3063:245::-;3121:6;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:30;3272:5;3248:30;:::i;3313:249::-;3382:6;3435:2;3423:9;3414:7;3410:23;3406:32;3403:52;;;3451:1;3448;3441:12;3403:52;3483:9;3477:16;3502:30;3526:5;3502:30;:::i;3567:450::-;3636:6;3689:2;3677:9;3668:7;3664:23;3660:32;3657:52;;;3705:1;3702;3695:12;3657:52;3745:9;3732:23;3778:18;3770:6;3767:30;3764:50;;;3810:1;3807;3800:12;3764:50;3833:22;;3886:4;3878:13;;3874:27;-1:-1:-1;3864:55:1;;3915:1;3912;3905:12;3864:55;3938:73;4003:7;3998:2;3985:16;3980:2;3976;3972:11;3938:73;:::i;4022:184::-;4080:6;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4172:28;4190:9;4172:28;:::i;4211:258::-;4278:6;4286;4339:2;4327:9;4318:7;4314:23;4310:32;4307:52;;;4355:1;4352;4345:12;4307:52;4378:28;4396:9;4378:28;:::i;4474:687::-;4568:6;4576;4584;4637:2;4625:9;4616:7;4612:23;4608:32;4605:52;;;4653:1;4650;4643:12;4605:52;4676:28;4694:9;4676:28;:::i;:::-;4666:38;;4755:2;4744:9;4740:18;4727:32;4778:18;4819:2;4811:6;4808:14;4805:34;;;4835:1;4832;4825:12;4805:34;4873:6;4862:9;4858:22;4848:32;;4918:7;4911:4;4907:2;4903:13;4899:27;4889:55;;4940:1;4937;4930:12;4889:55;4980:2;4967:16;5006:2;4998:6;4995:14;4992:34;;;5022:1;5019;5012:12;4992:34;5075:7;5070:2;5060:6;5057:1;5053:14;5049:2;5045:23;5041:32;5038:45;5035:65;;;5096:1;5093;5086:12;5035:65;5127:2;5123;5119:11;5109:21;;5149:6;5139:16;;;;;4474:687;;;;;:::o;5166:180::-;5225:6;5278:2;5266:9;5257:7;5253:23;5249:32;5246:52;;;5294:1;5291;5284:12;5246:52;-1:-1:-1;5317:23:1;;5166:180;-1:-1:-1;5166:180:1:o;5351:257::-;5392:3;5430:5;5424:12;5457:6;5452:3;5445:19;5473:63;5529:6;5522:4;5517:3;5513:14;5506:4;5499:5;5495:16;5473:63;:::i;:::-;5590:2;5569:15;-1:-1:-1;;5565:29:1;5556:39;;;;5597:4;5552:50;;5351:257;-1:-1:-1;;5351:257:1:o;5613:1527::-;5837:3;5875:6;5869:13;5901:4;5914:51;5958:6;5953:3;5948:2;5940:6;5936:15;5914:51;:::i;:::-;6028:13;;5987:16;;;;6050:55;6028:13;5987:16;6072:15;;;6050:55;:::i;:::-;6194:13;;6127:20;;;6167:1;;6254;6276:18;;;;6329;;;;6356:93;;6434:4;6424:8;6420:19;6408:31;;6356:93;6497:2;6487:8;6484:16;6464:18;6461:40;6458:167;;;-1:-1:-1;;;6524:33:1;;6580:4;6577:1;6570:15;6610:4;6531:3;6598:17;6458:167;6641:18;6668:110;;;;6792:1;6787:328;;;;6634:481;;6668:110;-1:-1:-1;;6703:24:1;;6689:39;;6748:20;;;;-1:-1:-1;6668:110:1;;6787:328;10242:1;10235:14;;;10279:4;10266:18;;6882:1;6896:169;6910:8;6907:1;6904:15;6896:169;;;6992:14;;6977:13;;;6970:37;7035:16;;;;6927:10;;6896:169;;;6900:3;;7096:8;7089:5;7085:20;7078:27;;6634:481;-1:-1:-1;7131:3:1;;5613:1527;-1:-1:-1;;;;;;;;;;;5613:1527:1:o;7353:488::-;-1:-1:-1;;;;;7622:15:1;;;7604:34;;7674:15;;7669:2;7654:18;;7647:43;7721:2;7706:18;;7699:34;;;7769:3;7764:2;7749:18;;7742:31;;;7547:4;;7790:45;;7815:19;;7807:6;7790:45;:::i;:::-;7782:53;7353:488;-1:-1:-1;;;;;;7353:488:1:o;8038:219::-;8187:2;8176:9;8169:21;8150:4;8207:44;8247:2;8236:9;8232:18;8224:6;8207:44;:::i;8669:356::-;8871:2;8853:21;;;8890:18;;;8883:30;8949:34;8944:2;8929:18;;8922:62;9016:2;9001:18;;8669:356::o;10295:224::-;10334:3;10362:6;10395:2;10392:1;10388:10;10425:2;10422:1;10418:10;10456:3;10452:2;10448:12;10443:3;10440:21;10437:47;;;10464:18;;:::i;:::-;10500:13;;10295:224;-1:-1:-1;;;;10295:224:1:o;10524:128::-;10564:3;10595:1;10591:6;10588:1;10585:13;10582:39;;;10601:18;;:::i;:::-;-1:-1:-1;10637:9:1;;10524:128::o;10657:120::-;10697:1;10723;10713:35;;10728:18;;:::i;:::-;-1:-1:-1;10762:9:1;;10657:120::o;10782:125::-;10822:4;10850:1;10847;10844:8;10841:34;;;10855:18;;:::i;:::-;-1:-1:-1;10892:9:1;;10782:125::o;10912:258::-;10984:1;10994:113;11008:6;11005:1;11002:13;10994:113;;;11084:11;;;11078:18;11065:11;;;11058:39;11030:2;11023:10;10994:113;;;11125:6;11122:1;11119:13;11116:48;;;-1:-1:-1;;11160:1:1;11142:16;;11135:27;10912:258::o;11175:380::-;11254:1;11250:12;;;;11297;;;11318:61;;11372:4;11364:6;11360:17;11350:27;;11318:61;11425:2;11417:6;11414:14;11394:18;11391:38;11388:161;;;11471:10;11466:3;11462:20;11459:1;11452:31;11506:4;11503:1;11496:15;11534:4;11531:1;11524:15;11388:161;;11175:380;;;:::o;11560:197::-;11598:3;11626:6;11667:2;11660:5;11656:14;11694:2;11685:7;11682:15;11679:41;;;11700:18;;:::i;:::-;11749:1;11736:15;;11560:197;-1:-1:-1;;;11560:197:1:o;11762:135::-;11801:3;-1:-1:-1;;11822:17:1;;11819:43;;;11842:18;;:::i;:::-;-1:-1:-1;11889:1:1;11878:13;;11762:135::o;11902:112::-;11934:1;11960;11950:35;;11965:18;;:::i;:::-;-1:-1:-1;11999:9:1;;11902:112::o;12019:127::-;12080:10;12075:3;12071:20;12068:1;12061:31;12111:4;12108:1;12101:15;12135:4;12132:1;12125:15;12151:127;12212:10;12207:3;12203:20;12200:1;12193:31;12243:4;12240:1;12233:15;12267:4;12264:1;12257:15;12283:127;12344:10;12339:3;12335:20;12332:1;12325:31;12375:4;12372:1;12365:15;12399:4;12396:1;12389:15;12415:127;12476:10;12471:3;12467:20;12464:1;12457:31;12507:4;12504:1;12497:15;12531:4;12528:1;12521:15;12547:131;-1:-1:-1;;;;;;12621:32:1;;12611:43;;12601:71;;12668:1;12665;12658:12
Swarm Source
ipfs://3eace1250712f114512c28b4293635f08f49e549a60bba75f9dfc6c160793756
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.