Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
553 BCCNFTs
Holders
203
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BCCNFTsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BeaverCrafterClubNFTs
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721Tradable.sol"; /** * @title BeaverCrafterClub NFTs * Base contract to create and distribute rewards to the BCC community */ contract BeaverCrafterClubNFTs is ERC721Tradable { using Address for address; using Counters for Counters.Counter; // ============================== Variables =================================== address ownerAddress; // Count of tokenID Counters.Counter private tokenIdCount; /// @notice Root of the Merkle Tree used for whitelisting addresses bytes32 public merkleRoot; // ============================== Constants =================================== /// @notice Price to mint the NFTs uint256 public constant price = 8e16; /// @notice Price to mint the NFTs in preSale uint256 public constant earlyPrice = 6e16; /// @notice Max tokens supply for this contract uint256 public constant maxSupply = 1e4; /// @notice Max number of tokens allowed to own uint256 public constant maxBalance = 10; /// @notice Max number of tokens available during early sale uint256 public constant earlySaleSupply = 2200; /// @notice Start of the early sale period (in Unix second) // TODO change the timestamp uint256 public constant earlySaleStart = 1633471200; /// @notice End of the early sale period (in Unix second) // TODO change the timestamp uint256 public constant earlySaleEnd = 1633644000; // ============================== Constructor =================================== /// @notice Constructor of the NFT contract /// Takes as argument the OpenSea contract to manage sells and transfers /// and the merkle root of the whitelisting merkle tree constructor( address _proxyRegistryAddress, // OpenSea Smart Contract for trading bytes32 _merkleRoot ) ERC721Tradable("BeaverCrafterClub NFTs", "BCCNFTs", _proxyRegistryAddress) { // Initialize counter for next mints tokenIdCount._value = 200; merkleRoot = _merkleRoot; } // ============================== Functions =================================== /// @notice Returns the url of the servor handling token metadata function baseTokenURI() public pure override returns (string memory) { return "https://beavercrafterclub-metadata.herokuapp.com/beavers/"; } // ============================== Public functions =================================== /// @notice Checks if a proof is valid and an account is whitelisted /// @param index Leaf index in the merkle tree /// @param account Account to check /// @param merkleProof List of hashes corresponding to the nodes of the tree required /// to build the merkle proof function isWhitelisted( uint256 index, address account, bytes32[] calldata merkleProof ) public view returns (bool) { bytes32 node = keccak256(abi.encodePacked(index, account)); return MerkleProof.verify(merkleProof, merkleRoot, node); } /// @notice Mints `tokenId` and transfers it to `to` during VIP Sale Period /// @param to address of the future owner of the token /// @param amount Number tokens to mint /// @param index Leaf index in the merkle tree /// @param merkleProof List of hashes corresponding to the nodes of the tree required /// to build the merkle proof function vipMint( address to, uint256 amount, uint256 index, bytes32[] calldata merkleProof ) external payable { require(msg.value >= earlyPrice * amount, "Incorrect amount sent"); require(block.timestamp > earlySaleStart, "Early Sale not opened yet"); require(this.totalSupply() + amount <= earlySaleSupply, "No More Early Sale token available"); require(block.timestamp < earlySaleEnd, "Early Sale is closed"); require(isWhitelisted(index, to, merkleProof), "Account is not whitelisted"); for (uint256 i = 0; i < amount; i++) { tokenIdCount.increment(); _mint(to, tokenIdCount.current()); } } /// @notice Mints `tokenId` and transfers it to `to` during Public Sale Period /// @param to address of the future owner of the token /// @param amount Number tokens to mint function publicMint(address to, uint256 amount) external payable { require(msg.value >= price * amount, "Incorrect amount sent"); require(block.timestamp > earlySaleEnd, "Public Minting not opened yet"); require(balanceOf(to) + amount <= maxBalance, "Account owns too many to mint"); for (uint256 i = 0; i < amount; i++) { tokenIdCount.increment(); _mint(to, tokenIdCount.current()); } } // ============================== Governor =================================== /// @notice Mints a token to an address /// @param to address of the future owner of the token function governorMint(address to) public onlyOwner { tokenIdCount.increment(); _mint(to, tokenIdCount.current()); } /// @param to address of the future owner of the token /// @param amount Number tokens to mint function governorMintMultiple(address to, uint256 amount) external payable onlyOwner { for (uint256 i = 0; i < amount; i++) { tokenIdCount.increment(); super._mint(to, tokenIdCount.current()); } } /// @notice Mints `tokenId` and transfers it to `to` /// @param to address of the future owner of the token /// @param tokenID Target ID to mint function governorMintTokenSpecific(address to, uint256 tokenID) external payable onlyOwner { require(tokenID < 201); super._mint(to, tokenID); } /// @notice Mints `tokenId` and transfers it to `to` /// @param to Array of addresses of the future owner of the token /// @param tokenID Array of target ID to mint function governorMintMultipleTokenSpecific(address[] memory to, uint256[] memory tokenID) external payable onlyOwner { require(to.length == tokenID.length, "Incorrect input data"); for (uint256 i = 0; i < to.length; i++) { require(tokenID[i] < 201); super._mint(to[i], tokenID[i]); } } /// @notice Recovers any ERC20 token (wETH, USDC) that could accrue on this contract /// @param tokenAddress Address of the token to recover /// @param to Address to send the ERC20 to /// @param amountToRecover Amount of ERC20 to recover function recoverERC20( address tokenAddress, address to, uint256 amountToRecover ) external onlyOwner { IERC20(tokenAddress).transfer(to, amountToRecover); } /// @notice Recovers any ETH that could accrue on this contract /// @param to Address to send the ETH to /// @param amountToRecover Amount of ETH to recover function recoverETH(address payable to, uint256 amountToRecover) external onlyOwner { to.transfer(amountToRecover); } /// @notice Updates the merkle root /// @param _merkleRoot New merkle root function updateMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } /// @notice Makes this contract payable receive() external payable {} // ============================== Internal Functions =================================== /// @notice Mints a new token /// @param to address of the future owner of the token /// @param tokenId id of the token to mint /// @dev Checks that the totalSupply is respected, that function _mint(address to, uint256 tokenId) internal override { require(tokenId < maxSupply, "Reached minting limit"); super._mint(to, tokenId); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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); }
// SPDX-License-Identifier: MIT 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 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 {} }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @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 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 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 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 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) { 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 = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT 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 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 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 no longer needed starting with Solidity 0.8. 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 pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./common/meta-transactions/ContextMixin.sol"; import "./common/meta-transactions/NativeMetaTransaction.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title ERC721Tradable * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality. */ abstract contract ERC721Tradable is Ownable, ContextMixin, ERC721Enumerable, NativeMetaTransaction { using SafeMath for uint256; address proxyRegistryAddress; uint256 private _currentTokenId = 0; constructor( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721(_name, _symbol) { proxyRegistryAddress = _proxyRegistryAddress; _initializeEIP712(_name); } function baseTokenURI() public pure virtual returns (string memory); function tokenURI(uint256 _tokenId) public pure override returns (string memory) { return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId))); } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea. */ function _msgSender() internal view override returns (address sender) { return ContextMixin.msgSender(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and(mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff) } } else { sender = payable(msg.sender); } return sender; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import { Initializable } from "./Initializable.sol"; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string public constant ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(bytes("EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)")); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contracts that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712(string memory name) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import { SafeMath } from "@openzeppelin/contracts/utils/math/SafeMath.sol"; import { EIP712Base } from "./EIP712Base.sol"; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(bytes("MetaTransaction(uint256 nonce,address from,bytes functionSignature)")); event MetaTransactionExecuted(address userAddress, address payable relayerAddress, bytes functionSignature); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require(verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match"); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted(userAddress, payable(msg.sender), functionSignature); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call(abi.encodePacked(functionSignature, userAddress)); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode(META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature)) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover(toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS); } }
{ "evmVersion": "berlin", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 1000000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"earlyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySaleEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"governorMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"governorMintMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"tokenID","type":"uint256[]"}],"name":"governorMintMultipleTokenSpecific","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"governorMintTokenSpecific","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountToRecover","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amountToRecover","type":"uint256"}],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"vipMint","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600b805460ff191690556000600f553480156200002057600080fd5b506040516200453338038062004533833981016040819052620000439162000393565b6040518060400160405280601681526020017f42656176657243726166746572436c7562204e46547300000000000000000000815250604051806040016040528060078152602001664243434e46547360c81b815250838282620000b6620000b06200011c60201b60201c565b62000138565b8151620000cb906001906020850190620002ed565b508051620000e1906002906020840190620002ed565b5050600e80546001600160a01b0319166001600160a01b038416179055506200010a8362000188565b505060c860115550601255506200040c565b600062000133620001ec60201b620024811760201c565b905090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b5460ff1615620001d15760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001dc816200024b565b50600b805460ff19166001179055565b6000333014156200024557600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002489050565b50335b90565b6040518060800160405280604f8152602001620044e4604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600c55565b828054620002fb90620003cf565b90600052602060002090601f0160209004810192826200031f57600085556200036a565b82601f106200033a57805160ff19168380011785556200036a565b828001600101855582156200036a579182015b828111156200036a5782518255916020019190600101906200034d565b50620003789291506200037c565b5090565b5b808211156200037857600081556001016200037d565b60008060408385031215620003a757600080fd5b82516001600160a01b0381168114620003bf57600080fd5b6020939093015192949293505050565b600181811c90821680620003e457607f821691505b602082108114156200040657634e487b7160e01b600052602260045260246000fd5b50919050565b6140c8806200041c6000396000f3fe6080604052600436106102e05760003560e01c806342842e0e11610184578063a035b1fe116100d6578063ce6df2b91161008a578063e985e9c511610064578063e985e9c5146107c3578063f2fde38b146107e3578063f89402461461080357600080fd5b8063ce6df2b914610785578063d547cfb714610798578063d5abeb01146107ad57600080fd5b8063b88d4fde116100bb578063b88d4fde1461072f578063c1dd8d4b1461074f578063c87b56dd1461076557600080fd5b8063a035b1fe146106f3578063a22cb4651461070f57600080fd5b806370a08231116101385780637c9e8bb0116101125780637c9e8bb0146106a05780638da5cb5b146106b357806395d89b41146106de57600080fd5b806370a0823114610656578063715018a61461067657806373ad468a1461068b57600080fd5b80634f6ccce7116101695780634f6ccce7146106035780636352211e146106235780636e826d751461064357600080fd5b806342842e0e146105c35780634783f0ef146105e357600080fd5b80631e4220001161023d5780632b06f201116101f15780632f745c59116101cb5780632f745c59146105705780633408e470146105905780633e0c0629146105a357600080fd5b80632b06f201146105045780632d0335ab146105175780632eb4a7ab1461055a57600080fd5b8063239c47c011610222578063239c47c0146104b657806323b872dd146104d15780632465195d146104f157600080fd5b80631e4220001461048157806320379ee5146104a157600080fd5b80630c53c51c116102945780631171bda9116102795780631171bda91461042c578063175f77bc1461044c57806318160ddd1461046c57600080fd5b80630c53c51c146103d05780630f7e5970146103e357600080fd5b8063081812fc116102c5578063081812fc14610343578063095ea7b3146103885780630bd960d9146103aa57600080fd5b806301ffc9a7146102ec57806306fdde031461032157600080fd5b366102e757005b600080fd5b3480156102f857600080fd5b5061030c610307366004613ac4565b61081b565b60405190151581526020015b60405180910390f35b34801561032d57600080fd5b50610336610877565b6040516103189190613cfa565b34801561034f57600080fd5b5061036361035e366004613aab565b610909565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610318565b34801561039457600080fd5b506103a86103a336600461379d565b6109e8565b005b3480156103b657600080fd5b506103c263615ccae081565b604051908152602001610318565b6103366103de3660046138dd565b610b94565b3480156103ef57600080fd5b506103366040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561043857600080fd5b506103a8610447366004613802565b610e20565b34801561045857600080fd5b506103a8610467366004613780565b610f88565b34801561047857600080fd5b506009546103c2565b34801561048d57600080fd5b5061030c61049c366004613b34565b611065565b3480156104ad57600080fd5b50600c546103c2565b3480156104c257600080fd5b506103c266d529ae9e86000081565b3480156104dd57600080fd5b506103a86104ec366004613802565b61110e565b6103a86104ff36600461379d565b6111b6565b6103a86105123660046139c5565b61128b565b34801561052357600080fd5b506103c2610532366004613780565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205490565b34801561056657600080fd5b506103c260125481565b34801561057c57600080fd5b506103c261058b36600461379d565b611430565b34801561059c57600080fd5b50466103c2565b3480156105af57600080fd5b506103a86105be36600461379d565b6114ff565b3480156105cf57600080fd5b506103a86105de366004613802565b6115fc565b3480156105ef57600080fd5b506103a86105fe366004613aab565b611617565b34801561060f57600080fd5b506103c261061e366004613aab565b6116d6565b34801561062f57600080fd5b5061036361063e366004613aab565b611794565b6103a861065136600461395b565b611846565b34801561066257600080fd5b506103c2610671366004613780565b611b66565b34801561068257600080fd5b506103a8611c34565b34801561069757600080fd5b506103c2600a81565b6103a86106ae36600461379d565b611cfa565b3480156106bf57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610363565b3480156106ea57600080fd5b50610336611df1565b3480156106ff57600080fd5b506103c267011c37937e08000081565b34801561071b57600080fd5b506103a861072a3660046138af565b611e00565b34801561073b57600080fd5b506103a861074a366004613843565b611f6e565b34801561075b57600080fd5b506103c261089881565b34801561077157600080fd5b50610336610780366004613aab565b612017565b6103a861079336600461379d565b612051565b3480156107a457600080fd5b506103366121ef565b3480156107b957600080fd5b506103c261271081565b3480156107cf57600080fd5b5061030c6107de3660046137c9565b61220f565b3480156107ef57600080fd5b506103a86107fe366004613780565b61231b565b34801561080f57600080fd5b506103c263615f6de081565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806108715750610871826124eb565b92915050565b60606001805461088690613e2c565b80601f01602080910402602001604051908101604052809291908181526020018280546108b290613e2c565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff166109bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006109f382611794565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109b6565b8073ffffffffffffffffffffffffffffffffffffffff16610ad06125ce565b73ffffffffffffffffffffffffffffffffffffffff161480610af95750610af9816107de6125ce565b610b85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b6565b610b8f83836125dd565b505050565b604080516060818101835273ffffffffffffffffffffffffffffffffffffffff88166000818152600d602090815290859020548452830152918101869052610bdf878287878761267d565b610c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084016109b6565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600d6020526040902054610c9c9060016127c6565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600d60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610cf990899033908a90613c6f565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610d2e929190613bf6565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052610d6691613bda565b6000604051808303816000865af19150503d8060008114610da3576040519150601f19603f3d011682016040523d82523d6000602084013e610da8565b606091505b509150915081610e14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016109b6565b98975050505050505050565b610e286125ce565b73ffffffffffffffffffffffffffffffffffffffff16610e5d60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b158015610f4a57600080fd5b505af1158015610f5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f829190613a8e565b50505050565b610f906125ce565b73ffffffffffffffffffffffffffffffffffffffff16610fc560005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b611050601180546001019055565b6110628161105d60115490565b6127d9565b50565b60008085856040516020016110a992919091825260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602082015260340190565b604051602081830303815290604052805190602001209050611102848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612844565b9150505b949350505050565b61111f6111196125ce565b826128f3565b6111ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109b6565b610b8f838383612a2e565b6111be6125ce565b73ffffffffffffffffffffffffffffffffffffffff166111f360005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b60c9811061127d57600080fd5b6112878282612ca0565b5050565b6112936125ce565b73ffffffffffffffffffffffffffffffffffffffff166112c860005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b80518251146113b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e636f727265637420696e707574206461746100000000000000000000000060448201526064016109b6565b60005b8251811015610b8f5760c98282815181106113d0576113d0613f5a565b6020026020010151106113e257600080fd5b61141e8382815181106113f7576113f7613f5a565b602002602001015183838151811061141157611411613f5a565b6020026020010151612ca0565b8061142881613e80565b9150506113b3565b600061143b83611b66565b82106114c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016109b6565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b6115076125ce565b73ffffffffffffffffffffffffffffffffffffffff1661153c60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b60405173ffffffffffffffffffffffffffffffffffffffff83169082156108fc029083906000818181858888f19350505050158015610b8f573d6000803e3d6000fd5b610b8f83838360405180602001604052806000815250611f6e565b61161f6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661165460005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146116d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b601255565b60006116e160095490565b821061176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016109b6565b6009828154811061178257611782613f5a565b90600052602060002001549050919050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109b6565b6118578466d529ae9e860000613dac565b3410156118c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f496e636f727265637420616d6f756e742073656e74000000000000000000000060448201526064016109b6565b63615ccae0421161192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4561726c792053616c65206e6f74206f70656e6564207965740000000000000060448201526064016109b6565b610898843073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561197757600080fd5b505afa15801561198b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119af9190613b1b565b6119b99190613d80565b1115611a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4e6f204d6f7265204561726c792053616c6520746f6b656e20617661696c616260448201527f6c6500000000000000000000000000000000000000000000000000000000000060648201526084016109b6565b63615f6de04210611ab4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4561726c792053616c6520697320636c6f73656400000000000000000000000060448201526064016109b6565b611ac083868484611065565b611b26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4163636f756e74206973206e6f742077686974656c697374656400000000000060448201526064016109b6565b60005b84811015611b5e57611b3f601180546001019055565b611b4c8661105d60115490565b80611b5681613e80565b915050611b29565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff8216611c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109b6565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b611c3c6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611c7160005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b611cf86000612e6e565b565b611d026125ce565b73ffffffffffffffffffffffffffffffffffffffff16611d3760005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b60005b81811015610b8f57611dcd601180546001019055565b611ddf83611dda60115490565b612ca0565b80611de981613e80565b915050611db7565b60606002805461088690613e2c565b611e086125ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b6565b8060066000611eaa6125ce565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692151592909217909155611f196125ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f62911515815260200190565b60405180910390a35050565b611f7f611f796125ce565b836128f3565b61200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109b6565b610f8284848484612ee3565b60606120216121ef565b61202a83612f86565b60405160200161203b929190613c40565b6040516020818303038152906040529050919050565b6120638167011c37937e080000613dac565b3410156120cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f496e636f727265637420616d6f756e742073656e74000000000000000000000060448201526064016109b6565b63615f6de04211612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f5075626c6963204d696e74696e67206e6f74206f70656e65642079657400000060448201526064016109b6565b600a8161214584611b66565b61214f9190613d80565b11156121b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4163636f756e74206f776e7320746f6f206d616e7920746f206d696e7400000060448201526064016109b6565b60005b81811015610b8f576121d0601180546001019055565b6121dd8361105d60115490565b806121e781613e80565b9150506121ba565b606060405180606001604052806039815260200161405a60399139905090565b600e546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561228257600080fd5b505afa158015612296573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ba9190613afe565b73ffffffffffffffffffffffffffffffffffffffff1614156122e0576001915050610871565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526006602090815260408083209387168352929052205460ff16611106565b6123236125ce565b73ffffffffffffffffffffffffffffffffffffffff1661235860005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146123d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b73ffffffffffffffffffffffffffffffffffffffff8116612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109b6565b61106281612e6e565b6000333014156124e557600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff1691506124e89050565b50335b90565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061257e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061087157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610871565b60006125d8612481565b905090565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061263782611794565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff8616612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e455200000000000000000000000000000000000000000000000000000060648201526084016109b6565b6001612735612730876130b8565b613142565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015612783573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60006127d28284613d80565b9392505050565b612710811061127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f52656163686564206d696e74696e67206c696d6974000000000000000000000060448201526064016109b6565b600081815b85518110156128e857600086828151811061286657612866613f5a565b602002602001015190508083116128a85760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506128d5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806128e081613e80565b915050612849565b509092149392505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff166129a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109b6565b60006129af83611794565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a1e57508373ffffffffffffffffffffffffffffffffffffffff16612a0684610909565b73ffffffffffffffffffffffffffffffffffffffff16145b806111065750611106818561220f565b8273ffffffffffffffffffffffffffffffffffffffff16612a4e82611794565b73ffffffffffffffffffffffffffffffffffffffff1614612af1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109b6565b73ffffffffffffffffffffffffffffffffffffffff8216612b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109b6565b612b9e83838361318d565b612ba96000826125dd565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290612bdf908490613de9565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612c1a908490613d80565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff8216612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b6565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612da9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b6565b612db56000838361318d565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612deb908490613d80565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612eee848484612a2e565b612efa84848484613293565b610f82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b6565b606081612fc657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ff05780612fda81613e80565b9150612fe99050600a83613d98565b9150612fca565b60008167ffffffffffffffff81111561300b5761300b613f89565b6040519080825280601f01601f191660200182016040528015613035576020820181803683370190505b5090505b84156111065761304a600183613de9565b9150613057600a86613eb9565b613062906030613d80565b60f81b81838151811061307757613077613f5a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506130b1600a86613d98565b9450613039565b600060405180608001604052806043815260200161401760439139805160209182012083518483015160408087015180519086012090516131259501938452602084019290925273ffffffffffffffffffffffffffffffffffffffff166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061314d600c5490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201613125565b73ffffffffffffffffffffffffffffffffffffffff83166131f5576131f081600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b613232565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461323257613232838261347d565b73ffffffffffffffffffffffffffffffffffffffff821661325657610b8f81613534565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610b8f57610b8f82826135e3565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613475578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132d66125ce565b8786866040518563ffffffff1660e01b81526004016132f89493929190613cb1565b602060405180830381600087803b15801561331257600080fd5b505af1925050508015613360575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261335d91810190613ae1565b60015b61342a573d80801561338e576040519150601f19603f3d011682016040523d82523d6000602084013e613393565b606091505b508051613422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b6565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611106565b506001611106565b6000600161348a84611b66565b6134949190613de9565b6000838152600860205260409020549091508082146134f45773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b60095460009061354690600190613de9565b6000838152600a60205260408120546009805493945090928490811061356e5761356e613f5a565b90600052602060002001549050806009838154811061358f5761358f613f5a565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806135c7576135c7613f2b565b6001900381819060005260206000200160009055905550505050565b60006135ee83611b66565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60008083601f84011261364657600080fd5b50813567ffffffffffffffff81111561365e57600080fd5b6020830191508360208260051b850101111561367957600080fd5b9250929050565b600082601f83011261369157600080fd5b813560206136a66136a183613d5c565b613d0d565b80838252828201915082860187848660051b89010111156136c657600080fd5b60005b858110156136e5578135845292840192908401906001016136c9565b5090979650505050505050565b600082601f83011261370357600080fd5b813567ffffffffffffffff81111561371d5761371d613f89565b61374e60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613d0d565b81815284602083860101111561376357600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561379257600080fd5b81356127d281613fb8565b600080604083850312156137b057600080fd5b82356137bb81613fb8565b946020939093013593505050565b600080604083850312156137dc57600080fd5b82356137e781613fb8565b915060208301356137f781613fb8565b809150509250929050565b60008060006060848603121561381757600080fd5b833561382281613fb8565b9250602084013561383281613fb8565b929592945050506040919091013590565b6000806000806080858703121561385957600080fd5b843561386481613fb8565b9350602085013561387481613fb8565b925060408501359150606085013567ffffffffffffffff81111561389757600080fd5b6138a3878288016136f2565b91505092959194509250565b600080604083850312156138c257600080fd5b82356138cd81613fb8565b915060208301356137f781613fda565b600080600080600060a086880312156138f557600080fd5b853561390081613fb8565b9450602086013567ffffffffffffffff81111561391c57600080fd5b613928888289016136f2565b9450506040860135925060608601359150608086013560ff8116811461394d57600080fd5b809150509295509295909350565b60008060008060006080868803121561397357600080fd5b853561397e81613fb8565b94506020860135935060408601359250606086013567ffffffffffffffff8111156139a857600080fd5b6139b488828901613634565b969995985093965092949392505050565b600080604083850312156139d857600080fd5b823567ffffffffffffffff808211156139f057600080fd5b818501915085601f830112613a0457600080fd5b81356020613a146136a183613d5c565b8083825282820191508286018a848660051b8901011115613a3457600080fd5b600096505b84871015613a60578035613a4c81613fb8565b835260019690960195918301918301613a39565b5096505086013592505080821115613a7757600080fd5b50613a8485828601613680565b9150509250929050565b600060208284031215613aa057600080fd5b81516127d281613fda565b600060208284031215613abd57600080fd5b5035919050565b600060208284031215613ad657600080fd5b81356127d281613fe8565b600060208284031215613af357600080fd5b81516127d281613fe8565b600060208284031215613b1057600080fd5b81516127d281613fb8565b600060208284031215613b2d57600080fd5b5051919050565b60008060008060608587031215613b4a57600080fd5b843593506020850135613b5c81613fb8565b9250604085013567ffffffffffffffff811115613b7857600080fd5b613b8487828801613634565b95989497509550505050565b60008151808452613ba8816020860160208601613e00565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008251613bec818460208701613e00565b9190910192915050565b60008351613c08818460208801613e00565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008351613c52818460208801613e00565b835190830190613c66818360208801613e00565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808616835280851660208401525060606040830152613ca86060830184613b90565b95945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613cf06080830184613b90565b9695505050505050565b6020815260006127d26020830184613b90565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613d5457613d54613f89565b604052919050565b600067ffffffffffffffff821115613d7657613d76613f89565b5060051b60200190565b60008219821115613d9357613d93613ecd565b500190565b600082613da757613da7613efc565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613de457613de4613ecd565b500290565b600082821015613dfb57613dfb613ecd565b500390565b60005b83811015613e1b578181015183820152602001613e03565b83811115610f825750506000910152565b600181811c90821680613e4057607f821691505b60208210811415613e7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eb257613eb2613ecd565b5060010190565b600082613ec857613ec8613efc565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461106257600080fd5b801515811461106257600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461106257600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f62656176657263726166746572636c75622d6d657461646174612e6865726f6b756170702e636f6d2f626561766572732fa2646970667358221220d34780b77c5f904d0dff49be6bbac5f7016493502ef4571db5fc744d9141911364736f6c63430008060033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1c6f58b3936c0460b6a45b0e12bfb246e9d1d7808eec49ed5d3a7971c1c88b8cc
Deployed Bytecode
0x6080604052600436106102e05760003560e01c806342842e0e11610184578063a035b1fe116100d6578063ce6df2b91161008a578063e985e9c511610064578063e985e9c5146107c3578063f2fde38b146107e3578063f89402461461080357600080fd5b8063ce6df2b914610785578063d547cfb714610798578063d5abeb01146107ad57600080fd5b8063b88d4fde116100bb578063b88d4fde1461072f578063c1dd8d4b1461074f578063c87b56dd1461076557600080fd5b8063a035b1fe146106f3578063a22cb4651461070f57600080fd5b806370a08231116101385780637c9e8bb0116101125780637c9e8bb0146106a05780638da5cb5b146106b357806395d89b41146106de57600080fd5b806370a0823114610656578063715018a61461067657806373ad468a1461068b57600080fd5b80634f6ccce7116101695780634f6ccce7146106035780636352211e146106235780636e826d751461064357600080fd5b806342842e0e146105c35780634783f0ef146105e357600080fd5b80631e4220001161023d5780632b06f201116101f15780632f745c59116101cb5780632f745c59146105705780633408e470146105905780633e0c0629146105a357600080fd5b80632b06f201146105045780632d0335ab146105175780632eb4a7ab1461055a57600080fd5b8063239c47c011610222578063239c47c0146104b657806323b872dd146104d15780632465195d146104f157600080fd5b80631e4220001461048157806320379ee5146104a157600080fd5b80630c53c51c116102945780631171bda9116102795780631171bda91461042c578063175f77bc1461044c57806318160ddd1461046c57600080fd5b80630c53c51c146103d05780630f7e5970146103e357600080fd5b8063081812fc116102c5578063081812fc14610343578063095ea7b3146103885780630bd960d9146103aa57600080fd5b806301ffc9a7146102ec57806306fdde031461032157600080fd5b366102e757005b600080fd5b3480156102f857600080fd5b5061030c610307366004613ac4565b61081b565b60405190151581526020015b60405180910390f35b34801561032d57600080fd5b50610336610877565b6040516103189190613cfa565b34801561034f57600080fd5b5061036361035e366004613aab565b610909565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610318565b34801561039457600080fd5b506103a86103a336600461379d565b6109e8565b005b3480156103b657600080fd5b506103c263615ccae081565b604051908152602001610318565b6103366103de3660046138dd565b610b94565b3480156103ef57600080fd5b506103366040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561043857600080fd5b506103a8610447366004613802565b610e20565b34801561045857600080fd5b506103a8610467366004613780565b610f88565b34801561047857600080fd5b506009546103c2565b34801561048d57600080fd5b5061030c61049c366004613b34565b611065565b3480156104ad57600080fd5b50600c546103c2565b3480156104c257600080fd5b506103c266d529ae9e86000081565b3480156104dd57600080fd5b506103a86104ec366004613802565b61110e565b6103a86104ff36600461379d565b6111b6565b6103a86105123660046139c5565b61128b565b34801561052357600080fd5b506103c2610532366004613780565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205490565b34801561056657600080fd5b506103c260125481565b34801561057c57600080fd5b506103c261058b36600461379d565b611430565b34801561059c57600080fd5b50466103c2565b3480156105af57600080fd5b506103a86105be36600461379d565b6114ff565b3480156105cf57600080fd5b506103a86105de366004613802565b6115fc565b3480156105ef57600080fd5b506103a86105fe366004613aab565b611617565b34801561060f57600080fd5b506103c261061e366004613aab565b6116d6565b34801561062f57600080fd5b5061036361063e366004613aab565b611794565b6103a861065136600461395b565b611846565b34801561066257600080fd5b506103c2610671366004613780565b611b66565b34801561068257600080fd5b506103a8611c34565b34801561069757600080fd5b506103c2600a81565b6103a86106ae36600461379d565b611cfa565b3480156106bf57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610363565b3480156106ea57600080fd5b50610336611df1565b3480156106ff57600080fd5b506103c267011c37937e08000081565b34801561071b57600080fd5b506103a861072a3660046138af565b611e00565b34801561073b57600080fd5b506103a861074a366004613843565b611f6e565b34801561075b57600080fd5b506103c261089881565b34801561077157600080fd5b50610336610780366004613aab565b612017565b6103a861079336600461379d565b612051565b3480156107a457600080fd5b506103366121ef565b3480156107b957600080fd5b506103c261271081565b3480156107cf57600080fd5b5061030c6107de3660046137c9565b61220f565b3480156107ef57600080fd5b506103a86107fe366004613780565b61231b565b34801561080f57600080fd5b506103c263615f6de081565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806108715750610871826124eb565b92915050565b60606001805461088690613e2c565b80601f01602080910402602001604051908101604052809291908181526020018280546108b290613e2c565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff166109bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006109f382611794565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109b6565b8073ffffffffffffffffffffffffffffffffffffffff16610ad06125ce565b73ffffffffffffffffffffffffffffffffffffffff161480610af95750610af9816107de6125ce565b610b85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b6565b610b8f83836125dd565b505050565b604080516060818101835273ffffffffffffffffffffffffffffffffffffffff88166000818152600d602090815290859020548452830152918101869052610bdf878287878761267d565b610c6b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084016109b6565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600d6020526040902054610c9c9060016127c6565b73ffffffffffffffffffffffffffffffffffffffff88166000908152600d60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610cf990899033908a90613c6f565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610d2e929190613bf6565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815290829052610d6691613bda565b6000604051808303816000865af19150503d8060008114610da3576040519150601f19603f3d011682016040523d82523d6000602084013e610da8565b606091505b509150915081610e14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016109b6565b98975050505050505050565b610e286125ce565b73ffffffffffffffffffffffffffffffffffffffff16610e5d60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614610eda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b158015610f4a57600080fd5b505af1158015610f5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f829190613a8e565b50505050565b610f906125ce565b73ffffffffffffffffffffffffffffffffffffffff16610fc560005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b611050601180546001019055565b6110628161105d60115490565b6127d9565b50565b60008085856040516020016110a992919091825260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016602082015260340190565b604051602081830303815290604052805190602001209050611102848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612844565b9150505b949350505050565b61111f6111196125ce565b826128f3565b6111ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109b6565b610b8f838383612a2e565b6111be6125ce565b73ffffffffffffffffffffffffffffffffffffffff166111f360005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b60c9811061127d57600080fd5b6112878282612ca0565b5050565b6112936125ce565b73ffffffffffffffffffffffffffffffffffffffff166112c860005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b80518251146113b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f496e636f727265637420696e707574206461746100000000000000000000000060448201526064016109b6565b60005b8251811015610b8f5760c98282815181106113d0576113d0613f5a565b6020026020010151106113e257600080fd5b61141e8382815181106113f7576113f7613f5a565b602002602001015183838151811061141157611411613f5a565b6020026020010151612ca0565b8061142881613e80565b9150506113b3565b600061143b83611b66565b82106114c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016109b6565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600760209081526040808320938352929052205490565b6115076125ce565b73ffffffffffffffffffffffffffffffffffffffff1661153c60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b60405173ffffffffffffffffffffffffffffffffffffffff83169082156108fc029083906000818181858888f19350505050158015610b8f573d6000803e3d6000fd5b610b8f83838360405180602001604052806000815250611f6e565b61161f6125ce565b73ffffffffffffffffffffffffffffffffffffffff1661165460005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146116d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b601255565b60006116e160095490565b821061176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016109b6565b6009828154811061178257611782613f5a565b90600052602060002001549050919050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016109b6565b6118578466d529ae9e860000613dac565b3410156118c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f496e636f727265637420616d6f756e742073656e74000000000000000000000060448201526064016109b6565b63615ccae0421161192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4561726c792053616c65206e6f74206f70656e6564207965740000000000000060448201526064016109b6565b610898843073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561197757600080fd5b505afa15801561198b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119af9190613b1b565b6119b99190613d80565b1115611a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4e6f204d6f7265204561726c792053616c6520746f6b656e20617661696c616260448201527f6c6500000000000000000000000000000000000000000000000000000000000060648201526084016109b6565b63615f6de04210611ab4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4561726c792053616c6520697320636c6f73656400000000000000000000000060448201526064016109b6565b611ac083868484611065565b611b26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4163636f756e74206973206e6f742077686974656c697374656400000000000060448201526064016109b6565b60005b84811015611b5e57611b3f601180546001019055565b611b4c8661105d60115490565b80611b5681613e80565b915050611b29565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff8216611c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109b6565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b611c3c6125ce565b73ffffffffffffffffffffffffffffffffffffffff16611c7160005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611cee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b611cf86000612e6e565b565b611d026125ce565b73ffffffffffffffffffffffffffffffffffffffff16611d3760005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b60005b81811015610b8f57611dcd601180546001019055565b611ddf83611dda60115490565b612ca0565b80611de981613e80565b915050611db7565b60606002805461088690613e2c565b611e086125ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b6565b8060066000611eaa6125ce565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812091871680825291909352912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692151592909217909155611f196125ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f62911515815260200190565b60405180910390a35050565b611f7f611f796125ce565b836128f3565b61200b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109b6565b610f8284848484612ee3565b60606120216121ef565b61202a83612f86565b60405160200161203b929190613c40565b6040516020818303038152906040529050919050565b6120638167011c37937e080000613dac565b3410156120cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f496e636f727265637420616d6f756e742073656e74000000000000000000000060448201526064016109b6565b63615f6de04211612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f5075626c6963204d696e74696e67206e6f74206f70656e65642079657400000060448201526064016109b6565b600a8161214584611b66565b61214f9190613d80565b11156121b7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4163636f756e74206f776e7320746f6f206d616e7920746f206d696e7400000060448201526064016109b6565b60005b81811015610b8f576121d0601180546001019055565b6121dd8361105d60115490565b806121e781613e80565b9150506121ba565b606060405180606001604052806039815260200161405a60399139905090565b600e546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561228257600080fd5b505afa158015612296573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ba9190613afe565b73ffffffffffffffffffffffffffffffffffffffff1614156122e0576001915050610871565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526006602090815260408083209387168352929052205460ff16611106565b6123236125ce565b73ffffffffffffffffffffffffffffffffffffffff1661235860005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146123d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109b6565b73ffffffffffffffffffffffffffffffffffffffff8116612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109b6565b61106281612e6e565b6000333014156124e557600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff1691506124e89050565b50335b90565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061257e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061087157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610871565b60006125d8612481565b905090565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061263782611794565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff8616612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e455200000000000000000000000000000000000000000000000000000060648201526084016109b6565b6001612735612730876130b8565b613142565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015612783573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b60006127d28284613d80565b9392505050565b612710811061127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f52656163686564206d696e74696e67206c696d6974000000000000000000000060448201526064016109b6565b600081815b85518110156128e857600086828151811061286657612866613f5a565b602002602001015190508083116128a85760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506128d5565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806128e081613e80565b915050612849565b509092149392505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff166129a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109b6565b60006129af83611794565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a1e57508373ffffffffffffffffffffffffffffffffffffffff16612a0684610909565b73ffffffffffffffffffffffffffffffffffffffff16145b806111065750611106818561220f565b8273ffffffffffffffffffffffffffffffffffffffff16612a4e82611794565b73ffffffffffffffffffffffffffffffffffffffff1614612af1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016109b6565b73ffffffffffffffffffffffffffffffffffffffff8216612b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109b6565b612b9e83838361318d565b612ba96000826125dd565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260408120805460019290612bdf908490613de9565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612c1a908490613d80565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff8216612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b6565b60008181526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1615612da9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b6565b612db56000838361318d565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600460205260408120805460019290612deb908490613d80565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612eee848484612a2e565b612efa84848484613293565b610f82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b6565b606081612fc657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ff05780612fda81613e80565b9150612fe99050600a83613d98565b9150612fca565b60008167ffffffffffffffff81111561300b5761300b613f89565b6040519080825280601f01601f191660200182016040528015613035576020820181803683370190505b5090505b84156111065761304a600183613de9565b9150613057600a86613eb9565b613062906030613d80565b60f81b81838151811061307757613077613f5a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506130b1600a86613d98565b9450613039565b600060405180608001604052806043815260200161401760439139805160209182012083518483015160408087015180519086012090516131259501938452602084019290925273ffffffffffffffffffffffffffffffffffffffff166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061314d600c5490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201613125565b73ffffffffffffffffffffffffffffffffffffffff83166131f5576131f081600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b613232565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461323257613232838261347d565b73ffffffffffffffffffffffffffffffffffffffff821661325657610b8f81613534565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610b8f57610b8f82826135e3565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613475578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132d66125ce565b8786866040518563ffffffff1660e01b81526004016132f89493929190613cb1565b602060405180830381600087803b15801561331257600080fd5b505af1925050508015613360575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261335d91810190613ae1565b60015b61342a573d80801561338e576040519150601f19603f3d011682016040523d82523d6000602084013e613393565b606091505b508051613422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109b6565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611106565b506001611106565b6000600161348a84611b66565b6134949190613de9565b6000838152600860205260409020549091508082146134f45773ffffffffffffffffffffffffffffffffffffffff841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b50600091825260086020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600781528383209183525290812055565b60095460009061354690600190613de9565b6000838152600a60205260408120546009805493945090928490811061356e5761356e613f5a565b90600052602060002001549050806009838154811061358f5761358f613f5a565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806135c7576135c7613f2b565b6001900381819060005260206000200160009055905550505050565b60006135ee83611b66565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b60008083601f84011261364657600080fd5b50813567ffffffffffffffff81111561365e57600080fd5b6020830191508360208260051b850101111561367957600080fd5b9250929050565b600082601f83011261369157600080fd5b813560206136a66136a183613d5c565b613d0d565b80838252828201915082860187848660051b89010111156136c657600080fd5b60005b858110156136e5578135845292840192908401906001016136c9565b5090979650505050505050565b600082601f83011261370357600080fd5b813567ffffffffffffffff81111561371d5761371d613f89565b61374e60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613d0d565b81815284602083860101111561376357600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561379257600080fd5b81356127d281613fb8565b600080604083850312156137b057600080fd5b82356137bb81613fb8565b946020939093013593505050565b600080604083850312156137dc57600080fd5b82356137e781613fb8565b915060208301356137f781613fb8565b809150509250929050565b60008060006060848603121561381757600080fd5b833561382281613fb8565b9250602084013561383281613fb8565b929592945050506040919091013590565b6000806000806080858703121561385957600080fd5b843561386481613fb8565b9350602085013561387481613fb8565b925060408501359150606085013567ffffffffffffffff81111561389757600080fd5b6138a3878288016136f2565b91505092959194509250565b600080604083850312156138c257600080fd5b82356138cd81613fb8565b915060208301356137f781613fda565b600080600080600060a086880312156138f557600080fd5b853561390081613fb8565b9450602086013567ffffffffffffffff81111561391c57600080fd5b613928888289016136f2565b9450506040860135925060608601359150608086013560ff8116811461394d57600080fd5b809150509295509295909350565b60008060008060006080868803121561397357600080fd5b853561397e81613fb8565b94506020860135935060408601359250606086013567ffffffffffffffff8111156139a857600080fd5b6139b488828901613634565b969995985093965092949392505050565b600080604083850312156139d857600080fd5b823567ffffffffffffffff808211156139f057600080fd5b818501915085601f830112613a0457600080fd5b81356020613a146136a183613d5c565b8083825282820191508286018a848660051b8901011115613a3457600080fd5b600096505b84871015613a60578035613a4c81613fb8565b835260019690960195918301918301613a39565b5096505086013592505080821115613a7757600080fd5b50613a8485828601613680565b9150509250929050565b600060208284031215613aa057600080fd5b81516127d281613fda565b600060208284031215613abd57600080fd5b5035919050565b600060208284031215613ad657600080fd5b81356127d281613fe8565b600060208284031215613af357600080fd5b81516127d281613fe8565b600060208284031215613b1057600080fd5b81516127d281613fb8565b600060208284031215613b2d57600080fd5b5051919050565b60008060008060608587031215613b4a57600080fd5b843593506020850135613b5c81613fb8565b9250604085013567ffffffffffffffff811115613b7857600080fd5b613b8487828801613634565b95989497509550505050565b60008151808452613ba8816020860160208601613e00565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008251613bec818460208701613e00565b9190910192915050565b60008351613c08818460208801613e00565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008351613c52818460208801613e00565b835190830190613c66818360208801613e00565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff808616835280851660208401525060606040830152613ca86060830184613b90565b95945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613cf06080830184613b90565b9695505050505050565b6020815260006127d26020830184613b90565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715613d5457613d54613f89565b604052919050565b600067ffffffffffffffff821115613d7657613d76613f89565b5060051b60200190565b60008219821115613d9357613d93613ecd565b500190565b600082613da757613da7613efc565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613de457613de4613ecd565b500290565b600082821015613dfb57613dfb613ecd565b500390565b60005b83811015613e1b578181015183820152602001613e03565b83811115610f825750506000910152565b600181811c90821680613e4057607f821691505b60208210811415613e7a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eb257613eb2613ecd565b5060010190565b600082613ec857613ec8613efc565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461106257600080fd5b801515811461106257600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461106257600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f62656176657263726166746572636c75622d6d657461646174612e6865726f6b756170702e636f6d2f626561766572732fa2646970667358221220d34780b77c5f904d0dff49be6bbac5f7016493502ef4571db5fc744d9141911364736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1c6f58b3936c0460b6a45b0e12bfb246e9d1d7808eec49ed5d3a7971c1c88b8cc
-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _merkleRoot (bytes32): 0xc6f58b3936c0460b6a45b0e12bfb246e9d1d7808eec49ed5d3a7971c1c88b8cc
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : c6f58b3936c0460b6a45b0e12bfb246e9d1d7808eec49ed5d3a7971c1c88b8cc
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.