ERC-721
Overview
Max Total Supply
911 GOBS
Holders
301
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 GOBSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GOBS
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-14 */ // SPDX-License-Identifier: MIT // 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 {} } 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 GOBS is ERC721A, Ownable { using Strings for uint256; string private uriPrefix ="http://gobsgoldserver-env-2.eba-38uqjbfb.eu-west-2.elasticbeanstalk.com/nft/"; string private uriSuffix = "/metadata"; string public hiddenURL; uint256 public cost = 0.2 ether; uint16 public constant maxSupply = 10000; bool public paused = true; mapping (address => uint8) public NFTPerAddress; uint8 public maxMintAmountPerWallet = 5; uint8 public maxMintAmountPerWalletForFreeMint = 3; uint16 public freeLimit = 5000; constructor() ERC721A("GOBS", "GOBS") { } function mint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); uint8 Nft = NFTPerAddress[msg.sender]; require(!paused, "The contract is paused!"); if(totalSupply > freeLimit) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); require(_mintAmount + Nft <= maxMintAmountPerWallet, "Exceeds Max Nfts allowed per wallet."); } else { require(_mintAmount + Nft <= maxMintAmountPerWalletForFreeMint, "Exceeds Max Free Nfts allowed per wallet."); } _safeMint(msg.sender , _mintAmount); NFTPerAddress[msg.sender] = _mintAmount + Nft ; delete totalSupply; delete _mintAmount; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function 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 setBaseUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setBaseUriSuffix(string memory _uriSuffix) external onlyOwner { uriSuffix = _uriSuffix; } function setPaused() external onlyOwner { paused = !paused; } function setFreeLimit(uint8 _limit) external onlyOwner { freeLimit= _limit; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setMaxMintAmountPerWalletForFreeMint(uint8 _maxtx) external onlyOwner{ maxMintAmountPerWalletForFreeMint= _maxtx; } function setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{ maxMintAmountPerWallet= _maxtx; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWalletForFreeMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setBaseUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setBaseUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWalletForFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610100604052604c6080818152906200224360a03980516200002a916009916020909101906200015a565b50604080518082019091526009808252682f6d6574616461746160b81b60209092019182526200005d91600a916200015a565b506702c68af0bb140000600c55600d805460ff19166001179055600f8054631388030563ffffffff199091161790553480156200009957600080fd5b50604080518082018252600480825263474f425360e01b602080840182815285518087019096529285528401528151919291620000d9916002916200015a565b508051620000ef9060039060208401906200015a565b5050600160005550620001023362000108565b6200023d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001689062000200565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b600181811c908216806200021557607f821691505b602082108114156200023757634e487b7160e01b600052602260045260246000fd5b50919050565b611ff6806200024d6000396000f3fe6080604052600436106102045760003560e01c806358ab9bf411610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146105d9578063dbd37cf4146105ef578063e985e9c51461061f578063eef440af14610668578063f2fde38b1461067d57600080fd5b8063b88d4fde1461055f578063bc951b911461057f578063c6d76c2714610599578063c87b56dd146105b957600080fd5b806370a08231116100e757806370a08231146104d7578063715018a6146104f75780638da5cb5b1461050c57806395d89b411461052a578063a22cb4651461053f57600080fd5b806358ab9bf4146104595780635c975abb1461048a5780636352211e146104a45780636ecd2306146104c457600080fd5b8063269bbebd1161019b5780632f6f98e11161016a5780632f6f98e1146103cf57806337a66d85146103ef5780633ccfd60b1461040457806342842e0e1461041957806344a0d68a1461043957600080fd5b8063269bbebd1461033b578063286297c21461036f57806328b60d151461038f5780632b2969fd146103af57600080fd5b806313faede6116101d757806313faede6146102ba57806318160ddd146102de578063238987df146102fb57806323b872dd1461031b57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611bb6565b61069d565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ef565b6040516102359190611dc7565b34801561026c57600080fd5b5061028061027b366004611c5e565b610781565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611b8c565b6107c5565b005b3480156102c657600080fd5b506102d0600c5481565b604051908152602001610235565b3480156102ea57600080fd5b5060015460005403600019016102d0565b34801561030757600080fd5b506102b8610316366004611bf0565b610853565b34801561032757600080fd5b506102b8610336366004611a98565b61089d565b34801561034757600080fd5b50600f5461035c9062010000900461ffff1681565b60405161ffff9091168152602001610235565b34801561037b57600080fd5b506102b861038a366004611c77565b6108a8565b34801561039b57600080fd5b506102b86103aa366004611c77565b6108f0565b3480156103bb57600080fd5b506102b86103ca366004611c77565b610930565b3480156103db57600080fd5b506102b86103ea366004611c39565b610976565b3480156103fb57600080fd5b506102b8610a1a565b34801561041057600080fd5b506102b8610a58565b34801561042557600080fd5b506102b8610434366004611a98565b610ab1565b34801561044557600080fd5b506102b8610454366004611c5e565b610acc565b34801561046557600080fd5b50600f5461047890610100900460ff1681565b60405160ff9091168152602001610235565b34801561049657600080fd5b50600d546102299060ff1681565b3480156104b057600080fd5b506102806104bf366004611c5e565b610afb565b6102b86104d2366004611c77565b610b0d565b3480156104e357600080fd5b506102d06104f2366004611a4a565b610d78565b34801561050357600080fd5b506102b8610dc7565b34801561051857600080fd5b506008546001600160a01b0316610280565b34801561053657600080fd5b50610253610dfd565b34801561054b57600080fd5b506102b861055a366004611b50565b610e0c565b34801561056b57600080fd5b506102b861057a366004611ad4565b610ea2565b34801561058b57600080fd5b50600f546104789060ff1681565b3480156105a557600080fd5b506102b86105b4366004611bf0565b610ef3565b3480156105c557600080fd5b506102536105d4366004611c5e565b610f30565b3480156105e557600080fd5b5061035c61271081565b3480156105fb57600080fd5b5061047861060a366004611a4a565b600e6020526000908152604090205460ff1681565b34801561062b57600080fd5b5061022961063a366004611a65565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067457600080fd5b50610253610ffe565b34801561068957600080fd5b506102b8610698366004611a4a565b61108c565b60006001600160e01b031982166380ac58cd60e01b14806106ce57506001600160e01b03198216635b5e139f60e01b145b806106e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fe90611ee8565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90611ee8565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c82611127565b6107a9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d082610afb565b9050806001600160a01b0316836001600160a01b031614156108055760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108255750610823813361063a565b155b15610843576040516367d9dca160e11b815260040160405180910390fd5b61084e838383611160565b505050565b6008546001600160a01b031633146108865760405162461bcd60e51b815260040161087d90611dda565b60405180910390fd5b805161089990600a90602084019061191f565b5050565b61084e8383836111bc565b6008546001600160a01b031633146108d25760405162461bcd60e51b815260040161087d90611dda565b600f805463ffff0000191660ff929092166201000002919091179055565b6008546001600160a01b0316331461091a5760405162461bcd60e51b815260040161087d90611dda565b600f805460ff191660ff92909216919091179055565b6008546001600160a01b0316331461095a5760405162461bcd60e51b815260040161087d90611dda565b600f805460ff9092166101000261ff0019909216919091179055565b6008546001600160a01b031633146109a05760405162461bcd60e51b815260040161087d90611dda565b60006109b56001546000546000199190030190565b90506127106109c48483611e0f565b61ffff161115610a0c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161087d565b61084e828461ffff166113ac565b6008546001600160a01b03163314610a445760405162461bcd60e51b815260040161087d90611dda565b600d805460ff19811660ff90911615179055565b6008546001600160a01b03163314610a825760405162461bcd60e51b815260040161087d90611dda565b6040514790339082156108fc029083906000818181858888f19350505050158015610899573d6000803e3d6000fd5b61084e83838360405180602001604052806000815250610ea2565b6008546001600160a01b03163314610af65760405162461bcd60e51b815260040161087d90611dda565b600c55565b6000610b06826113c6565b5192915050565b6000610b226001546000546000199190030190565b9050612710610b3460ff841683611e0f565b61ffff161115610b7c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161087d565b336000908152600e6020526040902054600d5460ff918216911615610be35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161087d565b600f5461ffff6201000090910481169083161115610cc3578260ff16600c54610c0c9190611e86565b341015610c515760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161087d565b600f5460ff16610c618285611e4d565b60ff161115610cbe5760405162461bcd60e51b8152602060048201526024808201527f45786365656473204d6178204e66747320616c6c6f776564207065722077616c6044820152633632ba1760e11b606482015260840161087d565b610d3b565b600f54610100900460ff16610cd88285611e4d565b60ff161115610d3b5760405162461bcd60e51b815260206004820152602960248201527f45786365656473204d61782046726565204e66747320616c6c6f77656420706560448201526839103bb0b63632ba1760b91b606482015260840161087d565b610d48338460ff166113ac565b610d528184611e4d565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610da1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610df15760405162461bcd60e51b815260040161087d90611dda565b610dfb60006114ef565b565b6060600380546106fe90611ee8565b6001600160a01b038216331415610e365760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ead8484846111bc565b6001600160a01b0383163b15158015610ecf5750610ecd84848484611541565b155b15610eed576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f1d5760405162461bcd60e51b815260040161087d90611dda565b805161089990600990602084019061191f565b6060610f3b82611127565b610f9f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087d565b6000610fa9611639565b90506000815111610fc95760405180602001604052806000815250610ff7565b80610fd384611648565b600a604051602001610fe793929190611cc6565b6040516020818303038152906040525b9392505050565b600b805461100b90611ee8565b80601f016020809104026020016040519081016040528092919081815260200182805461103790611ee8565b80156110845780601f1061105957610100808354040283529160200191611084565b820191906000526020600020905b81548152906001019060200180831161106757829003601f168201915b505050505081565b6008546001600160a01b031633146110b65760405162461bcd60e51b815260040161087d90611dda565b6001600160a01b03811661111b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087d565b611124816114ef565b50565b60008160011115801561113b575060005482105b80156106e9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111c7826113c6565b9050836001600160a01b031681600001516001600160a01b0316146111fe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061121c575061121c853361063a565b8061123757503361122c84610781565b6001600160a01b0316145b90508061125757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661127e57604051633a954ecd60e21b815260040160405180910390fd5b61128a60008487611160565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611360576000548214611360578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610899828260405180602001604052806000815250611746565b604080516060810182526000808252602082018190529181019190915281806001111580156113f6575060005481105b156114d657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114d45780516001600160a01b03161561146a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114cf579392505050565b61146a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611576903390899088908890600401611d8a565b602060405180830381600087803b15801561159057600080fd5b505af19250505080156115c0575060408051601f3d908101601f191682019092526115bd91810190611bd3565b60015b61161b573d8080156115ee576040519150601f19603f3d011682016040523d82523d6000602084013e6115f3565b606091505b508051611613576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fe90611ee8565b60608161166c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611696578061168081611f23565b915061168f9050600a83611e72565b9150611670565b60008167ffffffffffffffff8111156116b1576116b1611f94565b6040519080825280601f01601f1916602001820160405280156116db576020820181803683370190505b5090505b8415611631576116f0600183611ea5565b91506116fd600a86611f3e565b611708906030611e35565b60f81b81838151811061171d5761171d611f7e565b60200101906001600160f81b031916908160001a90535061173f600a86611e72565b94506116df565b61084e83838360016000546001600160a01b03851661177757604051622e076360e81b815260040160405180910390fd5b836117955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561184757506001600160a01b0387163b15155b156118d0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118986000888480600101955088611541565b6118b5576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561184d5782600054146118cb57600080fd5b611916565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118d1575b506000556113a5565b82805461192b90611ee8565b90600052602060002090601f01602090048101928261194d5760008555611993565b82601f1061196657805160ff1916838001178555611993565b82800160010185558215611993579182015b82811115611993578251825591602001919060010190611978565b5061199f9291506119a3565b5090565b5b8082111561199f57600081556001016119a4565b600067ffffffffffffffff808411156119d3576119d3611f94565b604051601f8501601f19908116603f011681019082821181831017156119fb576119fb611f94565b81604052809350858152868686011115611a1457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a4557600080fd5b919050565b600060208284031215611a5c57600080fd5b610ff782611a2e565b60008060408385031215611a7857600080fd5b611a8183611a2e565b9150611a8f60208401611a2e565b90509250929050565b600080600060608486031215611aad57600080fd5b611ab684611a2e565b9250611ac460208501611a2e565b9150604084013590509250925092565b60008060008060808587031215611aea57600080fd5b611af385611a2e565b9350611b0160208601611a2e565b925060408501359150606085013567ffffffffffffffff811115611b2457600080fd5b8501601f81018713611b3557600080fd5b611b44878235602084016119b8565b91505092959194509250565b60008060408385031215611b6357600080fd5b611b6c83611a2e565b915060208301358015158114611b8157600080fd5b809150509250929050565b60008060408385031215611b9f57600080fd5b611ba883611a2e565b946020939093013593505050565b600060208284031215611bc857600080fd5b8135610ff781611faa565b600060208284031215611be557600080fd5b8151610ff781611faa565b600060208284031215611c0257600080fd5b813567ffffffffffffffff811115611c1957600080fd5b8201601f81018413611c2a57600080fd5b611631848235602084016119b8565b60008060408385031215611c4c57600080fd5b823561ffff81168114611a8157600080fd5b600060208284031215611c7057600080fd5b5035919050565b600060208284031215611c8957600080fd5b813560ff81168114610ff757600080fd5b60008151808452611cb2816020860160208601611ebc565b601f01601f19169290920160200192915050565b600084516020611cd98285838a01611ebc565b855191840191611cec8184848a01611ebc565b8554920191600090600181811c9080831680611d0957607f831692505b858310811415611d2757634e487b7160e01b85526022600452602485fd5b808015611d3b5760018114611d4c57611d79565b60ff19851688528388019550611d79565b60008b81526020902060005b85811015611d715781548a820152908401908801611d58565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dbd90830184611c9a565b9695505050505050565b602081526000610ff76020830184611c9a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff808316818516808303821115611e2c57611e2c611f52565b01949350505050565b60008219821115611e4857611e48611f52565b500190565b600060ff821660ff84168060ff03821115611e6a57611e6a611f52565b019392505050565b600082611e8157611e81611f68565b500490565b6000816000190483118215151615611ea057611ea0611f52565b500290565b600082821015611eb757611eb7611f52565b500390565b60005b83811015611ed7578181015183820152602001611ebf565b83811115610eed5750506000910152565b600181811c90821680611efc57607f821691505b60208210811415611f1d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f3757611f37611f52565b5060010190565b600082611f4d57611f4d611f68565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112457600080fdfea26469706673582212203c15c7ce55cf92a4fdb3312723f2cb67c4590d0e985da090ec6be2b51c7417f264736f6c63430008070033687474703a2f2f676f6273676f6c647365727665722d656e762d322e6562612d333875716a6266622e65752d776573742d322e656c61737469636265616e7374616c6b2e636f6d2f6e66742f
Deployed Bytecode
0x6080604052600436106102045760003560e01c806358ab9bf411610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146105d9578063dbd37cf4146105ef578063e985e9c51461061f578063eef440af14610668578063f2fde38b1461067d57600080fd5b8063b88d4fde1461055f578063bc951b911461057f578063c6d76c2714610599578063c87b56dd146105b957600080fd5b806370a08231116100e757806370a08231146104d7578063715018a6146104f75780638da5cb5b1461050c57806395d89b411461052a578063a22cb4651461053f57600080fd5b806358ab9bf4146104595780635c975abb1461048a5780636352211e146104a45780636ecd2306146104c457600080fd5b8063269bbebd1161019b5780632f6f98e11161016a5780632f6f98e1146103cf57806337a66d85146103ef5780633ccfd60b1461040457806342842e0e1461041957806344a0d68a1461043957600080fd5b8063269bbebd1461033b578063286297c21461036f57806328b60d151461038f5780632b2969fd146103af57600080fd5b806313faede6116101d757806313faede6146102ba57806318160ddd146102de578063238987df146102fb57806323b872dd1461031b57600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611bb6565b61069d565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106ef565b6040516102359190611dc7565b34801561026c57600080fd5b5061028061027b366004611c5e565b610781565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611b8c565b6107c5565b005b3480156102c657600080fd5b506102d0600c5481565b604051908152602001610235565b3480156102ea57600080fd5b5060015460005403600019016102d0565b34801561030757600080fd5b506102b8610316366004611bf0565b610853565b34801561032757600080fd5b506102b8610336366004611a98565b61089d565b34801561034757600080fd5b50600f5461035c9062010000900461ffff1681565b60405161ffff9091168152602001610235565b34801561037b57600080fd5b506102b861038a366004611c77565b6108a8565b34801561039b57600080fd5b506102b86103aa366004611c77565b6108f0565b3480156103bb57600080fd5b506102b86103ca366004611c77565b610930565b3480156103db57600080fd5b506102b86103ea366004611c39565b610976565b3480156103fb57600080fd5b506102b8610a1a565b34801561041057600080fd5b506102b8610a58565b34801561042557600080fd5b506102b8610434366004611a98565b610ab1565b34801561044557600080fd5b506102b8610454366004611c5e565b610acc565b34801561046557600080fd5b50600f5461047890610100900460ff1681565b60405160ff9091168152602001610235565b34801561049657600080fd5b50600d546102299060ff1681565b3480156104b057600080fd5b506102806104bf366004611c5e565b610afb565b6102b86104d2366004611c77565b610b0d565b3480156104e357600080fd5b506102d06104f2366004611a4a565b610d78565b34801561050357600080fd5b506102b8610dc7565b34801561051857600080fd5b506008546001600160a01b0316610280565b34801561053657600080fd5b50610253610dfd565b34801561054b57600080fd5b506102b861055a366004611b50565b610e0c565b34801561056b57600080fd5b506102b861057a366004611ad4565b610ea2565b34801561058b57600080fd5b50600f546104789060ff1681565b3480156105a557600080fd5b506102b86105b4366004611bf0565b610ef3565b3480156105c557600080fd5b506102536105d4366004611c5e565b610f30565b3480156105e557600080fd5b5061035c61271081565b3480156105fb57600080fd5b5061047861060a366004611a4a565b600e6020526000908152604090205460ff1681565b34801561062b57600080fd5b5061022961063a366004611a65565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067457600080fd5b50610253610ffe565b34801561068957600080fd5b506102b8610698366004611a4a565b61108c565b60006001600160e01b031982166380ac58cd60e01b14806106ce57506001600160e01b03198216635b5e139f60e01b145b806106e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fe90611ee8565b80601f016020809104026020016040519081016040528092919081815260200182805461072a90611ee8565b80156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061078c82611127565b6107a9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d082610afb565b9050806001600160a01b0316836001600160a01b031614156108055760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108255750610823813361063a565b155b15610843576040516367d9dca160e11b815260040160405180910390fd5b61084e838383611160565b505050565b6008546001600160a01b031633146108865760405162461bcd60e51b815260040161087d90611dda565b60405180910390fd5b805161089990600a90602084019061191f565b5050565b61084e8383836111bc565b6008546001600160a01b031633146108d25760405162461bcd60e51b815260040161087d90611dda565b600f805463ffff0000191660ff929092166201000002919091179055565b6008546001600160a01b0316331461091a5760405162461bcd60e51b815260040161087d90611dda565b600f805460ff191660ff92909216919091179055565b6008546001600160a01b0316331461095a5760405162461bcd60e51b815260040161087d90611dda565b600f805460ff9092166101000261ff0019909216919091179055565b6008546001600160a01b031633146109a05760405162461bcd60e51b815260040161087d90611dda565b60006109b56001546000546000199190030190565b90506127106109c48483611e0f565b61ffff161115610a0c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161087d565b61084e828461ffff166113ac565b6008546001600160a01b03163314610a445760405162461bcd60e51b815260040161087d90611dda565b600d805460ff19811660ff90911615179055565b6008546001600160a01b03163314610a825760405162461bcd60e51b815260040161087d90611dda565b6040514790339082156108fc029083906000818181858888f19350505050158015610899573d6000803e3d6000fd5b61084e83838360405180602001604052806000815250610ea2565b6008546001600160a01b03163314610af65760405162461bcd60e51b815260040161087d90611dda565b600c55565b6000610b06826113c6565b5192915050565b6000610b226001546000546000199190030190565b9050612710610b3460ff841683611e0f565b61ffff161115610b7c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161087d565b336000908152600e6020526040902054600d5460ff918216911615610be35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161087d565b600f5461ffff6201000090910481169083161115610cc3578260ff16600c54610c0c9190611e86565b341015610c515760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161087d565b600f5460ff16610c618285611e4d565b60ff161115610cbe5760405162461bcd60e51b8152602060048201526024808201527f45786365656473204d6178204e66747320616c6c6f776564207065722077616c6044820152633632ba1760e11b606482015260840161087d565b610d3b565b600f54610100900460ff16610cd88285611e4d565b60ff161115610d3b5760405162461bcd60e51b815260206004820152602960248201527f45786365656473204d61782046726565204e66747320616c6c6f77656420706560448201526839103bb0b63632ba1760b91b606482015260840161087d565b610d48338460ff166113ac565b610d528184611e4d565b336000908152600e60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610da1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610df15760405162461bcd60e51b815260040161087d90611dda565b610dfb60006114ef565b565b6060600380546106fe90611ee8565b6001600160a01b038216331415610e365760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ead8484846111bc565b6001600160a01b0383163b15158015610ecf5750610ecd84848484611541565b155b15610eed576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f1d5760405162461bcd60e51b815260040161087d90611dda565b805161089990600990602084019061191f565b6060610f3b82611127565b610f9f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087d565b6000610fa9611639565b90506000815111610fc95760405180602001604052806000815250610ff7565b80610fd384611648565b600a604051602001610fe793929190611cc6565b6040516020818303038152906040525b9392505050565b600b805461100b90611ee8565b80601f016020809104026020016040519081016040528092919081815260200182805461103790611ee8565b80156110845780601f1061105957610100808354040283529160200191611084565b820191906000526020600020905b81548152906001019060200180831161106757829003601f168201915b505050505081565b6008546001600160a01b031633146110b65760405162461bcd60e51b815260040161087d90611dda565b6001600160a01b03811661111b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087d565b611124816114ef565b50565b60008160011115801561113b575060005482105b80156106e9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111c7826113c6565b9050836001600160a01b031681600001516001600160a01b0316146111fe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061121c575061121c853361063a565b8061123757503361122c84610781565b6001600160a01b0316145b90508061125757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661127e57604051633a954ecd60e21b815260040160405180910390fd5b61128a60008487611160565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611360576000548214611360578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610899828260405180602001604052806000815250611746565b604080516060810182526000808252602082018190529181019190915281806001111580156113f6575060005481105b156114d657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114d45780516001600160a01b03161561146a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156114cf579392505050565b61146a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611576903390899088908890600401611d8a565b602060405180830381600087803b15801561159057600080fd5b505af19250505080156115c0575060408051601f3d908101601f191682019092526115bd91810190611bd3565b60015b61161b573d8080156115ee576040519150601f19603f3d011682016040523d82523d6000602084013e6115f3565b606091505b508051611613576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fe90611ee8565b60608161166c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611696578061168081611f23565b915061168f9050600a83611e72565b9150611670565b60008167ffffffffffffffff8111156116b1576116b1611f94565b6040519080825280601f01601f1916602001820160405280156116db576020820181803683370190505b5090505b8415611631576116f0600183611ea5565b91506116fd600a86611f3e565b611708906030611e35565b60f81b81838151811061171d5761171d611f7e565b60200101906001600160f81b031916908160001a90535061173f600a86611e72565b94506116df565b61084e83838360016000546001600160a01b03851661177757604051622e076360e81b815260040160405180910390fd5b836117955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561184757506001600160a01b0387163b15155b156118d0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118986000888480600101955088611541565b6118b5576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561184d5782600054146118cb57600080fd5b611916565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156118d1575b506000556113a5565b82805461192b90611ee8565b90600052602060002090601f01602090048101928261194d5760008555611993565b82601f1061196657805160ff1916838001178555611993565b82800160010185558215611993579182015b82811115611993578251825591602001919060010190611978565b5061199f9291506119a3565b5090565b5b8082111561199f57600081556001016119a4565b600067ffffffffffffffff808411156119d3576119d3611f94565b604051601f8501601f19908116603f011681019082821181831017156119fb576119fb611f94565b81604052809350858152868686011115611a1457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a4557600080fd5b919050565b600060208284031215611a5c57600080fd5b610ff782611a2e565b60008060408385031215611a7857600080fd5b611a8183611a2e565b9150611a8f60208401611a2e565b90509250929050565b600080600060608486031215611aad57600080fd5b611ab684611a2e565b9250611ac460208501611a2e565b9150604084013590509250925092565b60008060008060808587031215611aea57600080fd5b611af385611a2e565b9350611b0160208601611a2e565b925060408501359150606085013567ffffffffffffffff811115611b2457600080fd5b8501601f81018713611b3557600080fd5b611b44878235602084016119b8565b91505092959194509250565b60008060408385031215611b6357600080fd5b611b6c83611a2e565b915060208301358015158114611b8157600080fd5b809150509250929050565b60008060408385031215611b9f57600080fd5b611ba883611a2e565b946020939093013593505050565b600060208284031215611bc857600080fd5b8135610ff781611faa565b600060208284031215611be557600080fd5b8151610ff781611faa565b600060208284031215611c0257600080fd5b813567ffffffffffffffff811115611c1957600080fd5b8201601f81018413611c2a57600080fd5b611631848235602084016119b8565b60008060408385031215611c4c57600080fd5b823561ffff81168114611a8157600080fd5b600060208284031215611c7057600080fd5b5035919050565b600060208284031215611c8957600080fd5b813560ff81168114610ff757600080fd5b60008151808452611cb2816020860160208601611ebc565b601f01601f19169290920160200192915050565b600084516020611cd98285838a01611ebc565b855191840191611cec8184848a01611ebc565b8554920191600090600181811c9080831680611d0957607f831692505b858310811415611d2757634e487b7160e01b85526022600452602485fd5b808015611d3b5760018114611d4c57611d79565b60ff19851688528388019550611d79565b60008b81526020902060005b85811015611d715781548a820152908401908801611d58565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dbd90830184611c9a565b9695505050505050565b602081526000610ff76020830184611c9a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff808316818516808303821115611e2c57611e2c611f52565b01949350505050565b60008219821115611e4857611e48611f52565b500190565b600060ff821660ff84168060ff03821115611e6a57611e6a611f52565b019392505050565b600082611e8157611e81611f68565b500490565b6000816000190483118215151615611ea057611ea0611f52565b500290565b600082821015611eb757611eb7611f52565b500390565b60005b83811015611ed7578181015183820152602001611ebf565b83811115610eed5750506000910152565b600181811c90821680611efc57607f821691505b60208210811415611f1d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f3757611f37611f52565b5060010190565b600082611f4d57611f4d611f68565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461112457600080fdfea26469706673582212203c15c7ce55cf92a4fdb3312723f2cb67c4590d0e985da090ec6be2b51c7417f264736f6c63430008070033
Deployed Bytecode Sourcemap
44119:3330:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24443:305;;;;;;;;;;-1:-1:-1;24443:305:0;;;;;:::i;:::-;;:::i;:::-;;;7328:14:1;;7321:22;7303:41;;7291:2;7276:18;24443:305:0;;;;;;;;27556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29059:204::-;;;;;;;;;;-1:-1:-1;29059:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6626:32:1;;;6608:51;;6596:2;6581:18;29059:204:0;6462:203:1;28622:371:0;;;;;;;;;;-1:-1:-1;28622:371:0;;;;;:::i;:::-;;:::i;:::-;;44386:31;;;;;;;;;;;;;;;;;;;10965:25:1;;;10953:2;10938:18;44386:31:0;10819:177:1;23692:303:0;;;;;;;;;;-1:-1:-1;23549:1:0;23946:12;23736:7;23930:13;:28;-1:-1:-1;;23930:46:0;23692:303;;46555:106;;;;;;;;;;-1:-1:-1;46555:106:0;;;;;:::i;:::-;;:::i;29924:170::-;;;;;;;;;;-1:-1:-1;29924:170:0;;;;;:::i;:::-;;:::i;44730:30::-;;;;;;;;;;-1:-1:-1;44730:30:0;;;;;;;;;;;;;;10800:6:1;10788:19;;;10770:38;;10758:2;10743:18;44730:30:0;10626:188:1;46754:89:0;;;;;;;;;;-1:-1:-1;46754:89:0;;;;;:::i;:::-;;:::i;47074:114::-;;;;;;;;;;-1:-1:-1;47074:114:0;;;;;:::i;:::-;;:::i;46933:136::-;;;;;;;;;;-1:-1:-1;46933:136:0;;;;;:::i;:::-;;:::i;45651:326::-;;;;;;;;;;-1:-1:-1;45651:326:0;;;;;:::i;:::-;;:::i;46673:73::-;;;;;;;;;;;;;:::i;47197:144::-;;;;;;;;;;;;;:::i;30165:185::-;;;;;;;;;;-1:-1:-1;30165:185:0;;;;;:::i;:::-;;:::i;46849:76::-;;;;;;;;;;-1:-1:-1;46849:76:0;;;;;:::i;:::-;;:::i;44670:50::-;;;;;;;;;;-1:-1:-1;44670:50:0;;;;;;;;;;;;;;11173:4:1;11161:17;;;11143:36;;11131:2;11116:18;44670:50:0;11001:184:1;44539:25:0;;;;;;;;;;-1:-1:-1;44539:25:0;;;;;;;;27364:125;;;;;;;;;;-1:-1:-1;27364:125:0;;;;;:::i;:::-;;:::i;44834:809::-;;;;;;:::i;:::-;;:::i;24812:206::-;;;;;;;;;;-1:-1:-1;24812:206:0;;;;;:::i;:::-;;:::i;43265:103::-;;;;;;;;;;;;;:::i;42613:87::-;;;;;;;;;;-1:-1:-1;42686:6:0;;-1:-1:-1;;;;;42686:6:0;42613:87;;27725:104;;;;;;;;;;;;;:::i;29335:287::-;;;;;;;;;;-1:-1:-1;29335:287:0;;;;;:::i;:::-;;:::i;30421:369::-;;;;;;;;;;-1:-1:-1;30421:369:0;;;;;:::i;:::-;;:::i;44623:39::-;;;;;;;;;;-1:-1:-1;44623:39:0;;;;;;;;46445:106;;;;;;;;;;-1:-1:-1;46445:106:0;;;;;:::i;:::-;;:::i;45992:440::-;;;;;;;;;;-1:-1:-1;45992:440:0;;;;;:::i;:::-;;:::i;44427:40::-;;;;;;;;;;;;44462:5;44427:40;;44571:47;;;;;;;;;;-1:-1:-1;44571:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29693:164;;;;;;;;;;-1:-1:-1;29693:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29814:25:0;;;29790:4;29814:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29693:164;44346:23;;;;;;;;;;;;;:::i;43523:201::-;;;;;;;;;;-1:-1:-1;43523:201:0;;;;;:::i;:::-;;:::i;24443:305::-;24545:4;-1:-1:-1;;;;;;24582:40:0;;-1:-1:-1;;;24582:40:0;;:105;;-1:-1:-1;;;;;;;24639:48:0;;-1:-1:-1;;;24639:48:0;24582:105;:158;;;-1:-1:-1;;;;;;;;;;14477:40:0;;;24704:36;24562:178;24443:305;-1:-1:-1;;24443:305:0:o;27556:100::-;27610:13;27643:5;27636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27556:100;:::o;29059:204::-;29127:7;29152:16;29160:7;29152;:16::i;:::-;29147:64;;29177:34;;-1:-1:-1;;;29177:34:0;;;;;;;;;;;29147:64;-1:-1:-1;29231:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29231:24:0;;29059:204::o;28622:371::-;28695:13;28711:24;28727:7;28711:15;:24::i;:::-;28695:40;;28756:5;-1:-1:-1;;;;;28750:11:0;:2;-1:-1:-1;;;;;28750:11:0;;28746:48;;;28770:24;;-1:-1:-1;;;28770:24:0;;;;;;;;;;;28746:48;2918:10;-1:-1:-1;;;;;28811:21:0;;;;;;:63;;-1:-1:-1;28837:37:0;28854:5;2918:10;29693:164;:::i;28837:37::-;28836:38;28811:63;28807:138;;;28898:35;;-1:-1:-1;;;28898:35:0;;;;;;;;;;;28807:138;28957:28;28966:2;28970:7;28979:5;28957:8;:28::i;:::-;28684:309;28622:371;;:::o;46555:106::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;;;;;;;;;46633:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46555:106:::0;:::o;29924:170::-;30058:28;30068:4;30074:2;30078:7;30058:9;:28::i;46754:89::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;46816:9:::1;:17:::0;;-1:-1:-1;;46816:17:0::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;46754:89::o;47074:114::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;47150:22:::1;:30:::0;;-1:-1:-1;;47150:30:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47074:114::o;46933:136::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;47020:33:::1;:41:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;47020:41:0;;::::1;::::0;;;::::1;::::0;;46933:136::o;45651:326::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;45734:18:::1;45762:13;23549:1:::0;23946:12;23736:7;23930:13;-1:-1:-1;;23930:28:0;;;:46;;23692:303;45762:13:::1;45734:42:::0;-1:-1:-1;44462:5:0::1;45791:25;45805:11:::0;45734:42;45791:25:::1;:::i;:::-;:38;;;;45783:70;;;::::0;-1:-1:-1;;;45783:70:0;;10132:2:1;45783:70:0::1;::::0;::::1;10114:21:1::0;10171:2;10151:18;;;10144:30;-1:-1:-1;;;10190:18:1;;;10183:49;10249:18;;45783:70:0::1;9930:343:1::0;45783:70:0::1;45861:34;45871:9;45883:11;45861:34;;:9;:34::i;46673:73::-:0;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;46730:6:::1;::::0;;-1:-1:-1;;46720:16:0;::::1;46730:6;::::0;;::::1;46729:7;46720:16;::::0;;46673:73::o;47197:144::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;47286:39:::1;::::0;47257:21:::1;::::0;47294:10:::1;::::0;47286:39;::::1;;;::::0;47257:21;;47241:13:::1;47286:39:::0;47241:13;47286:39;47257:21;47294:10;47286:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;30165:185:::0;30303:39;30320:4;30326:2;30330:7;30303:39;;;;;;;;;;;;:16;:39::i;46849:76::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;46905:4:::1;:12:::0;46849:76::o;27364:125::-;27428:7;27455:21;27468:7;27455:12;:21::i;:::-;:26;;27364:125;-1:-1:-1;;27364:125:0:o;44834:809::-;44893:18;44921:13;23549:1;23946:12;23736:7;23930:13;-1:-1:-1;;23930:28:0;;;:46;;23692:303;44921:13;44893:42;-1:-1:-1;44462:5:0;44950:25;;;;44893:42;44950:25;:::i;:::-;:38;;;;44942:70;;;;-1:-1:-1;;;44942:70:0;;10132:2:1;44942:70:0;;;10114:21:1;10171:2;10151:18;;;10144:30;-1:-1:-1;;;10190:18:1;;;10183:49;10249:18;;44942:70:0;9930:343:1;44942:70:0;45051:10;45025:9;45037:25;;;:13;:25;;;;;;45078:6;;45037:25;;;;;45078:6;45077:7;45069:43;;;;-1:-1:-1;;;45069:43:0;;9364:2:1;45069:43:0;;;9346:21:1;9403:2;9383:18;;;9376:30;9442:25;9422:18;;;9415:53;9485:18;;45069:43:0;9162:347:1;45069:43:0;45143:9;;;;;;;;;45128:24;;;;45125:360;;;45195:11;45188:18;;:4;;:18;;;;:::i;:::-;45175:9;:31;;45167:63;;;;-1:-1:-1;;;45167:63:0;;10480:2:1;45167:63:0;;;10462:21:1;10519:2;10499:18;;;10492:30;-1:-1:-1;;;10538:18:1;;;10531:49;10597:18;;45167:63:0;10278:343:1;45167:63:0;45268:22;;;;45246:18;45261:3;45246:11;:18;:::i;:::-;:44;;;;45238:93;;;;-1:-1:-1;;;45238:93:0;;8598:2:1;45238:93:0;;;8580:21:1;8637:2;8617:18;;;8610:30;8676:34;8656:18;;;8649:62;-1:-1:-1;;;8727:18:1;;;8720:34;8771:19;;45238:93:0;8396:400:1;45238:93:0;45125:360;;;45398:33;;;;;;;45375:18;45390:3;45375:11;:18;:::i;:::-;:56;;;;45367:110;;;;-1:-1:-1;;;45367:110:0;;8188:2:1;45367:110:0;;;8170:21:1;8227:2;8207:18;;;8200:30;8266:34;8246:18;;;8239:62;-1:-1:-1;;;8317:18:1;;;8310:39;8366:19;;45367:110:0;7986:405:1;45367:110:0;45493:35;45503:10;45516:11;45493:35;;:9;:35::i;:::-;45566:18;45581:3;45566:11;:18;:::i;:::-;45552:10;45538:25;;;;:13;:25;;;;;:46;;-1:-1:-1;;45538:46:0;;;;;;;;;;;;-1:-1:-1;;;44834:809:0:o;24812:206::-;24876:7;-1:-1:-1;;;;;24900:19:0;;24896:60;;24928:28;;-1:-1:-1;;;24928:28:0;;;;;;;;;;;24896:60;-1:-1:-1;;;;;;24982:19:0;;;;;:12;:19;;;;;:27;;;;24812:206::o;43265:103::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;43330:30:::1;43357:1;43330:18;:30::i;:::-;43265:103::o:0;27725:104::-;27781:13;27814:7;27807:14;;;;;:::i;29335:287::-;-1:-1:-1;;;;;29434:24:0;;2918:10;29434:24;29430:54;;;29467:17;;-1:-1:-1;;;29467:17:0;;;;;;;;;;;29430:54;2918:10;29497:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29497:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29497:53:0;;;;;;;;;;29566:48;;7303:41:1;;;29497:42:0;;2918:10;29566:48;;7276:18:1;29566:48:0;;;;;;;29335:287;;:::o;30421:369::-;30588:28;30598:4;30604:2;30608:7;30588:9;:28::i;:::-;-1:-1:-1;;;;;30631:13:0;;4580:19;:23;;30631:76;;;;;30651:56;30682:4;30688:2;30692:7;30701:5;30651:30;:56::i;:::-;30650:57;30631:76;30627:156;;;30731:40;;-1:-1:-1;;;30731:40:0;;;;;;;;;;;30627:156;30421:369;;;;:::o;46445:106::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;46523:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;45992:440::-:0;46091:13;46132:17;46140:8;46132:7;:17::i;:::-;46116:98;;;;-1:-1:-1;;;46116:98:0;;9716:2:1;46116:98:0;;;9698:21:1;9755:2;9735:18;;;9728:30;9794:34;9774:18;;;9767:62;-1:-1:-1;;;9845:18:1;;;9838:45;9900:19;;46116:98:0;9514:411:1;46116:98:0;46241:28;46272:10;:8;:10::i;:::-;46241:41;;46327:1;46302:14;46296:28;:32;:130;;;;;;;;;;;;;;;;;46364:14;46380:19;:8;:17;:19::i;:::-;46401:9;46347:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46296:130;46289:137;45992:440;-1:-1:-1;;;45992:440:0:o;44346:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43523:201::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43612:22:0;::::1;43604:73;;;::::0;-1:-1:-1;;;43604:73:0;;7781:2:1;43604:73:0::1;::::0;::::1;7763:21:1::0;7820:2;7800:18;;;7793:30;7859:34;7839:18;;;7832:62;-1:-1:-1;;;7910:18:1;;;7903:36;7956:19;;43604:73:0::1;7579:402:1::0;43604:73:0::1;43688:28;43707:8;43688:18;:28::i;:::-;43523:201:::0;:::o;31045:187::-;31102:4;31145:7;23549:1;31126:26;;:53;;;;;31166:13;;31156:7;:23;31126:53;:98;;;;-1:-1:-1;;31197:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31197:27:0;;;;31196:28;;31045:187::o;39215:196::-;39330:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39330:29:0;-1:-1:-1;;;;;39330:29:0;;;;;;;;;39375:28;;39330:24;;39375:28;;;;;;;39215:196;;;:::o;34158:2130::-;34273:35;34311:21;34324:7;34311:12;:21::i;:::-;34273:59;;34371:4;-1:-1:-1;;;;;34349:26:0;:13;:18;;;-1:-1:-1;;;;;34349:26:0;;34345:67;;34384:28;;-1:-1:-1;;;34384:28:0;;;;;;;;;;;34345:67;34425:22;2918:10;-1:-1:-1;;;;;34451:20:0;;;;:73;;-1:-1:-1;34488:36:0;34505:4;2918:10;29693:164;:::i;34488:36::-;34451:126;;;-1:-1:-1;2918:10:0;34541:20;34553:7;34541:11;:20::i;:::-;-1:-1:-1;;;;;34541:36:0;;34451:126;34425:153;;34596:17;34591:66;;34622:35;;-1:-1:-1;;;34622:35:0;;;;;;;;;;;34591:66;-1:-1:-1;;;;;34672:16:0;;34668:52;;34697:23;;-1:-1:-1;;;34697:23:0;;;;;;;;;;;34668:52;34841:35;34858:1;34862:7;34871:4;34841:8;:35::i;:::-;-1:-1:-1;;;;;35172:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35172:31:0;;;;;;;-1:-1:-1;;35172:31:0;;;;;;;35218:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35218:29:0;;;;;;;;;;;35298:20;;;:11;:20;;;;;;35333:18;;-1:-1:-1;;;;;;35366:49:0;;;;-1:-1:-1;;;35399:15:0;35366:49;;;;;;;;;;35689:11;;35749:24;;;;;35792:13;;35298:20;;35749:24;;35792:13;35788:384;;36002:13;;35987:11;:28;35983:174;;36040:20;;36109:28;;;;36083:54;;-1:-1:-1;;;36083:54:0;-1:-1:-1;;;;;;36083:54:0;;;-1:-1:-1;;;;;36040:20:0;;36083:54;;;;35983:174;35147:1036;;;36219:7;36215:2;-1:-1:-1;;;;;36200:27:0;36209:4;-1:-1:-1;;;;;36200:27:0;;;;;;;;;;;36238:42;34262:2026;;34158:2130;;;:::o;31240:104::-;31309:27;31319:2;31323:8;31309:27;;;;;;;;;;;;:9;:27::i;26193:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26304:7:0;;23549:1;26353:23;;:47;;;;;26387:13;;26380:4;:20;26353:47;26349:886;;;26421:31;26455:17;;;:11;:17;;;;;;;;;26421:51;;;;;;;;;-1:-1:-1;;;;;26421:51:0;;;;-1:-1:-1;;;26421:51:0;;;;;;;;;;;-1:-1:-1;;;26421:51:0;;;;;;;;;;;;;;26491:729;;26541:14;;-1:-1:-1;;;;;26541:28:0;;26537:101;;26605:9;26193:1109;-1:-1:-1;;;26193:1109:0:o;26537:101::-;-1:-1:-1;;;26980:6:0;27025:17;;;;:11;:17;;;;;;;;;27013:29;;;;;;;;;-1:-1:-1;;;;;27013:29:0;;;;;-1:-1:-1;;;27013:29:0;;;;;;;;;;;-1:-1:-1;;;27013:29:0;;;;;;;;;;;;;27073:28;27069:109;;27141:9;26193:1109;-1:-1:-1;;;26193:1109:0:o;27069:109::-;26940:261;;;26402:833;26349:886;27263:31;;-1:-1:-1;;;27263:31:0;;;;;;;;;;;43884:191;43977:6;;;-1:-1:-1;;;;;43994:17:0;;;-1:-1:-1;;;;;;43994:17:0;;;;;;;44027:40;;43977:6;;;43994:17;43977:6;;44027:40;;43958:16;;44027:40;43947:128;43884:191;:::o;39903:667::-;40087:72;;-1:-1:-1;;;40087:72:0;;40066:4;;-1:-1:-1;;;;;40087:36:0;;;;;:72;;2918:10;;40138:4;;40144:7;;40153:5;;40087:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40087:72:0;;;;;;;;-1:-1:-1;;40087:72:0;;;;;;;;;;;;:::i;:::-;;;40083:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40321:13:0;;40317:235;;40367:40;;-1:-1:-1;;;40367:40:0;;;;;;;;;;;40317:235;40510:6;40504:13;40495:6;40491:2;40487:15;40480:38;40083:480;-1:-1:-1;;;;;;40206:55:0;-1:-1:-1;;;40206:55:0;;-1:-1:-1;40083:480:0;39903:667;;;;;;:::o;47349:97::-;47402:13;47431:9;47424:16;;;;;:::i;400:723::-;456:13;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;-1:-1:-1;;;704:10:0;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;990:56:0;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;31707:163;31830:32;31836:2;31840:8;31850:5;31857:4;32268:20;32291:13;-1:-1:-1;;;;;32319:16:0;;32315:48;;32344:19;;-1:-1:-1;;;32344:19:0;;;;;;;;;;;32315:48;32378:13;32374:44;;32400:18;;-1:-1:-1;;;32400:18:0;;;;;;;;;;;32374:44;-1:-1:-1;;;;;32769:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32828:49:0;;32769:44;;;;;;;;32828:49;;;;-1:-1:-1;;32769:44:0;;;;;;32828:49;;;;;;;;;;;;;;;;32894:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32944:66:0;;;;-1:-1:-1;;;32994:15:0;32944:66;;;;;;;;;;32894:25;33091:23;;;33135:4;:23;;;;-1:-1:-1;;;;;;33143:13:0;;4580:19;:23;;33143:15;33131:641;;;33179:314;33210:38;;33235:12;;-1:-1:-1;;;;;33210:38:0;;;33227:1;;33210:38;;33227:1;;33210:38;33276:69;33315:1;33319:2;33323:14;;;;;;33339:5;33276:30;:69::i;:::-;33271:174;;33381:40;;-1:-1:-1;;;33381:40:0;;;;;;;;;;;33271:174;33488:3;33472:12;:19;;33179:314;;33574:12;33557:13;;:29;33553:43;;33588:8;;;33553:43;33131:641;;;33637:120;33668:40;;33693:14;;;;;-1:-1:-1;;;;;33668:40:0;;;33685:1;;33668:40;;33685:1;;33668:40;33752:3;33736:12;:19;;33637:120;;33131:641;-1:-1:-1;33786:13:0;:28;33836:60;30421: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:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:346::-;3925:6;3933;3986:2;3974:9;3965:7;3961:23;3957:32;3954:52;;;4002:1;3999;3992:12;3954:52;4041:9;4028:23;4091:6;4084:5;4080:18;4073:5;4070:29;4060:57;;4113:1;4110;4103:12;4209:180;4268:6;4321:2;4309:9;4300:7;4296:23;4292:32;4289:52;;;4337:1;4334;4327:12;4289:52;-1:-1:-1;4360:23:1;;4209:180;-1:-1:-1;4209:180:1:o;4394:269::-;4451:6;4504:2;4492:9;4483:7;4479:23;4475:32;4472:52;;;4520:1;4517;4510:12;4472:52;4559:9;4546:23;4609:4;4602:5;4598:16;4591:5;4588:27;4578:55;;4629:1;4626;4619:12;4668:257;4709:3;4747:5;4741:12;4774:6;4769:3;4762:19;4790:63;4846:6;4839:4;4834:3;4830:14;4823:4;4816:5;4812:16;4790:63;:::i;:::-;4907:2;4886:15;-1:-1:-1;;4882:29:1;4873:39;;;;4914:4;4869:50;;4668:257;-1:-1:-1;;4668:257:1:o;4930:1527::-;5154:3;5192:6;5186:13;5218:4;5231:51;5275:6;5270:3;5265:2;5257:6;5253:15;5231:51;:::i;:::-;5345:13;;5304:16;;;;5367:55;5345:13;5304:16;5389:15;;;5367:55;:::i;:::-;5511:13;;5444:20;;;5484:1;;5571;5593:18;;;;5646;;;;5673:93;;5751:4;5741:8;5737:19;5725:31;;5673:93;5814:2;5804:8;5801:16;5781:18;5778:40;5775:167;;;-1:-1:-1;;;5841:33:1;;5897:4;5894:1;5887:15;5927:4;5848:3;5915:17;5775:167;5958:18;5985:110;;;;6109:1;6104:328;;;;5951:481;;5985:110;-1:-1:-1;;6020:24:1;;6006:39;;6065:20;;;;-1:-1:-1;5985:110:1;;6104:328;11263:1;11256:14;;;11300:4;11287:18;;6199:1;6213:169;6227:8;6224:1;6221:15;6213:169;;;6309:14;;6294:13;;;6287:37;6352:16;;;;6244:10;;6213:169;;;6217:3;;6413:8;6406:5;6402:20;6395:27;;5951:481;-1:-1:-1;6448:3:1;;4930:1527;-1:-1:-1;;;;;;;;;;;4930:1527:1:o;6670:488::-;-1:-1:-1;;;;;6939:15:1;;;6921:34;;6991:15;;6986:2;6971:18;;6964:43;7038:2;7023:18;;7016:34;;;7086:3;7081:2;7066:18;;7059:31;;;6864:4;;7107:45;;7132:19;;7124:6;7107:45;:::i;:::-;7099:53;6670:488;-1:-1:-1;;;;;;6670:488:1:o;7355:219::-;7504:2;7493:9;7486:21;7467:4;7524:44;7564:2;7553:9;7549:18;7541:6;7524:44;:::i;8801:356::-;9003:2;8985:21;;;9022:18;;;9015:30;9081:34;9076:2;9061:18;;9054:62;9148:2;9133:18;;8801:356::o;11316:224::-;11355:3;11383:6;11416:2;11413:1;11409:10;11446:2;11443:1;11439:10;11477:3;11473:2;11469:12;11464:3;11461:21;11458:47;;;11485:18;;:::i;:::-;11521:13;;11316:224;-1:-1:-1;;;;11316:224:1:o;11545:128::-;11585:3;11616:1;11612:6;11609:1;11606:13;11603:39;;;11622:18;;:::i;:::-;-1:-1:-1;11658:9:1;;11545:128::o;11678:204::-;11716:3;11752:4;11749:1;11745:12;11784:4;11781:1;11777:12;11819:3;11813:4;11809:14;11804:3;11801:23;11798:49;;;11827:18;;:::i;:::-;11863:13;;11678:204;-1:-1:-1;;;11678:204:1:o;11887:120::-;11927:1;11953;11943:35;;11958:18;;:::i;:::-;-1:-1:-1;11992:9:1;;11887:120::o;12012:168::-;12052:7;12118:1;12114;12110:6;12106:14;12103:1;12100:21;12095:1;12088:9;12081:17;12077:45;12074:71;;;12125:18;;:::i;:::-;-1:-1:-1;12165:9:1;;12012:168::o;12185:125::-;12225:4;12253:1;12250;12247:8;12244:34;;;12258:18;;:::i;:::-;-1:-1:-1;12295:9:1;;12185:125::o;12315:258::-;12387:1;12397:113;12411:6;12408:1;12405:13;12397:113;;;12487:11;;;12481:18;12468:11;;;12461:39;12433:2;12426:10;12397:113;;;12528:6;12525:1;12522:13;12519:48;;;-1:-1:-1;;12563:1:1;12545:16;;12538:27;12315:258::o;12578:380::-;12657:1;12653:12;;;;12700;;;12721:61;;12775:4;12767:6;12763:17;12753:27;;12721:61;12828:2;12820:6;12817:14;12797:18;12794:38;12791:161;;;12874:10;12869:3;12865:20;12862:1;12855:31;12909:4;12906:1;12899:15;12937:4;12934:1;12927:15;12791:161;;12578:380;;;:::o;12963:135::-;13002:3;-1:-1:-1;;13023:17:1;;13020:43;;;13043:18;;:::i;:::-;-1:-1:-1;13090:1:1;13079:13;;12963:135::o;13103:112::-;13135:1;13161;13151:35;;13166:18;;:::i;:::-;-1:-1:-1;13200:9:1;;13103:112::o;13220:127::-;13281:10;13276:3;13272:20;13269:1;13262:31;13312:4;13309:1;13302:15;13336:4;13333:1;13326:15;13352:127;13413:10;13408:3;13404:20;13401:1;13394:31;13444:4;13441:1;13434:15;13468:4;13465:1;13458:15;13484:127;13545:10;13540:3;13536:20;13533:1;13526:31;13576:4;13573:1;13566:15;13600:4;13597:1;13590:15;13616:127;13677:10;13672:3;13668:20;13665:1;13658:31;13708:4;13705:1;13698:15;13732:4;13729:1;13722:15;13748:131;-1:-1:-1;;;;;;13822:32:1;;13812:43;;13802:71;;13869:1;13866;13859:12
Swarm Source
ipfs://3c15c7ce55cf92a4fdb3312723f2cb67c4590d0e985da090ec6be2b51c7417f2
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.