ERC-721
Overview
Max Total Supply
3,029 BLOOM
Holders
2,668
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MiceliosBloom
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-06 */ /** *Submitted for verification at Etherscan.io on 2022-06-24 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.14; /** * @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); } } // Context.sol /** * @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; } } // 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Address.sol /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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); } } } } // 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); } // 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); } // 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; } } // 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; } // 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 tokenId); /** * @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); } // 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); } // ERC721A.sol contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 1; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex-1; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @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) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); 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); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @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 tokenId < currentIndex; } 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); } function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } 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 || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _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)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { 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('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract MiceliosBloom is ERC721A, Ownable { uint256 MAX_SUPPLY = 10000; uint256 Allremain = 10000; uint256 public mintRate = 0.003 ether; uint256 MintForWallet = 10000; string public base_URI = ""; string public baseExtension = ".json"; string public prerevealURL = "ipfs://QmevhLoQFLATTM3eyFN36ouRLQpSnXz9q5hVaeywd97gZJ/hidden.json" ; bool public start = true; mapping (address => uint256) private MintedBalance; constructor() ERC721A("MiceliosBloom", "BLOOM") {} function reveal(string memory url) external onlyOwner { base_URI = url; } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function _baseURI() internal view override returns (string memory) { return base_URI; } function pauseStartSwitch() public onlyOwner { start = !start; } function RemainingItem() public view returns (uint256) { return Allremain; } function mint(uint256 quantity) public payable { require(start, "Sorry, Minting is paused."); require(quantity<=6 , "Sorry, there are only 10 items allowed for each minting."); require((totalSupply() + quantity) <= MAX_SUPPLY, "Sorry, There is no more items."); uint payforNum = quantity; if(MintedBalance[msg.sender] == 0){ payforNum = payforNum - 1; } require(msg.value >= payforNum * mintRate, "Ether is not enough."); _safeMint(msg.sender, quantity); MintedBalance[msg.sender] = MintedBalance[msg.sender] + quantity; Allremain -= quantity; } function setRate(uint256 newRate) external onlyOwner { mintRate = newRate; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId), baseExtension)) : prerevealURL; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"RemainingItem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"base_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pauseStartSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","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":"uint256","name":"newRate","type":"uint256"}],"name":"setRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6001600090815561271060088190556009819055660aa87bee538000600a55600b5560a0604081905260808290526200003c91600c919062000199565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006b91600d9162000199565b506040518060800160405280604181526020016200242e6041913980516200009c91600e9160209091019062000199565b50600f805460ff19166001179055348015620000b757600080fd5b50604080518082018252600d81526c4d6963656c696f73426c6f6f6d60981b602080830191825283518085019094526005845264424c4f4f4d60d81b9084015281519192916200010a9160019162000199565b5080516200012090600290602084019062000199565b5050506200013d620001376200014360201b60201c565b62000147565b6200027b565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a7906200023f565b90600052602060002090601f016020900481019282620001cb576000855562000216565b82601f10620001e657805160ff191683800117855562000216565b8280016001018555821562000216579182015b8281111562000216578251825591602001919060010190620001f9565b506200022492915062000228565b5090565b5b8082111562000224576000815560010162000229565b600181811c908216806200025457607f821691505b6020821081036200027557634e487b7160e01b600052602260045260246000fd5b50919050565b6121a3806200028b6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063b88d4fde11610095578063ca0dcf1611610064578063ca0dcf161461050f578063d821048214610525578063e985e9c51461053a578063f2fde38b1461058357600080fd5b8063b88d4fde146104a0578063be9a6555146104c0578063c6682862146104da578063c87b56dd146104ef57600080fd5b80639e890335116100d15780639e89033514610443578063a0712d6814610458578063a22cb4651461046b578063a95a91e11461048b57600080fd5b806370a08231146103db578063715018a6146103fb5780638da5cb5b1461041057806395d89b411461042e57600080fd5b80632f745c591161017a578063438b630011610149578063438b63001461034e5780634c2612471461037b5780634f6ccce71461039b5780636352211e146103bb57600080fd5b80632f745c59146102e657806334fcf437146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b15780632e84d90e146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611b7b565b6105a3565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610610565b6040516102099190611bf0565b34801561024057600080fd5b5061025461024f366004611c03565b6106a2565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611c38565b610732565b005b34801561029a57600080fd5b506102a3610849565b604051908152602001610209565b3480156102bd57600080fd5b5061028c6102cc366004611c62565b61085f565b3480156102dd57600080fd5b5061028c61086a565b3480156102f257600080fd5b506102a3610301366004611c38565b6108a8565b34801561031257600080fd5b5061028c610321366004611c03565b610a0d565b61028c610a3c565b34801561033a57600080fd5b5061028c610349366004611c62565b610aa2565b34801561035a57600080fd5b5061036e610369366004611c9e565b610abd565b6040516102099190611cb9565b34801561038757600080fd5b5061028c610396366004611d89565b610b5f565b3480156103a757600080fd5b506102a36103b6366004611c03565b610ba0565b3480156103c757600080fd5b506102546103d6366004611c03565b610c08565b3480156103e757600080fd5b506102a36103f6366004611c9e565b610c1a565b34801561040757600080fd5b5061028c610cab565b34801561041c57600080fd5b506007546001600160a01b0316610254565b34801561043a57600080fd5b50610227610ce1565b34801561044f57600080fd5b50610227610cf0565b61028c610466366004611c03565b610d7e565b34801561047757600080fd5b5061028c610486366004611dd2565b610f76565b34801561049757600080fd5b506009546102a3565b3480156104ac57600080fd5b5061028c6104bb366004611e0e565b61103a565b3480156104cc57600080fd5b50600f546101fd9060ff1681565b3480156104e657600080fd5b50610227611073565b3480156104fb57600080fd5b5061022761050a366004611c03565b611080565b34801561051b57600080fd5b506102a3600a5481565b34801561053157600080fd5b506102276111cc565b34801561054657600080fd5b506101fd610555366004611e8a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058f57600080fd5b5061028c61059e366004611c9e565b6111d9565b60006001600160e01b031982166380ac58cd60e01b14806105d457506001600160e01b03198216635b5e139f60e01b145b806105ef57506001600160e01b0319821663780e9d6360e01b145b8061060a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061f90611ebd565b80601f016020809104026020016040519081016040528092919081815260200182805461064b90611ebd565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b60006106af826000541190565b6107165760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073d82610c08565b9050806001600160a01b0316836001600160a01b0316036107ab5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161070d565b336001600160a01b03821614806107c757506107c78133610555565b6108395760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161070d565b610844838383611271565b505050565b6000600160005461085a9190611f0d565b905090565b6108448383836112cd565b6007546001600160a01b031633146108945760405162461bcd60e51b815260040161070d90611f24565b600f805460ff19811660ff90911615179055565b60006108b383610c1a565b821061090c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161070d565b6000610916610849565b905060008060005b838110156109ad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561097157805192505b876001600160a01b0316836001600160a01b0316036109a45786840361099d5750935061060a92505050565b6001909301925b5060010161091e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161070d565b6007546001600160a01b03163314610a375760405162461bcd60e51b815260040161070d90611f24565b600a55565b6007546001600160a01b03163314610a665760405162461bcd60e51b815260040161070d90611f24565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a9f573d6000803e3d6000fd5b50565b6108448383836040518060200160405280600081525061103a565b60606000610aca83610c1a565b905060008167ffffffffffffffff811115610ae757610ae7611cfd565b604051908082528060200260200182016040528015610b10578160200160208202803683370190505b50905060005b82811015610b5757610b2885826108a8565b828281518110610b3a57610b3a611f59565b602090810291909101015280610b4f81611f6f565b915050610b16565b509392505050565b6007546001600160a01b03163314610b895760405162461bcd60e51b815260040161070d90611f24565b8051610b9c90600c906020840190611ad5565b5050565b6000610baa610849565b8210610c045760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161070d565b5090565b6000610c13826115b2565b5192915050565b60006001600160a01b038216610c865760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161070d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610cd55760405162461bcd60e51b815260040161070d90611f24565b610cdf6000611689565b565b60606002805461061f90611ebd565b600c8054610cfd90611ebd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2990611ebd565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b505050505081565b600f5460ff16610dd05760405162461bcd60e51b815260206004820152601960248201527f536f7272792c204d696e74696e67206973207061757365642e00000000000000604482015260640161070d565b6006811115610e475760405162461bcd60e51b815260206004820152603860248201527f536f7272792c20746865726520617265206f6e6c79203130206974656d73206160448201527f6c6c6f77656420666f722065616368206d696e74696e672e0000000000000000606482015260840161070d565b60085481610e53610849565b610e5d9190611f88565b1115610eab5760405162461bcd60e51b815260206004820152601e60248201527f536f7272792c205468657265206973206e6f206d6f7265206974656d732e0000604482015260640161070d565b33600090815260106020526040812054829103610ed057610ecd600182611f0d565b90505b600a54610edd9082611fa0565b341015610f235760405162461bcd60e51b815260206004820152601460248201527322ba3432b91034b9903737ba1032b737bab3b41760611b604482015260640161070d565b610f2d33836116db565b33600090815260106020526040902054610f48908390611f88565b3360009081526010602052604081209190915560098054849290610f6d908490611f0d565b90915550505050565b336001600160a01b03831603610fce5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161070d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110458484846112cd565b611051848484846116f5565b61106d5760405162461bcd60e51b815260040161070d90611fbf565b50505050565b600d8054610cfd90611ebd565b606061108d826000541190565b6110f25760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b606482015260840161070d565b60006110fc6117f7565b9050600081511161119757600e805461111490611ebd565b80601f016020809104026020016040519081016040528092919081815260200182805461114090611ebd565b801561118d5780601f106111625761010080835404028352916020019161118d565b820191906000526020600020905b81548152906001019060200180831161117057829003601f168201915b50505050506111c5565b806111a184611806565b600d6040516020016111b593929190612012565b6040516020818303038152906040525b9392505050565b600e8054610cfd90611ebd565b6007546001600160a01b031633146112035760405162461bcd60e51b815260040161070d90611f24565b6001600160a01b0381166112685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070d565b610a9f81611689565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112d8826115b2565b80519091506000906001600160a01b0316336001600160a01b0316148061130f575033611304846106a2565b6001600160a01b0316145b80611321575081516113219033610555565b90508061138b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161070d565b846001600160a01b031682600001516001600160a01b0316146113ff5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161070d565b6001600160a01b0384166114635760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161070d565b6114736000848460000151611271565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115685761151b816000541190565b15611568578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526115d1826000541190565b6116305760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161070d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561167f579392505050565b5060001901611632565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b9c828260405180602001604052806000815250611907565b60006001600160a01b0384163b156117eb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117399033908990889088906004016120d5565b6020604051808303816000875af1925050508015611774575060408051601f3d908101601f1916820190925261177191810190612112565b60015b6117d1573d8080156117a2576040519150601f19603f3d011682016040523d82523d6000602084013e6117a7565b606091505b5080516000036117c95760405162461bcd60e51b815260040161070d90611fbf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ef565b5060015b949350505050565b6060600c805461061f90611ebd565b60608160000361182d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611857578061184181611f6f565b91506118509050600a83612145565b9150611831565b60008167ffffffffffffffff81111561187257611872611cfd565b6040519080825280601f01601f19166020018201604052801561189c576020820181803683370190505b5090505b84156117ef576118b1600183611f0d565b91506118be600a86612159565b6118c9906030611f88565b60f81b8183815181106118de576118de611f59565b60200101906001600160f81b031916908160001a905350611900600a86612145565b94506118a0565b61084483838360016000546001600160a01b0385166119725760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161070d565b836000036119d35760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161070d565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611acc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ac057611aa460008884886116f5565b611ac05760405162461bcd60e51b815260040161070d90611fbf565b60019182019101611a51565b506000556115ab565b828054611ae190611ebd565b90600052602060002090601f016020900481019282611b035760008555611b49565b82601f10611b1c57805160ff1916838001178555611b49565b82800160010185558215611b49579182015b82811115611b49578251825591602001919060010190611b2e565b50610c049291505b80821115610c045760008155600101611b51565b6001600160e01b031981168114610a9f57600080fd5b600060208284031215611b8d57600080fd5b81356111c581611b65565b60005b83811015611bb3578181015183820152602001611b9b565b8381111561106d5750506000910152565b60008151808452611bdc816020860160208601611b98565b601f01601f19169290920160200192915050565b6020815260006111c56020830184611bc4565b600060208284031215611c1557600080fd5b5035919050565b80356001600160a01b0381168114611c3357600080fd5b919050565b60008060408385031215611c4b57600080fd5b611c5483611c1c565b946020939093013593505050565b600080600060608486031215611c7757600080fd5b611c8084611c1c565b9250611c8e60208501611c1c565b9150604084013590509250925092565b600060208284031215611cb057600080fd5b6111c582611c1c565b6020808252825182820181905260009190848201906040850190845b81811015611cf157835183529284019291840191600101611cd5565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d2e57611d2e611cfd565b604051601f8501601f19908116603f01168101908282118183101715611d5657611d56611cfd565b81604052809350858152868686011115611d6f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d9b57600080fd5b813567ffffffffffffffff811115611db257600080fd5b8201601f81018413611dc357600080fd5b6117ef84823560208401611d13565b60008060408385031215611de557600080fd5b611dee83611c1c565b915060208301358015158114611e0357600080fd5b809150509250929050565b60008060008060808587031215611e2457600080fd5b611e2d85611c1c565b9350611e3b60208601611c1c565b925060408501359150606085013567ffffffffffffffff811115611e5e57600080fd5b8501601f81018713611e6f57600080fd5b611e7e87823560208401611d13565b91505092959194509250565b60008060408385031215611e9d57600080fd5b611ea683611c1c565b9150611eb460208401611c1c565b90509250929050565b600181811c90821680611ed157607f821691505b602082108103611ef157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611f1f57611f1f611ef7565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201611f8157611f81611ef7565b5060010190565b60008219821115611f9b57611f9b611ef7565b500190565b6000816000190483118215151615611fba57611fba611ef7565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206120258285838a01611b98565b8551918401916120388184848a01611b98565b8554920191600090600181811c908083168061205557607f831692505b858310810361207257634e487b7160e01b85526022600452602485fd5b8080156120865760018114612097576120c4565b60ff198516885283880195506120c4565b60008b81526020902060005b858110156120bc5781548a8201529084019088016120a3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210890830184611bc4565b9695505050505050565b60006020828403121561212457600080fd5b81516111c581611b65565b634e487b7160e01b600052601260045260246000fd5b6000826121545761215461212f565b500490565b6000826121685761216861212f565b50069056fea264697066735822122046512f366141f643aa6caed5f63a8ea268b0de357aba130efb9b4a407866641e64736f6c634300080e0033697066733a2f2f516d6576684c6f51464c4154544d336579464e33366f75524c5170536e587a397135685661657977643937675a4a2f68696464656e2e6a736f6e
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806370a0823111610102578063b88d4fde11610095578063ca0dcf1611610064578063ca0dcf161461050f578063d821048214610525578063e985e9c51461053a578063f2fde38b1461058357600080fd5b8063b88d4fde146104a0578063be9a6555146104c0578063c6682862146104da578063c87b56dd146104ef57600080fd5b80639e890335116100d15780639e89033514610443578063a0712d6814610458578063a22cb4651461046b578063a95a91e11461048b57600080fd5b806370a08231146103db578063715018a6146103fb5780638da5cb5b1461041057806395d89b411461042e57600080fd5b80632f745c591161017a578063438b630011610149578063438b63001461034e5780634c2612471461037b5780634f6ccce71461039b5780636352211e146103bb57600080fd5b80632f745c59146102e657806334fcf437146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102b15780632e84d90e146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611b7b565b6105a3565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610610565b6040516102099190611bf0565b34801561024057600080fd5b5061025461024f366004611c03565b6106a2565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611c38565b610732565b005b34801561029a57600080fd5b506102a3610849565b604051908152602001610209565b3480156102bd57600080fd5b5061028c6102cc366004611c62565b61085f565b3480156102dd57600080fd5b5061028c61086a565b3480156102f257600080fd5b506102a3610301366004611c38565b6108a8565b34801561031257600080fd5b5061028c610321366004611c03565b610a0d565b61028c610a3c565b34801561033a57600080fd5b5061028c610349366004611c62565b610aa2565b34801561035a57600080fd5b5061036e610369366004611c9e565b610abd565b6040516102099190611cb9565b34801561038757600080fd5b5061028c610396366004611d89565b610b5f565b3480156103a757600080fd5b506102a36103b6366004611c03565b610ba0565b3480156103c757600080fd5b506102546103d6366004611c03565b610c08565b3480156103e757600080fd5b506102a36103f6366004611c9e565b610c1a565b34801561040757600080fd5b5061028c610cab565b34801561041c57600080fd5b506007546001600160a01b0316610254565b34801561043a57600080fd5b50610227610ce1565b34801561044f57600080fd5b50610227610cf0565b61028c610466366004611c03565b610d7e565b34801561047757600080fd5b5061028c610486366004611dd2565b610f76565b34801561049757600080fd5b506009546102a3565b3480156104ac57600080fd5b5061028c6104bb366004611e0e565b61103a565b3480156104cc57600080fd5b50600f546101fd9060ff1681565b3480156104e657600080fd5b50610227611073565b3480156104fb57600080fd5b5061022761050a366004611c03565b611080565b34801561051b57600080fd5b506102a3600a5481565b34801561053157600080fd5b506102276111cc565b34801561054657600080fd5b506101fd610555366004611e8a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058f57600080fd5b5061028c61059e366004611c9e565b6111d9565b60006001600160e01b031982166380ac58cd60e01b14806105d457506001600160e01b03198216635b5e139f60e01b145b806105ef57506001600160e01b0319821663780e9d6360e01b145b8061060a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061f90611ebd565b80601f016020809104026020016040519081016040528092919081815260200182805461064b90611ebd565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b60006106af826000541190565b6107165760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061073d82610c08565b9050806001600160a01b0316836001600160a01b0316036107ab5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161070d565b336001600160a01b03821614806107c757506107c78133610555565b6108395760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161070d565b610844838383611271565b505050565b6000600160005461085a9190611f0d565b905090565b6108448383836112cd565b6007546001600160a01b031633146108945760405162461bcd60e51b815260040161070d90611f24565b600f805460ff19811660ff90911615179055565b60006108b383610c1a565b821061090c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161070d565b6000610916610849565b905060008060005b838110156109ad576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561097157805192505b876001600160a01b0316836001600160a01b0316036109a45786840361099d5750935061060a92505050565b6001909301925b5060010161091e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161070d565b6007546001600160a01b03163314610a375760405162461bcd60e51b815260040161070d90611f24565b600a55565b6007546001600160a01b03163314610a665760405162461bcd60e51b815260040161070d90611f24565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a9f573d6000803e3d6000fd5b50565b6108448383836040518060200160405280600081525061103a565b60606000610aca83610c1a565b905060008167ffffffffffffffff811115610ae757610ae7611cfd565b604051908082528060200260200182016040528015610b10578160200160208202803683370190505b50905060005b82811015610b5757610b2885826108a8565b828281518110610b3a57610b3a611f59565b602090810291909101015280610b4f81611f6f565b915050610b16565b509392505050565b6007546001600160a01b03163314610b895760405162461bcd60e51b815260040161070d90611f24565b8051610b9c90600c906020840190611ad5565b5050565b6000610baa610849565b8210610c045760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161070d565b5090565b6000610c13826115b2565b5192915050565b60006001600160a01b038216610c865760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161070d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610cd55760405162461bcd60e51b815260040161070d90611f24565b610cdf6000611689565b565b60606002805461061f90611ebd565b600c8054610cfd90611ebd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2990611ebd565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b505050505081565b600f5460ff16610dd05760405162461bcd60e51b815260206004820152601960248201527f536f7272792c204d696e74696e67206973207061757365642e00000000000000604482015260640161070d565b6006811115610e475760405162461bcd60e51b815260206004820152603860248201527f536f7272792c20746865726520617265206f6e6c79203130206974656d73206160448201527f6c6c6f77656420666f722065616368206d696e74696e672e0000000000000000606482015260840161070d565b60085481610e53610849565b610e5d9190611f88565b1115610eab5760405162461bcd60e51b815260206004820152601e60248201527f536f7272792c205468657265206973206e6f206d6f7265206974656d732e0000604482015260640161070d565b33600090815260106020526040812054829103610ed057610ecd600182611f0d565b90505b600a54610edd9082611fa0565b341015610f235760405162461bcd60e51b815260206004820152601460248201527322ba3432b91034b9903737ba1032b737bab3b41760611b604482015260640161070d565b610f2d33836116db565b33600090815260106020526040902054610f48908390611f88565b3360009081526010602052604081209190915560098054849290610f6d908490611f0d565b90915550505050565b336001600160a01b03831603610fce5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161070d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110458484846112cd565b611051848484846116f5565b61106d5760405162461bcd60e51b815260040161070d90611fbf565b50505050565b600d8054610cfd90611ebd565b606061108d826000541190565b6110f25760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b606482015260840161070d565b60006110fc6117f7565b9050600081511161119757600e805461111490611ebd565b80601f016020809104026020016040519081016040528092919081815260200182805461114090611ebd565b801561118d5780601f106111625761010080835404028352916020019161118d565b820191906000526020600020905b81548152906001019060200180831161117057829003601f168201915b50505050506111c5565b806111a184611806565b600d6040516020016111b593929190612012565b6040516020818303038152906040525b9392505050565b600e8054610cfd90611ebd565b6007546001600160a01b031633146112035760405162461bcd60e51b815260040161070d90611f24565b6001600160a01b0381166112685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070d565b610a9f81611689565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112d8826115b2565b80519091506000906001600160a01b0316336001600160a01b0316148061130f575033611304846106a2565b6001600160a01b0316145b80611321575081516113219033610555565b90508061138b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161070d565b846001600160a01b031682600001516001600160a01b0316146113ff5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161070d565b6001600160a01b0384166114635760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161070d565b6114736000848460000151611271565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115685761151b816000541190565b15611568578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526115d1826000541190565b6116305760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161070d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561167f579392505050565b5060001901611632565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b9c828260405180602001604052806000815250611907565b60006001600160a01b0384163b156117eb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117399033908990889088906004016120d5565b6020604051808303816000875af1925050508015611774575060408051601f3d908101601f1916820190925261177191810190612112565b60015b6117d1573d8080156117a2576040519150601f19603f3d011682016040523d82523d6000602084013e6117a7565b606091505b5080516000036117c95760405162461bcd60e51b815260040161070d90611fbf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ef565b5060015b949350505050565b6060600c805461061f90611ebd565b60608160000361182d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611857578061184181611f6f565b91506118509050600a83612145565b9150611831565b60008167ffffffffffffffff81111561187257611872611cfd565b6040519080825280601f01601f19166020018201604052801561189c576020820181803683370190505b5090505b84156117ef576118b1600183611f0d565b91506118be600a86612159565b6118c9906030611f88565b60f81b8183815181106118de576118de611f59565b60200101906001600160f81b031916908160001a905350611900600a86612145565b94506118a0565b61084483838360016000546001600160a01b0385166119725760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161070d565b836000036119d35760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161070d565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611acc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611ac057611aa460008884886116f5565b611ac05760405162461bcd60e51b815260040161070d90611fbf565b60019182019101611a51565b506000556115ab565b828054611ae190611ebd565b90600052602060002090601f016020900481019282611b035760008555611b49565b82601f10611b1c57805160ff1916838001178555611b49565b82800160010185558215611b49579182015b82811115611b49578251825591602001919060010190611b2e565b50610c049291505b80821115610c045760008155600101611b51565b6001600160e01b031981168114610a9f57600080fd5b600060208284031215611b8d57600080fd5b81356111c581611b65565b60005b83811015611bb3578181015183820152602001611b9b565b8381111561106d5750506000910152565b60008151808452611bdc816020860160208601611b98565b601f01601f19169290920160200192915050565b6020815260006111c56020830184611bc4565b600060208284031215611c1557600080fd5b5035919050565b80356001600160a01b0381168114611c3357600080fd5b919050565b60008060408385031215611c4b57600080fd5b611c5483611c1c565b946020939093013593505050565b600080600060608486031215611c7757600080fd5b611c8084611c1c565b9250611c8e60208501611c1c565b9150604084013590509250925092565b600060208284031215611cb057600080fd5b6111c582611c1c565b6020808252825182820181905260009190848201906040850190845b81811015611cf157835183529284019291840191600101611cd5565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d2e57611d2e611cfd565b604051601f8501601f19908116603f01168101908282118183101715611d5657611d56611cfd565b81604052809350858152868686011115611d6f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d9b57600080fd5b813567ffffffffffffffff811115611db257600080fd5b8201601f81018413611dc357600080fd5b6117ef84823560208401611d13565b60008060408385031215611de557600080fd5b611dee83611c1c565b915060208301358015158114611e0357600080fd5b809150509250929050565b60008060008060808587031215611e2457600080fd5b611e2d85611c1c565b9350611e3b60208601611c1c565b925060408501359150606085013567ffffffffffffffff811115611e5e57600080fd5b8501601f81018713611e6f57600080fd5b611e7e87823560208401611d13565b91505092959194509250565b60008060408385031215611e9d57600080fd5b611ea683611c1c565b9150611eb460208401611c1c565b90509250929050565b600181811c90821680611ed157607f821691505b602082108103611ef157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611f1f57611f1f611ef7565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201611f8157611f81611ef7565b5060010190565b60008219821115611f9b57611f9b611ef7565b500190565b6000816000190483118215151615611fba57611fba611ef7565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000845160206120258285838a01611b98565b8551918401916120388184848a01611b98565b8554920191600090600181811c908083168061205557607f831692505b858310810361207257634e487b7160e01b85526022600452602485fd5b8080156120865760018114612097576120c4565b60ff198516885283880195506120c4565b60008b81526020902060005b858110156120bc5781548a8201529084019088016120a3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210890830184611bc4565b9695505050505050565b60006020828403121561212457600080fd5b81516111c581611b65565b634e487b7160e01b600052601260045260246000fd5b6000826121545761215461212f565b500490565b6000826121685761216861212f565b50069056fea264697066735822122046512f366141f643aa6caed5f63a8ea268b0de357aba130efb9b4a407866641e64736f6c634300080e0033
Deployed Bytecode Sourcemap
37596:2709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24721:372;;;;;;;;;;-1:-1:-1;24721:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24721:372:0;;;;;;;;26607:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28169:214::-;;;;;;;;;;-1:-1:-1;28169:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28169:214:0;1528:203:1;27690:413:0;;;;;;;;;;-1:-1:-1;27690:413:0;;;;;:::i;:::-;;:::i;:::-;;22976:102;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;22976:102:0;2173:177:1;29045:162:0;;;;;;;;;;-1:-1:-1;29045:162:0;;;;;:::i;:::-;;:::i;38454:78::-;;;;;;;;;;;;;:::i;23642:1007::-;;;;;;;;;;-1:-1:-1;23642:1007:0;;;;;:::i;:::-;;:::i;39321:90::-;;;;;;;;;;-1:-1:-1;39321:90:0;;;;;:::i;:::-;;:::i;38221:114::-;;;:::i;29278:177::-;;;;;;;;;;-1:-1:-1;29278:177:0;;;;;:::i;:::-;;:::i;39423:386::-;;;;;;;;;;-1:-1:-1;39423:386:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;38135:78::-;;;;;;;;;;-1:-1:-1;38135:78:0;;;;;:::i;:::-;;:::i;23155:187::-;;;;;;;;;;-1:-1:-1;23155:187:0;;;;;:::i;:::-;;:::i;26416:124::-;;;;;;;;;;-1:-1:-1;26416:124:0;;;;;:::i;:::-;;:::i;25157:221::-;;;;;;;;;;-1:-1:-1;25157:221:0;;;;;:::i;:::-;;:::i;4466:94::-;;;;;;;;;;;;;:::i;3815:87::-;;;;;;;;;;-1:-1:-1;3888:6:0;;-1:-1:-1;;;;;3888:6:0;3815:87;;26776:104;;;;;;;;;;;;;:::i;37798:27::-;;;;;;;;;;;;;:::i;38642:671::-;;;;;;:::i;:::-;;:::i;28455:288::-;;;;;;;;;;-1:-1:-1;28455:288:0;;;;;:::i;:::-;;:::i;38540:90::-;;;;;;;;;;-1:-1:-1;38613:9:0;;38540:90;;29526:355;;;;;;;;;;-1:-1:-1;29526:355:0;;;;;:::i;:::-;;:::i;37980:24::-;;;;;;;;;;-1:-1:-1;37980:24:0;;;;;;;;37832:37;;;;;;;;;;;;;:::i;39817:483::-;;;;;;;;;;-1:-1:-1;39817:483:0;;;;;:::i;:::-;;:::i;37717:37::-;;;;;;;;;;;;;;;;37876:96;;;;;;;;;;;;;:::i;28814:164::-;;;;;;;;;;-1:-1:-1;28814:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28935:25:0;;;28911:4;28935:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28814:164;4715:192;;;;;;;;;;-1:-1:-1;4715:192:0;;;;;:::i;:::-;;:::i;24721:372::-;24823:4;-1:-1:-1;;;;;;24860:40:0;;-1:-1:-1;;;24860:40:0;;:105;;-1:-1:-1;;;;;;;24917:48:0;;-1:-1:-1;;;24917:48:0;24860:105;:172;;;-1:-1:-1;;;;;;;24982:50:0;;-1:-1:-1;;;24982:50:0;24860:172;:225;;;-1:-1:-1;;;;;;;;;;15380:40:0;;;25049:36;24840:245;24721:372;-1:-1:-1;;24721:372:0:o;26607:100::-;26661:13;26694:5;26687:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26607:100;:::o;28169:214::-;28237:7;28265:16;28273:7;30193:4;30227:12;-1:-1:-1;30217:22:0;30136:111;28265:16;28257:74;;;;-1:-1:-1;;;28257:74:0;;6617:2:1;28257:74:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:43;6799:19;;28257:74:0;;;;;;;;;-1:-1:-1;28351:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28351:24:0;;28169:214::o;27690:413::-;27763:13;27779:24;27795:7;27779:15;:24::i;:::-;27763:40;;27828:5;-1:-1:-1;;;;;27822:11:0;:2;-1:-1:-1;;;;;27822:11:0;;27814:58;;;;-1:-1:-1;;;27814:58:0;;7031:2:1;27814:58:0;;;7013:21:1;7070:2;7050:18;;;7043:30;7109:34;7089:18;;;7082:62;-1:-1:-1;;;7160:18:1;;;7153:32;7202:19;;27814:58:0;6829:398:1;27814:58:0;2753:10;-1:-1:-1;;;;;27907:21:0;;;;:62;;-1:-1:-1;27932:37:0;27949:5;2753:10;28814:164;:::i;27932:37::-;27885:169;;;;-1:-1:-1;;;27885:169:0;;7434:2:1;27885:169:0;;;7416:21:1;7473:2;7453:18;;;7446:30;7512:34;7492:18;;;7485:62;7583:27;7563:18;;;7556:55;7628:19;;27885:169:0;7232:421:1;27885:169:0;28067:28;28076:2;28080:7;28089:5;28067:8;:28::i;:::-;27752:351;27690:413;;:::o;22976:102::-;23029:7;23069:1;23056:12;;:14;;;;:::i;:::-;23049:21;;22976:102;:::o;29045:162::-;29171:28;29181:4;29187:2;29191:7;29171:9;:28::i;38454:78::-;3888:6;;-1:-1:-1;;;;;3888:6:0;2753:10;4035:23;4027:68;;;;-1:-1:-1;;;4027:68:0;;;;;;;:::i;:::-;38519:5:::1;::::0;;-1:-1:-1;;38510:14:0;::::1;38519:5;::::0;;::::1;38518:6;38510:14;::::0;;38454:78::o;23642:1007::-;23731:7;23767:16;23777:5;23767:9;:16::i;:::-;23759:5;:24;23751:71;;;;-1:-1:-1;;;23751:71:0;;8483:2:1;23751:71:0;;;8465:21:1;8522:2;8502:18;;;8495:30;8561:34;8541:18;;;8534:62;-1:-1:-1;;;8612:18:1;;;8605:32;8654:19;;23751:71:0;8281:398:1;23751:71:0;23833:22;23858:13;:11;:13::i;:::-;23833:38;;23882:19;23912:25;24101:9;24096:466;24116:14;24112:1;:18;24096:466;;;24156:31;24190:14;;;:11;:14;;;;;;;;;24156:48;;;;;;;;;-1:-1:-1;;;;;24156:48:0;;;;;-1:-1:-1;;;24156:48:0;;;;;;;;;;;;24227:28;24223:111;;24300:14;;;-1:-1:-1;24223:111:0;24377:5;-1:-1:-1;;;;;24356:26:0;:17;-1:-1:-1;;;;;24356:26:0;;24352:195;;24426:5;24411:11;:20;24407:85;;-1:-1:-1;24467:1:0;-1:-1:-1;24460:8:0;;-1:-1:-1;;;24460:8:0;24407:85;24514:13;;;;;24352:195;-1:-1:-1;24132:3:0;;24096:466;;;-1:-1:-1;24585:56:0;;-1:-1:-1;;;24585:56:0;;8886:2:1;24585:56:0;;;8868:21:1;8925:2;8905:18;;;8898:30;8964:34;8944:18;;;8937:62;-1:-1:-1;;;9015:18:1;;;9008:44;9069:19;;24585:56:0;8684:410:1;39321:90:0;3888:6;;-1:-1:-1;;;;;3888:6:0;2753:10;4035:23;4027:68;;;;-1:-1:-1;;;4027:68:0;;;;;;;:::i;:::-;39385:8:::1;:18:::0;39321:90::o;38221:114::-;3888:6;;-1:-1:-1;;;;;3888:6:0;2753:10;4035:23;4027:68;;;;-1:-1:-1;;;4027:68:0;;;;;;;:::i;:::-;3888:6;;38279:48:::1;::::0;-1:-1:-1;;;;;3888:6:0;;;;38305:21:::1;38279:48:::0;::::1;;;::::0;::::1;::::0;;;38305:21;3888:6;38279:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38221:114::o:0;29278:177::-;29408:39;29425:4;29431:2;29435:7;29408:39;;;;;;;;;;;;:16;:39::i;39423:386::-;39510:16;39544:23;39570:17;39580:6;39570:9;:17::i;:::-;39544:43;;39598:25;39640:15;39626:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39626:30:0;;39598:58;;39672:9;39667:109;39687:15;39683:1;:19;39667:109;;;39734:30;39754:6;39762:1;39734:19;:30::i;:::-;39720:8;39729:1;39720:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;39704:3;;;;:::i;:::-;;;;39667:109;;;-1:-1:-1;39793:8:0;39423:386;-1:-1:-1;;;39423:386:0:o;38135:78::-;3888:6;;-1:-1:-1;;;;;3888:6:0;2753:10;4035:23;4027:68;;;;-1:-1:-1;;;4027:68:0;;;;;;;:::i;:::-;38194:14;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38135:78:::0;:::o;23155:187::-;23222:7;23258:13;:11;:13::i;:::-;23250:5;:21;23242:69;;;;-1:-1:-1;;;23242:69:0;;9573:2:1;23242:69:0;;;9555:21:1;9612:2;9592:18;;;9585:30;9651:34;9631:18;;;9624:62;-1:-1:-1;;;9702:18:1;;;9695:33;9745:19;;23242:69:0;9371:399:1;23242:69:0;-1:-1:-1;23329:5:0;23155:187::o;26416:124::-;26480:7;26507:20;26519:7;26507:11;:20::i;:::-;:25;;26416:124;-1:-1:-1;;26416:124:0:o;25157:221::-;25221:7;-1:-1:-1;;;;;25249:19:0;;25241:75;;;;-1:-1:-1;;;25241:75:0;;9977:2:1;25241:75:0;;;9959:21:1;10016:2;9996:18;;;9989:30;10055:34;10035:18;;;10028:62;-1:-1:-1;;;10106:18:1;;;10099:41;10157:19;;25241:75:0;9775:407:1;25241:75:0;-1:-1:-1;;;;;;25342:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25342:27:0;;25157:221::o;4466:94::-;3888:6;;-1:-1:-1;;;;;3888:6:0;2753:10;4035:23;4027:68;;;;-1:-1:-1;;;4027:68:0;;;;;;;:::i;:::-;4531:21:::1;4549:1;4531:9;:21::i;:::-;4466:94::o:0;26776:104::-;26832:13;26865:7;26858:14;;;;;:::i;37798:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38642:671::-;38708:5;;;;38700:43;;;;-1:-1:-1;;;38700:43:0;;10389:2:1;38700:43:0;;;10371:21:1;10428:2;10408:18;;;10401:30;10467:27;10447:18;;;10440:55;10512:18;;38700:43:0;10187:349:1;38700:43:0;38772:1;38762:8;:11;;38754:81;;;;-1:-1:-1;;;38754:81:0;;10743:2:1;38754:81:0;;;10725:21:1;10782:2;10762:18;;;10755:30;10821:34;10801:18;;;10794:62;10892:26;10872:18;;;10865:54;10936:19;;38754:81:0;10541:420:1;38754:81:0;38884:10;;38871:8;38855:13;:11;:13::i;:::-;:24;;;;:::i;:::-;38854:40;;38846:83;;;;-1:-1:-1;;;38846:83:0;;11301:2:1;38846:83:0;;;11283:21:1;11340:2;11320:18;;;11313:30;11379:32;11359:18;;;11352:60;11429:18;;38846:83:0;11099:354:1;38846:83:0;39005:10;38950:14;38991:25;;;:13;:25;;;;;;38967:8;;38991:30;38988:86;;39049:13;39061:1;39049:9;:13;:::i;:::-;39037:25;;38988:86;39119:8;;39107:20;;:9;:20;:::i;:::-;39094:9;:33;;39086:66;;;;-1:-1:-1;;;39086:66:0;;11833:2:1;39086:66:0;;;11815:21:1;11872:2;11852:18;;;11845:30;-1:-1:-1;;;11891:18:1;;;11884:50;11951:18;;39086:66:0;11631:344:1;39086:66:0;39167:31;39177:10;39189:8;39167:9;:31::i;:::-;39251:10;39237:25;;;;:13;:25;;;;;;:36;;39265:8;;39237:36;:::i;:::-;39223:10;39209:25;;;;:13;:25;;;;;:64;;;;39284:9;:21;;39297:8;;39209:25;39284:21;;39297:8;;39284:21;:::i;:::-;;;;-1:-1:-1;;;;38642:671:0:o;28455:288::-;2753:10;-1:-1:-1;;;;;28550:24:0;;;28542:63;;;;-1:-1:-1;;;28542:63:0;;12182:2:1;28542:63:0;;;12164:21:1;12221:2;12201:18;;;12194:30;12260:28;12240:18;;;12233:56;12306:18;;28542:63:0;11980:350:1;28542:63:0;2753:10;28618:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28618:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28618:53:0;;;;;;;;;;28687:48;;540:41:1;;;28618:42:0;;2753:10;28687:48;;513:18:1;28687:48:0;;;;;;;28455:288;;:::o;29526:355::-;29685:28;29695:4;29701:2;29705:7;29685:9;:28::i;:::-;29746:48;29769:4;29775:2;29779:7;29788:5;29746:22;:48::i;:::-;29724:149;;;;-1:-1:-1;;;29724:149:0;;;;;;;:::i;:::-;29526:355;;;;:::o;37832:37::-;;;;;;;:::i;39817:483::-;39915:13;39964:16;39972:7;30193:4;30227:12;-1:-1:-1;30217:22:0;30136:111;39964:16;39946:106;;;;-1:-1:-1;;;39946:106:0;;12957:2:1;39946:106:0;;;12939:21:1;12996:2;12976:18;;;12969:30;13035:34;13015:18;;;13008:62;-1:-1:-1;;;13086:18:1;;;13079:46;13142:19;;39946:106:0;12755:412:1;39946:106:0;40075:28;40106:10;:8;:10::i;:::-;40075:41;;40165:1;40140:14;40134:28;:32;:158;;40280:12;40134:158;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40206:14;40222:25;40239:7;40222:16;:25::i;:::-;40249:13;40189:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40134:158;40127:165;39817:483;-1:-1:-1;;;39817:483:0:o;37876:96::-;;;;;;;:::i;4715:192::-;3888:6;;-1:-1:-1;;;;;3888:6:0;2753:10;4035:23;4027:68;;;;-1:-1:-1;;;4027:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4804:22:0;::::1;4796:73;;;::::0;-1:-1:-1;;;4796:73:0;;15032:2:1;4796:73:0::1;::::0;::::1;15014:21:1::0;15071:2;15051:18;;;15044:30;15110:34;15090:18;;;15083:62;-1:-1:-1;;;15161:18:1;;;15154:36;15207:19;;4796:73:0::1;14830:402:1::0;4796:73:0::1;4880:19;4890:8;4880:9;:19::i;34807:196::-:0;34922:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34922:29:0;-1:-1:-1;;;;;34922:29:0;;;;;;;;;34967:28;;34922:24;;34967:28;;;;;;;34807:196;;;:::o;32687:2002::-;32802:35;32840:20;32852:7;32840:11;:20::i;:::-;32915:18;;32802:58;;-1:-1:-1;32873:22:0;;-1:-1:-1;;;;;32899:34:0;2753:10;-1:-1:-1;;;;;32899:34:0;;:87;;;-1:-1:-1;2753:10:0;32950:20;32962:7;32950:11;:20::i;:::-;-1:-1:-1;;;;;32950:36:0;;32899:87;:154;;;-1:-1:-1;33020:18:0;;33003:50;;2753:10;28814:164;:::i;33003:50::-;32873:181;;33075:17;33067:80;;;;-1:-1:-1;;;33067:80:0;;15439:2:1;33067:80:0;;;15421:21:1;15478:2;15458:18;;;15451:30;15517:34;15497:18;;;15490:62;-1:-1:-1;;;15568:18:1;;;15561:48;15626:19;;33067:80:0;15237:414:1;33067:80:0;33190:4;-1:-1:-1;;;;;33168:26:0;:13;:18;;;-1:-1:-1;;;;;33168:26:0;;33160:77;;;;-1:-1:-1;;;33160:77:0;;15858:2:1;33160:77:0;;;15840:21:1;15897:2;15877:18;;;15870:30;15936:34;15916:18;;;15909:62;-1:-1:-1;;;15987:18:1;;;15980:36;16033:19;;33160:77:0;15656:402:1;33160:77:0;-1:-1:-1;;;;;33256:16:0;;33248:66;;;;-1:-1:-1;;;33248:66:0;;16265:2:1;33248:66:0;;;16247:21:1;16304:2;16284:18;;;16277:30;16343:34;16323:18;;;16316:62;-1:-1:-1;;;16394:18:1;;;16387:35;16439:19;;33248:66:0;16063:401:1;33248:66:0;33435:49;33452:1;33456:7;33465:13;:18;;;33435:8;:49::i;:::-;-1:-1:-1;;;;;33780:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;33780:31:0;;;-1:-1:-1;;;;;33780:31:0;;;-1:-1:-1;;33780:31:0;;;;;;;33826:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;33826:29:0;;;;;;;;;;;;;33872:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;33917:61:0;;;;-1:-1:-1;;;33962:15:0;33917:61;;;;;;34252:11;;;34282:24;;;;;:29;34252:11;;34282:29;34278:295;;34350:20;34358:11;30193:4;30227:12;-1:-1:-1;30217:22:0;30136:111;34350:20;34346:212;;;34427:18;;;34395:24;;;:11;:24;;;;;;;;:50;;34510:28;;;;34468:70;;-1:-1:-1;;;34468:70:0;-1:-1:-1;;;;;;34468:70:0;;;-1:-1:-1;;;;;34395:50:0;;;34468:70;;;;;;;34346:212;33755:829;34620:7;34616:2;-1:-1:-1;;;;;34601:27:0;34610:4;-1:-1:-1;;;;;34601:27:0;;;;;;;;;;;34639:42;32791:1898;;32687:2002;;;:::o;25817:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;25920:16:0;25928:7;30193:4;30227:12;-1:-1:-1;30217:22:0;30136:111;25920:16;25912:71;;;;-1:-1:-1;;;25912:71:0;;16671:2:1;25912:71:0;;;16653:21:1;16710:2;16690:18;;;16683:30;16749:34;16729:18;;;16722:62;-1:-1:-1;;;16800:18:1;;;16793:40;16850:19;;25912:71:0;16469:406:1;25912:71:0;26041:7;26021:245;26088:31;26122:17;;;:11;:17;;;;;;;;;26088:51;;;;;;;;;-1:-1:-1;;;;;26088:51:0;;;;;-1:-1:-1;;;26088:51:0;;;;;;;;;;;;26162:28;26158:93;;26222:9;25817:537;-1:-1:-1;;;25817:537:0:o;26158:93::-;-1:-1:-1;;;26061:6:0;26021:245;;4915:173;4990:6;;;-1:-1:-1;;;;;5007:17:0;;;-1:-1:-1;;;;;;5007:17:0;;;;;;;5040:40;;4990:6;;;5007:17;4990:6;;5040:40;;4971:16;;5040:40;4960:128;4915:173;:::o;30255:104::-;30324:27;30334:2;30338:8;30324:27;;;;;;;;;;;;:9;:27::i;35568:804::-;35723:4;-1:-1:-1;;;;;35744:13:0;;6115:20;6163:8;35740:625;;35780:72;;-1:-1:-1;;;35780:72:0;;-1:-1:-1;;;;;35780:36:0;;;;;:72;;2753:10;;35831:4;;35837:7;;35846:5;;35780:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35780:72:0;;;;;;;;-1:-1:-1;;35780:72:0;;;;;;;;;;;;:::i;:::-;;;35776:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36026:6;:13;36043:1;36026:18;36022:273;;36069:61;;-1:-1:-1;;;36069:61:0;;;;;;;:::i;36022:273::-;36245:6;36239:13;36230:6;36226:2;36222:15;36215:38;35776:534;-1:-1:-1;;;;;;35903:55:0;-1:-1:-1;;;35903:55:0;;-1:-1:-1;35896:62:0;;35740:625;-1:-1:-1;36349:4:0;35740:625;35568:804;;;;;;:::o;38343:101::-;38395:13;38428:8;38421:15;;;;;:::i;358:723::-;414:13;635:5;644:1;635:10;631:53;;-1:-1:-1;;662:10:0;;;;;;;;;;;;-1:-1:-1;;;662:10:0;;;;;358:723::o;631:53::-;709:5;694:12;750:78;757:9;;750:78;;783:8;;;;:::i;:::-;;-1:-1:-1;806:10:0;;-1:-1:-1;814:2:0;806:10;;:::i;:::-;;;750:78;;;838:19;870:6;860:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;860:17:0;;838:39;;888:154;895:10;;888:154;;922:11;932:1;922:11;;:::i;:::-;;-1:-1:-1;991:10:0;999:2;991:5;:10;:::i;:::-;978:24;;:2;:24;:::i;:::-;965:39;;948:6;955;948:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;948:56:0;;;;;;;;-1:-1:-1;1019:11:0;1028:2;1019:11;;:::i;:::-;;;888:154;;30722:163;30845:32;30851:2;30855:8;30865:5;30872:4;31034:20;31057:12;-1:-1:-1;;;;;31088:16:0;;31080:62;;;;-1:-1:-1;;;31080:62:0;;18620:2:1;31080:62:0;;;18602:21:1;18659:2;18639:18;;;18632:30;18698:34;18678:18;;;18671:62;-1:-1:-1;;;18749:18:1;;;18742:31;18790:19;;31080:62:0;18418:397:1;31080:62:0;31161:8;31173:1;31161:13;31153:66;;;;-1:-1:-1;;;31153:66:0;;19022:2:1;31153:66:0;;;19004:21:1;19061:2;19041:18;;;19034:30;19100:34;19080:18;;;19073:62;-1:-1:-1;;;19151:18:1;;;19144:38;19199:19;;31153:66:0;18820:404:1;31153:66:0;-1:-1:-1;;;;;31571:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;31571:45:0;;-1:-1:-1;;;;;31571:45:0;;;;;;;;;;31631:50;;;;;;;;;;;;;;31698:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;31748:66:0;;;;-1:-1:-1;;;31798:15:0;31748:66;;;;;;;31698:25;;31883:415;31903:8;31899:1;:12;31883:415;;;31942:38;;31967:12;;-1:-1:-1;;;;;31942:38:0;;;31959:1;;31942:38;;31959:1;;31942:38;32003:4;31999:249;;;32066:59;32097:1;32101:2;32105:12;32119:5;32066:22;:59::i;:::-;32032:196;;;;-1:-1:-1;;;32032:196:0;;;;;;;:::i;:::-;32268:14;;;;;31913:3;31883:415;;;-1:-1:-1;32314:12:0;:27;32365:60;29526:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;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:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:632;3713:5;3743:18;3784:2;3776:6;3773:14;3770:40;;;3790:18;;:::i;:::-;3865:2;3859:9;3833:2;3919:15;;-1:-1:-1;;3915:24:1;;;3941:2;3911:33;3907:42;3895:55;;;3965:18;;;3985:22;;;3962:46;3959:72;;;4011:18;;:::i;:::-;4051:10;4047:2;4040:22;4080:6;4071:15;;4110:6;4102;4095:22;4150:3;4141:6;4136:3;4132:16;4129:25;4126:45;;;4167:1;4164;4157:12;4126:45;4217:6;4212:3;4205:4;4197:6;4193:17;4180:44;4272:1;4265:4;4256:6;4248;4244:19;4240:30;4233:41;;;;3648:632;;;;;:::o;4285:451::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4463:9;4450:23;4496:18;4488:6;4485:30;4482:50;;;4528:1;4525;4518:12;4482:50;4551:22;;4604:4;4596:13;;4592:27;-1:-1:-1;4582:55:1;;4633:1;4630;4623:12;4582:55;4656:74;4722:7;4717:2;4704:16;4699:2;4695;4691:11;4656:74;:::i;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;6243:161;;6030:380;;;:::o;7658:127::-;7719:10;7714:3;7710:20;7707:1;7700:31;7750:4;7747:1;7740:15;7774:4;7771:1;7764:15;7790:125;7830:4;7858:1;7855;7852:8;7849:34;;;7863:18;;:::i;:::-;-1:-1:-1;7900:9:1;;7790:125::o;7920:356::-;8122:2;8104:21;;;8141:18;;;8134:30;8200:34;8195:2;8180:18;;8173:62;8267:2;8252:18;;7920:356::o;9099:127::-;9160:10;9155:3;9151:20;9148:1;9141:31;9191:4;9188:1;9181:15;9215:4;9212:1;9205:15;9231:135;9270:3;9291:17;;;9288:43;;9311:18;;:::i;:::-;-1:-1:-1;9358:1:1;9347:13;;9231:135::o;10966:128::-;11006:3;11037:1;11033:6;11030:1;11027:13;11024:39;;;11043:18;;:::i;:::-;-1:-1:-1;11079:9:1;;10966:128::o;11458:168::-;11498:7;11564:1;11560;11556:6;11552:14;11549:1;11546:21;11541:1;11534:9;11527:17;11523:45;11520:71;;;11571:18;;:::i;:::-;-1:-1:-1;11611:9:1;;11458:168::o;12335:415::-;12537:2;12519:21;;;12576:2;12556:18;;;12549:30;12615:34;12610:2;12595:18;;12588:62;-1:-1:-1;;;12681:2:1;12666:18;;12659:49;12740:3;12725:19;;12335:415::o;13298:1527::-;13522:3;13560:6;13554:13;13586:4;13599:51;13643:6;13638:3;13633:2;13625:6;13621:15;13599:51;:::i;:::-;13713:13;;13672:16;;;;13735:55;13713:13;13672:16;13757:15;;;13735:55;:::i;:::-;13879:13;;13812:20;;;13852:1;;13939;13961:18;;;;14014;;;;14041:93;;14119:4;14109:8;14105:19;14093:31;;14041:93;14182:2;14172:8;14169:16;14149:18;14146:40;14143:167;;-1:-1:-1;;;14209:33:1;;14265:4;14262:1;14255:15;14295:4;14216:3;14283:17;14143:167;14326:18;14353:110;;;;14477:1;14472:328;;;;14319:481;;14353:110;-1:-1:-1;;14388:24:1;;14374:39;;14433:20;;;;-1:-1:-1;14353:110:1;;14472:328;13245:1;13238:14;;;13282:4;13269:18;;14567:1;14581:169;14595:8;14592:1;14589:15;14581:169;;;14677:14;;14662:13;;;14655:37;14720:16;;;;14612:10;;14581:169;;;14585:3;;14781:8;14774:5;14770:20;14763:27;;14319:481;-1:-1:-1;14816:3:1;;13298:1527;-1:-1:-1;;;;;;;;;;;13298:1527:1:o;17296:489::-;-1:-1:-1;;;;;17565:15:1;;;17547:34;;17617:15;;17612:2;17597:18;;17590:43;17664:2;17649:18;;17642:34;;;17712:3;17707:2;17692:18;;17685:31;;;17490:4;;17733:46;;17759:19;;17751:6;17733:46;:::i;:::-;17725:54;17296:489;-1:-1:-1;;;;;;17296:489:1:o;17790:249::-;17859:6;17912:2;17900:9;17891:7;17887:23;17883:32;17880:52;;;17928:1;17925;17918:12;17880:52;17960:9;17954:16;17979:30;18003:5;17979:30;:::i;18044:127::-;18105:10;18100:3;18096:20;18093:1;18086:31;18136:4;18133:1;18126:15;18160:4;18157:1;18150:15;18176:120;18216:1;18242;18232:35;;18247:18;;:::i;:::-;-1:-1:-1;18281:9:1;;18176:120::o;18301:112::-;18333:1;18359;18349:35;;18364:18;;:::i;:::-;-1:-1:-1;18398:9:1;;18301:112::o
Swarm Source
ipfs://46512f366141f643aa6caed5f63a8ea268b0de357aba130efb9b4a407866641e
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.