ERC-721
Overview
Max Total Supply
0 BLOOM
Holders
235
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BLOOMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Bloomers
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 100000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity ^0.8.0; /* _.. ;-._ .' `\ .' `\/ ; | `\.---._| .--; . ( .' '. / _ \_ './ _. `-._ ( = \ )`""'\;--. / {= (| ) /`. / ( =_/ )__..-\ .' \ }/ / ;.____.-;/\ '--' | .' | \ \ \ ' / |\.\ ) .'`-. / \ \ jgs /__.-' \_.' \ \ .-'''-. .-'''-. .---. ' _ \ ' _ \ /| | | / /` '. \ / /` '. \ __ __ ___ __.....__ || | |. | \ ' . | \ ' | |/ `.' `. .-'' '. || | || ' | '| ' | '| .-. .-. ' / .-''"'-. `. .-,.--. || __ | |\ \ / / \ \ / / | | | | | |/ /________\ \| .-. | ||/'__ '. | | `. ` ..' / `. ` ..' / | | | | | || || | | | _ |:/` '. '| | '-...-'` '-...-'` | | | | | |\ .-------------'| | | |.' | || | || | | | | | | | \ '-.____...---.| | '-. | / ||\ / '| | |__| |__| |__| `. .' | | .'.'| |// |/\'..' / '---' `''-...... -' | |.'.'.-' / ' `'-'` |_|.' \_.' "i want no more or no less power than a flower has on earth" much love to (https://www.cryptocoven.xyz) for brewing up the majority of this code <3 ascii by joan g stark aka "spunk" <3 pray this archive stays hosted forever https://web.archive.org/web/20091028014945/http://www.geocities.com/SoHo/7373/index.htm#home creative commons zero bloom the web <3 note: there was a bug in the og crypto-coven contract. solution here: https://cryptocoven.mirror.xyz/0eZ0tjudMU0ByeXLlRtPzDqxGzMMZw6ldzf-HfYETW0 */ // SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract Bloomers is ERC721, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI; string public verificationHash; address private openSeaProxyRegistryAddress; bool private isOpenSeaProxyActive = true; uint256 public constant MAX_BLOOMERS_PER_WALLET = 8; uint256 public maxBloomers; uint256 public constant PUBLIC_SALE_PRICE = 0.033 ether; bool public isPublicSaleActive; uint256 public constant COMMUNITY_SALE_PRICE = 0.022 ether; uint256 public maxCommunitySaleBloomers; bytes32 public communitySaleMerkleRoot; bool public isCommunitySaleActive; uint256 public maxGiftedBloomers; uint256 public numGiftedBloomers; bytes32 public claimListMerkleRoot; mapping(address => uint256) public communityMintCounts; mapping(address => bool) public claimed; // ============ ACCESS CONTROL/SANITY MODIFIERS ============ modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } modifier communitySaleActive() { require(isCommunitySaleActive, "Community sale is not open"); _; } modifier maxBloomersPerWallet(uint256 numberOfTokens) { require( balanceOf(msg.sender) + numberOfTokens <= MAX_BLOOMERS_PER_WALLET, "Max Bloomers to mint is eight" ); _; } modifier canMintBloomers(uint256 numberOfTokens) { require( tokenCounter.current() + numberOfTokens <= maxBloomers - maxGiftedBloomers + numGiftedBloomers, "Not enough bloomers remaining to mint" ); _; } modifier canGiftBloomers(uint256 num) { require( numGiftedBloomers + num <= maxGiftedBloomers, "Not enough bloomers remaining to gift" ); require( tokenCounter.current() + num <= maxBloomers, "Not enough bloomers remaining to mint" ); _; } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { require( price * numberOfTokens == msg.value, "Incorrect ETH value sent" ); _; } modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) { require( MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ), "Address does not exist in list" ); _; } constructor( address _openSeaProxyRegistryAddress, uint256 _maxBloomers, uint256 _maxCommunitySaleBloomers, uint256 _maxGiftedBloomers ) ERC721("Bloomers", "BLOOM") { openSeaProxyRegistryAddress = _openSeaProxyRegistryAddress; maxBloomers = _maxBloomers; maxCommunitySaleBloomers = _maxCommunitySaleBloomers; maxGiftedBloomers = _maxGiftedBloomers; } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) publicSaleActive canMintBloomers(numberOfTokens) maxBloomersPerWallet(numberOfTokens) { for (uint256 i = 0; i < numberOfTokens; i++) { _safeMint(msg.sender, nextTokenId()); } } function mintCommunitySale( uint8 numberOfTokens, bytes32[] calldata merkleProof ) external payable nonReentrant communitySaleActive canMintBloomers(numberOfTokens) isCorrectPayment(COMMUNITY_SALE_PRICE, numberOfTokens) isValidMerkleProof(merkleProof, communitySaleMerkleRoot) { uint256 numAlreadyMinted = communityMintCounts[msg.sender]; require( numAlreadyMinted + numberOfTokens <= MAX_BLOOMERS_PER_WALLET, "Max bloomers to mint in community sale is 8" ); require( tokenCounter.current() + numberOfTokens <= maxCommunitySaleBloomers, "Not enough bloomers remaining to mint" ); communityMintCounts[msg.sender] = numAlreadyMinted + numberOfTokens; for (uint256 i = 0; i < numberOfTokens; i++) { _safeMint(msg.sender, nextTokenId()); } } function claim(bytes32[] calldata merkleProof) external isValidMerkleProof(merkleProof, claimListMerkleRoot) canGiftBloomers(1) { require(!claimed[msg.sender], "Bloomer already claimed by this wallet"); claimed[msg.sender] = true; numGiftedBloomers += 1; _safeMint(msg.sender, nextTokenId()); } // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } function getLastTokenId() external view returns (uint256) { return tokenCounter.current(); } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } // function to disable gasless listings for security in case // opensea ever shuts down or is compromised function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive) external onlyOwner { isOpenSeaProxyActive = _isOpenSeaProxyActive; } function setVerificationHash(string memory _verificationHash) external onlyOwner { verificationHash = _verificationHash; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setIsCommunitySaleActive(bool _isCommunitySaleActive) external onlyOwner { isCommunitySaleActive = _isCommunitySaleActive; } function setCommunityListMerkleRoot(bytes32 merkleRoot) external onlyOwner { communitySaleMerkleRoot = merkleRoot; } function setClaimListMerkleRoot(bytes32 merkleRoot) external onlyOwner { claimListMerkleRoot = merkleRoot; } function reserveForGifting(uint256 numToReserve) external nonReentrant onlyOwner canGiftBloomers(numToReserve) { numGiftedBloomers += numToReserve; for (uint256 i = 0; i < numToReserve; i++) { _safeMint(msg.sender, nextTokenId()); } } function giftBloomers(address[] calldata addresses) external nonReentrant onlyOwner canGiftBloomers(addresses.length) { uint256 numToGift = addresses.length; numGiftedBloomers += numToGift; for (uint256 i = 0; i < numToGift; i++) { _safeMint(addresses[i], nextTokenId()); } } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTokens(IERC20 token) public onlyOwner { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } function rollOverBloomers(address[] calldata addresses) external nonReentrant onlyOwner { require( tokenCounter.current() + addresses.length <= 128, "All bloomers are already rolled over" ); for (uint256 i = 0; i < addresses.length; i++) { communityMintCounts[addresses[i]] += 1; // use mint rather than _safeMint here to reduce gas costs // and prevent this from failing in case of grief attempts _mint(addresses[i], nextTokenId()); } } // ============ SUPPORTING FUNCTIONS ============ function nextTokenId() private returns (uint256) { tokenCounter.increment(); return tokenCounter.current(); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Get a reference to OpenSea's proxy registry contract by instantiating // the contract using the already existing address. ProxyRegistry proxyRegistry = ProxyRegistry( openSeaProxyRegistryAddress ); if ( isOpenSeaProxyActive && address(proxyRegistry.proxies(owner)) == operator ) { return true; } return super.isApprovedForAll(owner, operator); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return string(abi.encodePacked(baseURI, "/", tokenId.toString(), ".json")); } /** * @dev See {IERC165-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Nonexistent token"); return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100)); } /** * @dev See {IERC165-royaltyInfo}. Bugfix described here: https://cryptocoven.mirror.xyz/0eZ0tjudMU0ByeXLlRtPzDqxGzMMZw6ldzf-HfYETW0 */ receive() external payable {} } // These contract definitions are used to create a reference to the OpenSea // ProxyRegistry contract by using the registry's address (see isApprovedForAll). contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
{ "optimizer": { "enabled": true, "runs": 100000, "details": { "yul": true, "yulDetails": { "stackAllocation": true, "optimizerSteps": "dhfoDgvulfnTUtnIf" } } }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_openSeaProxyRegistryAddress","type":"address"},{"internalType":"uint256","name":"_maxBloomers","type":"uint256"},{"internalType":"uint256","name":"_maxCommunitySaleBloomers","type":"uint256"},{"internalType":"uint256","name":"_maxGiftedBloomers","type":"uint256"}],"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":"COMMUNITY_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BLOOMERS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","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":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"communityMintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communitySaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"giftBloomers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCommunitySaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBloomers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCommunitySaleBloomers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiftedBloomers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintCommunitySale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numGiftedBloomers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToReserve","type":"uint256"}],"name":"reserveForGifting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"rollOverBloomers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setClaimListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setCommunityListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isCommunitySaleActive","type":"bool"}],"name":"setIsCommunitySaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_verificationHash","type":"string"}],"name":"setVerificationHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"verificationHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600b805460ff60a01b1916600160a01b1790553480156200002457600080fd5b50604051620044733803806200447383398101604081905262000047916200021b565b6040805180820182526008815267426c6f6f6d65727360c01b602080830191825283518085019094526005845264424c4f4f4d60d81b908401528151919291620000949160009162000155565b508051620000aa90600190602084019062000155565b505050620000c7620000c1620000ff60201b60201c565b62000103565b6001600755600b80546001600160a01b0319166001600160a01b039590951694909417909355600c91909155600e55601155620002fd565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001639062000295565b90600052602060002090601f016020900481019282620001875760008555620001d2565b82601f10620001a257805160ff1916838001178555620001d2565b82800160010185558215620001d2579182015b82811115620001d2578251825591602001919060010190620001b5565b50620001e0929150620001e4565b5090565b5b80821115620001e05760008155600101620001e5565b80516200020881620002dc565b92915050565b80516200020881620002f6565b6000806000806080858703121562000231578384fd5b6200023f86858701620001fb565b9350602062000251878288016200020e565b935050604062000264878288016200020e565b925050606062000277878288016200020e565b91505092959194509250565b60006001600160a01b03821662000208565b600281046001821680620002aa57607f821691505b60208210811415620002c057620002c0620002c6565b50919050565b634e487b7160e01b600052602260045260246000fd5b620002e78162000283565b8114620002f357600080fd5b50565b80620002e7565b614166806200030d6000396000f3fe6080604052600436106103175760003560e01c8063714c53981161019a578063b88d4fde116100e1578063e10c605f1161008a578063eb4883ab11610064578063eb4883ab1461087a578063f274c7a914610894578063f2fde38b146108b457600080fd5b8063e10c605f1461081a578063e43082f71461083a578063e985e9c51461085a57600080fd5b8063c0c36a37116100bb578063c0c36a37146107b5578063c87b56dd146107ca578063c884ef83146107ea57600080fd5b8063b88d4fde14610765578063bcfa5ff714610785578063bec951071461079a57600080fd5b806395d89b4111610143578063a22cb4651161011d578063a22cb4651461070f578063a23e9de61461072f578063b391c5081461074557600080fd5b806395d89b41146106d15780639eb00974146106e6578063a0712d68146106fc57600080fd5b80638d380b36116101745780638d380b36146106735780638da5cb5b146106935780638e4f8692146106be57600080fd5b8063714c539814610634578063715018a61461064957806383c4c00d1461065e57600080fd5b806324f985e91161025e57806342842e0e116102075780636352211e116101e15780636352211e146105d45780636c3a9b4a146105f457806370a082311461061457600080fd5b806342842e0e1461057457806349df728c1461059457806355f804b3146105b457600080fd5b8063326f9ad311610238578063326f9ad31461051c57806337cacb11146105325780633ccfd60b1461055f57600080fd5b806324f985e9146104ae57806328cad13d146104ce5780632a55205a146104ee57600080fd5b806310660af3116102c05780631e84c4131161029a5780631e84c4131461045e5780632364a0ef1461047857806323b872dd1461048e57600080fd5b806310660af31461041257806315bdebe2146104285780631e7e67661461044857600080fd5b8063081812fc116102f1578063081812fc146103a3578063095ea7b3146103d05780630d3cf1f2146103f257600080fd5b806301ffc9a71461032357806306fdde031461035957806307e89ec01461037b57600080fd5b3661031e57005b600080fd5b34801561032f57600080fd5b5061034361033e36600461312c565b6108d4565b6040516103509190613c1e565b60405180910390f35b34801561036557600080fd5b5061036e610930565b6040516103509190613c3a565b34801561038757600080fd5b5061039666753d533d96800081565b6040516103509190613c2c565b3480156103af57600080fd5b506103c36103be36600461310f565b6109c2565b6040516103509190613bb1565b3480156103dc57600080fd5b506103f06103eb366004613065565b610a4f565b005b3480156103fe57600080fd5b506103f061040d3660046130d5565b610b30565b34801561041e57600080fd5b5061039660125481565b34801561043457600080fd5b506103f061044336600461310f565b610bb2565b34801561045457600080fd5b50610396600c5481565b34801561046a57600080fd5b50600d546103439060ff1681565b34801561048457600080fd5b5061039660115481565b34801561049a57600080fd5b506103f06104a9366004612f76565b610c08565b3480156104ba57600080fd5b506103f06104c93660046131a0565b610c53565b3480156104da57600080fd5b506103f06104e93660046130d5565b610cbb565b3480156104fa57600080fd5b5061050e6105093660046131f2565b610d3d565b604051610350929190613c03565b34801561052857600080fd5b5061039660135481565b34801561053e57600080fd5b5061039661054d366004612f21565b60146020526000908152604090205481565b34801561056b57600080fd5b506103f0610dbc565b34801561058057600080fd5b506103f061058f366004612f76565b610e3c565b3480156105a057600080fd5b506103f06105af366004613166565b610e57565b3480156105c057600080fd5b506103f06105cf3660046131a0565b610ff6565b3480156105e057600080fd5b506103c36105ef36600461310f565b61105a565b34801561060057600080fd5b506103f061060f36600461310f565b6110b6565b34801561062057600080fd5b5061039661062f366004612f21565b611232565b34801561064057600080fd5b5061036e6112aa565b34801561065557600080fd5b506103f06112b9565b34801561066a57600080fd5b50610396611316565b34801561067f57600080fd5b506103f061068e366004613093565b611326565b34801561069f57600080fd5b5060065473ffffffffffffffffffffffffffffffffffffffff166103c3565b6103f06106cc366004613210565b6114f2565b3480156106dd57600080fd5b5061036e6117cf565b3480156106f257600080fd5b50610396600f5481565b6103f061070a36600461310f565b6117de565b34801561071b57600080fd5b506103f061072a366004613037565b611996565b34801561073b57600080fd5b50610396600e5481565b34801561075157600080fd5b506103f0610760366004613093565b6119a1565b34801561077157600080fd5b506103f0610780366004612fc1565b611b71565b34801561079157600080fd5b50610396600881565b3480156107a657600080fd5b50610396664e28e2290f000081565b3480156107c157600080fd5b5061036e611bc3565b3480156107d657600080fd5b5061036e6107e536600461310f565b611c51565b3480156107f657600080fd5b50610343610805366004612f21565b60156020526000908152604090205460ff1681565b34801561082657600080fd5b506103f061083536600461310f565b611ce1565b34801561084657600080fd5b506103f06108553660046130d5565b611d37565b34801561086657600080fd5b50610343610875366004612f3e565b611dd2565b34801561088657600080fd5b506010546103439060ff1681565b3480156108a057600080fd5b506103f06108af366004613093565b611f18565b3480156108c057600080fd5b506103f06108cf366004612f21565b612117565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061092a575061092a826121c1565b92915050565b60606000805461093f90613f41565b80601f016020809104026020016040519081016040528092919081815260200182805461096b90613f41565b80156109b85780601f1061098d576101008083540402835291602001916109b8565b820191906000526020600020905b81548152906001019060200180831161099b57829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d6b565b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a5a8261105a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d9b565b3373ffffffffffffffffffffffffffffffffffffffff82161480610aeb5750610aeb8133611dd2565b610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d0b565b610b2b83836122a4565b505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60065473ffffffffffffffffffffffffffffffffffffffff163314610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b601355565b610c123382612344565b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dab565b610b2b838383612429565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b8051610cb790600a906020840190612d84565b5050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600082815260026020526040812054819073ffffffffffffffffffffffffffffffffffffffff16610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d1b565b30610db0610da98560056125e5565b60646125f8565b915091505b9250929050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b6040514790339082156108fc029083906000818181858888f19350505050158015610cb7573d6000803e3d6000fd5b610b2b83838360405180602001604052806000815250611b71565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190610efd903090600401613bb1565b60206040518083038186803b158015610f1557600080fd5b505afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d91906131d5565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb90610fa49033908590600401613c03565b602060405180830381600087803b158015610fbe57600080fd5b505af1158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2b91906130f2565b60065473ffffffffffffffffffffffffffffffffffffffff163314611047576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b8051610cb7906009906020840190612d84565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff168061092a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d3b565b600260075414156110f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075560065473ffffffffffffffffffffffffffffffffffffffff163314611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b806011548160125461115b9190613e60565b1115611193576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d4b565b600c54816111a060085490565b6111aa9190613e60565b11156111e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b81601260008282546111f49190613e60565b90915550600090505b828110156112285761121633611211612604565b61261b565b8061122081613fb9565b9150506111fd565b5050600160075550565b600073ffffffffffffffffffffffffffffffffffffffff8216611281576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d2b565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60606009805461093f90613f41565b60065473ffffffffffffffffffffffffffffffffffffffff16331461130a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b6113146000612635565b565b600061132160085490565b905090565b60026007541415611363576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075560065473ffffffffffffffffffffffffffffffffffffffff1633146113b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b6011546012548291906113cd908390613e60565b1115611405576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d4b565b600c548161141260085490565b61141c9190613e60565b1115611454576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b601280548391829160009061146a908490613e60565b90915550600090505b818110156114e6576114d48585838181106114b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906114cc9190612f21565b611211612604565b806114de81613fb9565b915050611473565b50506001600755505050565b6002600754141561152f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075560105460ff16611570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dbb565b8260ff16601254601154600c546115879190613ec9565b6115919190613e60565b8161159b60085490565b6115a59190613e60565b11156115dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b664e28e2290f000060ff8516346115f48284613e8c565b1461162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dcb565b8484600f546116948383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060405185925061167991503390602001613b35565b604051602081830303815290604052805190602001206126ac565b6116ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cfb565b3360009081526014602052604090205460086116e960ff8c1683613e60565b1115611721576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c4b565b600e548a60ff1661173160085490565b61173b9190613e60565b1115611773576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b61178060ff8b1682613e60565b336000908152601460205260408120919091555b8a60ff168110156117bd576117ab33611211612604565b806117b581613fb9565b915050611794565b50506001600755505050505050505050565b60606001805461093f90613f41565b6002600754141561181b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075566753d533d96800081346118348284613e8c565b1461186b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dcb565b600d5460ff166118a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613deb565b82601254601154600c546118bb9190613ec9565b6118c59190613e60565b816118cf60085490565b6118d99190613e60565b1115611911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b8360088161191e33611232565b6119289190613e60565b1115611960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c9b565b60005b858110156119895761197733611211612604565b8061198181613fb9565b915050611963565b5050600160075550505050565b610cb73383836126c2565b81816013546119ef8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060405185925061167991503390602001613b35565b611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cfb565b600160115481601254611a389190613e60565b1115611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d4b565b600c5481611a7d60085490565b611a879190613e60565b1115611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b3360009081526015602052604090205460ff1615611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d8b565b33600090815260156020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556012805491929091611b57908490613e60565b90915550611b69905033611211612604565b505050505050565b611b7b3383612344565b611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dab565b611bbd848484846127c4565b50505050565b600a8054611bd090613f41565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc90613f41565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b505050505081565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d1b565b6009611cba83612811565b604051602001611ccb929190613b47565b6040516020818303038152906040529050919050565b60065473ffffffffffffffffffffffffffffffffffffffff163314611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b600f55565b60065473ffffffffffffffffffffffffffffffffffffffff163314611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b600b805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600b5460009073ffffffffffffffffffffffffffffffffffffffff81169074010000000000000000000000000000000000000000900460ff168015611eca57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611e629190613bb1565b60206040518083038186803b158015611e7a57600080fd5b505afa158015611e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb29190613183565b73ffffffffffffffffffffffffffffffffffffffff16145b15611ed957600191505061092a565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b60026007541415611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075560065473ffffffffffffffffffffffffffffffffffffffff163314611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b608081611fb760085490565b611fc19190613e60565b1115611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cdb565b60005b8181101561122857600160146000858585818110612043577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120589190612f21565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a19190613e60565b9091555061210590508383838181106120e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120f89190612f21565b612100612604565b612991565b8061210f81613fb9565b915050611ffc565b60065473ffffffffffffffffffffffffffffffffffffffff163314612168576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b73ffffffffffffffffffffffffffffffffffffffff81166121b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c6b565b6121be81612635565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061225457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061092a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461092a565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906122fe8261105a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661239f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ceb565b60006123aa8361105a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061241957508373ffffffffffffffffffffffffffffffffffffffff16612401846109c2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f105750611f108185611dd2565b8273ffffffffffffffffffffffffffffffffffffffff166124498261105a565b73ffffffffffffffffffffffffffffffffffffffff1614612496576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c7b565b73ffffffffffffffffffffffffffffffffffffffff82166124e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cab565b6124ee6000826122a4565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612524908490613ec9565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061255f908490613e60565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006125f18284613e8c565b9392505050565b60006125f18284613e78565b6000612614600880546001019055565b5060085490565b610cb7828260405180602001604052806000815250612af3565b6006805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826126b98584612b40565b14949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612728576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cbb565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600560209081526040808320948716808452949091529081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906127b7908590613c1e565b60405180910390a3505050565b6127cf848484612429565b6127db84848484612bdb565b611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c5b565b60608161285157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561287b578061286581613fb9565b91506128749050600a83613e78565b9150612855565b60008167ffffffffffffffff8111156128bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128e7576020820181803683370190505b5090505b8415611f10576128fc600183613ec9565b9150612909600a86614004565b612914906030613e60565b60f81b818381518110612950577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061298a600a86613e78565b94506128eb565b73ffffffffffffffffffffffffffffffffffffffff82166129de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d5b565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c8b565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290612a70908490613e60565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612afd8383612991565b612b0a6000848484612bdb565b610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c5b565b600081815b8451811015612bd3576000858281518110612b89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612baf5760008381526020829052604090209250612bc0565b600081815260208490526040902092505b5080612bcb81613fb9565b915050612b45565b509392505050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612d79576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612c52903390899088908890600401613bbf565b602060405180830381600087803b158015612c6c57600080fd5b505af1925050508015612cba575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612cb791810190613149565b60015b612d2e573d808015612ce8576040519150601f19603f3d011682016040523d82523d6000602084013e612ced565b606091505b508051612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c5b565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f10565b506001949350505050565b828054612d9090613f41565b90600052602060002090601f016020900481019282612db25760008555612df8565b82601f10612dcb57805160ff1916838001178555612df8565b82800160010185558215612df8579182015b82811115612df8578251825591602001919060010190612ddd565b50612e04929150612e08565b5090565b5b80821115612e045760008155600101612e09565b6000612e30612e2b84613e17565b613dfb565b905082815260208101848484011115612e4857600080fd5b612bd3848285613f09565b803561092a816140d4565b60008083601f840112612e6f578081fd5b50813567ffffffffffffffff811115612e86578182fd5b602083019150836020820283011115610db557600080fd5b803561092a816140e8565b805161092a816140e8565b803561092a816140f0565b803561092a816140f6565b805161092a816140f6565b600082601f830112612ee5578081fd5b8135611f10848260208601612e1d565b803561092a8161411e565b805161092a8161411e565b805161092a816140f0565b803561092a81614127565b600060208284031215612f32578081fd5b6125f183828401612e53565b60008060408385031215612f50578081fd5b612f5c84828501612e53565b91506020612f6c85828601612e53565b9150509250929050565b600080600060608486031215612f8a578081fd5b612f9685828601612e53565b92506020612fa686828701612e53565b9250506040612fb786828701612eb4565b9150509250925092565b60008060008060808587031215612fd6578081fd5b612fe286828701612e53565b93506020612ff287828801612e53565b935050604061300387828801612eb4565b925050606085013567ffffffffffffffff81111561301f578182fd5b61302b87828801612ed5565b91505092959194509250565b60008060408385031215613049578182fd5b61305584838501612e53565b91506020612f6c85828601612e9e565b60008060408385031215613077578182fd5b61308384838501612e53565b91506020612f6c85828601612eb4565b600080602083850312156130a5578182fd5b8183013567ffffffffffffffff8111156130bd578283fd5b6130c985828601612e5e565b92509250509250929050565b6000602082840312156130e6578081fd5b6125f183828401612e9e565b600060208284031215613103578081fd5b6125f183828401612ea9565b600060208284031215613120578081fd5b6125f183828401612eb4565b60006020828403121561313d578081fd5b6125f183828401612ebf565b60006020828403121561315a578081fd5b6125f183828401612eca565b600060208284031215613177578081fd5b6125f183828401612ef5565b600060208284031215613194578081fd5b6125f183828401612f00565b6000602082840312156131b1578081fd5b8082013567ffffffffffffffff8111156131c9578182fd5b611f1084828501612ed5565b6000602082840312156131e6578081fd5b6125f183828401612f0b565b60008060408385031215613204578182fd5b61308384838501612eb4565b600080600060408486031215613224578081fd5b61323085828601612f16565b9250602084013567ffffffffffffffff81111561324b578182fd5b61325786828701612e5e565b92509250509250925092565b61326c81613ee0565b82525050565b61326c61327e82613ee0565b613ff2565b80151561326c565b8061326c565b600061329b825190565b8084526020840193506132b2818560208601613f15565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920192915050565b60006132eb825190565b6132f9818560208601613f15565b9290920192915050565b6000815461331081613f41565b600182168015613327576001811461335657613386565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00831686528186019350613386565b60008581526020902060005b8381101561337e57815488820152600190910190602001613362565b505081860193505b50505092915050565b602b8152602081017f4d617820626c6f6f6d65727320746f206d696e7420696e20636f6d6d756e697481527f792073616c652069732038000000000000000000000000000000000000000000602082015290505b60400190565b60328152602081017f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015290506133e3565b60268152602081017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181527f6464726573730000000000000000000000000000000000000000000000000000602082015290506133e3565b60258152602081017f4552433732313a207472616e736665722066726f6d20696e636f72726563742081527f6f776e6572000000000000000000000000000000000000000000000000000000602082015290506133e3565b601c8152602081017f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000815290505b60200190565b601d8152602081017f4d617820426c6f6f6d65727320746f206d696e742069732065696768740000008152905061351f565b60248152602081017f4552433732313a207472616e7366657220746f20746865207a65726f2061646481527f7265737300000000000000000000000000000000000000000000000000000000602082015290506133e3565b60198152602081017f4552433732313a20617070726f766520746f2063616c6c6572000000000000008152905061351f565b60258152602081017f4e6f7420656e6f75676820626c6f6f6d6572732072656d61696e696e6720746f81527f206d696e74000000000000000000000000000000000000000000000000000000602082015290506133e3565b60248152602081017f416c6c20626c6f6f6d6572732061726520616c726561647920726f6c6c65642081527f6f76657200000000000000000000000000000000000000000000000000000000602082015290506133e3565b602c8152602081017f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657881527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015290506133e3565b601e8152602081017f4164647265737320646f6573206e6f7420657869737420696e206c69737400008152905061351f565b60388152602081017f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7781527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015290506133e3565b60118152602081017f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000008152905061351f565b602a8152602081017f4552433732313a2062616c616e636520717565727920666f7220746865207a6581527f726f206164647265737300000000000000000000000000000000000000000000602082015290506133e3565b60298152602081017f4552433732313a206f776e657220717565727920666f72206e6f6e657869737481527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015290506133e3565b60258152602081017f4e6f7420656e6f75676820626c6f6f6d6572732072656d61696e696e6720746f81527f2067696674000000000000000000000000000000000000000000000000000000602082015290506133e3565b60208082527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373910190815261351f565b602c8152602081017f4552433732313a20617070726f76656420717565727920666f72206e6f6e657881527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015290506133e3565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572910190815261351f565b60268152602081017f426c6f6f6d657220616c726561647920636c61696d656420627920746869732081527f77616c6c65740000000000000000000000000000000000000000000000000000602082015290506133e3565b60218152602081017f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6581527f7200000000000000000000000000000000000000000000000000000000000000602082015290506133e3565b60318152602081017f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f81527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015290506133e3565b601a8152602081017f436f6d6d756e6974792073616c65206973206e6f74206f70656e0000000000008152905061351f565b60188152602081017f496e636f7272656374204554482076616c75652073656e7400000000000000008152905061351f565b601f8152602081017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c008152905061351f565b60178152602081017f5075626c69632073616c65206973206e6f74206f70656e0000000000000000008152905061351f565b613b3f8183613272565b601401919050565b613b518184613303565b7f2f0000000000000000000000000000000000000000000000000000000000000081526001019050613b8381836132e1565b7f2e6a736f6e00000000000000000000000000000000000000000000000000000081529050600581016125f1565b6020810161092a8284613263565b60808101613bcd8287613263565b613bda6020830186613263565b613be7604083018561328b565b8181036060830152613bf98184613291565b9695505050505050565b60408101613c118285613263565b6125f1602083018461328b565b6020810161092a8284613283565b6020810161092a828461328b565b602080825281016125f18184613291565b6020808252810161092a8161338f565b6020808252810161092a816133e9565b6020808252810161092a81613441565b6020808252810161092a81613499565b6020808252810161092a816134f1565b6020808252810161092a81613525565b6020808252810161092a81613557565b6020808252810161092a816135af565b6020808252810161092a816135e1565b6020808252810161092a81613639565b6020808252810161092a81613691565b6020808252810161092a816136e9565b6020808252810161092a8161371b565b6020808252810161092a81613773565b6020808252810161092a816137a5565b6020808252810161092a816137fd565b6020808252810161092a81613855565b6020808252810161092a816138ad565b6020808252810161092a816138dd565b6020808252810161092a81613935565b6020808252810161092a81613965565b6020808252810161092a816139bd565b6020808252810161092a81613a15565b6020808252810161092a81613a6d565b6020808252810161092a81613a9f565b6020808252810161092a81613ad1565b6020808252810161092a81613b03565b6000613e0660405190565b9050613e128282613f6e565b919050565b600067ffffffffffffffff821115613e3157613e316140a5565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011660200192915050565b60008219821115613e7357613e73614018565b500190565b600082613e8757613e87614047565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ec457613ec4614018565b500290565b600082821015613edb57613edb614018565b500390565b600073ffffffffffffffffffffffffffffffffffffffff821661092a565b600061092a82613ee0565b82818337506000910152565b60005b83811015613f30578181015183820152602001613f18565b83811115611bbd5750506000910152565b600281046001821680613f5557607f821691505b60208210811415613f6857613f68614076565b50919050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715613fb257613fb26140a5565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613feb57613feb614018565b5060010190565b600061092a82600061092a8260601b90565b60008261401357614013614047565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140dd81613ee0565b81146121be57600080fd5b8015156140dd565b806140dd565b7fffffffff0000000000000000000000000000000000000000000000000000000081166140dd565b6140dd81613efe565b60ff81166140dd56fea264697066735822122086512fd13fd1d20b7a4d62ec984f6eceaf9dad6bcf24fc7f6dde4b586630463f64736f6c63430008040033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000457000000000000000000000000000000000000000000000000000000000000014d000000000000000000000000000000000000000000000000000000000000002c
Deployed Bytecode
0x6080604052600436106103175760003560e01c8063714c53981161019a578063b88d4fde116100e1578063e10c605f1161008a578063eb4883ab11610064578063eb4883ab1461087a578063f274c7a914610894578063f2fde38b146108b457600080fd5b8063e10c605f1461081a578063e43082f71461083a578063e985e9c51461085a57600080fd5b8063c0c36a37116100bb578063c0c36a37146107b5578063c87b56dd146107ca578063c884ef83146107ea57600080fd5b8063b88d4fde14610765578063bcfa5ff714610785578063bec951071461079a57600080fd5b806395d89b4111610143578063a22cb4651161011d578063a22cb4651461070f578063a23e9de61461072f578063b391c5081461074557600080fd5b806395d89b41146106d15780639eb00974146106e6578063a0712d68146106fc57600080fd5b80638d380b36116101745780638d380b36146106735780638da5cb5b146106935780638e4f8692146106be57600080fd5b8063714c539814610634578063715018a61461064957806383c4c00d1461065e57600080fd5b806324f985e91161025e57806342842e0e116102075780636352211e116101e15780636352211e146105d45780636c3a9b4a146105f457806370a082311461061457600080fd5b806342842e0e1461057457806349df728c1461059457806355f804b3146105b457600080fd5b8063326f9ad311610238578063326f9ad31461051c57806337cacb11146105325780633ccfd60b1461055f57600080fd5b806324f985e9146104ae57806328cad13d146104ce5780632a55205a146104ee57600080fd5b806310660af3116102c05780631e84c4131161029a5780631e84c4131461045e5780632364a0ef1461047857806323b872dd1461048e57600080fd5b806310660af31461041257806315bdebe2146104285780631e7e67661461044857600080fd5b8063081812fc116102f1578063081812fc146103a3578063095ea7b3146103d05780630d3cf1f2146103f257600080fd5b806301ffc9a71461032357806306fdde031461035957806307e89ec01461037b57600080fd5b3661031e57005b600080fd5b34801561032f57600080fd5b5061034361033e36600461312c565b6108d4565b6040516103509190613c1e565b60405180910390f35b34801561036557600080fd5b5061036e610930565b6040516103509190613c3a565b34801561038757600080fd5b5061039666753d533d96800081565b6040516103509190613c2c565b3480156103af57600080fd5b506103c36103be36600461310f565b6109c2565b6040516103509190613bb1565b3480156103dc57600080fd5b506103f06103eb366004613065565b610a4f565b005b3480156103fe57600080fd5b506103f061040d3660046130d5565b610b30565b34801561041e57600080fd5b5061039660125481565b34801561043457600080fd5b506103f061044336600461310f565b610bb2565b34801561045457600080fd5b50610396600c5481565b34801561046a57600080fd5b50600d546103439060ff1681565b34801561048457600080fd5b5061039660115481565b34801561049a57600080fd5b506103f06104a9366004612f76565b610c08565b3480156104ba57600080fd5b506103f06104c93660046131a0565b610c53565b3480156104da57600080fd5b506103f06104e93660046130d5565b610cbb565b3480156104fa57600080fd5b5061050e6105093660046131f2565b610d3d565b604051610350929190613c03565b34801561052857600080fd5b5061039660135481565b34801561053e57600080fd5b5061039661054d366004612f21565b60146020526000908152604090205481565b34801561056b57600080fd5b506103f0610dbc565b34801561058057600080fd5b506103f061058f366004612f76565b610e3c565b3480156105a057600080fd5b506103f06105af366004613166565b610e57565b3480156105c057600080fd5b506103f06105cf3660046131a0565b610ff6565b3480156105e057600080fd5b506103c36105ef36600461310f565b61105a565b34801561060057600080fd5b506103f061060f36600461310f565b6110b6565b34801561062057600080fd5b5061039661062f366004612f21565b611232565b34801561064057600080fd5b5061036e6112aa565b34801561065557600080fd5b506103f06112b9565b34801561066a57600080fd5b50610396611316565b34801561067f57600080fd5b506103f061068e366004613093565b611326565b34801561069f57600080fd5b5060065473ffffffffffffffffffffffffffffffffffffffff166103c3565b6103f06106cc366004613210565b6114f2565b3480156106dd57600080fd5b5061036e6117cf565b3480156106f257600080fd5b50610396600f5481565b6103f061070a36600461310f565b6117de565b34801561071b57600080fd5b506103f061072a366004613037565b611996565b34801561073b57600080fd5b50610396600e5481565b34801561075157600080fd5b506103f0610760366004613093565b6119a1565b34801561077157600080fd5b506103f0610780366004612fc1565b611b71565b34801561079157600080fd5b50610396600881565b3480156107a657600080fd5b50610396664e28e2290f000081565b3480156107c157600080fd5b5061036e611bc3565b3480156107d657600080fd5b5061036e6107e536600461310f565b611c51565b3480156107f657600080fd5b50610343610805366004612f21565b60156020526000908152604090205460ff1681565b34801561082657600080fd5b506103f061083536600461310f565b611ce1565b34801561084657600080fd5b506103f06108553660046130d5565b611d37565b34801561086657600080fd5b50610343610875366004612f3e565b611dd2565b34801561088657600080fd5b506010546103439060ff1681565b3480156108a057600080fd5b506103f06108af366004613093565b611f18565b3480156108c057600080fd5b506103f06108cf366004612f21565b612117565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061092a575061092a826121c1565b92915050565b60606000805461093f90613f41565b80601f016020809104026020016040519081016040528092919081815260200182805461096b90613f41565b80156109b85780601f1061098d576101008083540402835291602001916109b8565b820191906000526020600020905b81548152906001019060200180831161099b57829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d6b565b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a5a8261105a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d9b565b3373ffffffffffffffffffffffffffffffffffffffff82161480610aeb5750610aeb8133611dd2565b610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d0b565b610b2b83836122a4565b505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60065473ffffffffffffffffffffffffffffffffffffffff163314610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b601355565b610c123382612344565b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dab565b610b2b838383612429565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b8051610cb790600a906020840190612d84565b5050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600082815260026020526040812054819073ffffffffffffffffffffffffffffffffffffffff16610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d1b565b30610db0610da98560056125e5565b60646125f8565b915091505b9250929050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b6040514790339082156108fc029083906000818181858888f19350505050158015610cb7573d6000803e3d6000fd5b610b2b83838360405180602001604052806000815250611b71565b60065473ffffffffffffffffffffffffffffffffffffffff163314610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190610efd903090600401613bb1565b60206040518083038186803b158015610f1557600080fd5b505afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d91906131d5565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb90610fa49033908590600401613c03565b602060405180830381600087803b158015610fbe57600080fd5b505af1158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2b91906130f2565b60065473ffffffffffffffffffffffffffffffffffffffff163314611047576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b8051610cb7906009906020840190612d84565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff168061092a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d3b565b600260075414156110f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075560065473ffffffffffffffffffffffffffffffffffffffff163314611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b806011548160125461115b9190613e60565b1115611193576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d4b565b600c54816111a060085490565b6111aa9190613e60565b11156111e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b81601260008282546111f49190613e60565b90915550600090505b828110156112285761121633611211612604565b61261b565b8061122081613fb9565b9150506111fd565b5050600160075550565b600073ffffffffffffffffffffffffffffffffffffffff8216611281576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d2b565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60606009805461093f90613f41565b60065473ffffffffffffffffffffffffffffffffffffffff16331461130a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b6113146000612635565b565b600061132160085490565b905090565b60026007541415611363576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075560065473ffffffffffffffffffffffffffffffffffffffff1633146113b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b6011546012548291906113cd908390613e60565b1115611405576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d4b565b600c548161141260085490565b61141c9190613e60565b1115611454576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b601280548391829160009061146a908490613e60565b90915550600090505b818110156114e6576114d48585838181106114b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906114cc9190612f21565b611211612604565b806114de81613fb9565b915050611473565b50506001600755505050565b6002600754141561152f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075560105460ff16611570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dbb565b8260ff16601254601154600c546115879190613ec9565b6115919190613e60565b8161159b60085490565b6115a59190613e60565b11156115dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b664e28e2290f000060ff8516346115f48284613e8c565b1461162b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dcb565b8484600f546116948383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060405185925061167991503390602001613b35565b604051602081830303815290604052805190602001206126ac565b6116ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cfb565b3360009081526014602052604090205460086116e960ff8c1683613e60565b1115611721576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c4b565b600e548a60ff1661173160085490565b61173b9190613e60565b1115611773576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b61178060ff8b1682613e60565b336000908152601460205260408120919091555b8a60ff168110156117bd576117ab33611211612604565b806117b581613fb9565b915050611794565b50506001600755505050505050505050565b60606001805461093f90613f41565b6002600754141561181b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075566753d533d96800081346118348284613e8c565b1461186b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dcb565b600d5460ff166118a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613deb565b82601254601154600c546118bb9190613ec9565b6118c59190613e60565b816118cf60085490565b6118d99190613e60565b1115611911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b8360088161191e33611232565b6119289190613e60565b1115611960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c9b565b60005b858110156119895761197733611211612604565b8061198181613fb9565b915050611963565b5050600160075550505050565b610cb73383836126c2565b81816013546119ef8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060405185925061167991503390602001613b35565b611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cfb565b600160115481601254611a389190613e60565b1115611a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d4b565b600c5481611a7d60085490565b611a879190613e60565b1115611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ccb565b3360009081526015602052604090205460ff1615611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d8b565b33600090815260156020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556012805491929091611b57908490613e60565b90915550611b69905033611211612604565b505050505050565b611b7b3383612344565b611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613dab565b611bbd848484846127c4565b50505050565b600a8054611bd090613f41565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc90613f41565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b505050505081565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d1b565b6009611cba83612811565b604051602001611ccb929190613b47565b6040516020818303038152906040529050919050565b60065473ffffffffffffffffffffffffffffffffffffffff163314611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b600f55565b60065473ffffffffffffffffffffffffffffffffffffffff163314611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b600b805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600b5460009073ffffffffffffffffffffffffffffffffffffffff81169074010000000000000000000000000000000000000000900460ff168015611eca57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611e629190613bb1565b60206040518083038186803b158015611e7a57600080fd5b505afa158015611e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb29190613183565b73ffffffffffffffffffffffffffffffffffffffff16145b15611ed957600191505061092a565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b60026007541415611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ddb565b600260075560065473ffffffffffffffffffffffffffffffffffffffff163314611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b608081611fb760085490565b611fc19190613e60565b1115611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cdb565b60005b8181101561122857600160146000858585818110612043577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120589190612f21565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a19190613e60565b9091555061210590508383838181106120e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120f89190612f21565b612100612604565b612991565b8061210f81613fb9565b915050611ffc565b60065473ffffffffffffffffffffffffffffffffffffffff163314612168576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d7b565b73ffffffffffffffffffffffffffffffffffffffff81166121b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c6b565b6121be81612635565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061225457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061092a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461092a565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906122fe8261105a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1661239f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613ceb565b60006123aa8361105a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061241957508373ffffffffffffffffffffffffffffffffffffffff16612401846109c2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f105750611f108185611dd2565b8273ffffffffffffffffffffffffffffffffffffffff166124498261105a565b73ffffffffffffffffffffffffffffffffffffffff1614612496576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c7b565b73ffffffffffffffffffffffffffffffffffffffff82166124e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cab565b6124ee6000826122a4565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612524908490613ec9565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260036020526040812080546001929061255f908490613e60565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006125f18284613e8c565b9392505050565b60006125f18284613e78565b6000612614600880546001019055565b5060085490565b610cb7828260405180602001604052806000815250612af3565b6006805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826126b98584612b40565b14949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612728576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613cbb565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600560209081526040808320948716808452949091529081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906127b7908590613c1e565b60405180910390a3505050565b6127cf848484612429565b6127db84848484612bdb565b611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c5b565b60608161285157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561287b578061286581613fb9565b91506128749050600a83613e78565b9150612855565b60008167ffffffffffffffff8111156128bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128e7576020820181803683370190505b5090505b8415611f10576128fc600183613ec9565b9150612909600a86614004565b612914906030613e60565b60f81b818381518110612950577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061298a600a86613e78565b94506128eb565b73ffffffffffffffffffffffffffffffffffffffff82166129de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613d5b565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c8b565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290612a70908490613e60565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612afd8383612991565b612b0a6000848484612bdb565b610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c5b565b600081815b8451811015612bd3576000858281518110612b89577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612baf5760008381526020829052604090209250612bc0565b600081815260208490526040902092505b5080612bcb81613fb9565b915050612b45565b509392505050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612d79576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612c52903390899088908890600401613bbf565b602060405180830381600087803b158015612c6c57600080fd5b505af1925050508015612cba575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612cb791810190613149565b60015b612d2e573d808015612ce8576040519150601f19603f3d011682016040523d82523d6000602084013e612ced565b606091505b508051612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90613c5b565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f10565b506001949350505050565b828054612d9090613f41565b90600052602060002090601f016020900481019282612db25760008555612df8565b82601f10612dcb57805160ff1916838001178555612df8565b82800160010185558215612df8579182015b82811115612df8578251825591602001919060010190612ddd565b50612e04929150612e08565b5090565b5b80821115612e045760008155600101612e09565b6000612e30612e2b84613e17565b613dfb565b905082815260208101848484011115612e4857600080fd5b612bd3848285613f09565b803561092a816140d4565b60008083601f840112612e6f578081fd5b50813567ffffffffffffffff811115612e86578182fd5b602083019150836020820283011115610db557600080fd5b803561092a816140e8565b805161092a816140e8565b803561092a816140f0565b803561092a816140f6565b805161092a816140f6565b600082601f830112612ee5578081fd5b8135611f10848260208601612e1d565b803561092a8161411e565b805161092a8161411e565b805161092a816140f0565b803561092a81614127565b600060208284031215612f32578081fd5b6125f183828401612e53565b60008060408385031215612f50578081fd5b612f5c84828501612e53565b91506020612f6c85828601612e53565b9150509250929050565b600080600060608486031215612f8a578081fd5b612f9685828601612e53565b92506020612fa686828701612e53565b9250506040612fb786828701612eb4565b9150509250925092565b60008060008060808587031215612fd6578081fd5b612fe286828701612e53565b93506020612ff287828801612e53565b935050604061300387828801612eb4565b925050606085013567ffffffffffffffff81111561301f578182fd5b61302b87828801612ed5565b91505092959194509250565b60008060408385031215613049578182fd5b61305584838501612e53565b91506020612f6c85828601612e9e565b60008060408385031215613077578182fd5b61308384838501612e53565b91506020612f6c85828601612eb4565b600080602083850312156130a5578182fd5b8183013567ffffffffffffffff8111156130bd578283fd5b6130c985828601612e5e565b92509250509250929050565b6000602082840312156130e6578081fd5b6125f183828401612e9e565b600060208284031215613103578081fd5b6125f183828401612ea9565b600060208284031215613120578081fd5b6125f183828401612eb4565b60006020828403121561313d578081fd5b6125f183828401612ebf565b60006020828403121561315a578081fd5b6125f183828401612eca565b600060208284031215613177578081fd5b6125f183828401612ef5565b600060208284031215613194578081fd5b6125f183828401612f00565b6000602082840312156131b1578081fd5b8082013567ffffffffffffffff8111156131c9578182fd5b611f1084828501612ed5565b6000602082840312156131e6578081fd5b6125f183828401612f0b565b60008060408385031215613204578182fd5b61308384838501612eb4565b600080600060408486031215613224578081fd5b61323085828601612f16565b9250602084013567ffffffffffffffff81111561324b578182fd5b61325786828701612e5e565b92509250509250925092565b61326c81613ee0565b82525050565b61326c61327e82613ee0565b613ff2565b80151561326c565b8061326c565b600061329b825190565b8084526020840193506132b2818560208601613f15565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920192915050565b60006132eb825190565b6132f9818560208601613f15565b9290920192915050565b6000815461331081613f41565b600182168015613327576001811461335657613386565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00831686528186019350613386565b60008581526020902060005b8381101561337e57815488820152600190910190602001613362565b505081860193505b50505092915050565b602b8152602081017f4d617820626c6f6f6d65727320746f206d696e7420696e20636f6d6d756e697481527f792073616c652069732038000000000000000000000000000000000000000000602082015290505b60400190565b60328152602081017f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015290506133e3565b60268152602081017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181527f6464726573730000000000000000000000000000000000000000000000000000602082015290506133e3565b60258152602081017f4552433732313a207472616e736665722066726f6d20696e636f72726563742081527f6f776e6572000000000000000000000000000000000000000000000000000000602082015290506133e3565b601c8152602081017f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000815290505b60200190565b601d8152602081017f4d617820426c6f6f6d65727320746f206d696e742069732065696768740000008152905061351f565b60248152602081017f4552433732313a207472616e7366657220746f20746865207a65726f2061646481527f7265737300000000000000000000000000000000000000000000000000000000602082015290506133e3565b60198152602081017f4552433732313a20617070726f766520746f2063616c6c6572000000000000008152905061351f565b60258152602081017f4e6f7420656e6f75676820626c6f6f6d6572732072656d61696e696e6720746f81527f206d696e74000000000000000000000000000000000000000000000000000000602082015290506133e3565b60248152602081017f416c6c20626c6f6f6d6572732061726520616c726561647920726f6c6c65642081527f6f76657200000000000000000000000000000000000000000000000000000000602082015290506133e3565b602c8152602081017f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657881527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015290506133e3565b601e8152602081017f4164647265737320646f6573206e6f7420657869737420696e206c69737400008152905061351f565b60388152602081017f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7781527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015290506133e3565b60118152602081017f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000008152905061351f565b602a8152602081017f4552433732313a2062616c616e636520717565727920666f7220746865207a6581527f726f206164647265737300000000000000000000000000000000000000000000602082015290506133e3565b60298152602081017f4552433732313a206f776e657220717565727920666f72206e6f6e657869737481527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015290506133e3565b60258152602081017f4e6f7420656e6f75676820626c6f6f6d6572732072656d61696e696e6720746f81527f2067696674000000000000000000000000000000000000000000000000000000602082015290506133e3565b60208082527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373910190815261351f565b602c8152602081017f4552433732313a20617070726f76656420717565727920666f72206e6f6e657881527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015290506133e3565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572910190815261351f565b60268152602081017f426c6f6f6d657220616c726561647920636c61696d656420627920746869732081527f77616c6c65740000000000000000000000000000000000000000000000000000602082015290506133e3565b60218152602081017f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6581527f7200000000000000000000000000000000000000000000000000000000000000602082015290506133e3565b60318152602081017f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f81527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015290506133e3565b601a8152602081017f436f6d6d756e6974792073616c65206973206e6f74206f70656e0000000000008152905061351f565b60188152602081017f496e636f7272656374204554482076616c75652073656e7400000000000000008152905061351f565b601f8152602081017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c008152905061351f565b60178152602081017f5075626c69632073616c65206973206e6f74206f70656e0000000000000000008152905061351f565b613b3f8183613272565b601401919050565b613b518184613303565b7f2f0000000000000000000000000000000000000000000000000000000000000081526001019050613b8381836132e1565b7f2e6a736f6e00000000000000000000000000000000000000000000000000000081529050600581016125f1565b6020810161092a8284613263565b60808101613bcd8287613263565b613bda6020830186613263565b613be7604083018561328b565b8181036060830152613bf98184613291565b9695505050505050565b60408101613c118285613263565b6125f1602083018461328b565b6020810161092a8284613283565b6020810161092a828461328b565b602080825281016125f18184613291565b6020808252810161092a8161338f565b6020808252810161092a816133e9565b6020808252810161092a81613441565b6020808252810161092a81613499565b6020808252810161092a816134f1565b6020808252810161092a81613525565b6020808252810161092a81613557565b6020808252810161092a816135af565b6020808252810161092a816135e1565b6020808252810161092a81613639565b6020808252810161092a81613691565b6020808252810161092a816136e9565b6020808252810161092a8161371b565b6020808252810161092a81613773565b6020808252810161092a816137a5565b6020808252810161092a816137fd565b6020808252810161092a81613855565b6020808252810161092a816138ad565b6020808252810161092a816138dd565b6020808252810161092a81613935565b6020808252810161092a81613965565b6020808252810161092a816139bd565b6020808252810161092a81613a15565b6020808252810161092a81613a6d565b6020808252810161092a81613a9f565b6020808252810161092a81613ad1565b6020808252810161092a81613b03565b6000613e0660405190565b9050613e128282613f6e565b919050565b600067ffffffffffffffff821115613e3157613e316140a5565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011660200192915050565b60008219821115613e7357613e73614018565b500190565b600082613e8757613e87614047565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ec457613ec4614018565b500290565b600082821015613edb57613edb614018565b500390565b600073ffffffffffffffffffffffffffffffffffffffff821661092a565b600061092a82613ee0565b82818337506000910152565b60005b83811015613f30578181015183820152602001613f18565b83811115611bbd5750506000910152565b600281046001821680613f5557607f821691505b60208210811415613f6857613f68614076565b50919050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff82111715613fb257613fb26140a5565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613feb57613feb614018565b5060010190565b600061092a82600061092a8260601b90565b60008261401357614013614047565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140dd81613ee0565b81146121be57600080fd5b8015156140dd565b806140dd565b7fffffffff0000000000000000000000000000000000000000000000000000000081166140dd565b6140dd81613efe565b60ff81166140dd56fea264697066735822122086512fd13fd1d20b7a4d62ec984f6eceaf9dad6bcf24fc7f6dde4b586630463f64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000457000000000000000000000000000000000000000000000000000000000000014d000000000000000000000000000000000000000000000000000000000000002c
-----Decoded View---------------
Arg [0] : _openSeaProxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _maxBloomers (uint256): 1111
Arg [2] : _maxCommunitySaleBloomers (uint256): 333
Arg [3] : _maxGiftedBloomers (uint256): 44
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000457
Arg [2] : 000000000000000000000000000000000000000000000000000000000000014d
Arg [3] : 000000000000000000000000000000000000000000000000000000000000002c
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.