ERC-721
Overview
Max Total Supply
3,058 AE
Holders
600
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 AELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ASCIIEinstein
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; /** * @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/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.19; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.19; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.19; /** * @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); } } pragma solidity ^0.8.19; /** * @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.19; /** * @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.19; /** * @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.19; /** * @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.19; /** * @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.19; /** * @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); } pragma solidity ^0.8.19; 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 {} } pragma solidity ^0.8.19; contract ASCIIEinstein is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; bool public paused; uint256 public free = 0; uint256 public maxMint = 20; string public _baseTokenURI; uint256 public maxFreeMint = 5; uint256 public maxSupply = 5000; uint256 public freeSupply = 3000; uint256 public price = 0.0049 ether; constructor() ERC721A("ASCIIEinstein", "AE") {} function mint(uint256 _mintAmount) public payable nonReentrant { require(!paused, "Paused"); require(totalSupply() + _mintAmount <= maxSupply, "Max"); require(msg.value >= price * _mintAmount, "Insufficient"); require(_mintAmount > 0 && _mintAmount <= maxMint, "Invalid"); _safeMint(_msgSender(), _mintAmount); } function freeMint(uint256 _mintAmount) public nonReentrant { require(!paused, "Paused"); require(free + _mintAmount <= freeSupply, "Exceeded"); require(totalSupply() + _mintAmount <= maxSupply, "Max"); require(_mintAmount > 0 && _mintAmount <= maxFreeMint,"Invalid"); _safeMint(_msgSender(), _mintAmount); free += _mintAmount; } function mintFor(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setPrice(uint256 _price) public onlyOwner { price = _price; } function setMaxMint(uint256 _amount) public onlyOwner { maxMint = _amount; } function setFreeMint(uint256 _amount) public onlyOwner { maxFreeMint = _amount; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setFreeSupply(uint256 _freeSupply) public onlyOwner { freeSupply = _freeSupply; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); return bytes(_baseTokenURI).length > 0 ? string( abi.encodePacked( _baseTokenURI, _tokenId.toString(), ".json" ) ) : ""; } }
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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"free","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600b556014600c556005600e55611388600f55610bb860105566116886276640006011553480156200003757600080fd5b506040518060400160405280600d81526020016c20a9a1a4a4a2b4b739ba32b4b760991b81525060405180604001604052806002815260200161414560f01b81525081600290816200008a9190620001ae565b506003620000998282620001ae565b5050600160005550620000ac33620000b7565b60016009556200027a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013457607f821691505b6020821081036200015557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a957600081815260208120601f850160051c81016020861015620001845750805b601f850160051c820191505b81811015620001a55782815560010162000190565b5050505b505050565b81516001600160401b03811115620001ca57620001ca62000109565b620001e281620001db84546200011f565b846200015b565b602080601f8311600181146200021a5760008415620002015750858301515b600019600386901b1c1916600185901b178555620001a5565b600085815260208120601f198616915b828110156200024b578886015182559484019460019091019084016200022a565b50858210156200026a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611fa5806200028a6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a591252d116100a0578063cfc86f7b1161006f578063cfc86f7b146105c8578063d5abeb01146105dd578063e985e9c5146105f3578063f2fde38b14610613578063f676308a1461063357600080fd5b8063a591252d14610552578063ad62f1ca14610568578063b88d4fde14610588578063c87b56dd146105a857600080fd5b806391b7f5ed116100e757806391b7f5ed146104d457806395d89b41146104f4578063a035b1fe14610509578063a0712d681461051f578063a22cb4651461053257600080fd5b8063715018a61461046b5780637501f741146104805780637c928fe9146104965780638da5cb5b146104b657600080fd5b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146103d15780636352211e146103eb5780636f8b44b01461040b57806370a082311461042b57806370e093691461044b57600080fd5b80633ccfd60b1461035c57806342842e0e14610371578063547520fe1461039157806355f804b3146103b157600080fd5b80631370128e116101e25780631370128e146102c557806316c38b3c146102e957806318160ddd1461030957806323b872dd1461032657806324a6ab0c1461034657600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046118f5565b610653565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106a5565b6040516102409190611969565b34801561027757600080fd5b5061028b61028636600461197c565b610737565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046119b1565b61077b565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c36103043660046119eb565b610808565b34801561031557600080fd5b5060015460005403600019016102db565b34801561033257600080fd5b506102c3610341366004611a06565b61084e565b34801561035257600080fd5b506102db60105481565b34801561036857600080fd5b506102c3610859565b34801561037d57600080fd5b506102c361038c366004611a06565b6108db565b34801561039d57600080fd5b506102c36103ac36600461197c565b6108f6565b3480156103bd57600080fd5b506102c36103cc366004611a42565b610925565b3480156103dd57600080fd5b50600a546102349060ff1681565b3480156103f757600080fd5b5061028b61040636600461197c565b61095c565b34801561041757600080fd5b506102c361042636600461197c565b61096e565b34801561043757600080fd5b506102db610446366004611ab4565b61099d565b34801561045757600080fd5b506102c361046636600461197c565b6109ec565b34801561047757600080fd5b506102c3610a1b565b34801561048c57600080fd5b506102db600c5481565b3480156104a257600080fd5b506102c36104b136600461197c565b610a51565b3480156104c257600080fd5b506008546001600160a01b031661028b565b3480156104e057600080fd5b506102c36104ef36600461197c565b610bef565b34801561050057600080fd5b5061025e610c1e565b34801561051557600080fd5b506102db60115481565b6102c361052d36600461197c565b610c2d565b34801561053e57600080fd5b506102c361054d366004611acf565b610db4565b34801561055e57600080fd5b506102db600e5481565b34801561057457600080fd5b506102c3610583366004611b02565b610e49565b34801561059457600080fd5b506102c36105a3366004611b3b565b610e81565b3480156105b457600080fd5b5061025e6105c336600461197c565b610ed2565b3480156105d457600080fd5b5061025e610f7b565b3480156105e957600080fd5b506102db600f5481565b3480156105ff57600080fd5b5061023461060e366004611c17565b611009565b34801561061f57600080fd5b506102c361062e366004611ab4565b611037565b34801561063f57600080fd5b506102c361064e36600461197c565b6110cf565b60006001600160e01b031982166380ac58cd60e01b148061068457506001600160e01b03198216635b5e139f60e01b145b8061069f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106b490611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546106e090611c41565b801561072d5780601f106107025761010080835404028352916020019161072d565b820191906000526020600020905b81548152906001019060200180831161071057829003601f168201915b5050505050905090565b6000610742826110fe565b61075f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107868261095c565b9050806001600160a01b0316836001600160a01b0316036107ba5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107da57506107d88133611009565b155b156107f8576040516367d9dca160e11b815260040160405180910390fd5b610803838383611137565b505050565b6008546001600160a01b0316331461083b5760405162461bcd60e51b815260040161083290611c7b565b60405180910390fd5b600a805460ff1916911515919091179055565b610803838383611193565b6008546001600160a01b031633146108835760405162461bcd60e51b815260040161083290611c7b565b604051600090339047908381818185875af1925050503d80600081146108c5576040519150601f19603f3d011682016040523d82523d6000602084013e6108ca565b606091505b50509050806108d857600080fd5b50565b61080383838360405180602001604052806000815250610e81565b6008546001600160a01b031633146109205760405162461bcd60e51b815260040161083290611c7b565b600c55565b6008546001600160a01b0316331461094f5760405162461bcd60e51b815260040161083290611c7b565b600d610803828483611cfe565b600061096782611383565b5192915050565b6008546001600160a01b031633146109985760405162461bcd60e51b815260040161083290611c7b565b600f55565b60006001600160a01b0382166109c6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a165760405162461bcd60e51b815260040161083290611c7b565b600e55565b6008546001600160a01b03163314610a455760405162461bcd60e51b815260040161083290611c7b565b610a4f60006114ac565b565b600260095403610aa35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610832565b6002600955600a5460ff1615610ae45760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610832565b60105481600b54610af59190611dd4565b1115610b2e5760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b6044820152606401610832565b600f546001546000548391900360001901610b499190611dd4565b1115610b7d5760405162461bcd60e51b815260206004820152600360248201526209ac2f60eb1b6044820152606401610832565b600081118015610b8f5750600e548111155b610bc55760405162461bcd60e51b8152602060048201526007602482015266125b9d985b1a5960ca1b6044820152606401610832565b610bd0335b826114fe565b80600b6000828254610be29190611dd4565b9091555050600160095550565b6008546001600160a01b03163314610c195760405162461bcd60e51b815260040161083290611c7b565b601155565b6060600380546106b490611c41565b600260095403610c7f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610832565b6002600955600a5460ff1615610cc05760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610832565b600f546001546000548391900360001901610cdb9190611dd4565b1115610d0f5760405162461bcd60e51b815260206004820152600360248201526209ac2f60eb1b6044820152606401610832565b80601154610d1d9190611de7565b341015610d5b5760405162461bcd60e51b815260206004820152600c60248201526b125b9cdd59999a58da595b9d60a21b6044820152606401610832565b600081118015610d6d5750600c548111155b610da35760405162461bcd60e51b8152602060048201526007602482015266125b9d985b1a5960ca1b6044820152606401610832565b610dac33610bca565b506001600955565b336001600160a01b03831603610ddd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e735760405162461bcd60e51b815260040161083290611c7b565b610e7d81836114fe565b5050565b610e8c848484611193565b6001600160a01b0383163b15158015610eae5750610eac84848484611518565b155b15610ecc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610edd826110fe565b610f1f5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b6044820152606401610832565b6000600d8054610f2e90611c41565b905011610f4a576040518060200160405280600081525061069f565b600d610f5583611604565b604051602001610f66929190611dfe565b60405160208183030381529060405292915050565b600d8054610f8890611c41565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb490611c41565b80156110015780601f10610fd657610100808354040283529160200191611001565b820191906000526020600020905b815481529060010190602001808311610fe457829003601f168201915b505050505081565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146110615760405162461bcd60e51b815260040161083290611c7b565b6001600160a01b0381166110c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610832565b6108d8816114ac565b6008546001600160a01b031633146110f95760405162461bcd60e51b815260040161083290611c7b565b601055565b600081600111158015611112575060005482105b801561069f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061119e82611383565b9050836001600160a01b031681600001516001600160a01b0316146111d55760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111f357506111f38533611009565b8061120e57503361120384610737565b6001600160a01b0316145b90508061122e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661125557604051633a954ecd60e21b815260040160405180910390fd5b61126160008487611137565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611337576000548214611337578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156113b3575060005481105b1561149357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114915780516001600160a01b031615611427579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561148c579392505050565b611427565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e7d828260405180602001604052806000815250611705565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061154d903390899088908890600401611e95565b6020604051808303816000875af1925050508015611588575060408051601f3d908101601f1916820190925261158591810190611ed2565b60015b6115e6573d8080156115b6576040519150601f19603f3d011682016040523d82523d6000602084013e6115bb565b606091505b5080516000036115de576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361162b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611655578061163f81611eef565b915061164e9050600a83611f1e565b915061162f565b60008167ffffffffffffffff81111561167057611670611b25565b6040519080825280601f01601f19166020018201604052801561169a576020820181803683370190505b5090505b84156115fc576116af600183611f32565b91506116bc600a86611f45565b6116c7906030611dd4565b60f81b8183815181106116dc576116dc611f59565b60200101906001600160f81b031916908160001a9053506116fe600a86611f1e565b945061169e565b61080383838360016000546001600160a01b03851661173657604051622e076360e81b815260040160405180910390fd5b836000036117575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561180957506001600160a01b0387163b15155b15611891575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461185a6000888480600101955088611518565b611877576040516368d2bf6b60e11b815260040160405180910390fd5b80820361180f57826000541461188c57600080fd5b6118d6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611892575b5060005561137c565b6001600160e01b0319811681146108d857600080fd5b60006020828403121561190757600080fd5b8135611912816118df565b9392505050565b60005b8381101561193457818101518382015260200161191c565b50506000910152565b60008151808452611955816020860160208601611919565b601f01601f19169290920160200192915050565b602081526000611912602083018461193d565b60006020828403121561198e57600080fd5b5035919050565b80356001600160a01b03811681146119ac57600080fd5b919050565b600080604083850312156119c457600080fd5b6119cd83611995565b946020939093013593505050565b803580151581146119ac57600080fd5b6000602082840312156119fd57600080fd5b611912826119db565b600080600060608486031215611a1b57600080fd5b611a2484611995565b9250611a3260208501611995565b9150604084013590509250925092565b60008060208385031215611a5557600080fd5b823567ffffffffffffffff80821115611a6d57600080fd5b818501915085601f830112611a8157600080fd5b813581811115611a9057600080fd5b866020828501011115611aa257600080fd5b60209290920196919550909350505050565b600060208284031215611ac657600080fd5b61191282611995565b60008060408385031215611ae257600080fd5b611aeb83611995565b9150611af9602084016119db565b90509250929050565b60008060408385031215611b1557600080fd5b82359150611af960208401611995565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b5157600080fd5b611b5a85611995565b9350611b6860208601611995565b925060408501359150606085013567ffffffffffffffff80821115611b8c57600080fd5b818701915087601f830112611ba057600080fd5b813581811115611bb257611bb2611b25565b604051601f8201601f19908116603f01168101908382118183101715611bda57611bda611b25565b816040528281528a6020848701011115611bf357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c2a57600080fd5b611c3383611995565b9150611af960208401611995565b600181811c90821680611c5557607f821691505b602082108103611c7557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561080357600081815260208120601f850160051c81016020861015611cd75750805b601f850160051c820191505b81811015611cf657828155600101611ce3565b505050505050565b67ffffffffffffffff831115611d1657611d16611b25565b611d2a83611d248354611c41565b83611cb0565b6000601f841160018114611d5e5760008515611d465750838201355b600019600387901b1c1916600186901b17835561137c565b600083815260209020601f19861690835b82811015611d8f5786850135825560209485019460019092019101611d6f565b5086821015611dac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561069f5761069f611dbe565b808202811582820484141761069f5761069f611dbe565b6000808454611e0c81611c41565b60018281168015611e245760018114611e3957611e68565b60ff1984168752821515830287019450611e68565b8860005260208060002060005b85811015611e5f5781548a820152908401908201611e46565b50505082870194505b505050508351611e7c818360208801611919565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ec89083018461193d565b9695505050505050565b600060208284031215611ee457600080fd5b8151611912816118df565b600060018201611f0157611f01611dbe565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f2d57611f2d611f08565b500490565b8181038181111561069f5761069f611dbe565b600082611f5457611f54611f08565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212205d4e987ee6aa0480950de42a0156b837c0f551e706bc52ba67eeb5104b023c8e64736f6c63430008130033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063a591252d116100a0578063cfc86f7b1161006f578063cfc86f7b146105c8578063d5abeb01146105dd578063e985e9c5146105f3578063f2fde38b14610613578063f676308a1461063357600080fd5b8063a591252d14610552578063ad62f1ca14610568578063b88d4fde14610588578063c87b56dd146105a857600080fd5b806391b7f5ed116100e757806391b7f5ed146104d457806395d89b41146104f4578063a035b1fe14610509578063a0712d681461051f578063a22cb4651461053257600080fd5b8063715018a61461046b5780637501f741146104805780637c928fe9146104965780638da5cb5b146104b657600080fd5b80633ccfd60b1161019b5780635c975abb1161016a5780635c975abb146103d15780636352211e146103eb5780636f8b44b01461040b57806370a082311461042b57806370e093691461044b57600080fd5b80633ccfd60b1461035c57806342842e0e14610371578063547520fe1461039157806355f804b3146103b157600080fd5b80631370128e116101e25780631370128e146102c557806316c38b3c146102e957806318160ddd1461030957806323b872dd1461032657806324a6ab0c1461034657600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046118f5565b610653565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106a5565b6040516102409190611969565b34801561027757600080fd5b5061028b61028636600461197c565b610737565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be3660046119b1565b61077b565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c36103043660046119eb565b610808565b34801561031557600080fd5b5060015460005403600019016102db565b34801561033257600080fd5b506102c3610341366004611a06565b61084e565b34801561035257600080fd5b506102db60105481565b34801561036857600080fd5b506102c3610859565b34801561037d57600080fd5b506102c361038c366004611a06565b6108db565b34801561039d57600080fd5b506102c36103ac36600461197c565b6108f6565b3480156103bd57600080fd5b506102c36103cc366004611a42565b610925565b3480156103dd57600080fd5b50600a546102349060ff1681565b3480156103f757600080fd5b5061028b61040636600461197c565b61095c565b34801561041757600080fd5b506102c361042636600461197c565b61096e565b34801561043757600080fd5b506102db610446366004611ab4565b61099d565b34801561045757600080fd5b506102c361046636600461197c565b6109ec565b34801561047757600080fd5b506102c3610a1b565b34801561048c57600080fd5b506102db600c5481565b3480156104a257600080fd5b506102c36104b136600461197c565b610a51565b3480156104c257600080fd5b506008546001600160a01b031661028b565b3480156104e057600080fd5b506102c36104ef36600461197c565b610bef565b34801561050057600080fd5b5061025e610c1e565b34801561051557600080fd5b506102db60115481565b6102c361052d36600461197c565b610c2d565b34801561053e57600080fd5b506102c361054d366004611acf565b610db4565b34801561055e57600080fd5b506102db600e5481565b34801561057457600080fd5b506102c3610583366004611b02565b610e49565b34801561059457600080fd5b506102c36105a3366004611b3b565b610e81565b3480156105b457600080fd5b5061025e6105c336600461197c565b610ed2565b3480156105d457600080fd5b5061025e610f7b565b3480156105e957600080fd5b506102db600f5481565b3480156105ff57600080fd5b5061023461060e366004611c17565b611009565b34801561061f57600080fd5b506102c361062e366004611ab4565b611037565b34801561063f57600080fd5b506102c361064e36600461197c565b6110cf565b60006001600160e01b031982166380ac58cd60e01b148061068457506001600160e01b03198216635b5e139f60e01b145b8061069f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106b490611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546106e090611c41565b801561072d5780601f106107025761010080835404028352916020019161072d565b820191906000526020600020905b81548152906001019060200180831161071057829003601f168201915b5050505050905090565b6000610742826110fe565b61075f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107868261095c565b9050806001600160a01b0316836001600160a01b0316036107ba5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107da57506107d88133611009565b155b156107f8576040516367d9dca160e11b815260040160405180910390fd5b610803838383611137565b505050565b6008546001600160a01b0316331461083b5760405162461bcd60e51b815260040161083290611c7b565b60405180910390fd5b600a805460ff1916911515919091179055565b610803838383611193565b6008546001600160a01b031633146108835760405162461bcd60e51b815260040161083290611c7b565b604051600090339047908381818185875af1925050503d80600081146108c5576040519150601f19603f3d011682016040523d82523d6000602084013e6108ca565b606091505b50509050806108d857600080fd5b50565b61080383838360405180602001604052806000815250610e81565b6008546001600160a01b031633146109205760405162461bcd60e51b815260040161083290611c7b565b600c55565b6008546001600160a01b0316331461094f5760405162461bcd60e51b815260040161083290611c7b565b600d610803828483611cfe565b600061096782611383565b5192915050565b6008546001600160a01b031633146109985760405162461bcd60e51b815260040161083290611c7b565b600f55565b60006001600160a01b0382166109c6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a165760405162461bcd60e51b815260040161083290611c7b565b600e55565b6008546001600160a01b03163314610a455760405162461bcd60e51b815260040161083290611c7b565b610a4f60006114ac565b565b600260095403610aa35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610832565b6002600955600a5460ff1615610ae45760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610832565b60105481600b54610af59190611dd4565b1115610b2e5760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b6044820152606401610832565b600f546001546000548391900360001901610b499190611dd4565b1115610b7d5760405162461bcd60e51b815260206004820152600360248201526209ac2f60eb1b6044820152606401610832565b600081118015610b8f5750600e548111155b610bc55760405162461bcd60e51b8152602060048201526007602482015266125b9d985b1a5960ca1b6044820152606401610832565b610bd0335b826114fe565b80600b6000828254610be29190611dd4565b9091555050600160095550565b6008546001600160a01b03163314610c195760405162461bcd60e51b815260040161083290611c7b565b601155565b6060600380546106b490611c41565b600260095403610c7f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610832565b6002600955600a5460ff1615610cc05760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610832565b600f546001546000548391900360001901610cdb9190611dd4565b1115610d0f5760405162461bcd60e51b815260206004820152600360248201526209ac2f60eb1b6044820152606401610832565b80601154610d1d9190611de7565b341015610d5b5760405162461bcd60e51b815260206004820152600c60248201526b125b9cdd59999a58da595b9d60a21b6044820152606401610832565b600081118015610d6d5750600c548111155b610da35760405162461bcd60e51b8152602060048201526007602482015266125b9d985b1a5960ca1b6044820152606401610832565b610dac33610bca565b506001600955565b336001600160a01b03831603610ddd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e735760405162461bcd60e51b815260040161083290611c7b565b610e7d81836114fe565b5050565b610e8c848484611193565b6001600160a01b0383163b15158015610eae5750610eac84848484611518565b155b15610ecc576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610edd826110fe565b610f1f5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b6044820152606401610832565b6000600d8054610f2e90611c41565b905011610f4a576040518060200160405280600081525061069f565b600d610f5583611604565b604051602001610f66929190611dfe565b60405160208183030381529060405292915050565b600d8054610f8890611c41565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb490611c41565b80156110015780601f10610fd657610100808354040283529160200191611001565b820191906000526020600020905b815481529060010190602001808311610fe457829003601f168201915b505050505081565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146110615760405162461bcd60e51b815260040161083290611c7b565b6001600160a01b0381166110c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610832565b6108d8816114ac565b6008546001600160a01b031633146110f95760405162461bcd60e51b815260040161083290611c7b565b601055565b600081600111158015611112575060005482105b801561069f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061119e82611383565b9050836001600160a01b031681600001516001600160a01b0316146111d55760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111f357506111f38533611009565b8061120e57503361120384610737565b6001600160a01b0316145b90508061122e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661125557604051633a954ecd60e21b815260040160405180910390fd5b61126160008487611137565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611337576000548214611337578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156113b3575060005481105b1561149357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114915780516001600160a01b031615611427579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561148c579392505050565b611427565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e7d828260405180602001604052806000815250611705565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061154d903390899088908890600401611e95565b6020604051808303816000875af1925050508015611588575060408051601f3d908101601f1916820190925261158591810190611ed2565b60015b6115e6573d8080156115b6576040519150601f19603f3d011682016040523d82523d6000602084013e6115bb565b606091505b5080516000036115de576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608160000361162b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611655578061163f81611eef565b915061164e9050600a83611f1e565b915061162f565b60008167ffffffffffffffff81111561167057611670611b25565b6040519080825280601f01601f19166020018201604052801561169a576020820181803683370190505b5090505b84156115fc576116af600183611f32565b91506116bc600a86611f45565b6116c7906030611dd4565b60f81b8183815181106116dc576116dc611f59565b60200101906001600160f81b031916908160001a9053506116fe600a86611f1e565b945061169e565b61080383838360016000546001600160a01b03851661173657604051622e076360e81b815260040160405180910390fd5b836000036117575760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561180957506001600160a01b0387163b15155b15611891575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461185a6000888480600101955088611518565b611877576040516368d2bf6b60e11b815260040160405180910390fd5b80820361180f57826000541461188c57600080fd5b6118d6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611892575b5060005561137c565b6001600160e01b0319811681146108d857600080fd5b60006020828403121561190757600080fd5b8135611912816118df565b9392505050565b60005b8381101561193457818101518382015260200161191c565b50506000910152565b60008151808452611955816020860160208601611919565b601f01601f19169290920160200192915050565b602081526000611912602083018461193d565b60006020828403121561198e57600080fd5b5035919050565b80356001600160a01b03811681146119ac57600080fd5b919050565b600080604083850312156119c457600080fd5b6119cd83611995565b946020939093013593505050565b803580151581146119ac57600080fd5b6000602082840312156119fd57600080fd5b611912826119db565b600080600060608486031215611a1b57600080fd5b611a2484611995565b9250611a3260208501611995565b9150604084013590509250925092565b60008060208385031215611a5557600080fd5b823567ffffffffffffffff80821115611a6d57600080fd5b818501915085601f830112611a8157600080fd5b813581811115611a9057600080fd5b866020828501011115611aa257600080fd5b60209290920196919550909350505050565b600060208284031215611ac657600080fd5b61191282611995565b60008060408385031215611ae257600080fd5b611aeb83611995565b9150611af9602084016119db565b90509250929050565b60008060408385031215611b1557600080fd5b82359150611af960208401611995565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b5157600080fd5b611b5a85611995565b9350611b6860208601611995565b925060408501359150606085013567ffffffffffffffff80821115611b8c57600080fd5b818701915087601f830112611ba057600080fd5b813581811115611bb257611bb2611b25565b604051601f8201601f19908116603f01168101908382118183101715611bda57611bda611b25565b816040528281528a6020848701011115611bf357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c2a57600080fd5b611c3383611995565b9150611af960208401611995565b600181811c90821680611c5557607f821691505b602082108103611c7557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561080357600081815260208120601f850160051c81016020861015611cd75750805b601f850160051c820191505b81811015611cf657828155600101611ce3565b505050505050565b67ffffffffffffffff831115611d1657611d16611b25565b611d2a83611d248354611c41565b83611cb0565b6000601f841160018114611d5e5760008515611d465750838201355b600019600387901b1c1916600186901b17835561137c565b600083815260209020601f19861690835b82811015611d8f5786850135825560209485019460019092019101611d6f565b5086821015611dac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561069f5761069f611dbe565b808202811582820484141761069f5761069f611dbe565b6000808454611e0c81611c41565b60018281168015611e245760018114611e3957611e68565b60ff1984168752821515830287019450611e68565b8860005260208060002060005b85811015611e5f5781548a820152908401908201611e46565b50505082870194505b505050508351611e7c818360208801611919565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ec89083018461193d565b9695505050505050565b600060208284031215611ee457600080fd5b8151611912816118df565b600060018201611f0157611f01611dbe565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f2d57611f2d611f08565b500490565b8181038181111561069f5761069f611dbe565b600082611f5457611f54611f08565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212205d4e987ee6aa0480950de42a0156b837c0f551e706bc52ba67eeb5104b023c8e64736f6c63430008130033
Deployed Bytecode Sourcemap
48622:3000:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30175:355;;;;;;;;;;-1:-1:-1;30175:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30175:355:0;;;;;;;;33370:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34970:245::-;;;;;;;;;;-1:-1:-1;34970:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34970:245:0;1533:203:1;34533:371:0;;;;;;;;;;-1:-1:-1;34533:371:0;;;;;:::i;:::-;;:::i;:::-;;48751:23;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;48751:23:0;2178:177:1;50584:83:0;;;;;;;;;;-1:-1:-1;50584:83:0;;;;;:::i;:::-;;:::i;29424:303::-;;;;;;;;;;-1:-1:-1;50054:1:0;29678:12;29468:7;29662:13;:28;-1:-1:-1;;29662:46:0;29424:303;;35958:170;;;;;;;;;;-1:-1:-1;35958:170:0;;;;;:::i;:::-;;:::i;48925:32::-;;;;;;;;;;;;;;;;50675:184;;;;;;;;;;;;;:::i;36199:185::-;;;;;;;;;;-1:-1:-1;36199:185:0;;;;;:::i;:::-;;:::i;50163:90::-;;;;;;;;;;-1:-1:-1;50163:90:0;;;;;:::i;:::-;;:::i;50867:104::-;;;;;;;;;;-1:-1:-1;50867:104:0;;;;;:::i;:::-;;:::i;48723:21::-;;;;;;;;;;-1:-1:-1;48723:21:0;;;;;;;;33178:125;;;;;;;;;;-1:-1:-1;33178:125:0;;;;;:::i;:::-;;:::i;50364:100::-;;;;;;;;;;-1:-1:-1;50364:100:0;;;;;:::i;:::-;;:::i;30594:206::-;;;;;;;;;;-1:-1:-1;30594:206:0;;;;;:::i;:::-;;:::i;50261:95::-;;;;;;;;;;-1:-1:-1;50261:95:0;;;;;:::i;:::-;;:::i;7443:103::-;;;;;;;;;;;;;:::i;48781:27::-;;;;;;;;;;;;;;;;49433:387;;;;;;;;;;-1:-1:-1;49433:387:0;;;;;:::i;:::-;;:::i;6792:87::-;;;;;;;;;;-1:-1:-1;6865:6:0;;-1:-1:-1;;;;;6865:6:0;6792:87;;50071:84;;;;;;;;;;-1:-1:-1;50071:84:0;;;;;:::i;:::-;;:::i;33539:104::-;;;;;;;;;;;;;:::i;48964:35::-;;;;;;;;;;;;;;;;49063:362;;;;;;:::i;:::-;;:::i;35287:319::-;;;;;;;;;;-1:-1:-1;35287:319:0;;;;;:::i;:::-;;:::i;48850:30::-;;;;;;;;;;;;;;;;49828:126;;;;;;;;;;-1:-1:-1;49828:126:0;;;;;:::i;:::-;;:::i;36455:406::-;;;;;;;;;;-1:-1:-1;36455:406:0;;;;;:::i;:::-;;:::i;51101:518::-;;;;;;;;;;-1:-1:-1;51101:518:0;;;;;:::i;:::-;;:::i;48815:28::-;;;;;;;;;;;;;:::i;48887:31::-;;;;;;;;;;;;;;;;35677:214;;;;;;;;;;-1:-1:-1;35677:214:0;;;;;:::i;:::-;;:::i;7701:238::-;;;;;;;;;;-1:-1:-1;7701:238:0;;;;;:::i;:::-;;:::i;50472:104::-;;;;;;;;;;-1:-1:-1;50472:104:0;;;;;:::i;:::-;;:::i;30175:355::-;30322:4;-1:-1:-1;;;;;;30364:40:0;;-1:-1:-1;;;30364:40:0;;:105;;-1:-1:-1;;;;;;;30421:48:0;;-1:-1:-1;;;30421:48:0;30364:105;:158;;;-1:-1:-1;;;;;;;;;;20108:40:0;;;30486:36;30344:178;30175:355;-1:-1:-1;;30175:355:0:o;33370:100::-;33424:13;33457:5;33450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33370:100;:::o;34970:245::-;35074:7;35104:16;35112:7;35104;:16::i;:::-;35099:64;;35129:34;;-1:-1:-1;;;35129:34:0;;;;;;;;;;;35099:64;-1:-1:-1;35183:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35183:24:0;;34970:245::o;34533:371::-;34606:13;34622:24;34638:7;34622:15;:24::i;:::-;34606:40;;34667:5;-1:-1:-1;;;;;34661:11:0;:2;-1:-1:-1;;;;;34661:11:0;;34657:48;;34681:24;;-1:-1:-1;;;34681:24:0;;;;;;;;;;;34657:48;5574:10;-1:-1:-1;;;;;34722:21:0;;;;;;:63;;-1:-1:-1;34748:37:0;34765:5;5574:10;35677:214;:::i;34748:37::-;34747:38;34722:63;34718:138;;;34809:35;;-1:-1:-1;;;34809:35:0;;;;;;;;;;;34718:138;34868:28;34877:2;34881:7;34890:5;34868:8;:28::i;:::-;34595:309;34533:371;;:::o;50584:83::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;;;;;;;;;50644:6:::1;:15:::0;;-1:-1:-1;;50644:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50584:83::o;35958:170::-;36092:28;36102:4;36108:2;36112:7;36092:9;:28::i;50675:184::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50742:82:::1;::::0;50724:12:::1;::::0;50750:10:::1;::::0;50788:21:::1;::::0;50724:12;50742:82;50724:12;50742:82;50788:21;50750:10;50742:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50723:101;;;50843:7;50835:16;;;::::0;::::1;;50712:147;50675:184::o:0;36199:185::-;36337:39;36354:4;36360:2;36364:7;36337:39;;;;;;;;;;;;:16;:39::i;50163:90::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50228:7:::1;:17:::0;50163:90::o;50867:104::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50940:13:::1;:23;50956:7:::0;;50940:13;:23:::1;:::i;33178:125::-:0;33242:7;33269:21;33282:7;33269:12;:21::i;:::-;:26;;33178:125;-1:-1:-1;;33178:125:0:o;50364:100::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50434:9:::1;:22:::0;50364:100::o;30594:206::-;30658:7;-1:-1:-1;;;;;30682:19:0;;30678:60;;30710:28;;-1:-1:-1;;;30710:28:0;;;;;;;;;;;30678:60;-1:-1:-1;;;;;;30764:19:0;;;;;:12;:19;;;;;:27;;;;30594:206::o;50261:95::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50327:11:::1;:21:::0;50261:95::o;7443:103::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;7508:30:::1;7535:1;7508:18;:30::i;:::-;7443:103::o:0;49433:387::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;9105:2:1;2304:63:0;;;9087:21:1;9144:2;9124:18;;;9117:30;9183:33;9163:18;;;9156:61;9234:18;;2304:63:0;8903:355:1;2304:63:0;1714:1;2445:7;:18;49512:6:::1;::::0;::::1;;49511:7;49503:26;;;::::0;-1:-1:-1;;;49503:26:0;;9465:2:1;49503:26:0::1;::::0;::::1;9447:21:1::0;9504:1;9484:18;;;9477:29;-1:-1:-1;;;9522:18:1;;;9515:36;9568:18;;49503:26:0::1;9263:329:1::0;49503:26:0::1;49570:10;;49555:11;49548:4;;:18;;;;:::i;:::-;:32;;49540:53;;;::::0;-1:-1:-1;;;49540:53:0;;10061:2:1;49540:53:0::1;::::0;::::1;10043:21:1::0;10100:1;10080:18;;;10073:29;-1:-1:-1;;;10118:18:1;;;10111:38;10166:18;;49540:53:0::1;9859:331:1::0;49540:53:0::1;49643:9;::::0;50054:1;29678:12;29468:7;29662:13;49628:11;;29662:28;;-1:-1:-1;;29662:46:0;49612:27:::1;;;;:::i;:::-;:40;;49604:56;;;::::0;-1:-1:-1;;;49604:56:0;;10397:2:1;49604:56:0::1;::::0;::::1;10379:21:1::0;10436:1;10416:18;;;10409:29;-1:-1:-1;;;10454:18:1;;;10447:33;10497:18;;49604:56:0::1;10195:326:1::0;49604:56:0::1;49693:1;49679:11;:15;:45;;;;;49713:11;;49698;:26;;49679:45;49671:64;;;::::0;-1:-1:-1;;;49671:64:0;;10728:2:1;49671:64:0::1;::::0;::::1;10710:21:1::0;10767:1;10747:18;;;10740:29;-1:-1:-1;;;10785:18:1;;;10778:37;10832:18;;49671:64:0::1;10526:330:1::0;49671:64:0::1;49746:36;5574:10:::0;49756:12:::1;49770:11;49746:9;:36::i;:::-;49801:11;49793:4;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1670:1:0;2624:7;:22;-1:-1:-1;49433:387:0:o;50071:84::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50133:5:::1;:14:::0;50071:84::o;33539:104::-;33595:13;33628:7;33621:14;;;;;:::i;49063:362::-;1714:1;2312:7;;:19;2304:63;;;;-1:-1:-1;;;2304:63:0;;9105:2:1;2304:63:0;;;9087:21:1;9144:2;9124:18;;;9117:30;9183:33;9163:18;;;9156:61;9234:18;;2304:63:0;8903:355:1;2304:63:0;1714:1;2445:7;:18;49146:6:::1;::::0;::::1;;49145:7;49137:26;;;::::0;-1:-1:-1;;;49137:26:0;;9465:2:1;49137:26:0::1;::::0;::::1;9447:21:1::0;9504:1;9484:18;;;9477:29;-1:-1:-1;;;9522:18:1;;;9515:36;9568:18;;49137:26:0::1;9263:329:1::0;49137:26:0::1;49213:9;::::0;50054:1;29678:12;29468:7;29662:13;49198:11;;29662:28;;-1:-1:-1;;29662:46:0;49182:27:::1;;;;:::i;:::-;:40;;49174:56;;;::::0;-1:-1:-1;;;49174:56:0;;10397:2:1;49174:56:0::1;::::0;::::1;10379:21:1::0;10436:1;10416:18;;;10409:29;-1:-1:-1;;;10454:18:1;;;10447:33;10497:18;;49174:56:0::1;10195:326:1::0;49174:56:0::1;49270:11;49262:5;;:19;;;;:::i;:::-;49249:9;:32;;49241:57;;;::::0;-1:-1:-1;;;49241:57:0;;11236:2:1;49241:57:0::1;::::0;::::1;11218:21:1::0;11275:2;11255:18;;;11248:30;-1:-1:-1;;;11294:18:1;;;11287:42;11346:18;;49241:57:0::1;11034:336:1::0;49241:57:0::1;49331:1;49317:11;:15;:41;;;;;49351:7;;49336:11;:22;;49317:41;49309:61;;;::::0;-1:-1:-1;;;49309:61:0;;10728:2:1;49309:61:0::1;::::0;::::1;10710:21:1::0;10767:1;10747:18;;;10740:29;-1:-1:-1;;;10785:18:1;;;10778:37;10832:18;;49309:61:0::1;10526:330:1::0;49309:61:0::1;49381:36;5574:10:::0;49391:12:::1;5494:98:::0;49381:36:::1;-1:-1:-1::0;1670:1:0;2624:7;:22;49063:362::o;35287:319::-;5574:10;-1:-1:-1;;;;;35418:24:0;;;35414:54;;35451:17;;-1:-1:-1;;;35451:17:0;;;;;;;;;;;35414:54;5574:10;35481:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35481:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35481:53:0;;;;;;;;;;35550:48;;540:41:1;;;35481:42:0;;5574:10;35550:48;;513:18:1;35550:48:0;;;;;;;35287:319;;:::o;49828:126::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;49913:33:::1;49923:9;49934:11;49913:9;:33::i;:::-;49828:126:::0;;:::o;36455:406::-;36622:28;36632:4;36638:2;36642:7;36622:9;:28::i;:::-;-1:-1:-1;;;;;36679:13:0;;9699:19;:23;;36679:89;;;;;36712:56;36743:4;36749:2;36753:7;36762:5;36712:30;:56::i;:::-;36711:57;36679:89;36661:193;;;36802:40;;-1:-1:-1;;;36802:40:0;;;;;;;;;;;36661:193;36455:406;;;;:::o;51101:518::-;51220:13;51259:17;51267:8;51259:7;:17::i;:::-;51251:49;;;;-1:-1:-1;;;51251:49:0;;11577:2:1;51251:49:0;;;11559:21:1;11616:2;11596:18;;;11589:30;-1:-1:-1;;;11635:18:1;;;11628:49;11694:18;;51251:49:0;11375:343:1;51251:49:0;51361:1;51337:13;51331:27;;;;;:::i;:::-;;;:31;:280;;;;;;;;;;;;;;;;;51454:13;51494:19;:8;:17;:19::i;:::-;51411:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51311:300;51101:518;-1:-1:-1;;51101:518:0:o;48815:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35677:214::-;-1:-1:-1;;;;;35848:25:0;;;35819:4;35848:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35677:214::o;7701:238::-;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7804:22:0;::::1;7782:110;;;::::0;-1:-1:-1;;;7782:110:0;;13117:2:1;7782:110:0::1;::::0;::::1;13099:21:1::0;13156:2;13136:18;;;13129:30;13195:34;13175:18;;;13168:62;-1:-1:-1;;;13246:18:1;;;13239:36;13292:19;;7782:110:0::1;12915:402:1::0;7782:110:0::1;7903:28;7922:8;7903:18;:28::i;50472:104::-:0;6865:6;;-1:-1:-1;;;;;6865:6:0;5574:10;7012:23;7004:68;;;;-1:-1:-1;;;7004:68:0;;;;;;;:::i;:::-;50544:10:::1;:24:::0;50472:104::o;37116:213::-;37173:4;37229:7;50054:1;37210:26;;:66;;;;;37263:13;;37253:7;:23;37210:66;:111;;;;-1:-1:-1;;37294:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37294:27:0;;;;37293:28;;37116:213::o;45503:196::-;45618:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45618:29:0;-1:-1:-1;;;;;45618:29:0;;;;;;;;;45663:28;;45618:24;;45663:28;;;;;;;45503:196;;;:::o;40446:2130::-;40561:35;40599:21;40612:7;40599:12;:21::i;:::-;40561:59;;40659:4;-1:-1:-1;;;;;40637:26:0;:13;:18;;;-1:-1:-1;;;;;40637:26:0;;40633:67;;40672:28;;-1:-1:-1;;;40672:28:0;;;;;;;;;;;40633:67;40713:22;5574:10;-1:-1:-1;;;;;40739:20:0;;;;:73;;-1:-1:-1;40776:36:0;40793:4;5574:10;35677:214;:::i;40776:36::-;40739:126;;;-1:-1:-1;5574:10:0;40829:20;40841:7;40829:11;:20::i;:::-;-1:-1:-1;;;;;40829:36:0;;40739:126;40713:153;;40884:17;40879:66;;40910:35;;-1:-1:-1;;;40910:35:0;;;;;;;;;;;40879:66;-1:-1:-1;;;;;40960:16:0;;40956:52;;40985:23;;-1:-1:-1;;;40985:23:0;;;;;;;;;;;40956:52;41129:35;41146:1;41150:7;41159:4;41129:8;:35::i;:::-;-1:-1:-1;;;;;41460:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41460:31:0;;;;;;;-1:-1:-1;;41460:31:0;;;;;;;41506:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41506:29:0;;;;;;;;;;;41586:20;;;:11;:20;;;;;;41621:18;;-1:-1:-1;;;;;;41654:49:0;;;;-1:-1:-1;;;41687:15:0;41654:49;;;;;;;;;;41977:11;;42037:24;;;;;42080:13;;41586:20;;42037:24;;42080:13;42076:384;;42290:13;;42275:11;:28;42271:174;;42328:20;;42397:28;;;;42371:54;;-1:-1:-1;;;42371:54:0;-1:-1:-1;;;;;;42371:54:0;;;-1:-1:-1;;;;;42328:20:0;;42371:54;;;;42271:174;41435:1036;;;42507:7;42503:2;-1:-1:-1;;;;;42488:27:0;42497:4;-1:-1:-1;;;;;42488:27:0;;;;;;;;;;;42526:42;40550:2026;;40446:2130;;;:::o;31975:1141::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32118:7:0;;50054:1;32167:23;;:47;;;;;32201:13;;32194:4;:20;32167:47;32163:886;;;32235:31;32269:17;;;:11;:17;;;;;;;;;32235:51;;;;;;;;;-1:-1:-1;;;;;32235:51:0;;;;-1:-1:-1;;;32235:51:0;;;;;;;;;;;-1:-1:-1;;;32235:51:0;;;;;;;;;;;;;;32305:729;;32355:14;;-1:-1:-1;;;;;32355:28:0;;32351:101;;32419:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32351:101::-;-1:-1:-1;;;32794:6:0;32839:17;;;;:11;:17;;;;;;;;;32827:29;;;;;;;;;-1:-1:-1;;;;;32827:29:0;;;;;-1:-1:-1;;;32827:29:0;;;;;;;;;;;-1:-1:-1;;;32827:29:0;;;;;;;;;;;;;32887:28;32883:109;;32955:9;31975:1141;-1:-1:-1;;;31975:1141:0:o;32883:109::-;32754:261;;;32216:833;32163:886;33077:31;;-1:-1:-1;;;33077:31:0;;;;;;;;;;;8099:191;8192:6;;;-1:-1:-1;;;;;8209:17:0;;;-1:-1:-1;;;;;;8209:17:0;;;;;;;8242:40;;8192:6;;;8209:17;8192:6;;8242:40;;8173:16;;8242:40;8162:128;8099:191;:::o;37337:104::-;37406:27;37416:2;37420:8;37406:27;;;;;;;;;;;;:9;:27::i;46191:772::-;46388:155;;-1:-1:-1;;;46388:155:0;;46354:4;;-1:-1:-1;;;;;46388:36:0;;;;;:155;;5574:10;;46474:4;;46497:7;;46523:5;;46388:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46388:155:0;;;;;;;;-1:-1:-1;;46388:155:0;;;;;;;;;;;;:::i;:::-;;;46371:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46714:6;:13;46731:1;46714:18;46710:235;;46760:40;;-1:-1:-1;;;46760:40:0;;;;;;;;;;;46710:235;46903:6;46897:13;46888:6;46884:2;46880:15;46873:38;46371:585;-1:-1:-1;;;;;;46599:55:0;-1:-1:-1;;;46599:55:0;;-1:-1:-1;46371:585:0;46191:772;;;;;;:::o;3025:723::-;3081:13;3302:5;3311:1;3302:10;3298:53;;-1:-1:-1;;3329:10:0;;;;;;;;;;;;-1:-1:-1;;;3329:10:0;;;;;3025:723::o;3298:53::-;3376:5;3361:12;3417:78;3424:9;;3417:78;;3450:8;;;;:::i;:::-;;-1:-1:-1;3473:10:0;;-1:-1:-1;3481:2:0;3473:10;;:::i;:::-;;;3417:78;;;3505:19;3537:6;3527:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3527:17:0;;3505:39;;3555:154;3562:10;;3555:154;;3589:11;3599:1;3589:11;;:::i;:::-;;-1:-1:-1;3658:10:0;3666:2;3658:5;:10;:::i;:::-;3645:24;;:2;:24;:::i;:::-;3632:39;;3615:6;3622;3615:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3615:56:0;;;;;;;;-1:-1:-1;3686:11:0;3695:2;3686:11;;:::i;:::-;;;3555:154;;37804:163;37927:32;37933:2;37937:8;37947:5;37954:4;38365:20;38388:13;-1:-1:-1;;;;;38416:16:0;;38412:48;;38441:19;;-1:-1:-1;;;38441:19:0;;;;;;;;;;;38412:48;38475:8;38487:1;38475:13;38471:44;;38497:18;;-1:-1:-1;;;38497:18:0;;;;;;;;;;;38471:44;-1:-1:-1;;;;;38866:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38925:49:0;;38866:44;;;;;;;;38925:49;;;;-1:-1:-1;;38866:44:0;;;;;;38925:49;;;;;;;;;;;;;;;;38991:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39041:66:0;;;;-1:-1:-1;;;39091:15:0;39041:66;;;;;;;;;;38991:25;39188:23;;;39232:4;:23;;;;-1:-1:-1;;;;;;39240:13:0;;9699:19;:23;;39240:15;39228:832;;;39276:505;39307:38;;39332:12;;-1:-1:-1;;;;;39307:38:0;;;39324:1;;39307:38;;39324:1;;39307:38;39399:212;39468:1;39501:2;39534:14;;;;;;39579:5;39399:30;:212::i;:::-;39368:365;;39669:40;;-1:-1:-1;;;39669:40:0;;;;;;;;;;;39368:365;39776:3;39760:12;:19;39276:505;;39862:12;39845:13;;:29;39841:43;;39876:8;;;39841:43;39228:832;;;39925:120;39956:40;;39981:14;;;;;-1:-1:-1;;;;;39956:40:0;;;39973:1;;39956:40;;39973:1;;39956:40;40040:3;40024:12;:19;39925:120;;39228:832;-1:-1:-1;40074:13:0;:28;40124:60;36455:406;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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:592::-;3114:6;3122;3175:2;3163:9;3154:7;3150:23;3146:32;3143:52;;;3191:1;3188;3181:12;3143:52;3231:9;3218:23;3260:18;3301:2;3293:6;3290:14;3287:34;;;3317:1;3314;3307:12;3287:34;3355:6;3344:9;3340:22;3330:32;;3400:7;3393:4;3389:2;3385:13;3381:27;3371:55;;3422:1;3419;3412:12;3371:55;3462:2;3449:16;3488:2;3480:6;3477:14;3474:34;;;3504:1;3501;3494:12;3474:34;3549:7;3544:2;3535:6;3531:2;3527:15;3523:24;3520:37;3517:57;;;3570:1;3567;3560:12;3517:57;3601:2;3593:11;;;;;3623:6;;-1:-1:-1;3043:592:1;;-1:-1:-1;;;;3043:592:1:o;3640:186::-;3699:6;3752:2;3740:9;3731:7;3727:23;3723:32;3720:52;;;3768:1;3765;3758:12;3720:52;3791:29;3810:9;3791:29;:::i;3831:254::-;3896:6;3904;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;3996:29;4015:9;3996:29;:::i;:::-;3986:39;;4044:35;4075:2;4064:9;4060:18;4044:35;:::i;:::-;4034:45;;3831:254;;;;;:::o;4090:::-;4158:6;4166;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4271:9;4258:23;4248:33;;4300:38;4334:2;4323:9;4319:18;4300:38;:::i;4349:127::-;4410:10;4405:3;4401:20;4398:1;4391:31;4441:4;4438:1;4431:15;4465:4;4462:1;4455:15;4481:1138;4576:6;4584;4592;4600;4653:3;4641:9;4632:7;4628:23;4624:33;4621:53;;;4670:1;4667;4660:12;4621:53;4693:29;4712:9;4693:29;:::i;:::-;4683:39;;4741:38;4775:2;4764:9;4760:18;4741:38;:::i;:::-;4731:48;;4826:2;4815:9;4811:18;4798:32;4788:42;;4881:2;4870:9;4866:18;4853:32;4904:18;4945:2;4937:6;4934:14;4931:34;;;4961:1;4958;4951:12;4931:34;4999:6;4988:9;4984:22;4974:32;;5044:7;5037:4;5033:2;5029:13;5025:27;5015:55;;5066:1;5063;5056:12;5015:55;5102:2;5089:16;5124:2;5120;5117:10;5114:36;;;5130:18;;:::i;:::-;5205:2;5199:9;5173:2;5259:13;;-1:-1:-1;;5255:22:1;;;5279:2;5251:31;5247:40;5235:53;;;5303:18;;;5323:22;;;5300:46;5297:72;;;5349:18;;:::i;:::-;5389:10;5385:2;5378:22;5424:2;5416:6;5409:18;5464:7;5459:2;5454;5450;5446:11;5442:20;5439:33;5436:53;;;5485:1;5482;5475:12;5436:53;5541:2;5536;5532;5528:11;5523:2;5515:6;5511:15;5498:46;5586:1;5581:2;5576;5568:6;5564:15;5560:24;5553:35;5607:6;5597:16;;;;;;;4481:1138;;;;;;;:::o;5624:260::-;5692:6;5700;5753:2;5741:9;5732:7;5728:23;5724:32;5721:52;;;5769:1;5766;5759:12;5721:52;5792:29;5811:9;5792:29;:::i;:::-;5782:39;;5840:38;5874:2;5863:9;5859:18;5840:38;:::i;5889:380::-;5968:1;5964:12;;;;6011;;;6032:61;;6086:4;6078:6;6074:17;6064:27;;6032:61;6139:2;6131:6;6128:14;6108:18;6105:38;6102:161;;6185:10;6180:3;6176:20;6173:1;6166:31;6220:4;6217:1;6210:15;6248:4;6245:1;6238:15;6102:161;;5889:380;;;:::o;6274:356::-;6476:2;6458:21;;;6495:18;;;6488:30;6554:34;6549:2;6534:18;;6527:62;6621:2;6606:18;;6274:356::o;6971:545::-;7073:2;7068:3;7065:11;7062:448;;;7109:1;7134:5;7130:2;7123:17;7179:4;7175:2;7165:19;7249:2;7237:10;7233:19;7230:1;7226:27;7220:4;7216:38;7285:4;7273:10;7270:20;7267:47;;;-1:-1:-1;7308:4:1;7267:47;7363:2;7358:3;7354:12;7351:1;7347:20;7341:4;7337:31;7327:41;;7418:82;7436:2;7429:5;7426:13;7418:82;;;7481:17;;;7462:1;7451:13;7418:82;;;7422:3;;;6971:545;;;:::o;7692:1206::-;7816:18;7811:3;7808:27;7805:53;;;7838:18;;:::i;:::-;7867:94;7957:3;7917:38;7949:4;7943:11;7917:38;:::i;:::-;7911:4;7867:94;:::i;:::-;7987:1;8012:2;8007:3;8004:11;8029:1;8024:616;;;;8684:1;8701:3;8698:93;;;-1:-1:-1;8757:19:1;;;8744:33;8698:93;-1:-1:-1;;7649:1:1;7645:11;;;7641:24;7637:29;7627:40;7673:1;7669:11;;;7624:57;8804:78;;7997:895;;8024:616;6918:1;6911:14;;;6955:4;6942:18;;-1:-1:-1;;8060:17:1;;;8161:9;8183:229;8197:7;8194:1;8191:14;8183:229;;;8286:19;;;8273:33;8258:49;;8393:4;8378:20;;;;8346:1;8334:14;;;;8213:12;8183:229;;;8187:3;8440;8431:7;8428:16;8425:159;;;8564:1;8560:6;8554:3;8548;8545:1;8541:11;8537:21;8533:34;8529:39;8516:9;8511:3;8507:19;8494:33;8490:79;8482:6;8475:95;8425:159;;;8627:1;8621:3;8618:1;8614:11;8610:19;8604:4;8597:33;7997:895;;7692:1206;;;:::o;9597:127::-;9658:10;9653:3;9649:20;9646:1;9639:31;9689:4;9686:1;9679:15;9713:4;9710:1;9703:15;9729:125;9794:9;;;9815:10;;;9812:36;;;9828:18;;:::i;10861:168::-;10934:9;;;10965;;10982:15;;;10976:22;;10962:37;10952:71;;11003:18;;:::i;11723:1187::-;12000:3;12029:1;12062:6;12056:13;12092:36;12118:9;12092:36;:::i;:::-;12147:1;12164:18;;;12191:133;;;;12338:1;12333:356;;;;12157:532;;12191:133;-1:-1:-1;;12224:24:1;;12212:37;;12297:14;;12290:22;12278:35;;12269:45;;;-1:-1:-1;12191:133:1;;12333:356;12364:6;12361:1;12354:17;12394:4;12439:2;12436:1;12426:16;12464:1;12478:165;12492:6;12489:1;12486:13;12478:165;;;12570:14;;12557:11;;;12550:35;12613:16;;;;12507:10;;12478:165;;;12482:3;;;12672:6;12667:3;12663:16;12656:23;;12157:532;;;;;12720:6;12714:13;12736:68;12795:8;12790:3;12783:4;12775:6;12771:17;12736:68;:::i;:::-;-1:-1:-1;;;12826:18:1;;12853:22;;;12902:1;12891:13;;11723:1187;-1:-1:-1;;;;11723:1187:1:o;13322:489::-;-1:-1:-1;;;;;13591:15:1;;;13573:34;;13643:15;;13638:2;13623:18;;13616:43;13690:2;13675:18;;13668:34;;;13738:3;13733:2;13718:18;;13711:31;;;13516:4;;13759:46;;13785:19;;13777:6;13759:46;:::i;:::-;13751:54;13322:489;-1:-1:-1;;;;;;13322:489:1:o;13816:249::-;13885:6;13938:2;13926:9;13917:7;13913:23;13909:32;13906:52;;;13954:1;13951;13944:12;13906:52;13986:9;13980:16;14005:30;14029:5;14005:30;:::i;14070:135::-;14109:3;14130:17;;;14127:43;;14150:18;;:::i;:::-;-1:-1:-1;14197:1:1;14186:13;;14070:135::o;14210:127::-;14271:10;14266:3;14262:20;14259:1;14252:31;14302:4;14299:1;14292:15;14326:4;14323:1;14316:15;14342:120;14382:1;14408;14398:35;;14413:18;;:::i;:::-;-1:-1:-1;14447:9:1;;14342:120::o;14467:128::-;14534:9;;;14555:11;;;14552:37;;;14569:18;;:::i;14600:112::-;14632:1;14658;14648:35;;14663:18;;:::i;:::-;-1:-1:-1;14697:9:1;;14600:112::o;14717:127::-;14778:10;14773:3;14769:20;14766:1;14759:31;14809:4;14806:1;14799:15;14833:4;14830:1;14823:15
Swarm Source
ipfs://5d4e987ee6aa0480950de42a0156b837c0f551e706bc52ba67eeb5104b023c8e
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.