Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
151 SSBT
Holders
101
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SSBTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SwapStreetNFT
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-21 */ // 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: @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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @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 {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/NFT.sol pragma solidity ^0.8.13; contract SwapStreetNFT is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; enum MintState { PUBLIC, WHITELIST, CLOSED } uint16 public constant MAX_SUPPLY = 180; uint256 public constant PRICE = 0.01 ether; // price is 0.01 ether. // the base uri for the token string public baseURI; mapping(address => bool) private _whitelisted; mapping(address => bool) private _minted; // the state of whether minting is allowed. MintState private mintingState = MintState.CLOSED; constructor() ERC721A("SwapStreet Beta Tester", "SSBT") {} /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal override view virtual returns (uint256) { return 1; } function setBaseURI(string calldata _uri) external onlyOwner { baseURI = _uri; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, tokenId.toString(), ".json")) : ""; } modifier mintOpen() { require(mintingState != MintState.CLOSED, "minting not active."); _; } modifier whitelistOnly() { require(mintingState == MintState.WHITELIST); require(_whitelisted[msg.sender], "not whitelisted"); _; } function addWhitelist(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _whitelisted[addresses[i]] = true; } } function removeWhitelist(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _whitelisted[addresses[i]] = false; } } function ownerMint(uint16 amount) external onlyOwner { uint256 totalSupply = totalSupply(); // ensure minting the amount entered would not mint over the max supply require( totalSupply + amount < MAX_SUPPLY, "mint amount would be out of range." ); _safeMint(_msgSender(), amount); } // whitelist only mint function function mint() external payable nonReentrant whitelistOnly { require(!_minted[msg.sender], "already minted."); // ensure minting the amount entered would not mint over the max supply require( totalSupply() < MAX_SUPPLY, "mint amount would be out of range." ); // ensure enough ether was sent - don't allow for overpayment require(msg.value == PRICE, "not enough ether sent"); _safeMint(msg.sender, 1); _minted[msg.sender] = true; } // toggles the state of mint function setMintingState(MintState state) external onlyOwner { mintingState = state; } }
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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addWhitelist","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"uint16","name":"amount","type":"uint16"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum SwapStreetNFT.MintState","name":"state","type":"uint8"}],"name":"setMintingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600d805460ff191660021790553480156200001e57600080fd5b50604080518082018252601681527f537761705374726565742042657461205465737465720000000000000000000060208083019182528351808501909452600484526314d4d09560e21b908401528151919291620000809160029162000106565b5080516200009690600390602084019062000106565b5050600160005550620000a933620000b4565b6001600955620001e8565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011490620001ac565b90600052602060002090601f01602090048101928262000138576000855562000183565b82601f106200015357805160ff191683800117855562000183565b8280016001018555821562000183579182015b828111156200018357825182559160200191906001019062000166565b506200019192915062000195565b5090565b5b8082111562000191576000815560010162000196565b600181811c90821680620001c157607f821691505b602082108103620001e257634e487b7160e01b600052602260045260246000fd5b50919050565b611ef580620001f86000396000f3fe6080604052600436106101a15760003560e01c80636c0360eb116100e1578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610466578063edac985b146104af578063f2fde38b146104cf578063fd52bd76146104ef57600080fd5b8063a22cb46514610406578063b88d4fde14610426578063c87b56dd1461044657600080fd5b80638d859f3e116100bb5780638d859f3e146103b85780638da5cb5b146103d357806395d89b41146103f157600080fd5b80636c0360eb1461036e57806370a0823114610383578063715018a6146103a357600080fd5b8063232452161161014e57806336e8942f1161012857806336e8942f146102ee57806342842e0e1461030e57806355f804b31461032e5780636352211e1461034e57600080fd5b8063232452161461028657806323b872dd146102a657806332cb6b0c146102c657600080fd5b8063095ea7b31161017f578063095ea7b3146102355780631249c58b1461025757806318160ddd1461025f57600080fd5b806301ffc9a7146101a657806306fdde03146101db578063081812fc146101fd575b600080fd5b3480156101b257600080fd5b506101c66101c13660046118ae565b61050f565b60405190151581526020015b60405180910390f35b3480156101e757600080fd5b506101f0610561565b6040516101d2919061192a565b34801561020957600080fd5b5061021d61021836600461193d565b6105f3565b6040516001600160a01b0390911681526020016101d2565b34801561024157600080fd5b50610255610250366004611972565b610637565b005b6102556106c4565b34801561026b57600080fd5b5060015460005403600019015b6040519081526020016101d2565b34801561029257600080fd5b506102556102a136600461199c565b6108ec565b3480156102b257600080fd5b506102556102c1366004611a11565b6109a6565b3480156102d257600080fd5b506102db60b481565b60405161ffff90911681526020016101d2565b3480156102fa57600080fd5b50610255610309366004611a4d565b6109b1565b34801561031a57600080fd5b50610255610329366004611a11565b610a8a565b34801561033a57600080fd5b50610255610349366004611a71565b610aa5565b34801561035a57600080fd5b5061021d61036936600461193d565b610af9565b34801561037a57600080fd5b506101f0610b0b565b34801561038f57600080fd5b5061027861039e366004611ad1565b610b99565b3480156103af57600080fd5b50610255610be8565b3480156103c457600080fd5b50610278662386f26fc1000081565b3480156103df57600080fd5b506008546001600160a01b031661021d565b3480156103fd57600080fd5b506101f0610c3c565b34801561041257600080fd5b50610255610421366004611aec565b610c4b565b34801561043257600080fd5b50610255610441366004611b3e565b610ce0565b34801561045257600080fd5b506101f061046136600461193d565b610d31565b34801561047257600080fd5b506101c6610481366004611c1a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104bb57600080fd5b506102556104ca36600461199c565b610e0a565b3480156104db57600080fd5b506102556104ea366004611ad1565b610ec4565b3480156104fb57600080fd5b5061025561050a366004611c4d565b610f7d565b60006001600160e01b031982166380ac58cd60e01b148061054057506001600160e01b03198216635b5e139f60e01b145b8061055b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461057090611c6e565b80601f016020809104026020016040519081016040528092919081815260200182805461059c90611c6e565b80156105e95780601f106105be576101008083540402835291602001916105e9565b820191906000526020600020905b8154815290600101906020018083116105cc57829003601f168201915b5050505050905090565b60006105fe82610fec565b61061b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061064282610af9565b9050806001600160a01b0316836001600160a01b0316036106765760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061069657506106948133610481565b155b156106b4576040516367d9dca160e11b815260040160405180910390fd5b6106bf838383611025565b505050565b60026009540361071b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556001600d5460ff16600281111561073957610739611ca8565b1461074357600080fd5b336000908152600b602052604090205460ff166107a25760405162461bcd60e51b815260206004820152600f60248201527f6e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610712565b336000908152600c602052604090205460ff16156108025760405162461bcd60e51b815260206004820152600f60248201527f616c7265616479206d696e7465642e00000000000000000000000000000000006044820152606401610712565b60015460005460b491900360001901106108695760405162461bcd60e51b815260206004820152602260248201527f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e67604482015261329760f11b6064820152608401610712565b662386f26fc1000034146108bf5760405162461bcd60e51b815260206004820152601560248201527f6e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610712565b6108ca33600161108e565b336000908152600c60205260409020805460ff19166001908117909155600955565b6008546001600160a01b031633146109345760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b60005b818110156106bf576000600b600085858581811061095757610957611cbe565b905060200201602081019061096c9190611ad1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061099e81611cea565b915050610937565b6106bf8383836110a8565b6008546001600160a01b031633146109f95760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b6000610a0e6001546000546000199190030190565b905060b4610a2061ffff841683611d03565b10610a785760405162461bcd60e51b815260206004820152602260248201527f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e67604482015261329760f11b6064820152608401610712565b610a86338361ffff1661108e565b5050565b6106bf83838360405180602001604052806000815250610ce0565b6008546001600160a01b03163314610aed5760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b6106bf600a83836117ff565b6000610b0482611298565b5192915050565b600a8054610b1890611c6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4490611c6e565b8015610b915780601f10610b6657610100808354040283529160200191610b91565b820191906000526020600020905b815481529060010190602001808311610b7457829003601f168201915b505050505081565b60006001600160a01b038216610bc2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c305760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b610c3a60006113c1565b565b60606003805461057090611c6e565b336001600160a01b03831603610c745760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ceb8484846110a8565b6001600160a01b0383163b15158015610d0d5750610d0b84848484611420565b155b15610d2b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d3c82610fec565b610dae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610712565b6000600a8054610dbd90611c6e565b905011610dd9576040518060200160405280600081525061055b565b600a610de48361150c565b604051602001610df5929190611d37565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610e525760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b60005b818110156106bf576001600b6000858585818110610e7557610e75611cbe565b9050602002016020810190610e8a9190611ad1565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610ebc81611cea565b915050610e55565b6008546001600160a01b03163314610f0c5760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b6001600160a01b038116610f715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610712565b610f7a816113c1565b50565b6008546001600160a01b03163314610fc55760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b600d805482919060ff19166001836002811115610fe457610fe4611ca8565b021790555050565b600081600111158015611000575060005482105b801561055b575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a86828260405180602001604052806000815250611625565b60006110b382611298565b9050836001600160a01b031681600001516001600160a01b0316146110ea5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061110857506111088533610481565b80611123575033611118846105f3565b6001600160a01b0316145b90508061114357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661116a57604051633a954ecd60e21b815260040160405180910390fd5b61117660008487611025565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661124c57600054821461124c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156112c8575060005481105b156113a857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113a65780516001600160a01b03161561133c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113a1579392505050565b61133c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611455903390899088908890600401611df1565b6020604051808303816000875af1925050508015611490575060408051601f3d908101601f1916820190925261148d91810190611e2d565b60015b6114ee573d8080156114be576040519150601f19603f3d011682016040523d82523d6000602084013e6114c3565b606091505b5080516000036114e6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115335750506040805180820190915260018152600360fc1b602082015290565b8160005b811561155d578061154781611cea565b91506115569050600a83611e60565b9150611537565b60008167ffffffffffffffff81111561157857611578611b28565b6040519080825280601f01601f1916602001820160405280156115a2576020820181803683370190505b5090505b8415611504576115b7600183611e74565b91506115c4600a86611e8b565b6115cf906030611d03565b60f81b8183815181106115e4576115e4611cbe565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061161e600a86611e60565b94506115a6565b6106bf83838360016000546001600160a01b03851661165657604051622e076360e81b815260040160405180910390fd5b836000036116775760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561172957506001600160a01b0387163b15155b156117b1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461177a6000888480600101955088611420565b611797576040516368d2bf6b60e11b815260040160405180910390fd5b80820361172f5782600054146117ac57600080fd5b6117f6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036117b2575b50600055611291565b82805461180b90611c6e565b90600052602060002090601f01602090048101928261182d5760008555611873565b82601f106118465782800160ff19823516178555611873565b82800160010185558215611873579182015b82811115611873578235825591602001919060010190611858565b5061187f929150611883565b5090565b5b8082111561187f5760008155600101611884565b6001600160e01b031981168114610f7a57600080fd5b6000602082840312156118c057600080fd5b81356118cb81611898565b9392505050565b60005b838110156118ed5781810151838201526020016118d5565b83811115610d2b5750506000910152565b600081518084526119168160208601602086016118d2565b601f01601f19169290920160200192915050565b6020815260006118cb60208301846118fe565b60006020828403121561194f57600080fd5b5035919050565b80356001600160a01b038116811461196d57600080fd5b919050565b6000806040838503121561198557600080fd5b61198e83611956565b946020939093013593505050565b600080602083850312156119af57600080fd5b823567ffffffffffffffff808211156119c757600080fd5b818501915085601f8301126119db57600080fd5b8135818111156119ea57600080fd5b8660208260051b85010111156119ff57600080fd5b60209290920196919550909350505050565b600080600060608486031215611a2657600080fd5b611a2f84611956565b9250611a3d60208501611956565b9150604084013590509250925092565b600060208284031215611a5f57600080fd5b813561ffff811681146118cb57600080fd5b60008060208385031215611a8457600080fd5b823567ffffffffffffffff80821115611a9c57600080fd5b818501915085601f830112611ab057600080fd5b813581811115611abf57600080fd5b8660208285010111156119ff57600080fd5b600060208284031215611ae357600080fd5b6118cb82611956565b60008060408385031215611aff57600080fd5b611b0883611956565b915060208301358015158114611b1d57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b5457600080fd5b611b5d85611956565b9350611b6b60208601611956565b925060408501359150606085013567ffffffffffffffff80821115611b8f57600080fd5b818701915087601f830112611ba357600080fd5b813581811115611bb557611bb5611b28565b604051601f8201601f19908116603f01168101908382118183101715611bdd57611bdd611b28565b816040528281528a6020848701011115611bf657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c2d57600080fd5b611c3683611956565b9150611c4460208401611956565b90509250929050565b600060208284031215611c5f57600080fd5b8135600381106118cb57600080fd5b600181811c90821680611c8257607f821691505b602082108103611ca257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611cfc57611cfc611cd4565b5060010190565b60008219821115611d1657611d16611cd4565b500190565b60008151611d2d8185602086016118d2565b9290920192915050565b600080845481600182811c915080831680611d5357607f831692505b60208084108203611d7257634e487b7160e01b86526022600452602486fd5b818015611d865760018114611d9757611dc4565b60ff19861689528489019650611dc4565b60008b81526020902060005b86811015611dbc5781548b820152908501908301611da3565b505084890196505b505050505050611de8611dd78286611d1b565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611e2360808301846118fe565b9695505050505050565b600060208284031215611e3f57600080fd5b81516118cb81611898565b634e487b7160e01b600052601260045260246000fd5b600082611e6f57611e6f611e4a565b500490565b600082821015611e8657611e86611cd4565b500390565b600082611e9a57611e9a611e4a565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212207272adaef04476a04dce1d6f61b4a6a9ca8905c2dfbd1f414b8f030a66f9ae9764736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106101a15760003560e01c80636c0360eb116100e1578063a22cb4651161008a578063e985e9c511610064578063e985e9c514610466578063edac985b146104af578063f2fde38b146104cf578063fd52bd76146104ef57600080fd5b8063a22cb46514610406578063b88d4fde14610426578063c87b56dd1461044657600080fd5b80638d859f3e116100bb5780638d859f3e146103b85780638da5cb5b146103d357806395d89b41146103f157600080fd5b80636c0360eb1461036e57806370a0823114610383578063715018a6146103a357600080fd5b8063232452161161014e57806336e8942f1161012857806336e8942f146102ee57806342842e0e1461030e57806355f804b31461032e5780636352211e1461034e57600080fd5b8063232452161461028657806323b872dd146102a657806332cb6b0c146102c657600080fd5b8063095ea7b31161017f578063095ea7b3146102355780631249c58b1461025757806318160ddd1461025f57600080fd5b806301ffc9a7146101a657806306fdde03146101db578063081812fc146101fd575b600080fd5b3480156101b257600080fd5b506101c66101c13660046118ae565b61050f565b60405190151581526020015b60405180910390f35b3480156101e757600080fd5b506101f0610561565b6040516101d2919061192a565b34801561020957600080fd5b5061021d61021836600461193d565b6105f3565b6040516001600160a01b0390911681526020016101d2565b34801561024157600080fd5b50610255610250366004611972565b610637565b005b6102556106c4565b34801561026b57600080fd5b5060015460005403600019015b6040519081526020016101d2565b34801561029257600080fd5b506102556102a136600461199c565b6108ec565b3480156102b257600080fd5b506102556102c1366004611a11565b6109a6565b3480156102d257600080fd5b506102db60b481565b60405161ffff90911681526020016101d2565b3480156102fa57600080fd5b50610255610309366004611a4d565b6109b1565b34801561031a57600080fd5b50610255610329366004611a11565b610a8a565b34801561033a57600080fd5b50610255610349366004611a71565b610aa5565b34801561035a57600080fd5b5061021d61036936600461193d565b610af9565b34801561037a57600080fd5b506101f0610b0b565b34801561038f57600080fd5b5061027861039e366004611ad1565b610b99565b3480156103af57600080fd5b50610255610be8565b3480156103c457600080fd5b50610278662386f26fc1000081565b3480156103df57600080fd5b506008546001600160a01b031661021d565b3480156103fd57600080fd5b506101f0610c3c565b34801561041257600080fd5b50610255610421366004611aec565b610c4b565b34801561043257600080fd5b50610255610441366004611b3e565b610ce0565b34801561045257600080fd5b506101f061046136600461193d565b610d31565b34801561047257600080fd5b506101c6610481366004611c1a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104bb57600080fd5b506102556104ca36600461199c565b610e0a565b3480156104db57600080fd5b506102556104ea366004611ad1565b610ec4565b3480156104fb57600080fd5b5061025561050a366004611c4d565b610f7d565b60006001600160e01b031982166380ac58cd60e01b148061054057506001600160e01b03198216635b5e139f60e01b145b8061055b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461057090611c6e565b80601f016020809104026020016040519081016040528092919081815260200182805461059c90611c6e565b80156105e95780601f106105be576101008083540402835291602001916105e9565b820191906000526020600020905b8154815290600101906020018083116105cc57829003601f168201915b5050505050905090565b60006105fe82610fec565b61061b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061064282610af9565b9050806001600160a01b0316836001600160a01b0316036106765760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061069657506106948133610481565b155b156106b4576040516367d9dca160e11b815260040160405180910390fd5b6106bf838383611025565b505050565b60026009540361071b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026009556001600d5460ff16600281111561073957610739611ca8565b1461074357600080fd5b336000908152600b602052604090205460ff166107a25760405162461bcd60e51b815260206004820152600f60248201527f6e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610712565b336000908152600c602052604090205460ff16156108025760405162461bcd60e51b815260206004820152600f60248201527f616c7265616479206d696e7465642e00000000000000000000000000000000006044820152606401610712565b60015460005460b491900360001901106108695760405162461bcd60e51b815260206004820152602260248201527f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e67604482015261329760f11b6064820152608401610712565b662386f26fc1000034146108bf5760405162461bcd60e51b815260206004820152601560248201527f6e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401610712565b6108ca33600161108e565b336000908152600c60205260409020805460ff19166001908117909155600955565b6008546001600160a01b031633146109345760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b60005b818110156106bf576000600b600085858581811061095757610957611cbe565b905060200201602081019061096c9190611ad1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061099e81611cea565b915050610937565b6106bf8383836110a8565b6008546001600160a01b031633146109f95760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b6000610a0e6001546000546000199190030190565b905060b4610a2061ffff841683611d03565b10610a785760405162461bcd60e51b815260206004820152602260248201527f6d696e7420616d6f756e7420776f756c64206265206f7574206f662072616e67604482015261329760f11b6064820152608401610712565b610a86338361ffff1661108e565b5050565b6106bf83838360405180602001604052806000815250610ce0565b6008546001600160a01b03163314610aed5760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b6106bf600a83836117ff565b6000610b0482611298565b5192915050565b600a8054610b1890611c6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4490611c6e565b8015610b915780601f10610b6657610100808354040283529160200191610b91565b820191906000526020600020905b815481529060010190602001808311610b7457829003601f168201915b505050505081565b60006001600160a01b038216610bc2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c305760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b610c3a60006113c1565b565b60606003805461057090611c6e565b336001600160a01b03831603610c745760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ceb8484846110a8565b6001600160a01b0383163b15158015610d0d5750610d0b84848484611420565b155b15610d2b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d3c82610fec565b610dae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610712565b6000600a8054610dbd90611c6e565b905011610dd9576040518060200160405280600081525061055b565b600a610de48361150c565b604051602001610df5929190611d37565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610e525760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b60005b818110156106bf576001600b6000858585818110610e7557610e75611cbe565b9050602002016020810190610e8a9190611ad1565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610ebc81611cea565b915050610e55565b6008546001600160a01b03163314610f0c5760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b6001600160a01b038116610f715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610712565b610f7a816113c1565b50565b6008546001600160a01b03163314610fc55760405162461bcd60e51b81526020600482018190526024820152600080516020611ea08339815191526044820152606401610712565b600d805482919060ff19166001836002811115610fe457610fe4611ca8565b021790555050565b600081600111158015611000575060005482105b801561055b575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a86828260405180602001604052806000815250611625565b60006110b382611298565b9050836001600160a01b031681600001516001600160a01b0316146110ea5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061110857506111088533610481565b80611123575033611118846105f3565b6001600160a01b0316145b90508061114357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661116a57604051633a954ecd60e21b815260040160405180910390fd5b61117660008487611025565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661124c57600054821461124c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156112c8575060005481105b156113a857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113a65780516001600160a01b03161561133c579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113a1579392505050565b61133c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611455903390899088908890600401611df1565b6020604051808303816000875af1925050508015611490575060408051601f3d908101601f1916820190925261148d91810190611e2d565b60015b6114ee573d8080156114be576040519150601f19603f3d011682016040523d82523d6000602084013e6114c3565b606091505b5080516000036114e6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115335750506040805180820190915260018152600360fc1b602082015290565b8160005b811561155d578061154781611cea565b91506115569050600a83611e60565b9150611537565b60008167ffffffffffffffff81111561157857611578611b28565b6040519080825280601f01601f1916602001820160405280156115a2576020820181803683370190505b5090505b8415611504576115b7600183611e74565b91506115c4600a86611e8b565b6115cf906030611d03565b60f81b8183815181106115e4576115e4611cbe565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061161e600a86611e60565b94506115a6565b6106bf83838360016000546001600160a01b03851661165657604051622e076360e81b815260040160405180910390fd5b836000036116775760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561172957506001600160a01b0387163b15155b156117b1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461177a6000888480600101955088611420565b611797576040516368d2bf6b60e11b815260040160405180910390fd5b80820361172f5782600054146117ac57600080fd5b6117f6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036117b2575b50600055611291565b82805461180b90611c6e565b90600052602060002090601f01602090048101928261182d5760008555611873565b82601f106118465782800160ff19823516178555611873565b82800160010185558215611873579182015b82811115611873578235825591602001919060010190611858565b5061187f929150611883565b5090565b5b8082111561187f5760008155600101611884565b6001600160e01b031981168114610f7a57600080fd5b6000602082840312156118c057600080fd5b81356118cb81611898565b9392505050565b60005b838110156118ed5781810151838201526020016118d5565b83811115610d2b5750506000910152565b600081518084526119168160208601602086016118d2565b601f01601f19169290920160200192915050565b6020815260006118cb60208301846118fe565b60006020828403121561194f57600080fd5b5035919050565b80356001600160a01b038116811461196d57600080fd5b919050565b6000806040838503121561198557600080fd5b61198e83611956565b946020939093013593505050565b600080602083850312156119af57600080fd5b823567ffffffffffffffff808211156119c757600080fd5b818501915085601f8301126119db57600080fd5b8135818111156119ea57600080fd5b8660208260051b85010111156119ff57600080fd5b60209290920196919550909350505050565b600080600060608486031215611a2657600080fd5b611a2f84611956565b9250611a3d60208501611956565b9150604084013590509250925092565b600060208284031215611a5f57600080fd5b813561ffff811681146118cb57600080fd5b60008060208385031215611a8457600080fd5b823567ffffffffffffffff80821115611a9c57600080fd5b818501915085601f830112611ab057600080fd5b813581811115611abf57600080fd5b8660208285010111156119ff57600080fd5b600060208284031215611ae357600080fd5b6118cb82611956565b60008060408385031215611aff57600080fd5b611b0883611956565b915060208301358015158114611b1d57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b5457600080fd5b611b5d85611956565b9350611b6b60208601611956565b925060408501359150606085013567ffffffffffffffff80821115611b8f57600080fd5b818701915087601f830112611ba357600080fd5b813581811115611bb557611bb5611b28565b604051601f8201601f19908116603f01168101908382118183101715611bdd57611bdd611b28565b816040528281528a6020848701011115611bf657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c2d57600080fd5b611c3683611956565b9150611c4460208401611956565b90509250929050565b600060208284031215611c5f57600080fd5b8135600381106118cb57600080fd5b600181811c90821680611c8257607f821691505b602082108103611ca257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611cfc57611cfc611cd4565b5060010190565b60008219821115611d1657611d16611cd4565b500190565b60008151611d2d8185602086016118d2565b9290920192915050565b600080845481600182811c915080831680611d5357607f831692505b60208084108203611d7257634e487b7160e01b86526022600452602486fd5b818015611d865760018114611d9757611dc4565b60ff19861689528489019650611dc4565b60008b81526020902060005b86811015611dbc5781548b820152908501908301611da3565b505084890196505b505050505050611de8611dd78286611d1b565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611e2360808301846118fe565b9695505050505050565b600060208284031215611e3f57600080fd5b81516118cb81611898565b634e487b7160e01b600052601260045260246000fd5b600082611e6f57611e6f611e4a565b500490565b600082821015611e8657611e86611cd4565b500390565b600082611e9a57611e9a611e4a565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212207272adaef04476a04dce1d6f61b4a6a9ca8905c2dfbd1f414b8f030a66f9ae9764736f6c634300080d0033
Deployed Bytecode Sourcemap
47534:3300:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27193:305;;;;;;;;;;-1:-1:-1;27193:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27193:305:0;;;;;;;;30306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31809:204::-;;;;;;;;;;-1:-1:-1;31809:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:55:1;;;1696:74;;1684:2;1669:18;31809:204:0;1550:226:1;31372:371:0;;;;;;;;;;-1:-1:-1;31372:371:0;;;;;:::i;:::-;;:::i;:::-;;50152:537;;;:::i;26442:303::-;;;;;;;;;;-1:-1:-1;48364:1:0;26696:12;26486:7;26680:13;:28;-1:-1:-1;;26680:46:0;26442:303;;;2387:25:1;;;2375:2;2360:18;26442:303:0;2241:177:1;49537:200:0;;;;;;;;;;-1:-1:-1;49537:200:0;;;;;:::i;:::-;;:::i;32674:170::-;;;;;;;;;;-1:-1:-1;32674:170:0;;;;;:::i;:::-;;:::i;47719:39::-;;;;;;;;;;;;47755:3;47719:39;;;;;3550:6:1;3538:19;;;3520:38;;3508:2;3493:18;47719:39:0;3376:188:1;49745:362:0;;;;;;;;;;-1:-1:-1;49745:362:0;;;;;:::i;:::-;;:::i;32915:185::-;;;;;;;;;;-1:-1:-1;32915:185:0;;;;;:::i;:::-;;:::i;48381:94::-;;;;;;;;;;-1:-1:-1;48381:94:0;;;;;:::i;:::-;;:::i;30114:125::-;;;;;;;;;;-1:-1:-1;30114:125:0;;;;;:::i;:::-;;:::i;47877:21::-;;;;;;;;;;;;;:::i;27562:206::-;;;;;;;;;;-1:-1:-1;27562:206:0;;;;;:::i;:::-;;:::i;46651:103::-;;;;;;;;;;;;;:::i;47767:42::-;;;;;;;;;;;;47799:10;47767:42;;46000:87;;;;;;;;;;-1:-1:-1;46073:6:0;;-1:-1:-1;;;;;46073:6:0;46000:87;;30475:104;;;;;;;;;;;;;:::i;32085:287::-;;;;;;;;;;-1:-1:-1;32085:287:0;;;;;:::i;:::-;;:::i;33171:369::-;;;;;;;;;;-1:-1:-1;33171:369:0;;;;;:::i;:::-;;:::i;48483:548::-;;;;;;;;;;-1:-1:-1;48483:548:0;;;;;:::i;:::-;;:::i;32443:164::-;;;;;;;;;;-1:-1:-1;32443:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32564:25:0;;;32540:4;32564:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32443:164;49333:196;;;;;;;;;;-1:-1:-1;49333:196:0;;;;;:::i;:::-;;:::i;46909:201::-;;;;;;;;;;-1:-1:-1;46909:201:0;;;;;:::i;:::-;;:::i;50731:100::-;;;;;;;;;;-1:-1:-1;50731:100:0;;;;;:::i;:::-;;:::i;27193:305::-;27295:4;-1:-1:-1;;;;;;27332:40:0;;-1:-1:-1;;;27332:40:0;;:105;;-1:-1:-1;;;;;;;27389:48:0;;-1:-1:-1;;;27389:48:0;27332:105;:158;;;-1:-1:-1;;;;;;;;;;11425:40:0;;;27454:36;27312:178;27193:305;-1:-1:-1;;27193:305:0:o;30306:100::-;30360:13;30393:5;30386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30306:100;:::o;31809:204::-;31877:7;31902:16;31910:7;31902;:16::i;:::-;31897:64;;31927:34;;-1:-1:-1;;;31927:34:0;;;;;;;;;;;31897:64;-1:-1:-1;31981:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31981:24:0;;31809:204::o;31372:371::-;31445:13;31461:24;31477:7;31461:15;:24::i;:::-;31445:40;;31506:5;-1:-1:-1;;;;;31500:11:0;:2;-1:-1:-1;;;;;31500:11:0;;31496:48;;31520:24;;-1:-1:-1;;;31520:24:0;;;;;;;;;;;31496:48;22797:10;-1:-1:-1;;;;;31561:21:0;;;;;;:63;;-1:-1:-1;31587:37:0;31604:5;22797:10;32443:164;:::i;31587:37::-;31586:38;31561:63;31557:138;;;31648:35;;-1:-1:-1;;;31648:35:0;;;;;;;;;;;31557:138;31707:28;31716:2;31720:7;31729:5;31707:8;:28::i;:::-;31434:309;31372:371;;:::o;50152:537::-;21091:1;21689:7;;:19;21681:63;;;;-1:-1:-1;;;21681:63:0;;7388:2:1;21681:63:0;;;7370:21:1;7427:2;7407:18;;;7400:30;7466:33;7446:18;;;7439:61;7517:18;;21681:63:0;;;;;;;;;21091:1;21822:7;:18;49222:19:::1;49206:12;::::0;::::1;;:35;::::0;::::1;;;;;;:::i;:::-;;49198:44;;;::::0;::::1;;49274:10;49261:24;::::0;;;:12:::1;:24;::::0;;;;;::::1;;49253:52;;;::::0;-1:-1:-1;;;49253:52:0;;7880:2:1;49253:52:0::1;::::0;::::1;7862:21:1::0;7919:2;7899:18;;;7892:30;7958:17;7938:18;;;7931:45;7993:18;;49253:52:0::1;7678:339:1::0;49253:52:0::1;50240:10:::2;50232:19;::::0;;;:7:::2;:19;::::0;;;;;::::2;;50231:20;50223:48;;;::::0;-1:-1:-1;;;50223:48:0;;8224:2:1;50223:48:0::2;::::0;::::2;8206:21:1::0;8263:2;8243:18;;;8236:30;8302:17;8282:18;;;8275:45;8337:18;;50223:48:0::2;8022:339:1::0;50223:48:0::2;48364:1:::0;26696:12;26486:7;26680:13;47755:3:::2;::::0;26680:28;;-1:-1:-1;;26680:46:0;50385:26:::2;50363:110;;;::::0;-1:-1:-1;;;50363:110:0;;8568:2:1;50363:110:0::2;::::0;::::2;8550:21:1::0;8607:2;8587:18;;;8580:30;8646:34;8626:18;;;8619:62;-1:-1:-1;;;8697:18:1;;;8690:32;8739:19;;50363:110:0::2;8366:398:1::0;50363:110:0::2;47799:10;50563:9;:18;50555:52;;;::::0;-1:-1:-1;;;50555:52:0;;8971:2:1;50555:52:0::2;::::0;::::2;8953:21:1::0;9010:2;8990:18;;;8983:30;9049:23;9029:18;;;9022:51;9090:18;;50555:52:0::2;8769:345:1::0;50555:52:0::2;50618:24;50628:10;50640:1;50618:9;:24::i;:::-;50663:10;50655:19;::::0;;;:7:::2;:19;::::0;;;;:26;;-1:-1:-1;;50655:26:0::2;50677:4;50655:26:::0;;::::2;::::0;;;22001:7;:22;50152:537::o;49537:200::-;46073:6;;-1:-1:-1;;;;;46073:6:0;22797:10;46220:23;46212:68;;;;-1:-1:-1;;;46212:68:0;;9321:2:1;46212:68:0;;;9303:21:1;;;9340:18;;;9333:30;-1:-1:-1;;;;;;;;;;;9379:18:1;;;9372:62;9451:18;;46212:68:0;9119:356:1;46212:68:0;49627:9:::1;49622:108;49642:20:::0;;::::1;49622:108;;;49713:5;49684:12;:26;49697:9;;49707:1;49697:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49684:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49684:26:0;:34;;-1:-1:-1;;49684:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49664:3;::::1;::::0;::::1;:::i;:::-;;;;49622:108;;32674:170:::0;32808:28;32818:4;32824:2;32828:7;32808:9;:28::i;49745:362::-;46073:6;;-1:-1:-1;;;;;46073:6:0;22797:10;46220:23;46212:68;;;;-1:-1:-1;;;46212:68:0;;9321:2:1;46212:68:0;;;9303:21:1;;;9340:18;;;9333:30;-1:-1:-1;;;;;;;;;;;9379:18:1;;;9372:62;9451:18;;46212:68:0;9119:356:1;46212:68:0;49809:19:::1;49831:13;48364:1:::0;26696:12;26486:7;26680:13;-1:-1:-1;;26680:28:0;;;:46;;26442:303;49831:13:::1;49809:35:::0;-1:-1:-1;47755:3:0::1;49958:20;:33;:20:::0;::::1;49809:35:::0;49958:20:::1;:::i;:::-;:33;49936:117;;;::::0;-1:-1:-1;;;49936:117:0;;8568:2:1;49936:117:0::1;::::0;::::1;8550:21:1::0;8607:2;8587:18;;;8580:30;8646:34;8626:18;;;8619:62;-1:-1:-1;;;8697:18:1;;;8690:32;8739:19;;49936:117:0::1;8366:398:1::0;49936:117:0::1;50068:31;22797:10:::0;50092:6:::1;50068:31;;:9;:31::i;:::-;49798:309;49745:362:::0;:::o;32915:185::-;33053:39;33070:4;33076:2;33080:7;33053:39;;;;;;;;;;;;:16;:39::i;48381:94::-;46073:6;;-1:-1:-1;;;;;46073:6:0;22797:10;46220:23;46212:68;;;;-1:-1:-1;;;46212:68:0;;9321:2:1;46212:68:0;;;9303:21:1;;;9340:18;;;9333:30;-1:-1:-1;;;;;;;;;;;9379:18:1;;;9372:62;9451:18;;46212:68:0;9119:356:1;46212:68:0;48453:14:::1;:7;48463:4:::0;;48453:14:::1;:::i;30114:125::-:0;30178:7;30205:21;30218:7;30205:12;:21::i;:::-;:26;;30114:125;-1:-1:-1;;30114:125:0:o;47877:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27562:206::-;27626:7;-1:-1:-1;;;;;27650:19:0;;27646:60;;27678:28;;-1:-1:-1;;;27678:28:0;;;;;;;;;;;27646:60;-1:-1:-1;;;;;;27732:19:0;;;;;:12;:19;;;;;:27;;;;27562:206::o;46651:103::-;46073:6;;-1:-1:-1;;;;;46073:6:0;22797:10;46220:23;46212:68;;;;-1:-1:-1;;;46212:68:0;;9321:2:1;46212:68:0;;;9303:21:1;;;9340:18;;;9333:30;-1:-1:-1;;;;;;;;;;;9379:18:1;;;9372:62;9451:18;;46212:68:0;9119:356:1;46212:68:0;46716:30:::1;46743:1;46716:18;:30::i;:::-;46651:103::o:0;30475:104::-;30531:13;30564:7;30557:14;;;;;:::i;32085:287::-;22797:10;-1:-1:-1;;;;;32184:24:0;;;32180:54;;32217:17;;-1:-1:-1;;;32217:17:0;;;;;;;;;;;32180:54;22797:10;32247:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32247:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32247:53:0;;;;;;;;;;32316:48;;540:41:1;;;32247:42:0;;22797:10;32316:48;;513:18:1;32316:48:0;;;;;;;32085:287;;:::o;33171:369::-;33338:28;33348:4;33354:2;33358:7;33338:9;:28::i;:::-;-1:-1:-1;;;;;33381:13:0;;1528:19;:23;;33381:76;;;;;33401:56;33432:4;33438:2;33442:7;33451:5;33401:30;:56::i;:::-;33400:57;33381:76;33377:156;;;33481:40;;-1:-1:-1;;;33481:40:0;;;;;;;;;;;33377:156;33171:369;;;;:::o;48483:548::-;48584:13;48637:16;48645:7;48637;:16::i;:::-;48615:113;;;;-1:-1:-1;;;48615:113:0;;10219:2:1;48615:113:0;;;10201:21:1;10258:2;10238:18;;;10231:30;10297:34;10277:18;;;10270:62;10368:17;10348:18;;;10341:45;10403:19;;48615:113:0;10017:411:1;48615:113:0;48772:1;48754:7;48748:21;;;;;:::i;:::-;;;:25;:275;;;;;;;;;;;;;;;;;48889:7;48931:18;:7;:16;:18::i;:::-;48838:154;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48741:282;48483:548;-1:-1:-1;;48483:548:0:o;49333:196::-;46073:6;;-1:-1:-1;;;;;46073:6:0;22797:10;46220:23;46212:68;;;;-1:-1:-1;;;46212:68:0;;9321:2:1;46212:68:0;;;9303:21:1;;;9340:18;;;9333:30;-1:-1:-1;;;;;;;;;;;9379:18:1;;;9372:62;9451:18;;46212:68:0;9119:356:1;46212:68:0;49420:9:::1;49415:107;49435:20:::0;;::::1;49415:107;;;49506:4;49477:12;:26;49490:9;;49500:1;49490:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49477:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49477:26:0;:33;;-1:-1:-1;;49477:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49457:3;::::1;::::0;::::1;:::i;:::-;;;;49415:107;;46909:201:::0;46073:6;;-1:-1:-1;;;;;46073:6:0;22797:10;46220:23;46212:68;;;;-1:-1:-1;;;46212:68:0;;9321:2:1;46212:68:0;;;9303:21:1;;;9340:18;;;9333:30;-1:-1:-1;;;;;;;;;;;9379:18:1;;;9372:62;9451:18;;46212:68:0;9119:356:1;46212:68:0;-1:-1:-1;;;;;46998:22:0;::::1;46990:73;;;::::0;-1:-1:-1;;;46990:73:0;;12375:2:1;46990:73:0::1;::::0;::::1;12357:21:1::0;12414:2;12394:18;;;12387:30;12453:34;12433:18;;;12426:62;-1:-1:-1;;;12504:18:1;;;12497:36;12550:19;;46990:73:0::1;12173:402:1::0;46990:73:0::1;47074:28;47093:8;47074:18;:28::i;:::-;46909:201:::0;:::o;50731:100::-;46073:6;;-1:-1:-1;;;;;46073:6:0;22797:10;46220:23;46212:68;;;;-1:-1:-1;;;46212:68:0;;9321:2:1;46212:68:0;;;9303:21:1;;;9340:18;;;9333:30;-1:-1:-1;;;;;;;;;;;9379:18:1;;;9372:62;9451:18;;46212:68:0;9119:356:1;46212:68:0;50803:12:::1;:20:::0;;50818:5;;50803:12;-1:-1:-1;;50803:20:0::1;::::0;50818:5;50803:20:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;50731:100:::0;:::o;33795:174::-;33852:4;33895:7;48364:1;33876:26;;:53;;;;;33916:13;;33906:7;:23;33876:53;:85;;;;-1:-1:-1;;33934:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33934:27:0;;;;33933:28;;33795:174::o;41952:196::-;42067:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;42067:29:0;-1:-1:-1;;;;;42067:29:0;;;;;;;;;42112:28;;42067:24;;42112:28;;;;;;;41952:196;;;:::o;33977:104::-;34046:27;34056:2;34060:8;34046:27;;;;;;;;;;;;:9;:27::i;36895:2130::-;37010:35;37048:21;37061:7;37048:12;:21::i;:::-;37010:59;;37108:4;-1:-1:-1;;;;;37086:26:0;:13;:18;;;-1:-1:-1;;;;;37086:26:0;;37082:67;;37121:28;;-1:-1:-1;;;37121:28:0;;;;;;;;;;;37082:67;37162:22;22797:10;-1:-1:-1;;;;;37188:20:0;;;;:73;;-1:-1:-1;37225:36:0;37242:4;22797:10;32443:164;:::i;37225:36::-;37188:126;;;-1:-1:-1;22797:10:0;37278:20;37290:7;37278:11;:20::i;:::-;-1:-1:-1;;;;;37278:36:0;;37188:126;37162:153;;37333:17;37328:66;;37359:35;;-1:-1:-1;;;37359:35:0;;;;;;;;;;;37328:66;-1:-1:-1;;;;;37409:16:0;;37405:52;;37434:23;;-1:-1:-1;;;37434:23:0;;;;;;;;;;;37405:52;37578:35;37595:1;37599:7;37608:4;37578:8;:35::i;:::-;-1:-1:-1;;;;;37909:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37909:31:0;;;;;;;-1:-1:-1;;37909:31:0;;;;;;;37955:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37955:29:0;;;;;;;;;;;38035:20;;;:11;:20;;;;;;38070:18;;-1:-1:-1;;;;;;38103:49:0;;;;-1:-1:-1;;;38136:15:0;38103:49;;;;;;;;;;38426:11;;38486:24;;;;;38529:13;;38035:20;;38486:24;;38529:13;38525:384;;38739:13;;38724:11;:28;38720:174;;38777:20;;38846:28;;;;38820:54;;-1:-1:-1;;;38820:54:0;-1:-1:-1;;;;;;38820:54:0;;;-1:-1:-1;;;;;38777:20:0;;38820:54;;;;38720:174;37884:1036;;;38956:7;38952:2;-1:-1:-1;;;;;38937:27:0;38946:4;-1:-1:-1;;;;;38937:27:0;;;;;;;;;;;38975:42;36999:2026;;36895:2130;;;:::o;28943:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29054:7:0;;48364:1;29103:23;;:47;;;;;29137:13;;29130:4;:20;29103:47;29099:886;;;29171:31;29205:17;;;:11;:17;;;;;;;;;29171:51;;;;;;;;;-1:-1:-1;;;;;29171:51:0;;;;-1:-1:-1;;;29171:51:0;;;;;;;;;;;-1:-1:-1;;;29171:51:0;;;;;;;;;;;;;;29241:729;;29291:14;;-1:-1:-1;;;;;29291:28:0;;29287:101;;29355:9;28943:1109;-1:-1:-1;;;28943:1109:0:o;29287:101::-;-1:-1:-1;;;29730:6:0;29775:17;;;;:11;:17;;;;;;;;;29763:29;;;;;;;;;-1:-1:-1;;;;;29763:29:0;;;;;-1:-1:-1;;;29763:29:0;;;;;;;;;;;-1:-1:-1;;;29763:29:0;;;;;;;;;;;;;29823:28;29819:109;;29891:9;28943:1109;-1:-1:-1;;;28943:1109:0:o;29819:109::-;29690:261;;;29152:833;29099:886;30013:31;;-1:-1:-1;;;30013:31:0;;;;;;;;;;;47270:191;47363:6;;;-1:-1:-1;;;;;47380:17:0;;;-1:-1:-1;;47380:17:0;;;;;;;47413:40;;47363:6;;;47380:17;47363:6;;47413:40;;47344:16;;47413:40;47333:128;47270:191;:::o;42640:667::-;42824:72;;-1:-1:-1;;;42824:72:0;;42803:4;;-1:-1:-1;;;;;42824:36:0;;;;;:72;;22797:10;;42875:4;;42881:7;;42890:5;;42824:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42824:72:0;;;;;;;;-1:-1:-1;;42824:72:0;;;;;;;;;;;;:::i;:::-;;;42820:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43058:6;:13;43075:1;43058:18;43054:235;;43104:40;;-1:-1:-1;;;43104:40:0;;;;;;;;;;;43054:235;43247:6;43241:13;43232:6;43228:2;43224:15;43217:38;42820:480;-1:-1:-1;;;;;;42943:55:0;-1:-1:-1;;;42943:55:0;;-1:-1:-1;42820:480:0;42640:667;;;;;;:::o;17520:723::-;17576:13;17797:5;17806:1;17797:10;17793:53;;-1:-1:-1;;17824:10:0;;;;;;;;;;;;-1:-1:-1;;;17824:10:0;;;;;17520:723::o;17793:53::-;17871:5;17856:12;17912:78;17919:9;;17912:78;;17945:8;;;;:::i;:::-;;-1:-1:-1;17968:10:0;;-1:-1:-1;17976:2:0;17968:10;;:::i;:::-;;;17912:78;;;18000:19;18032:6;18022:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18022:17:0;;18000:39;;18050:154;18057:10;;18050:154;;18084:11;18094:1;18084:11;;:::i;:::-;;-1:-1:-1;18153:10:0;18161:2;18153:5;:10;:::i;:::-;18140:24;;:2;:24;:::i;:::-;18127:39;;18110:6;18117;18110:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;18181:11:0;18190:2;18181:11;;:::i;:::-;;;18050:154;;34444:163;34567:32;34573:2;34577:8;34587:5;34594:4;35005:20;35028:13;-1:-1:-1;;;;;35056:16:0;;35052:48;;35081:19;;-1:-1:-1;;;35081:19:0;;;;;;;;;;;35052:48;35115:8;35127:1;35115:13;35111:44;;35137:18;;-1:-1:-1;;;35137:18:0;;;;;;;;;;;35111:44;-1:-1:-1;;;;;35506:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35565:49:0;;35506:44;;;;;;;;35565:49;;;;-1:-1:-1;;35506:44:0;;;;;;35565:49;;;;;;;;;;;;;;;;35631:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35681:66:0;;;;-1:-1:-1;;;35731:15:0;35681:66;;;;;;;;;;35631:25;35828:23;;;35872:4;:23;;;;-1:-1:-1;;;;;;35880:13:0;;1528:19;:23;;35880:15;35868:641;;;35916:314;35947:38;;35972:12;;-1:-1:-1;;;;;35947:38:0;;;35964:1;;35947:38;;35964:1;;35947:38;36013:69;36052:1;36056:2;36060:14;;;;;;36076:5;36013:30;:69::i;:::-;36008:174;;36118:40;;-1:-1:-1;;;36118:40:0;;;;;;;;;;;36008:174;36225:3;36209:12;:19;35916:314;;36311:12;36294:13;;:29;36290:43;;36325:8;;;36290:43;35868:641;;;36374:120;36405:40;;36430:14;;;;;-1:-1:-1;;;;;36405:40:0;;;36422:1;;36405:40;;36422:1;;36405:40;36489:3;36473:12;:19;36374:120;;35868:641;-1:-1:-1;36523:13:0;:28;36573:60;33171:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1781:196::-;1849:20;;-1:-1:-1;;;;;1898:54:1;;1888:65;;1878:93;;1967:1;1964;1957:12;1878:93;1781:196;;;:::o;1982:254::-;2050:6;2058;2111:2;2099:9;2090:7;2086:23;2082:32;2079:52;;;2127:1;2124;2117:12;2079:52;2150:29;2169:9;2150:29;:::i;:::-;2140:39;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1982:254:1:o;2423:615::-;2509:6;2517;2570:2;2558:9;2549:7;2545:23;2541:32;2538:52;;;2586:1;2583;2576:12;2538:52;2626:9;2613:23;2655:18;2696:2;2688:6;2685:14;2682:34;;;2712:1;2709;2702:12;2682:34;2750:6;2739:9;2735:22;2725:32;;2795:7;2788:4;2784:2;2780:13;2776:27;2766:55;;2817:1;2814;2807:12;2766:55;2857:2;2844:16;2883:2;2875:6;2872:14;2869:34;;;2899:1;2896;2889:12;2869:34;2952:7;2947:2;2937:6;2934:1;2930:14;2926:2;2922:23;2918:32;2915:45;2912:65;;;2973:1;2970;2963:12;2912:65;3004:2;2996:11;;;;;3026:6;;-1:-1:-1;2423:615:1;;-1:-1:-1;;;;2423:615:1:o;3043:328::-;3120:6;3128;3136;3189:2;3177:9;3168:7;3164:23;3160:32;3157:52;;;3205:1;3202;3195:12;3157:52;3228:29;3247:9;3228:29;:::i;:::-;3218:39;;3276:38;3310:2;3299:9;3295:18;3276:38;:::i;:::-;3266:48;;3361:2;3350:9;3346:18;3333:32;3323:42;;3043:328;;;;;:::o;3569:272::-;3627:6;3680:2;3668:9;3659:7;3655:23;3651:32;3648:52;;;3696:1;3693;3686:12;3648:52;3735:9;3722:23;3785:6;3778:5;3774:18;3767:5;3764:29;3754:57;;3807:1;3804;3797:12;3846:592;3917:6;3925;3978:2;3966:9;3957:7;3953:23;3949:32;3946:52;;;3994:1;3991;3984:12;3946:52;4034:9;4021:23;4063:18;4104:2;4096:6;4093:14;4090:34;;;4120:1;4117;4110:12;4090:34;4158:6;4147:9;4143:22;4133:32;;4203:7;4196:4;4192:2;4188:13;4184:27;4174:55;;4225:1;4222;4215:12;4174:55;4265:2;4252:16;4291:2;4283:6;4280:14;4277:34;;;4307:1;4304;4297:12;4277:34;4352:7;4347:2;4338:6;4334:2;4330:15;4326:24;4323:37;4320:57;;;4373:1;4370;4363:12;4443:186;4502:6;4555:2;4543:9;4534:7;4530:23;4526:32;4523:52;;;4571:1;4568;4561:12;4523:52;4594:29;4613:9;4594:29;:::i;4634:347::-;4699:6;4707;4760:2;4748:9;4739:7;4735:23;4731:32;4728:52;;;4776:1;4773;4766:12;4728:52;4799:29;4818:9;4799:29;:::i;:::-;4789:39;;4878:2;4867:9;4863:18;4850:32;4925:5;4918:13;4911:21;4904:5;4901:32;4891:60;;4947:1;4944;4937:12;4891:60;4970:5;4960:15;;;4634:347;;;;;:::o;4986:127::-;5047:10;5042:3;5038:20;5035:1;5028:31;5078:4;5075:1;5068:15;5102:4;5099:1;5092:15;5118:1138;5213:6;5221;5229;5237;5290:3;5278:9;5269:7;5265:23;5261:33;5258:53;;;5307:1;5304;5297:12;5258:53;5330:29;5349:9;5330:29;:::i;:::-;5320:39;;5378:38;5412:2;5401:9;5397:18;5378:38;:::i;:::-;5368:48;;5463:2;5452:9;5448:18;5435:32;5425:42;;5518:2;5507:9;5503:18;5490:32;5541:18;5582:2;5574:6;5571:14;5568:34;;;5598:1;5595;5588:12;5568:34;5636:6;5625:9;5621:22;5611:32;;5681:7;5674:4;5670:2;5666:13;5662:27;5652:55;;5703:1;5700;5693:12;5652:55;5739:2;5726:16;5761:2;5757;5754:10;5751:36;;;5767:18;;:::i;:::-;5842:2;5836:9;5810:2;5896:13;;-1:-1:-1;;5892:22:1;;;5916:2;5888:31;5884:40;5872:53;;;5940:18;;;5960:22;;;5937:46;5934:72;;;5986:18;;:::i;:::-;6026:10;6022:2;6015:22;6061:2;6053:6;6046:18;6101:7;6096:2;6091;6087;6083:11;6079:20;6076:33;6073:53;;;6122:1;6119;6112:12;6073:53;6178:2;6173;6169;6165:11;6160:2;6152:6;6148:15;6135:46;6223:1;6218:2;6213;6205:6;6201:15;6197:24;6190:35;6244:6;6234:16;;;;;;;5118:1138;;;;;;;:::o;6261:260::-;6329:6;6337;6390:2;6378:9;6369:7;6365:23;6361:32;6358:52;;;6406:1;6403;6396:12;6358:52;6429:29;6448:9;6429:29;:::i;:::-;6419:39;;6477:38;6511:2;6500:9;6496:18;6477:38;:::i;:::-;6467:48;;6261:260;;;;;:::o;6526:270::-;6599:6;6652:2;6640:9;6631:7;6627:23;6623:32;6620:52;;;6668:1;6665;6658:12;6620:52;6707:9;6694:23;6746:1;6739:5;6736:12;6726:40;;6762:1;6759;6752:12;6801:380;6880:1;6876:12;;;;6923;;;6944:61;;6998:4;6990:6;6986:17;6976:27;;6944:61;7051:2;7043:6;7040:14;7020:18;7017:38;7014:161;;7097:10;7092:3;7088:20;7085:1;7078:31;7132:4;7129:1;7122:15;7160:4;7157:1;7150:15;7014:161;;6801:380;;;:::o;7546:127::-;7607:10;7602:3;7598:20;7595:1;7588:31;7638:4;7635:1;7628:15;7662:4;7659:1;7652:15;9480:127;9541:10;9536:3;9532:20;9529:1;9522:31;9572:4;9569:1;9562:15;9596:4;9593:1;9586:15;9612:127;9673:10;9668:3;9664:20;9661:1;9654:31;9704:4;9701:1;9694:15;9728:4;9725:1;9718:15;9744:135;9783:3;9804:17;;;9801:43;;9824:18;;:::i;:::-;-1:-1:-1;9871:1:1;9860:13;;9744:135::o;9884:128::-;9924:3;9955:1;9951:6;9948:1;9945:13;9942:39;;;9961:18;;:::i;:::-;-1:-1:-1;9997:9:1;;9884:128::o;10559:185::-;10601:3;10639:5;10633:12;10654:52;10699:6;10694:3;10687:4;10680:5;10676:16;10654:52;:::i;:::-;10722:16;;;;;10559:185;-1:-1:-1;;10559:185:1:o;10867:1301::-;11144:3;11173:1;11206:6;11200:13;11236:3;11258:1;11286:9;11282:2;11278:18;11268:28;;11346:2;11335:9;11331:18;11368;11358:61;;11412:4;11404:6;11400:17;11390:27;;11358:61;11438:2;11486;11478:6;11475:14;11455:18;11452:38;11449:165;;-1:-1:-1;;;11513:33:1;;11569:4;11566:1;11559:15;11599:4;11520:3;11587:17;11449:165;11630:18;11657:104;;;;11775:1;11770:320;;;;11623:467;;11657:104;-1:-1:-1;;11690:24:1;;11678:37;;11735:16;;;;-1:-1:-1;11657:104:1;;11770:320;10506:1;10499:14;;;10543:4;10530:18;;11865:1;11879:165;11893:6;11890:1;11887:13;11879:165;;;11971:14;;11958:11;;;11951:35;12014:16;;;;11908:10;;11879:165;;;11883:3;;12073:6;12068:3;12064:16;12057:23;;11623:467;;;;;;;12106:56;12131:30;12157:3;12149:6;12131:30;:::i;:::-;-1:-1:-1;;;10809:20:1;;10854:1;10845:11;;10749:113;12106:56;12099:63;10867:1301;-1:-1:-1;;;;;10867:1301:1:o;12580:523::-;12774:4;-1:-1:-1;;;;;12884:2:1;12876:6;12872:15;12861:9;12854:34;12936:2;12928:6;12924:15;12919:2;12908:9;12904:18;12897:43;;12976:6;12971:2;12960:9;12956:18;12949:34;13019:3;13014:2;13003:9;12999:18;12992:31;13040:57;13092:3;13081:9;13077:19;13069:6;13040:57;:::i;:::-;13032:65;12580:523;-1:-1:-1;;;;;;12580:523:1:o;13108:249::-;13177:6;13230:2;13218:9;13209:7;13205:23;13201:32;13198:52;;;13246:1;13243;13236:12;13198:52;13278:9;13272:16;13297:30;13321:5;13297:30;:::i;13362:127::-;13423:10;13418:3;13414:20;13411:1;13404:31;13454:4;13451:1;13444:15;13478:4;13475:1;13468:15;13494:120;13534:1;13560;13550:35;;13565:18;;:::i;:::-;-1:-1:-1;13599:9:1;;13494:120::o;13619:125::-;13659:4;13687:1;13684;13681:8;13678:34;;;13692:18;;:::i;:::-;-1:-1:-1;13729:9:1;;13619:125::o;13749:112::-;13781:1;13807;13797:35;;13812:18;;:::i;:::-;-1:-1:-1;13846:9:1;;13749:112::o
Swarm Source
ipfs://7272adaef04476a04dce1d6f61b4a6a9ca8905c2dfbd1f414b8f030a66f9ae97
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.