Overview
TokenID
2111
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DosApes
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-04 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 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 {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.7; contract DosApes is ERC721A, Ownable { using Strings for uint256; string private uriPrefix = "ipfs://QmRRjCEKDWbThgxmBSyfvtx5Cty57T3wiVqSwfbPF3UZnG/"; string private uriSuffix = ".json"; uint256 public cost = 0.005 ether; uint16 public constant maxSupply = 10000; uint8 public maxMintAmountPerTx = 11; bool public paused = true; constructor() ERC721A("Dos Apes", "Dos Apes") { } function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function mint(uint8 _mintAmount) external payable { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); require(_mintAmount < maxMintAmountPerTx, "Exceed max limit per tx"); require(!paused, "The contract is paused!"); if(totalSupply > 2500) { require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } _safeMint(msg.sender , _mintAmount); delete totalSupply; delete _mintAmount; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setPublicMintPaused() external onlyOwner { paused = !paused; } function setPublicMintCost(uint _cost) external onlyOwner{ cost = _cost; } function setMaxLimitPerTx(uint8 _limit) external onlyOwner{ maxMintAmountPerTx = _limit; } function withdraw() external onlyOwner { uint _balance = address(this).balance; payable(msg.sender).transfer(_balance ); } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxLimitPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052603660808181529062001ff360a0398051620000299160099160209091019062000144565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600a9162000144565b506611c37937e08000600b55600c805461ffff191661010b1790553480156200008057600080fd5b50604080518082018252600880825267446f73204170657360c01b602080840182815285518087019096529285528401528151919291620000c49160029162000144565b508051620000da90600390602084019062000144565b50506000805550620000ec33620000f2565b62000227565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015290620001ea565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b600181811c90821680620001ff57607f821691505b602082108114156200022157634e487b7160e01b600052602260045260246000fd5b50919050565b611dbc80620002376000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146104e5578063de2772811461050e578063e985e9c51461052e578063f2fde38b1461057757600080fd5b8063a22cb46514610465578063b88d4fde14610485578063c87b56dd146104a5578063cffb6e20146104c557600080fd5b806380eae578116100d157806380eae578146103e65780638da5cb5b1461040657806394354fd01461042457806395d89b411461045057600080fd5b806370a0823114610391578063715018a6146103b15780637ec4a659146103c657600080fd5b80632f6f98e11161016457806349e5fa7b1161013e57806349e5fa7b1461032a5780635c975abb1461033f5780636352211e1461035e5780636ecd23061461037e57600080fd5b80632f6f98e1146102d55780633ccfd60b146102f557806342842e0e1461030a57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806313faede61461027857806318160ddd1461029c57806323b872dd146102b557600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118f6565b610597565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105e9565b6040516101f39190611b85565b34801561022a57600080fd5b5061023e61023936600461199e565b61067b565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046118cc565b6106bf565b005b34801561028457600080fd5b5061028e600b5481565b6040519081526020016101f3565b3480156102a857600080fd5b506001546000540361028e565b3480156102c157600080fd5b506102766102d03660046117d8565b61074d565b3480156102e157600080fd5b506102766102f0366004611979565b610758565b34801561030157600080fd5b506102766107d9565b34801561031657600080fd5b506102766103253660046117d8565b610836565b34801561033657600080fd5b50610276610851565b34801561034b57600080fd5b50600c546101e790610100900460ff1681565b34801561036a57600080fd5b5061023e61037936600461199e565b610898565b61027661038c3660046119b7565b6108aa565b34801561039d57600080fd5b5061028e6103ac36600461178a565b610a0e565b3480156103bd57600080fd5b50610276610a5d565b3480156103d257600080fd5b506102766103e1366004611930565b610a93565b3480156103f257600080fd5b5061027661040136600461199e565b610ad0565b34801561041257600080fd5b506008546001600160a01b031661023e565b34801561043057600080fd5b50600c5461043e9060ff1681565b60405160ff90911681526020016101f3565b34801561045c57600080fd5b50610211610aff565b34801561047157600080fd5b50610276610480366004611890565b610b0e565b34801561049157600080fd5b506102766104a0366004611814565b610ba4565b3480156104b157600080fd5b506102116104c036600461199e565b610bf5565b3480156104d157600080fd5b506102766104e03660046119d2565b610cc3565b3480156104f157600080fd5b506104fb61271081565b60405161ffff90911681526020016101f3565b34801561051a57600080fd5b506102766105293660046119b7565b610d96565b34801561053a57600080fd5b506101e76105493660046117a5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058357600080fd5b5061027661059236600461178a565b610dd6565b60006001600160e01b031982166380ac58cd60e01b14806105c857506001600160e01b03198216635b5e139f60e01b145b806105e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105f890611cae565b80601f016020809104026020016040519081016040528092919081815260200182805461062490611cae565b80156106715780601f1061064657610100808354040283529160200191610671565b820191906000526020600020905b81548152906001019060200180831161065457829003601f168201915b5050505050905090565b600061068682610e71565b6106a3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ca82610898565b9050806001600160a01b0316836001600160a01b031614156106ff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061071f575061071d8133610549565b155b1561073d576040516367d9dca160e11b815260040160405180910390fd5b610748838383610e9c565b505050565b610748838383610ef8565b6008546001600160a01b0316331461078b5760405162461bcd60e51b815260040161078290611b98565b60405180910390fd5b600061079a6001546000540390565b90506127106107a98483611bfa565b61ffff1611156107cb5760405162461bcd60e51b815260040161078290611bcd565b610748828461ffff166110e8565b6008546001600160a01b031633146108035760405162461bcd60e51b815260040161078290611b98565b6040514790339082156108fc029083906000818181858888f19350505050158015610832573d6000803e3d6000fd5b5050565b61074883838360405180602001604052806000815250610ba4565b6008546001600160a01b0316331461087b5760405162461bcd60e51b815260040161078290611b98565b600c805461ff001981166101009182900460ff1615909102179055565b60006108a382611102565b5192915050565b60006108b96001546000540390565b90506127106108cb60ff841683611bfa565b61ffff1611156108ed5760405162461bcd60e51b815260040161078290611bcd565b600c5460ff908116908316106109455760405162461bcd60e51b815260206004820152601760248201527f457863656564206d6178206c696d6974207065722074780000000000000000006044820152606401610782565b600c54610100900460ff161561099d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610782565b6109c48161ffff161115610a01578160ff16600b546109bc9190611c4c565b341015610a015760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610782565b610832338360ff166110e8565b60006001600160a01b038216610a37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a875760405162461bcd60e51b815260040161078290611b98565b610a91600061121e565b565b6008546001600160a01b03163314610abd5760405162461bcd60e51b815260040161078290611b98565b805161083290600990602084019061164e565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161078290611b98565b600b55565b6060600380546105f890611cae565b6001600160a01b038216331415610b385760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610baf848484610ef8565b6001600160a01b0383163b15158015610bd15750610bcf84848484611270565b155b15610bef576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c0082610e71565b610c645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610782565b6000610c6e611368565b90506000815111610c8e5760405180602001604052806000815250610cbc565b80610c9884611377565b600a604051602001610cac93929190611a84565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ced5760405162461bcd60e51b815260040161078290611b98565b6000610cfc6001546000540390565b90506000610d0d8360ff8716611c4c565b9050612710610d208261ffff8516611c20565b1115610d3e5760405162461bcd60e51b815260040161078290611bcd565b60005b83811015610d8e57610d7c858583818110610d5e57610d5e611d44565b9050602002016020810190610d73919061178a565b8760ff166110e8565b80610d8681611ce9565b915050610d41565b505050505050565b6008546001600160a01b03163314610dc05760405162461bcd60e51b815260040161078290611b98565b600c805460ff191660ff92909216919091179055565b6008546001600160a01b03163314610e005760405162461bcd60e51b815260040161078290611b98565b6001600160a01b038116610e655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610782565b610e6e8161121e565b50565b60008054821080156105e3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f0382611102565b9050836001600160a01b031681600001516001600160a01b031614610f3a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f585750610f588533610549565b80610f73575033610f688461067b565b6001600160a01b0316145b905080610f9357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610fba57604051633a954ecd60e21b815260040160405180910390fd5b610fc660008487610e9c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661109c57600054821461109c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610832828260405180602001604052806000815250611475565b60408051606081018252600080825260208201819052918101919091528160005481101561120557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112035780516001600160a01b031615611199579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111fe579392505050565b611199565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112a5903390899088908890600401611b48565b602060405180830381600087803b1580156112bf57600080fd5b505af19250505080156112ef575060408051601f3d908101601f191682019092526112ec91810190611913565b60015b61134a573d80801561131d576040519150601f19603f3d011682016040523d82523d6000602084013e611322565b606091505b508051611342576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105f890611cae565b60608161139b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113c557806113af81611ce9565b91506113be9050600a83611c38565b915061139f565b60008167ffffffffffffffff8111156113e0576113e0611d5a565b6040519080825280601f01601f19166020018201604052801561140a576020820181803683370190505b5090505b84156113605761141f600183611c6b565b915061142c600a86611d04565b611437906030611c20565b60f81b81838151811061144c5761144c611d44565b60200101906001600160f81b031916908160001a90535061146e600a86611c38565b945061140e565b61074883838360016000546001600160a01b0385166114a657604051622e076360e81b815260040160405180910390fd5b836114c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561157657506001600160a01b0387163b15155b156115ff575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115c76000888480600101955088611270565b6115e4576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561157c5782600054146115fa57600080fd5b611645565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611600575b506000556110e1565b82805461165a90611cae565b90600052602060002090601f01602090048101928261167c57600085556116c2565b82601f1061169557805160ff19168380011785556116c2565b828001600101855582156116c2579182015b828111156116c25782518255916020019190600101906116a7565b506116ce9291506116d2565b5090565b5b808211156116ce57600081556001016116d3565b600067ffffffffffffffff8084111561170257611702611d5a565b604051601f8501601f19908116603f0116810190828211818310171561172a5761172a611d5a565b8160405280935085815286868601111561174357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461177457600080fd5b919050565b803560ff8116811461177457600080fd5b60006020828403121561179c57600080fd5b610cbc8261175d565b600080604083850312156117b857600080fd5b6117c18361175d565b91506117cf6020840161175d565b90509250929050565b6000806000606084860312156117ed57600080fd5b6117f68461175d565b92506118046020850161175d565b9150604084013590509250925092565b6000806000806080858703121561182a57600080fd5b6118338561175d565b93506118416020860161175d565b925060408501359150606085013567ffffffffffffffff81111561186457600080fd5b8501601f8101871361187557600080fd5b611884878235602084016116e7565b91505092959194509250565b600080604083850312156118a357600080fd5b6118ac8361175d565b9150602083013580151581146118c157600080fd5b809150509250929050565b600080604083850312156118df57600080fd5b6118e88361175d565b946020939093013593505050565b60006020828403121561190857600080fd5b8135610cbc81611d70565b60006020828403121561192557600080fd5b8151610cbc81611d70565b60006020828403121561194257600080fd5b813567ffffffffffffffff81111561195957600080fd5b8201601f8101841361196a57600080fd5b611360848235602084016116e7565b6000806040838503121561198c57600080fd5b823561ffff811681146117c157600080fd5b6000602082840312156119b057600080fd5b5035919050565b6000602082840312156119c957600080fd5b610cbc82611779565b6000806000604084860312156119e757600080fd5b6119f084611779565b9250602084013567ffffffffffffffff80821115611a0d57600080fd5b818601915086601f830112611a2157600080fd5b813581811115611a3057600080fd5b8760208260051b8501011115611a4557600080fd5b6020830194508093505050509250925092565b60008151808452611a70816020860160208601611c82565b601f01601f19169290920160200192915050565b600084516020611a978285838a01611c82565b855191840191611aaa8184848a01611c82565b8554920191600090600181811c9080831680611ac757607f831692505b858310811415611ae557634e487b7160e01b85526022600452602485fd5b808015611af95760018114611b0a57611b37565b60ff19851688528388019550611b37565b60008b81526020902060005b85811015611b2f5781548a820152908401908801611b16565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7b90830184611a58565b9695505050505050565b602081526000610cbc6020830184611a58565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff808316818516808303821115611c1757611c17611d18565b01949350505050565b60008219821115611c3357611c33611d18565b500190565b600082611c4757611c47611d2e565b500490565b6000816000190483118215151615611c6657611c66611d18565b500290565b600082821015611c7d57611c7d611d18565b500390565b60005b83811015611c9d578181015183820152602001611c85565b83811115610bef5750506000910152565b600181811c90821680611cc257607f821691505b60208210811415611ce357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cfd57611cfd611d18565b5060010190565b600082611d1357611d13611d2e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e6e57600080fdfea264697066735822122053267fa9a74f26d250bdcde41617275292fa1a7f7fe59e04d4add28efb549af864736f6c63430008070033697066733a2f2f516d52526a43454b445762546867786d4253796676747835437479353754337769567153776662504633555a6e472f
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146104e5578063de2772811461050e578063e985e9c51461052e578063f2fde38b1461057757600080fd5b8063a22cb46514610465578063b88d4fde14610485578063c87b56dd146104a5578063cffb6e20146104c557600080fd5b806380eae578116100d157806380eae578146103e65780638da5cb5b1461040657806394354fd01461042457806395d89b411461045057600080fd5b806370a0823114610391578063715018a6146103b15780637ec4a659146103c657600080fd5b80632f6f98e11161016457806349e5fa7b1161013e57806349e5fa7b1461032a5780635c975abb1461033f5780636352211e1461035e5780636ecd23061461037e57600080fd5b80632f6f98e1146102d55780633ccfd60b146102f557806342842e0e1461030a57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806313faede61461027857806318160ddd1461029c57806323b872dd146102b557600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118f6565b610597565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105e9565b6040516101f39190611b85565b34801561022a57600080fd5b5061023e61023936600461199e565b61067b565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046118cc565b6106bf565b005b34801561028457600080fd5b5061028e600b5481565b6040519081526020016101f3565b3480156102a857600080fd5b506001546000540361028e565b3480156102c157600080fd5b506102766102d03660046117d8565b61074d565b3480156102e157600080fd5b506102766102f0366004611979565b610758565b34801561030157600080fd5b506102766107d9565b34801561031657600080fd5b506102766103253660046117d8565b610836565b34801561033657600080fd5b50610276610851565b34801561034b57600080fd5b50600c546101e790610100900460ff1681565b34801561036a57600080fd5b5061023e61037936600461199e565b610898565b61027661038c3660046119b7565b6108aa565b34801561039d57600080fd5b5061028e6103ac36600461178a565b610a0e565b3480156103bd57600080fd5b50610276610a5d565b3480156103d257600080fd5b506102766103e1366004611930565b610a93565b3480156103f257600080fd5b5061027661040136600461199e565b610ad0565b34801561041257600080fd5b506008546001600160a01b031661023e565b34801561043057600080fd5b50600c5461043e9060ff1681565b60405160ff90911681526020016101f3565b34801561045c57600080fd5b50610211610aff565b34801561047157600080fd5b50610276610480366004611890565b610b0e565b34801561049157600080fd5b506102766104a0366004611814565b610ba4565b3480156104b157600080fd5b506102116104c036600461199e565b610bf5565b3480156104d157600080fd5b506102766104e03660046119d2565b610cc3565b3480156104f157600080fd5b506104fb61271081565b60405161ffff90911681526020016101f3565b34801561051a57600080fd5b506102766105293660046119b7565b610d96565b34801561053a57600080fd5b506101e76105493660046117a5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058357600080fd5b5061027661059236600461178a565b610dd6565b60006001600160e01b031982166380ac58cd60e01b14806105c857506001600160e01b03198216635b5e139f60e01b145b806105e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105f890611cae565b80601f016020809104026020016040519081016040528092919081815260200182805461062490611cae565b80156106715780601f1061064657610100808354040283529160200191610671565b820191906000526020600020905b81548152906001019060200180831161065457829003601f168201915b5050505050905090565b600061068682610e71565b6106a3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ca82610898565b9050806001600160a01b0316836001600160a01b031614156106ff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061071f575061071d8133610549565b155b1561073d576040516367d9dca160e11b815260040160405180910390fd5b610748838383610e9c565b505050565b610748838383610ef8565b6008546001600160a01b0316331461078b5760405162461bcd60e51b815260040161078290611b98565b60405180910390fd5b600061079a6001546000540390565b90506127106107a98483611bfa565b61ffff1611156107cb5760405162461bcd60e51b815260040161078290611bcd565b610748828461ffff166110e8565b6008546001600160a01b031633146108035760405162461bcd60e51b815260040161078290611b98565b6040514790339082156108fc029083906000818181858888f19350505050158015610832573d6000803e3d6000fd5b5050565b61074883838360405180602001604052806000815250610ba4565b6008546001600160a01b0316331461087b5760405162461bcd60e51b815260040161078290611b98565b600c805461ff001981166101009182900460ff1615909102179055565b60006108a382611102565b5192915050565b60006108b96001546000540390565b90506127106108cb60ff841683611bfa565b61ffff1611156108ed5760405162461bcd60e51b815260040161078290611bcd565b600c5460ff908116908316106109455760405162461bcd60e51b815260206004820152601760248201527f457863656564206d6178206c696d6974207065722074780000000000000000006044820152606401610782565b600c54610100900460ff161561099d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610782565b6109c48161ffff161115610a01578160ff16600b546109bc9190611c4c565b341015610a015760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610782565b610832338360ff166110e8565b60006001600160a01b038216610a37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a875760405162461bcd60e51b815260040161078290611b98565b610a91600061121e565b565b6008546001600160a01b03163314610abd5760405162461bcd60e51b815260040161078290611b98565b805161083290600990602084019061164e565b6008546001600160a01b03163314610afa5760405162461bcd60e51b815260040161078290611b98565b600b55565b6060600380546105f890611cae565b6001600160a01b038216331415610b385760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610baf848484610ef8565b6001600160a01b0383163b15158015610bd15750610bcf84848484611270565b155b15610bef576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c0082610e71565b610c645760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610782565b6000610c6e611368565b90506000815111610c8e5760405180602001604052806000815250610cbc565b80610c9884611377565b600a604051602001610cac93929190611a84565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ced5760405162461bcd60e51b815260040161078290611b98565b6000610cfc6001546000540390565b90506000610d0d8360ff8716611c4c565b9050612710610d208261ffff8516611c20565b1115610d3e5760405162461bcd60e51b815260040161078290611bcd565b60005b83811015610d8e57610d7c858583818110610d5e57610d5e611d44565b9050602002016020810190610d73919061178a565b8760ff166110e8565b80610d8681611ce9565b915050610d41565b505050505050565b6008546001600160a01b03163314610dc05760405162461bcd60e51b815260040161078290611b98565b600c805460ff191660ff92909216919091179055565b6008546001600160a01b03163314610e005760405162461bcd60e51b815260040161078290611b98565b6001600160a01b038116610e655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610782565b610e6e8161121e565b50565b60008054821080156105e3575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f0382611102565b9050836001600160a01b031681600001516001600160a01b031614610f3a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f585750610f588533610549565b80610f73575033610f688461067b565b6001600160a01b0316145b905080610f9357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610fba57604051633a954ecd60e21b815260040160405180910390fd5b610fc660008487610e9c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661109c57600054821461109c578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610832828260405180602001604052806000815250611475565b60408051606081018252600080825260208201819052918101919091528160005481101561120557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112035780516001600160a01b031615611199579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156111fe579392505050565b611199565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112a5903390899088908890600401611b48565b602060405180830381600087803b1580156112bf57600080fd5b505af19250505080156112ef575060408051601f3d908101601f191682019092526112ec91810190611913565b60015b61134a573d80801561131d576040519150601f19603f3d011682016040523d82523d6000602084013e611322565b606091505b508051611342576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105f890611cae565b60608161139b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113c557806113af81611ce9565b91506113be9050600a83611c38565b915061139f565b60008167ffffffffffffffff8111156113e0576113e0611d5a565b6040519080825280601f01601f19166020018201604052801561140a576020820181803683370190505b5090505b84156113605761141f600183611c6b565b915061142c600a86611d04565b611437906030611c20565b60f81b81838151811061144c5761144c611d44565b60200101906001600160f81b031916908160001a90535061146e600a86611c38565b945061140e565b61074883838360016000546001600160a01b0385166114a657604051622e076360e81b815260040160405180910390fd5b836114c45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561157657506001600160a01b0387163b15155b156115ff575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115c76000888480600101955088611270565b6115e4576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561157c5782600054146115fa57600080fd5b611645565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611600575b506000556110e1565b82805461165a90611cae565b90600052602060002090601f01602090048101928261167c57600085556116c2565b82601f1061169557805160ff19168380011785556116c2565b828001600101855582156116c2579182015b828111156116c25782518255916020019190600101906116a7565b506116ce9291506116d2565b5090565b5b808211156116ce57600081556001016116d3565b600067ffffffffffffffff8084111561170257611702611d5a565b604051601f8501601f19908116603f0116810190828211818310171561172a5761172a611d5a565b8160405280935085815286868601111561174357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461177457600080fd5b919050565b803560ff8116811461177457600080fd5b60006020828403121561179c57600080fd5b610cbc8261175d565b600080604083850312156117b857600080fd5b6117c18361175d565b91506117cf6020840161175d565b90509250929050565b6000806000606084860312156117ed57600080fd5b6117f68461175d565b92506118046020850161175d565b9150604084013590509250925092565b6000806000806080858703121561182a57600080fd5b6118338561175d565b93506118416020860161175d565b925060408501359150606085013567ffffffffffffffff81111561186457600080fd5b8501601f8101871361187557600080fd5b611884878235602084016116e7565b91505092959194509250565b600080604083850312156118a357600080fd5b6118ac8361175d565b9150602083013580151581146118c157600080fd5b809150509250929050565b600080604083850312156118df57600080fd5b6118e88361175d565b946020939093013593505050565b60006020828403121561190857600080fd5b8135610cbc81611d70565b60006020828403121561192557600080fd5b8151610cbc81611d70565b60006020828403121561194257600080fd5b813567ffffffffffffffff81111561195957600080fd5b8201601f8101841361196a57600080fd5b611360848235602084016116e7565b6000806040838503121561198c57600080fd5b823561ffff811681146117c157600080fd5b6000602082840312156119b057600080fd5b5035919050565b6000602082840312156119c957600080fd5b610cbc82611779565b6000806000604084860312156119e757600080fd5b6119f084611779565b9250602084013567ffffffffffffffff80821115611a0d57600080fd5b818601915086601f830112611a2157600080fd5b813581811115611a3057600080fd5b8760208260051b8501011115611a4557600080fd5b6020830194508093505050509250925092565b60008151808452611a70816020860160208601611c82565b601f01601f19169290920160200192915050565b600084516020611a978285838a01611c82565b855191840191611aaa8184848a01611c82565b8554920191600090600181811c9080831680611ac757607f831692505b858310811415611ae557634e487b7160e01b85526022600452602485fd5b808015611af95760018114611b0a57611b37565b60ff19851688528388019550611b37565b60008b81526020902060005b85811015611b2f5781548a820152908401908801611b16565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7b90830184611a58565b9695505050505050565b602081526000610cbc6020830184611a58565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600061ffff808316818516808303821115611c1757611c17611d18565b01949350505050565b60008219821115611c3357611c33611d18565b500190565b600082611c4757611c47611d2e565b500490565b6000816000190483118215151615611c6657611c66611d18565b500290565b600082821015611c7d57611c7d611d18565b500390565b60005b83811015611c9d578181015183820152602001611c85565b83811115610bef5750506000910152565b600181811c90821680611cc257607f821691505b60208210811415611ce357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cfd57611cfd611d18565b5060010190565b600082611d1357611d13611d2e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e6e57600080fdfea264697066735822122053267fa9a74f26d250bdcde41617275292fa1a7f7fe59e04d4add28efb549af864736f6c63430008070033
Deployed Bytecode Sourcemap
44118:3031:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24443:305;;;;;;;;;;-1:-1:-1;24443:305:0;;;;;:::i;:::-;;:::i;:::-;;;8092:14:1;;8085:22;8067:41;;8055:2;8040:18;24443:305:0;;;;;;;;27556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29059:204::-;;;;;;;;;;-1:-1:-1;29059:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7390:32:1;;;7372:51;;7360:2;7345:18;29059:204:0;7226:203:1;28622:371:0;;;;;;;;;;-1:-1:-1;28622:371:0;;;;;:::i;:::-;;:::i;:::-;;44348:33;;;;;;;;;;;;;;;;;;;11266:25:1;;;11254:2;11239:18;44348:33:0;11120:177:1;23692:303:0;;;;;;;;;;-1:-1:-1;23946:12:0;;23736:7;23930:13;:28;23692:303;;29924:170;;;;;;;;;;-1:-1:-1;29924:170:0;;;;;:::i;:::-;;:::i;45129:326::-;;;;;;;;;;-1:-1:-1;45129:326:0;;;;;:::i;:::-;;:::i;46897:144::-;;;;;;;;;;;;;:::i;30165:185::-;;;;;;;;;;-1:-1:-1;30165:185:0;;;;;:::i;:::-;;:::i;46592:86::-;;;;;;;;;;;;;:::i;44546:25::-;;;;;;;;;;-1:-1:-1;44546:25:0;;;;;;;;;;;27364:125;;;;;;;;;;-1:-1:-1;27364:125:0;;;;;:::i;:::-;;:::i;45465:542::-;;;;;;:::i;:::-;;:::i;24812:206::-;;;;;;;;;;-1:-1:-1;24812:206:0;;;;;:::i;:::-;;:::i;43265:103::-;;;;;;;;;;;;;:::i;46482:102::-;;;;;;;;;;-1:-1:-1;46482:102:0;;;;;:::i;:::-;;:::i;46688:86::-;;;;;;;;;;-1:-1:-1;46688:86:0;;;;;:::i;:::-;;:::i;42613:87::-;;;;;;;;;;-1:-1:-1;42686:6:0;;-1:-1:-1;;;;;42686:6:0;42613:87;;44439:36;;;;;;;;;;-1:-1:-1;44439:36:0;;;;;;;;;;;11474:4:1;11462:17;;;11444:36;;11432:2;11417:18;44439:36:0;11302:184:1;27725:104:0;;;;;;;;;;;;;:::i;29335:287::-;;;;;;;;;;-1:-1:-1;29335:287:0;;;;;:::i;:::-;;:::i;30421:369::-;;;;;;;;;;-1:-1:-1;30421:369:0;;;;;:::i;:::-;;:::i;46023:444::-;;;;;;;;;;-1:-1:-1;46023:444:0;;;;;:::i;:::-;;:::i;44650:473::-;;;;;;;;;;-1:-1:-1;44650:473:0;;;;;:::i;:::-;;:::i;44394:40::-;;;;;;;;;;;;44429:5;44394:40;;;;;11101:6:1;11089:19;;;11071:38;;11059:2;11044:18;44394:40:0;10927:188:1;46784:102:0;;;;;;;;;;-1:-1:-1;46784:102:0;;;;;:::i;:::-;;:::i;29693:164::-;;;;;;;;;;-1:-1:-1;29693:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29814:25:0;;;29790:4;29814:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29693:164;43523:201;;;;;;;;;;-1:-1:-1;43523:201:0;;;;;:::i;:::-;;:::i;24443:305::-;24545:4;-1:-1:-1;;;;;;24582:40:0;;-1:-1:-1;;;24582:40:0;;:105;;-1:-1:-1;;;;;;;24639:48:0;;-1:-1:-1;;;24639:48:0;24582:105;:158;;;-1:-1:-1;;;;;;;;;;14477:40:0;;;24704:36;24562:178;24443:305;-1:-1:-1;;24443:305:0:o;27556:100::-;27610:13;27643:5;27636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27556:100;:::o;29059:204::-;29127:7;29152:16;29160:7;29152;:16::i;:::-;29147:64;;29177:34;;-1:-1:-1;;;29177:34:0;;;;;;;;;;;29147:64;-1:-1:-1;29231:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29231:24:0;;29059:204::o;28622:371::-;28695:13;28711:24;28727:7;28711:15;:24::i;:::-;28695:40;;28756:5;-1:-1:-1;;;;;28750:11:0;:2;-1:-1:-1;;;;;28750:11:0;;28746:48;;;28770:24;;-1:-1:-1;;;28770:24:0;;;;;;;;;;;28746:48;2918:10;-1:-1:-1;;;;;28811:21:0;;;;;;:63;;-1:-1:-1;28837:37:0;28854:5;2918:10;29693:164;:::i;28837:37::-;28836:38;28811:63;28807:138;;;28898:35;;-1:-1:-1;;;28898:35:0;;;;;;;;;;;28807:138;28957:28;28966:2;28970:7;28979:5;28957:8;:28::i;:::-;28684:309;28622:371;;:::o;29924:170::-;30058:28;30068:4;30074:2;30078:7;30058:9;:28::i;45129:326::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;;;;;;;;;45212:18:::1;45240:13;23946:12:::0;;23736:7;23930:13;:28;;23692:303;45240:13:::1;45212:42:::0;-1:-1:-1;44429:5:0::1;45269:25;45283:11:::0;45212:42;45269:25:::1;:::i;:::-;:38;;;;45261:70;;;;-1:-1:-1::0;;;45261:70:0::1;;;;;;;:::i;:::-;45339:34;45349:9;45361:11;45339:34;;:9;:34::i;46897:144::-:0;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;46986:39:::1;::::0;46957:21:::1;::::0;46994:10:::1;::::0;46986:39;::::1;;;::::0;46957:21;;46941:13:::1;46986:39:::0;46941:13;46986:39;46957:21;46994:10;46986:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46936:105;46897:144::o:0;30165:185::-;30303:39;30320:4;30326:2;30330:7;30303:39;;;;;;;;;;;;:16;:39::i;46592:86::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;46659:6:::1;::::0;;-1:-1:-1;;46649:16:0;::::1;46659:6;::::0;;;::::1;;;46658:7;46649:16:::0;;::::1;;::::0;;46592:86::o;27364:125::-;27428:7;27455:21;27468:7;27455:12;:21::i;:::-;:26;;27364:125;-1:-1:-1;;27364:125:0:o;45465:542::-;45528:18;45556:13;23946:12;;23736:7;23930:13;:28;;23692:303;45556:13;45528:42;-1:-1:-1;44429:5:0;45585:25;;;;45528:42;45585:25;:::i;:::-;:38;;;;45577:70;;;;-1:-1:-1;;;45577:70:0;;;;;;;:::i;:::-;45676:18;;;;;;45662:32;;;;45654:68;;;;-1:-1:-1;;;45654:68:0;;10429:2:1;45654:68:0;;;10411:21:1;10468:2;10448:18;;;10441:30;10507:25;10487:18;;;10480:53;10550:18;;45654:68:0;10227:347:1;45654:68:0;45738:6;;;;;;;45737:7;45729:43;;;;-1:-1:-1;;;45729:43:0;;9313:2:1;45729:43:0;;;9295:21:1;9352:2;9332:18;;;9325:30;9391:25;9371:18;;;9364:53;9434:18;;45729:43:0;9111:347:1;45729:43:0;45796:4;45782:11;:18;;;45779:106;;;45842:11;45835:18;;:4;;:18;;;;:::i;:::-;45822:9;:31;;45814:63;;;;-1:-1:-1;;;45814:63:0;;10781:2:1;45814:63:0;;;10763:21:1;10820:2;10800:18;;;10793:30;-1:-1:-1;;;10839:18:1;;;10832:49;10898:18;;45814:63:0;10579:343:1;45814:63:0;45899:35;45909:10;45922:11;45899:35;;:9;:35::i;24812:206::-;24876:7;-1:-1:-1;;;;;24900:19:0;;24896:60;;24928:28;;-1:-1:-1;;;24928:28:0;;;;;;;;;;;24896:60;-1:-1:-1;;;;;;24982:19:0;;;;;:12;:19;;;;;:27;;;;24812:206::o;43265:103::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;43330:30:::1;43357:1;43330:18;:30::i;:::-;43265:103::o:0;46482:102::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;46556:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;46688:86::-:0;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;46754:4:::1;:12:::0;46688:86::o;27725:104::-;27781:13;27814:7;27807:14;;;;;:::i;29335:287::-;-1:-1:-1;;;;;29434:24:0;;2918:10;29434:24;29430:54;;;29467:17;;-1:-1:-1;;;29467:17:0;;;;;;;;;;;29430:54;2918:10;29497:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29497:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29497:53:0;;;;;;;;;;29566:48;;8067:41:1;;;29497:42:0;;2918:10;29566:48;;8040:18:1;29566:48:0;;;;;;;29335:287;;:::o;30421:369::-;30588:28;30598:4;30604:2;30608:7;30588:9;:28::i;:::-;-1:-1:-1;;;;;30631:13:0;;4580:19;:23;;30631:76;;;;;30651:56;30682:4;30688:2;30692:7;30701:5;30651:30;:56::i;:::-;30650:57;30631:76;30627:156;;;30731:40;;-1:-1:-1;;;30731:40:0;;;;;;;;;;;30627:156;30421:369;;;;:::o;46023:444::-;46122:13;46163:17;46171:8;46163:7;:17::i;:::-;46147:98;;;;-1:-1:-1;;;46147:98:0;;9665:2:1;46147:98:0;;;9647:21:1;9704:2;9684:18;;;9677:30;9743:34;9723:18;;;9716:62;-1:-1:-1;;;9794:18:1;;;9787:45;9849:19;;46147:98:0;9463:411:1;46147:98:0;46276:28;46307:10;:8;:10::i;:::-;46276:41;;46362:1;46337:14;46331:28;:32;:130;;;;;;;;;;;;;;;;;46399:14;46415:19;:8;:17;:19::i;:::-;46436:9;46382:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46331:130;46324:137;46023:444;-1:-1:-1;;;46023:444:0:o;44650:473::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;44750:18:::1;44778:13;23946:12:::0;;23736:7;23930:13;:28;;23692:303;44778:13:::1;44750:42:::0;-1:-1:-1;44800:16:0::1;44821:36;44841:9:::0;44821:36:::1;::::0;::::1;;:::i;:::-;44800:57:::0;-1:-1:-1;44429:5:0::1;44872:25;44800:57:::0;44872:38:::1;:25:::0;::::1;;:::i;:::-;:38;;44864:70;;;;-1:-1:-1::0;;;44864:70:0::1;;;;;;;:::i;:::-;44947:9;44942:116;44962:20:::0;;::::1;44942:116;;;45004:42;45014:9;;45024:1;45014:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;45028:17;45004:42;;:9;:42::i;:::-;44984:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44942:116;;;-1:-1:-1::0;;;;;;44650:473:0:o;46784:102::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;46851:18:::1;:27:::0;;-1:-1:-1;;46851:27:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46784:102::o;43523:201::-;42686:6;;-1:-1:-1;;;;;42686:6:0;2918:10;42833:23;42825:69;;;;-1:-1:-1;;;42825:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43612:22:0;::::1;43604:73;;;::::0;-1:-1:-1;;;43604:73:0;;8545:2:1;43604:73:0::1;::::0;::::1;8527:21:1::0;8584:2;8564:18;;;8557:30;8623:34;8603:18;;;8596:62;-1:-1:-1;;;8674:18:1;;;8667:36;8720:19;;43604:73:0::1;8343:402:1::0;43604:73:0::1;43688:28;43707:8;43688:18;:28::i;:::-;43523:201:::0;:::o;31045:187::-;31102:4;31166:13;;31156:7;:23;31126:98;;;;-1:-1:-1;;31197:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31197:27:0;;;;31196:28;;31045:187::o;39215:196::-;39330:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39330:29:0;-1:-1:-1;;;;;39330:29:0;;;;;;;;;39375:28;;39330:24;;39375:28;;;;;;;39215:196;;;:::o;34158:2130::-;34273:35;34311:21;34324:7;34311:12;:21::i;:::-;34273:59;;34371:4;-1:-1:-1;;;;;34349:26:0;:13;:18;;;-1:-1:-1;;;;;34349:26:0;;34345:67;;34384:28;;-1:-1:-1;;;34384:28:0;;;;;;;;;;;34345:67;34425:22;2918:10;-1:-1:-1;;;;;34451:20:0;;;;:73;;-1:-1:-1;34488:36:0;34505:4;2918:10;29693:164;:::i;34488:36::-;34451:126;;;-1:-1:-1;2918:10:0;34541:20;34553:7;34541:11;:20::i;:::-;-1:-1:-1;;;;;34541:36:0;;34451:126;34425:153;;34596:17;34591:66;;34622:35;;-1:-1:-1;;;34622:35:0;;;;;;;;;;;34591:66;-1:-1:-1;;;;;34672:16:0;;34668:52;;34697:23;;-1:-1:-1;;;34697:23:0;;;;;;;;;;;34668:52;34841:35;34858:1;34862:7;34871:4;34841:8;:35::i;:::-;-1:-1:-1;;;;;35172:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35172:31:0;;;;;;;-1:-1:-1;;35172:31:0;;;;;;;35218:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35218:29:0;;;;;;;;;;;35298:20;;;:11;:20;;;;;;35333:18;;-1:-1:-1;;;;;;35366:49:0;;;;-1:-1:-1;;;35399:15:0;35366:49;;;;;;;;;;35689:11;;35749:24;;;;;35792:13;;35298:20;;35749:24;;35792:13;35788:384;;36002:13;;35987:11;:28;35983:174;;36040:20;;36109:28;;;;36083:54;;-1:-1:-1;;;36083:54:0;-1:-1:-1;;;;;;36083:54:0;;;-1:-1:-1;;;;;36040:20:0;;36083:54;;;;35983:174;35147:1036;;;36219:7;36215:2;-1:-1:-1;;;;;36200:27:0;36209:4;-1:-1:-1;;;;;36200:27:0;;;;;;;;;;;36238:42;34262:2026;;34158:2130;;;:::o;31240:104::-;31309:27;31319:2;31323:8;31309:27;;;;;;;;;;;;:9;:27::i;26193:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26304:7:0;26387:13;;26380:4;:20;26349:886;;;26421:31;26455:17;;;:11;:17;;;;;;;;;26421:51;;;;;;;;;-1:-1:-1;;;;;26421:51:0;;;;-1:-1:-1;;;26421:51:0;;;;;;;;;;;-1:-1:-1;;;26421:51:0;;;;;;;;;;;;;;26491:729;;26541:14;;-1:-1:-1;;;;;26541:28:0;;26537:101;;26605:9;26193:1109;-1:-1:-1;;;26193:1109:0:o;26537:101::-;-1:-1:-1;;;26980:6:0;27025:17;;;;:11;:17;;;;;;;;;27013:29;;;;;;;;;-1:-1:-1;;;;;27013:29:0;;;;;-1:-1:-1;;;27013:29:0;;;;;;;;;;;-1:-1:-1;;;27013:29:0;;;;;;;;;;;;;27073:28;27069:109;;27141:9;26193:1109;-1:-1:-1;;;26193:1109:0:o;27069:109::-;26940:261;;;26402:833;26349:886;27263:31;;-1:-1:-1;;;27263:31:0;;;;;;;;;;;43884:191;43977:6;;;-1:-1:-1;;;;;43994:17:0;;;-1:-1:-1;;;;;;43994:17:0;;;;;;;44027:40;;43977:6;;;43994:17;43977:6;;44027:40;;43958:16;;44027:40;43947:128;43884:191;:::o;39903:667::-;40087:72;;-1:-1:-1;;;40087:72:0;;40066:4;;-1:-1:-1;;;;;40087:36:0;;;;;:72;;2918:10;;40138:4;;40144:7;;40153:5;;40087:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40087:72:0;;;;;;;;-1:-1:-1;;40087:72:0;;;;;;;;;;;;:::i;:::-;;;40083:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40321:13:0;;40317:235;;40367:40;;-1:-1:-1;;;40367:40:0;;;;;;;;;;;40317:235;40510:6;40504:13;40495:6;40491:2;40487:15;40480:38;40083:480;-1:-1:-1;;;;;;40206:55:0;-1:-1:-1;;;40206:55:0;;-1:-1:-1;40083:480:0;39903:667;;;;;;:::o;47049:97::-;47102:13;47131:9;47124:16;;;;;:::i;400:723::-;456:13;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;-1:-1:-1;;;704:10:0;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;990:56:0;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;31707:163;31830:32;31836:2;31840:8;31850:5;31857:4;32268:20;32291:13;-1:-1:-1;;;;;32319:16:0;;32315:48;;32344:19;;-1:-1:-1;;;32344:19:0;;;;;;;;;;;32315:48;32378:13;32374:44;;32400:18;;-1:-1:-1;;;32400:18:0;;;;;;;;;;;32374:44;-1:-1:-1;;;;;32769:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32828:49:0;;32769:44;;;;;;;;32828:49;;;;-1:-1:-1;;32769:44:0;;;;;;32828:49;;;;;;;;;;;;;;;;32894:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32944:66:0;;;;-1:-1:-1;;;32994:15:0;32944:66;;;;;;;;;;32894:25;33091:23;;;33135:4;:23;;;;-1:-1:-1;;;;;;33143:13:0;;4580:19;:23;;33143:15;33131:641;;;33179:314;33210:38;;33235:12;;-1:-1:-1;;;;;33210:38:0;;;33227:1;;33210:38;;33227:1;;33210:38;33276:69;33315:1;33319:2;33323:14;;;;;;33339:5;33276:30;:69::i;:::-;33271:174;;33381:40;;-1:-1:-1;;;33381:40:0;;;;;;;;;;;33271:174;33488:3;33472:12;:19;;33179:314;;33574:12;33557:13;;:29;33553:43;;33588:8;;;33553:43;33131:641;;;33637:120;33668:40;;33693:14;;;;;-1:-1:-1;;;;;33668:40:0;;;33685:1;;33668:40;;33685:1;;33668:40;33752:3;33736:12;:19;;33637:120;;33131:641;-1:-1:-1;33786:13:0;:28;33836:60;30421:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:666::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;2205:18;2197:6;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:22;;2313:4;2305:13;;2301:27;-1:-1:-1;2291:55:1;;2342:1;2339;2332:12;2291:55;2365:73;2430:7;2425:2;2412:16;2407:2;2403;2399:11;2365:73;:::i;:::-;2355:83;;;1778:666;;;;;;;:::o;2449:347::-;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;;2693:2;2682:9;2678:18;2665:32;2740:5;2733:13;2726:21;2719:5;2716:32;2706:60;;2762:1;2759;2752:12;2706:60;2785:5;2775:15;;;2449:347;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:245::-;3118:6;3171:2;3159:9;3150:7;3146:23;3142:32;3139:52;;;3187:1;3184;3177:12;3139:52;3226:9;3213:23;3245:30;3269:5;3245:30;:::i;3310:249::-;3379:6;3432:2;3420:9;3411:7;3407:23;3403:32;3400:52;;;3448:1;3445;3438:12;3400:52;3480:9;3474:16;3499:30;3523:5;3499:30;:::i;3564:450::-;3633:6;3686:2;3674:9;3665:7;3661:23;3657:32;3654:52;;;3702:1;3699;3692:12;3654:52;3742:9;3729:23;3775:18;3767:6;3764:30;3761:50;;;3807:1;3804;3797:12;3761:50;3830:22;;3883:4;3875:13;;3871:27;-1:-1:-1;3861:55:1;;3912:1;3909;3902:12;3861:55;3935:73;4000:7;3995:2;3982:16;3977:2;3973;3969:11;3935:73;:::i;4019:346::-;4086:6;4094;4147:2;4135:9;4126:7;4122:23;4118:32;4115:52;;;4163:1;4160;4153:12;4115:52;4202:9;4189:23;4252:6;4245:5;4241:18;4234:5;4231:29;4221:57;;4274:1;4271;4264:12;4370:180;4429:6;4482:2;4470:9;4461:7;4457:23;4453:32;4450:52;;;4498:1;4495;4488:12;4450:52;-1:-1:-1;4521:23:1;;4370:180;-1:-1:-1;4370:180:1:o;4555:182::-;4612:6;4665:2;4653:9;4644:7;4640:23;4636:32;4633:52;;;4681:1;4678;4671:12;4633:52;4704:27;4721:9;4704:27;:::i;4742:685::-;4835:6;4843;4851;4904:2;4892:9;4883:7;4879:23;4875:32;4872:52;;;4920:1;4917;4910:12;4872:52;4943:27;4960:9;4943:27;:::i;:::-;4933:37;;5021:2;5010:9;5006:18;4993:32;5044:18;5085:2;5077:6;5074:14;5071:34;;;5101:1;5098;5091:12;5071:34;5139:6;5128:9;5124:22;5114:32;;5184:7;5177:4;5173:2;5169:13;5165:27;5155:55;;5206:1;5203;5196:12;5155:55;5246:2;5233:16;5272:2;5264:6;5261:14;5258:34;;;5288:1;5285;5278:12;5258:34;5341:7;5336:2;5326:6;5323:1;5319:14;5315:2;5311:23;5307:32;5304:45;5301:65;;;5362:1;5359;5352:12;5301:65;5393:2;5389;5385:11;5375:21;;5415:6;5405:16;;;;;4742:685;;;;;:::o;5432:257::-;5473:3;5511:5;5505:12;5538:6;5533:3;5526:19;5554:63;5610:6;5603:4;5598:3;5594:14;5587:4;5580:5;5576:16;5554:63;:::i;:::-;5671:2;5650:15;-1:-1:-1;;5646:29:1;5637:39;;;;5678:4;5633:50;;5432:257;-1:-1:-1;;5432:257:1:o;5694:1527::-;5918:3;5956:6;5950:13;5982:4;5995:51;6039:6;6034:3;6029:2;6021:6;6017:15;5995:51;:::i;:::-;6109:13;;6068:16;;;;6131:55;6109:13;6068:16;6153:15;;;6131:55;:::i;:::-;6275:13;;6208:20;;;6248:1;;6335;6357:18;;;;6410;;;;6437:93;;6515:4;6505:8;6501:19;6489:31;;6437:93;6578:2;6568:8;6565:16;6545:18;6542:40;6539:167;;;-1:-1:-1;;;6605:33:1;;6661:4;6658:1;6651:15;6691:4;6612:3;6679:17;6539:167;6722:18;6749:110;;;;6873:1;6868:328;;;;6715:481;;6749:110;-1:-1:-1;;6784:24:1;;6770:39;;6829:20;;;;-1:-1:-1;6749:110:1;;6868:328;11564:1;11557:14;;;11601:4;11588:18;;6963:1;6977:169;6991:8;6988:1;6985:15;6977:169;;;7073:14;;7058:13;;;7051:37;7116:16;;;;7008:10;;6977:169;;;6981:3;;7177:8;7170:5;7166:20;7159:27;;6715:481;-1:-1:-1;7212:3:1;;5694:1527;-1:-1:-1;;;;;;;;;;;5694:1527:1:o;7434:488::-;-1:-1:-1;;;;;7703:15:1;;;7685:34;;7755:15;;7750:2;7735:18;;7728:43;7802:2;7787:18;;7780:34;;;7850:3;7845:2;7830:18;;7823:31;;;7628:4;;7871:45;;7896:19;;7888:6;7871:45;:::i;:::-;7863:53;7434:488;-1:-1:-1;;;;;;7434:488:1:o;8119:219::-;8268:2;8257:9;8250:21;8231:4;8288:44;8328:2;8317:9;8313:18;8305:6;8288:44;:::i;8750:356::-;8952:2;8934:21;;;8971:18;;;8964:30;9030:34;9025:2;9010:18;;9003:62;9097:2;9082:18;;8750:356::o;9879:343::-;10081:2;10063:21;;;10120:2;10100:18;;;10093:30;-1:-1:-1;;;10154:2:1;10139:18;;10132:49;10213:2;10198:18;;9879:343::o;11617:224::-;11656:3;11684:6;11717:2;11714:1;11710:10;11747:2;11744:1;11740:10;11778:3;11774:2;11770:12;11765:3;11762:21;11759:47;;;11786:18;;:::i;:::-;11822:13;;11617:224;-1:-1:-1;;;;11617:224:1:o;11846:128::-;11886:3;11917:1;11913:6;11910:1;11907:13;11904:39;;;11923:18;;:::i;:::-;-1:-1:-1;11959:9:1;;11846:128::o;11979:120::-;12019:1;12045;12035:35;;12050:18;;:::i;:::-;-1:-1:-1;12084:9:1;;11979:120::o;12104:168::-;12144:7;12210:1;12206;12202:6;12198:14;12195:1;12192:21;12187:1;12180:9;12173:17;12169:45;12166:71;;;12217:18;;:::i;:::-;-1:-1:-1;12257:9:1;;12104:168::o;12277:125::-;12317:4;12345:1;12342;12339:8;12336:34;;;12350:18;;:::i;:::-;-1:-1:-1;12387:9:1;;12277:125::o;12407:258::-;12479:1;12489:113;12503:6;12500:1;12497:13;12489:113;;;12579:11;;;12573:18;12560:11;;;12553:39;12525:2;12518:10;12489:113;;;12620:6;12617:1;12614:13;12611:48;;;-1:-1:-1;;12655:1:1;12637:16;;12630:27;12407:258::o;12670:380::-;12749:1;12745:12;;;;12792;;;12813:61;;12867:4;12859:6;12855:17;12845:27;;12813:61;12920:2;12912:6;12909:14;12889:18;12886:38;12883:161;;;12966:10;12961:3;12957:20;12954:1;12947:31;13001:4;12998:1;12991:15;13029:4;13026:1;13019:15;12883:161;;12670:380;;;:::o;13055:135::-;13094:3;-1:-1:-1;;13115:17:1;;13112:43;;;13135:18;;:::i;:::-;-1:-1:-1;13182:1:1;13171:13;;13055:135::o;13195:112::-;13227:1;13253;13243:35;;13258:18;;:::i;:::-;-1:-1:-1;13292:9:1;;13195:112::o;13312:127::-;13373:10;13368:3;13364:20;13361:1;13354:31;13404:4;13401:1;13394:15;13428:4;13425:1;13418:15;13444:127;13505:10;13500:3;13496:20;13493:1;13486:31;13536:4;13533:1;13526:15;13560:4;13557:1;13550:15;13576:127;13637:10;13632:3;13628:20;13625:1;13618:31;13668:4;13665:1;13658:15;13692:4;13689:1;13682:15;13708:127;13769:10;13764:3;13760:20;13757:1;13750:31;13800:4;13797:1;13790:15;13824:4;13821:1;13814:15;13840:131;-1:-1:-1;;;;;;13914:32:1;;13904:43;;13894:71;;13961:1;13958;13951:12
Swarm Source
ipfs://53267fa9a74f26d250bdcde41617275292fa1a7f7fe59e04d4add28efb549af8
Loading...
Loading
Loading...
Loading
[ 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.