Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DropCollection
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721EnumerableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/cryptography/MerkleProofUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; import "../BaseCollection.sol"; contract DropCollection is BaseCollection, ERC721Upgradeable, ERC721EnumerableUpgradeable { using SafeMathUpgradeable for uint256; using MerkleProofUpgradeable for bytes32[]; mapping(address => uint256) private _mintCount; bytes32 private _merkleRoot; string private _tokenBaseURI; // Sales Parameters uint256 private _maxAmount; uint256 private _maxPerMint; uint256 private _maxPerWallet; uint256 private _price; // States bool private _presaleActive = false; bool private _saleActive = false; /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } modifier onlyMintable(uint64 quantity) { require(quantity > 0, "Quantity is 0"); require( _maxAmount > 0 ? totalSupply().add(quantity) <= _maxAmount : true, "Exceeded max supply" ); require(quantity <= _maxPerMint, "Exceeded max per mint"); _; } function initialize( string memory name_, string memory symbol_, address treasury_, address royalty_, uint96 royaltyFee_ ) public initializer { __ERC721_init(name_, symbol_); __ERC721Enumerable_init(); __BaseCollection_init(treasury_, royalty_, royaltyFee_); } function mint(uint64 quantity) external payable onlyMintable(quantity) { require(!_presaleActive, "Presale active"); require(_saleActive, "Sale not active"); require( _mintCount[_msgSender()].add(quantity) <= _maxPerWallet, "Exceeded max per wallet" ); _purchaseMint(quantity, _msgSender()); } function presaleMint( uint64 quantity, uint256 allowed, bytes32[] calldata proof ) external payable onlyMintable(quantity) { uint256 mintQuantity = _mintCount[_msgSender()].add(quantity); require(_presaleActive, "Presale not active"); require(_merkleRoot != "", "Presale not set"); require(mintQuantity <= _maxPerWallet, "Exceeded max per wallet"); require(mintQuantity <= allowed, "Exceeded max per wallet"); require( MerkleProofUpgradeable.verify( proof, _merkleRoot, keccak256(abi.encodePacked(_msgSender(), allowed)) ), "Presale invalid" ); _purchaseMint(quantity, _msgSender()); } function batchAirdrop( uint64[] calldata quantities, address[] calldata recipients ) external onlyOwner { uint256 length = recipients.length; require(quantities.length == length, "Invalid Arguments"); for (uint256 i = 0; i < length; ) { _mint(quantities[i], recipients[i]); unchecked { i++; } } } function setMerkleRoot(bytes32 newRoot) external onlyOwner { _merkleRoot = newRoot; } function startSale( uint256 newMaxAmount, uint256 newMaxPerMint, uint256 newMaxPerWallet, uint256 newPrice, bool presale ) external onlyOwner { _saleActive = true; _presaleActive = presale; _maxAmount = newMaxAmount; _maxPerMint = newMaxPerMint; _maxPerWallet = newMaxPerWallet; _price = newPrice; } function stopSale() external onlyOwner { _saleActive = false; _presaleActive = false; } function setBaseURI(string memory newBaseURI) external onlyOwner { _tokenBaseURI = newBaseURI; } function maxAmount() external view returns (uint256) { return _maxAmount; } function maxPerMint() external view returns (uint256) { return _maxPerMint; } function maxPerWallet() external view returns (uint256) { return _maxPerWallet; } function price() external view returns (uint256) { return _price; } function presaleActive() external view returns (bool) { return _presaleActive; } function saleActive() external view returns (bool) { return _saleActive; } function _baseURI() internal view virtual override returns (string memory) { return _tokenBaseURI; } function _purchaseMint(uint64 quantity, address to) internal { require(_price.mul(quantity) <= msg.value, "Value incorrect"); unchecked { _totalRevenue = _totalRevenue.add(msg.value); _mintCount[to] = _mintCount[to].add(quantity); } _niftyKit.addFees(msg.value); _mint(quantity, to); } function _mint(uint64 quantity, address to) internal { for (uint64 i = 0; i < quantity; ) { _mint(to, totalSupply().add(1)); unchecked { i++; } } } // The following functions are overrides required by Solidity. function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721Upgradeable, ERC721EnumerableUpgradeable) { super._beforeTokenTransfer(from, to, tokenId); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Upgradeable, ERC721EnumerableUpgradeable, BaseCollection) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable 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. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).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 overridden 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 = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721Upgradeable.sol"; import "./IERC721EnumerableUpgradeable.sol"; import "../../../proxy/utils/Initializable.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 ERC721EnumerableUpgradeable is Initializable, ERC721Upgradeable, IERC721EnumerableUpgradeable { function __ERC721Enumerable_init() internal onlyInitializing { } function __ERC721Enumerable_init_unchained() internal onlyInitializing { } // 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(IERC165Upgradeable, ERC721Upgradeable) returns (bool) { return interfaceId == type(IERC721EnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721Upgradeable.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 < ERC721EnumerableUpgradeable.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 = ERC721Upgradeable.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 = ERC721Upgradeable.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(); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[46] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProofUpgradeable { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMathUpgradeable { /** * @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 subtraction 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.9; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/common/ERC2981Upgradeable.sol"; import "./interfaces/IBaseCollection.sol"; import "./interfaces/INiftyKit.sol"; abstract contract BaseCollection is OwnableUpgradeable, ERC2981Upgradeable, IBaseCollection { using AddressUpgradeable for address; using SafeMathUpgradeable for uint256; INiftyKit internal _niftyKit; address internal _treasury; uint256 internal _totalRevenue; function __BaseCollection_init( address treasury_, address royalty_, uint96 royaltyFee_ ) internal onlyInitializing { __Ownable_init(); __ERC2981_init(); _niftyKit = INiftyKit(_msgSender()); _treasury = treasury_; _setDefaultRoyalty(royalty_, royaltyFee_); } function withdraw() external { require(address(this).balance > 0, "0 balance"); uint256 balance = address(this).balance; uint256 fees = _niftyKit.getFees(address(this)); _niftyKit.addFeesClaimed(fees); AddressUpgradeable.sendValue(payable(address(_niftyKit)), fees); AddressUpgradeable.sendValue(payable(_treasury), balance.sub(fees)); } function setTreasury(address newTreasury) external onlyOwner { _treasury = newTreasury; } function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) external onlyOwner { _setTokenRoyalty(tokenId, receiver, feeNumerator); } function treasury() external view returns (address) { return _treasury; } function totalRevenue() external view returns (uint256) { return _totalRevenue; } // The following functions are overrides required by Solidity. function transferOwnership(address newOwner) public override(IBaseCollection, OwnableUpgradeable) { return OwnableUpgradeable.transferOwnership(newOwner); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC2981Upgradeable) returns (bool) { return interfaceId == type(IBaseCollection).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = _setInitializedVersion(1); if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { bool isTopLevelCall = _setInitializedVersion(version); if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(version); } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { _setInitializedVersion(type(uint8).max); } function _setInitializedVersion(uint8 version) private returns (bool) { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, and for the lowest level // of initializers, because in other contexts the contract may have been reentered. if (_initializing) { require( version == 1 && !AddressUpgradeable.isContract(address(this)), "Initializable: contract is already initialized" ); return false; } else { require(_initialized < version, "Initializable: contract is already initialized"); _initialized = version; return true; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721EnumerableUpgradeable is IERC721Upgradeable { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981Upgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981Upgradeable is Initializable, IERC2981Upgradeable, ERC165Upgradeable { function __ERC2981_init() internal onlyInitializing { } function __ERC2981_init_unchained() internal onlyInitializing { } struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165Upgradeable, ERC165Upgradeable) returns (bool) { return interfaceId == type(IERC2981Upgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981Upgradeable */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[48] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IBaseCollection { /** * @dev Contract upgradeable initializer */ function initialize( string memory name, string memory symbol, address treasury, address royalty, uint96 royaltyFee ) external; /** * @dev part of Ownable */ function transferOwnership(address newOwner) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface INiftyKit { struct Entry { uint256 value; bool isValue; } /** * @dev Emitted when collection is created */ event CollectionCreated( uint96 indexed typeId, address indexed collectionAddress ); /** * @dev Returns the commission amount. */ function commission(address collection, uint256 amount) external view returns (uint256); /** * @dev Add fees from Collection */ function addFees(uint256 amount) external; /** * @dev Add fees claimed by the Collection */ function addFeesClaimed(uint256 amount) external; /** * @dev Get fees accrued by the account */ function getFees(address account) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981Upgradeable is IERC165Upgradeable { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"quantities","type":"uint64[]"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"treasury_","type":"address"},{"internalType":"address","name":"royalty_","type":"address"},{"internalType":"uint96","name":"royaltyFee_","type":"uint96"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"},{"internalType":"uint256","name":"allowed","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxAmount","type":"uint256"},{"internalType":"uint256","name":"newMaxPerMint","type":"uint256"},{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"},{"internalType":"uint256","name":"newPrice","type":"uint256"},{"internalType":"bool","name":"presale","type":"bool"}],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","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":"view","type":"function"},{"inputs":[],"name":"totalRevenue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610137805461ffff191690553480156200001d57600080fd5b50620000286200002e565b6200015e565b6200003a60ff6200003d565b50565b60008054610100900460ff1615620000d6578160ff16600114801562000076575062000074306200014f60201b620017431760201c565b155b620000ce5760405162461bcd60e51b815260206004820152602e60248201526000805160206200355f83398151915260448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b506000919050565b60005460ff808416911610620001355760405162461bcd60e51b815260206004820152602e60248201526000805160206200355f83398151915260448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401620000c5565b506000805460ff191660ff92909216919091179055600190565b6001600160a01b03163b151590565b6133f1806200016e6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063afef7c04116100ab578063e36b0b371161006f578063e36b0b3714610682578063e985e9c514610697578063f0f44260146106e0578063f2fde38b14610700578063fb9d09c81461072057600080fd5b8063afef7c04146105ed578063b88d4fde1461060d578063bf2d9e0b1461062d578063c87b56dd14610642578063d53ab5011461066257600080fd5b80637cb64759116100f25780637cb64759146105645780638da5cb5b1461058457806395d89b41146105a2578063a035b1fe146105b7578063a22cb465146105cd57600080fd5b80636352211e146104d157806368428a1b146104f157806370a082311461050f578063715018a61461052f578063789e3a551461054457600080fd5b80633ccfd60b116101bc57806353135ca01161018057806353135ca01461044457806355f804b31461045d5780635944c7531461047d5780635f48f3931461049d57806361d027b3146104b357600080fd5b80633ccfd60b146103c357806342842e0e146103d8578063453c2310146103f85780634f6ccce71461040e578063507e094f1461042e57600080fd5b806318160ddd1161020357806318160ddd1461031157806323b872dd146103315780632a55205a146103515780632f745c5914610390578063386bacdc146103b057600080fd5b806301ffc9a71461024057806304634d8d1461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612962565b610733565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b506102956102903660046129ad565b610744565b005b3480156102a357600080fd5b506102ac610785565b60405161026c9190612a38565b3480156102c557600080fd5b506102d96102d4366004612a4b565b610817565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612a64565b6108ac565b34801561031d57600080fd5b50610100545b60405190815260200161026c565b34801561033d57600080fd5b5061029561034c366004612a8e565b6109c1565b34801561035d57600080fd5b5061037161036c366004612aca565b6109f2565b604080516001600160a01b03909316835260208301919091520161026c565b34801561039c57600080fd5b506103236103ab366004612a64565b610aa0565b6102956103be366004612b47565b610b36565b3480156103cf57600080fd5b50610295610e21565b3480156103e457600080fd5b506102956103f3366004612a8e565b610f63565b34801561040457600080fd5b5061013554610323565b34801561041a57600080fd5b50610323610429366004612a4b565b610f7e565b34801561043a57600080fd5b5061013454610323565b34801561045057600080fd5b506101375460ff16610260565b34801561046957600080fd5b50610295610478366004612c4b565b611013565b34801561048957600080fd5b50610295610498366004612c7f565b61104a565b3480156104a957600080fd5b5061013354610323565b3480156104bf57600080fd5b5060ca546001600160a01b03166102d9565b3480156104dd57600080fd5b506102d96104ec366004612a4b565b61107f565b3480156104fd57600080fd5b5061013754610100900460ff16610260565b34801561051b57600080fd5b5061032361052a366004612cbb565b6110f6565b34801561053b57600080fd5b5061029561117d565b34801561055057600080fd5b5061029561055f366004612ce6565b6111b3565b34801561057057600080fd5b5061029561057f366004612a4b565b61120e565b34801561059057600080fd5b506033546001600160a01b03166102d9565b3480156105ae57600080fd5b506102ac61123e565b3480156105c357600080fd5b5061013654610323565b3480156105d957600080fd5b506102956105e8366004612d2f565b61124d565b3480156105f957600080fd5b50610295610608366004612d59565b611258565b34801561061957600080fd5b50610295610628366004612de2565b6112e6565b34801561063957600080fd5b5060cb54610323565b34801561064e57600080fd5b506102ac61065d366004612a4b565b61131e565b34801561066e57600080fd5b5061029561067d366004612e5d565b6113f9565b34801561068e57600080fd5b506102956114d0565b3480156106a357600080fd5b506102606106b2366004612ebc565b6001600160a01b03918216600090815260d16020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b506102956106fb366004612cbb565b611508565b34801561070c57600080fd5b5061029561071b366004612cbb565b611554565b61029561072e366004612ee6565b611560565b600061073e82611752565b92915050565b6033546001600160a01b031633146107775760405162461bcd60e51b815260040161076e90612f01565b60405180910390fd5b6107818282611777565b5050565b606060cc805461079490612f36565b80601f01602080910402602001604051908101604052809291908181526020018280546107c090612f36565b801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b5050505050905090565b600081815260ce60205260408120546001600160a01b03166108905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076e565b50600090815260d060205260409020546001600160a01b031690565b60006108b78261107f565b9050806001600160a01b0316836001600160a01b0316036109245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076e565b336001600160a01b0382161480610940575061094081336106b2565b6109b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076e565b6109bc8383611831565b505050565b6109cb338261189f565b6109e75760405162461bcd60e51b815260040161076e90612f70565b6109bc838383611996565b60008281526098602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a675750604080518082019091526097546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a86906001600160601b031687612fd7565b610a90919061300c565b91519350909150505b9250929050565b6000610aab836110f6565b8210610b0d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076e565b506001600160a01b0391909116600090815260fe60209081526040808320938352929052205490565b836000816001600160401b031611610b805760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b604482015260640161076e565b60006101335411610b92576001610bb6565b61013354610bb3826001600160401b0316610bad6101005490565b90611b3d565b11155b610bf85760405162461bcd60e51b81526020600482015260136024820152724578636565646564206d617820737570706c7960681b604482015260640161076e565b61013454816001600160401b03161115610c4c5760405162461bcd60e51b8152602060048201526015602482015274115e18d959591959081b585e081c195c881b5a5b9d605a1b604482015260640161076e565b6000610c816001600160401b03871661013083335b6001600160a01b0316815260208101919091526040016000205490611b3d565b6101375490915060ff16610ccc5760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b604482015260640161076e565b61013154600003610d115760405162461bcd60e51b815260206004820152600f60248201526e141c995cd85b19481b9bdd081cd95d608a1b604482015260640161076e565b61013554811115610d345760405162461bcd60e51b815260040161076e90613020565b84811115610d545760405162461bcd60e51b815260040161076e90613020565b610dd184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050610131546040516bffffffffffffffffffffffff193360601b166020820152603481018b9052909250605401905060405160208183030381529060405280519060200120611b49565b610e0f5760405162461bcd60e51b815260206004820152600f60248201526e141c995cd85b19481a5b9d985b1a59608a1b604482015260640161076e565b610e198633611b5f565b505050505050565b60004711610e5d5760405162461bcd60e51b8152602060048201526009602482015268302062616c616e636560b81b604482015260640161076e565b60c954604051639af608c960e01b815230600482015247916000916001600160a01b0390911690639af608c990602401602060405180830381865afa158015610eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ece9190613057565b60c95460405163b9bff4bb60e01b8152600481018390529192506001600160a01b03169063b9bff4bb90602401600060405180830381600087803b158015610f1557600080fd5b505af1158015610f29573d6000803e3d6000fd5b505060c954610f4492506001600160a01b0316905082611c72565b60ca54610781906001600160a01b0316610f5e8484611d8b565b611c72565b6109bc838383604051806020016040528060008152506112e6565b6000610f8a6101005490565b8210610fed5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076e565b610100828154811061100157611001613070565b90600052602060002001549050919050565b6033546001600160a01b0316331461103d5760405162461bcd60e51b815260040161076e90612f01565b61013261078182826130cc565b6033546001600160a01b031633146110745760405162461bcd60e51b815260040161076e90612f01565b6109bc838383611d97565b600081815260ce60205260408120546001600160a01b03168061073e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076e565b60006001600160a01b0382166111615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076e565b506001600160a01b0316600090815260cf602052604090205490565b6033546001600160a01b031633146111a75760405162461bcd60e51b815260040161076e90612f01565b6111b16000611e62565b565b6033546001600160a01b031633146111dd5760405162461bcd60e51b815260040161076e90612f01565b610137805491151561ffff199092169190911761010017905561013393909355610134919091556101355561013655565b6033546001600160a01b031633146112385760405162461bcd60e51b815260040161076e90612f01565b61013155565b606060cd805461079490612f36565b610781338383611eb4565b60006112646001611f82565b9050801561127c576000805461ff0019166101001790555b611286868661200f565b61128e612040565b611299848484612067565b8015610e19576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050505050565b6112f0338361189f565b61130c5760405162461bcd60e51b815260040161076e90612f70565b611318848484846120d1565b50505050565b600081815260ce60205260409020546060906001600160a01b031661139d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076e565b60006113a7612104565b905060008151116113c757604051806020016040528060008152506113f2565b806113d184612114565b6040516020016113e292919061318b565b6040516020818303038152906040525b9392505050565b6033546001600160a01b031633146114235760405162461bcd60e51b815260040161076e90612f01565b808381146114675760405162461bcd60e51b8152602060048201526011602482015270496e76616c696420417267756d656e747360781b604482015260640161076e565b60005b81811015610e19576114c886868381811061148757611487613070565b905060200201602081019061149c9190612ee6565b8585848181106114ae576114ae613070565b90506020020160208101906114c39190612cbb565b612214565b60010161146a565b6033546001600160a01b031633146114fa5760405162461bcd60e51b815260040161076e90612f01565b610137805461ffff19169055565b6033546001600160a01b031633146115325760405162461bcd60e51b815260040161076e90612f01565b60ca80546001600160a01b0319166001600160a01b0392909216919091179055565b61155d81612251565b50565b806000816001600160401b0316116115aa5760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b604482015260640161076e565b600061013354116115bc5760016115da565b610133546115d7826001600160401b0316610bad6101005490565b11155b61161c5760405162461bcd60e51b81526020600482015260136024820152724578636565646564206d617820737570706c7960681b604482015260640161076e565b61013454816001600160401b031611156116705760405162461bcd60e51b8152602060048201526015602482015274115e18d959591959081b585e081c195c881b5a5b9d605a1b604482015260640161076e565b6101375460ff16156116b55760405162461bcd60e51b815260206004820152600e60248201526d50726573616c652061637469766560901b604482015260640161076e565b61013754610100900460ff166116ff5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161076e565b6101355461171b6001600160401b038416610130600033610c61565b11156117395760405162461bcd60e51b815260040161076e90613020565b6107818233611b5f565b6001600160a01b03163b151590565b60006001600160e01b0319821663780e9d6360e01b148061073e575061073e826122e9565b6127106001600160601b03821611156117a25760405162461bcd60e51b815260040161076e906131ba565b6001600160a01b0382166117f85760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161076e565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217609755565b600081815260d06020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118668261107f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260ce60205260408120546001600160a01b03166119185760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076e565b60006119238361107f565b9050806001600160a01b0316846001600160a01b0316148061196a57506001600160a01b03808216600090815260d1602090815260408083209388168352929052205460ff165b8061198e5750836001600160a01b031661198384610817565b6001600160a01b0316145b949350505050565b826001600160a01b03166119a98261107f565b6001600160a01b031614611a0d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161076e565b6001600160a01b038216611a6f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076e565b611a7a838383612329565b611a85600082611831565b6001600160a01b038316600090815260cf60205260408120805460019290611aae908490613204565b90915550506001600160a01b038216600090815260cf60205260408120805460019290611adc90849061321b565b9091555050600081815260ce602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113f2828461321b565b600082611b568584612334565b14949350505050565b610136543490611b78906001600160401b0385166123a8565b1115611bb85760405162461bcd60e51b815260206004820152600f60248201526e15985b1d59481a5b98dbdc9c9958dd608a1b604482015260640161076e565b60cb54611bc59034611b3d565b60cb556001600160a01b03811660009081526101306020526040902054611bf5906001600160401b038416611b3d565b6001600160a01b0382811660009081526101306020526040908190209290925560c954915163107e9cf160e01b815234600482015291169063107e9cf190602401600060405180830381600087803b158015611c5057600080fd5b505af1158015611c64573d6000803e3d6000fd5b505050506107818282612214565b80471015611cc25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161076e565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611d0f576040519150601f19603f3d011682016040523d82523d6000602084013e611d14565b606091505b50509050806109bc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161076e565b60006113f28284613204565b6127106001600160601b0382161115611dc25760405162461bcd60e51b815260040161076e906131ba565b6001600160a01b038216611e185760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d65746572730000000000604482015260640161076e565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752609890529190942093519051909116600160a01b029116179055565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611f155760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076e565b6001600160a01b03838116600081815260d16020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008054610100900460ff1615611fc9578160ff166001148015611fa55750303b155b611fc15760405162461bcd60e51b815260040161076e90613233565b506000919050565b60005460ff808416911610611ff05760405162461bcd60e51b815260040161076e90613233565b506000805460ff191660ff92909216919091179055600190565b919050565b600054610100900460ff166120365760405162461bcd60e51b815260040161076e90613281565b61078182826123b4565b600054610100900460ff166111b15760405162461bcd60e51b815260040161076e90613281565b600054610100900460ff1661208e5760405162461bcd60e51b815260040161076e90613281565b6120966123f4565b61209e612040565b60c98054336001600160a01b03199182161790915560ca80549091166001600160a01b0385161790556109bc8282611777565b6120dc848484611996565b6120e884848484612423565b6113185760405162461bcd60e51b815260040161076e906132cc565b6060610132805461079490612f36565b60608160000361213b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612165578061214f8161331e565b915061215e9050600a8361300c565b915061213f565b6000816001600160401b0381111561217f5761217f612ba0565b6040519080825280601f01601f1916602001820160405280156121a9576020820181803683370190505b5090505b841561198e576121be600183613204565b91506121cb600a86613337565b6121d690603061321b565b60f81b8183815181106121eb576121eb613070565b60200101906001600160f81b031916908160001a90535061220d600a8661300c565b94506121ad565b60005b826001600160401b0316816001600160401b031610156109bc57612249826122446001610bad6101005490565b612524565b600101612217565b6033546001600160a01b0316331461227b5760405162461bcd60e51b815260040161076e90612f01565b6001600160a01b0381166122e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b61155d81611e62565b60006001600160e01b031982166380ac58cd60e01b148061231a57506001600160e01b03198216635b5e139f60e01b145b8061073e575061073e82612672565b6109bc838383612697565b600081815b84518110156123a057600085828151811061235657612356613070565b6020026020010151905080831161237c576000838152602082905260409020925061238d565b600081815260208490526040902092505b50806123988161331e565b915050612339565b509392505050565b60006113f28284612fd7565b600054610100900460ff166123db5760405162461bcd60e51b815260040161076e90613281565b60cc6123e783826130cc565b5060cd6109bc82826130cc565b600054610100900460ff1661241b5760405162461bcd60e51b815260040161076e90613281565b6111b1612751565b60006001600160a01b0384163b1561251957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061246790339089908890889060040161334b565b6020604051808303816000875af19250505080156124a2575060408051601f3d908101601f1916820190925261249f91810190613388565b60015b6124ff573d8080156124d0576040519150601f19603f3d011682016040523d82523d6000602084013e6124d5565b606091505b5080516000036124f75760405162461bcd60e51b815260040161076e906132cc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061198e565b506001949350505050565b6001600160a01b03821661257a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076e565b600081815260ce60205260409020546001600160a01b0316156125df5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076e565b6125eb60008383612329565b6001600160a01b038216600090815260cf6020526040812080546001929061261490849061321b565b9091555050600081815260ce602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b03198216635d129f8f60e01b148061073e575061073e82612781565b6001600160a01b0383166126f4576126ef816101008054600083815261010160205260408120829055600182018355919091527f45e010b9ae401e2eb71529478da8bd513a9bdc2d095a111e324f5b95c09ed87b0155565b612717565b816001600160a01b0316836001600160a01b0316146127175761271783826127b6565b6001600160a01b03821661272e576109bc81612853565b826001600160a01b0316826001600160a01b0316146109bc576109bc8282612908565b600054610100900460ff166127785760405162461bcd60e51b815260040161076e90613281565b6111b133611e62565b60006001600160e01b0319821663152a902d60e11b148061073e57506301ffc9a760e01b6001600160e01b031983161461073e565b600060016127c3846110f6565b6127cd9190613204565b600083815260ff6020526040902054909150808214612820576001600160a01b038416600090815260fe60209081526040808320858452825280832054848452818420819055835260ff90915290208190555b50600091825260ff602090815260408084208490556001600160a01b03909416835260fe81528383209183525290812055565b6101005460009061286690600190613204565b60008381526101016020526040812054610100805493945090928490811061289057612890613070565b906000526020600020015490508061010083815481106128b2576128b2613070565b600091825260208083209091019290925582815261010190915260408082208490558582528120556101008054806128ec576128ec6133a5565b6001900381819060005260206000200160009055905550505050565b6000612913836110f6565b6001600160a01b03909316600090815260fe60209081526040808320868452825280832085905593825260ff9052919091209190915550565b6001600160e01b03198116811461155d57600080fd5b60006020828403121561297457600080fd5b81356113f28161294c565b80356001600160a01b038116811461200a57600080fd5b80356001600160601b038116811461200a57600080fd5b600080604083850312156129c057600080fd5b6129c98361297f565b91506129d760208401612996565b90509250929050565b60005b838110156129fb5781810151838201526020016129e3565b838111156113185750506000910152565b60008151808452612a248160208601602086016129e0565b601f01601f19169290920160200192915050565b6020815260006113f26020830184612a0c565b600060208284031215612a5d57600080fd5b5035919050565b60008060408385031215612a7757600080fd5b612a808361297f565b946020939093013593505050565b600080600060608486031215612aa357600080fd5b612aac8461297f565b9250612aba6020850161297f565b9150604084013590509250925092565b60008060408385031215612add57600080fd5b50508035926020909101359150565b80356001600160401b038116811461200a57600080fd5b60008083601f840112612b1557600080fd5b5081356001600160401b03811115612b2c57600080fd5b6020830191508360208260051b8501011115610a9957600080fd5b60008060008060608587031215612b5d57600080fd5b612b6685612aec565b93506020850135925060408501356001600160401b03811115612b8857600080fd5b612b9487828801612b03565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612bd057612bd0612ba0565b604051601f8501601f19908116603f01168101908282118183101715612bf857612bf8612ba0565b81604052809350858152868686011115612c1157600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c3c57600080fd5b6113f283833560208501612bb6565b600060208284031215612c5d57600080fd5b81356001600160401b03811115612c7357600080fd5b61198e84828501612c2b565b600080600060608486031215612c9457600080fd5b83359250612ca46020850161297f565b9150612cb260408501612996565b90509250925092565b600060208284031215612ccd57600080fd5b6113f28261297f565b8035801515811461200a57600080fd5b600080600080600060a08688031215612cfe57600080fd5b85359450602086013593506040860135925060608601359150612d2360808701612cd6565b90509295509295909350565b60008060408385031215612d4257600080fd5b612d4b8361297f565b91506129d760208401612cd6565b600080600080600060a08688031215612d7157600080fd5b85356001600160401b0380821115612d8857600080fd5b612d9489838a01612c2b565b96506020880135915080821115612daa57600080fd5b50612db788828901612c2b565b945050612dc66040870161297f565b9250612dd46060870161297f565b9150612d2360808701612996565b60008060008060808587031215612df857600080fd5b612e018561297f565b9350612e0f6020860161297f565b92506040850135915060608501356001600160401b03811115612e3157600080fd5b8501601f81018713612e4257600080fd5b612e5187823560208401612bb6565b91505092959194509250565b60008060008060408587031215612e7357600080fd5b84356001600160401b0380821115612e8a57600080fd5b612e9688838901612b03565b90965094506020870135915080821115612eaf57600080fd5b50612b9487828801612b03565b60008060408385031215612ecf57600080fd5b612ed88361297f565b91506129d76020840161297f565b600060208284031215612ef857600080fd5b6113f282612aec565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612f4a57607f821691505b602082108103612f6a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ff157612ff1612fc1565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261301b5761301b612ff6565b500490565b60208082526017908201527f4578636565646564206d6178207065722077616c6c6574000000000000000000604082015260600190565b60006020828403121561306957600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b601f8211156109bc57600081815260208120601f850160051c810160208610156130ad5750805b601f850160051c820191505b81811015610e19578281556001016130b9565b81516001600160401b038111156130e5576130e5612ba0565b6130f9816130f38454612f36565b84613086565b602080601f83116001811461312e57600084156131165750858301515b600019600386901b1c1916600185901b178555610e19565b600085815260208120601f198616915b8281101561315d5788860151825594840194600190910190840161313e565b508582101561317b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000835161319d8184602088016129e0565b8351908301906131b18183602088016129e0565b01949350505050565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b60008282101561321657613216612fc1565b500390565b6000821982111561322e5761322e612fc1565b500190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006001820161333057613330612fc1565b5060010190565b60008261334657613346612ff6565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061337e90830184612a0c565b9695505050505050565b60006020828403121561339a57600080fd5b81516113f28161294c565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c0364cbd73509c075328c944ef6a9cb9f9b497471b5a2b9dc330ab17770f498164736f6c634300080f0033496e697469616c697a61626c653a20636f6e747261637420697320616c726561
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80636352211e1161012e578063afef7c04116100ab578063e36b0b371161006f578063e36b0b3714610682578063e985e9c514610697578063f0f44260146106e0578063f2fde38b14610700578063fb9d09c81461072057600080fd5b8063afef7c04146105ed578063b88d4fde1461060d578063bf2d9e0b1461062d578063c87b56dd14610642578063d53ab5011461066257600080fd5b80637cb64759116100f25780637cb64759146105645780638da5cb5b1461058457806395d89b41146105a2578063a035b1fe146105b7578063a22cb465146105cd57600080fd5b80636352211e146104d157806368428a1b146104f157806370a082311461050f578063715018a61461052f578063789e3a551461054457600080fd5b80633ccfd60b116101bc57806353135ca01161018057806353135ca01461044457806355f804b31461045d5780635944c7531461047d5780635f48f3931461049d57806361d027b3146104b357600080fd5b80633ccfd60b146103c357806342842e0e146103d8578063453c2310146103f85780634f6ccce71461040e578063507e094f1461042e57600080fd5b806318160ddd1161020357806318160ddd1461031157806323b872dd146103315780632a55205a146103515780632f745c5914610390578063386bacdc146103b057600080fd5b806301ffc9a71461024057806304634d8d1461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612962565b610733565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b506102956102903660046129ad565b610744565b005b3480156102a357600080fd5b506102ac610785565b60405161026c9190612a38565b3480156102c557600080fd5b506102d96102d4366004612a4b565b610817565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612a64565b6108ac565b34801561031d57600080fd5b50610100545b60405190815260200161026c565b34801561033d57600080fd5b5061029561034c366004612a8e565b6109c1565b34801561035d57600080fd5b5061037161036c366004612aca565b6109f2565b604080516001600160a01b03909316835260208301919091520161026c565b34801561039c57600080fd5b506103236103ab366004612a64565b610aa0565b6102956103be366004612b47565b610b36565b3480156103cf57600080fd5b50610295610e21565b3480156103e457600080fd5b506102956103f3366004612a8e565b610f63565b34801561040457600080fd5b5061013554610323565b34801561041a57600080fd5b50610323610429366004612a4b565b610f7e565b34801561043a57600080fd5b5061013454610323565b34801561045057600080fd5b506101375460ff16610260565b34801561046957600080fd5b50610295610478366004612c4b565b611013565b34801561048957600080fd5b50610295610498366004612c7f565b61104a565b3480156104a957600080fd5b5061013354610323565b3480156104bf57600080fd5b5060ca546001600160a01b03166102d9565b3480156104dd57600080fd5b506102d96104ec366004612a4b565b61107f565b3480156104fd57600080fd5b5061013754610100900460ff16610260565b34801561051b57600080fd5b5061032361052a366004612cbb565b6110f6565b34801561053b57600080fd5b5061029561117d565b34801561055057600080fd5b5061029561055f366004612ce6565b6111b3565b34801561057057600080fd5b5061029561057f366004612a4b565b61120e565b34801561059057600080fd5b506033546001600160a01b03166102d9565b3480156105ae57600080fd5b506102ac61123e565b3480156105c357600080fd5b5061013654610323565b3480156105d957600080fd5b506102956105e8366004612d2f565b61124d565b3480156105f957600080fd5b50610295610608366004612d59565b611258565b34801561061957600080fd5b50610295610628366004612de2565b6112e6565b34801561063957600080fd5b5060cb54610323565b34801561064e57600080fd5b506102ac61065d366004612a4b565b61131e565b34801561066e57600080fd5b5061029561067d366004612e5d565b6113f9565b34801561068e57600080fd5b506102956114d0565b3480156106a357600080fd5b506102606106b2366004612ebc565b6001600160a01b03918216600090815260d16020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b506102956106fb366004612cbb565b611508565b34801561070c57600080fd5b5061029561071b366004612cbb565b611554565b61029561072e366004612ee6565b611560565b600061073e82611752565b92915050565b6033546001600160a01b031633146107775760405162461bcd60e51b815260040161076e90612f01565b60405180910390fd5b6107818282611777565b5050565b606060cc805461079490612f36565b80601f01602080910402602001604051908101604052809291908181526020018280546107c090612f36565b801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b5050505050905090565b600081815260ce60205260408120546001600160a01b03166108905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076e565b50600090815260d060205260409020546001600160a01b031690565b60006108b78261107f565b9050806001600160a01b0316836001600160a01b0316036109245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076e565b336001600160a01b0382161480610940575061094081336106b2565b6109b25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076e565b6109bc8383611831565b505050565b6109cb338261189f565b6109e75760405162461bcd60e51b815260040161076e90612f70565b6109bc838383611996565b60008281526098602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a675750604080518082019091526097546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a86906001600160601b031687612fd7565b610a90919061300c565b91519350909150505b9250929050565b6000610aab836110f6565b8210610b0d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076e565b506001600160a01b0391909116600090815260fe60209081526040808320938352929052205490565b836000816001600160401b031611610b805760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b604482015260640161076e565b60006101335411610b92576001610bb6565b61013354610bb3826001600160401b0316610bad6101005490565b90611b3d565b11155b610bf85760405162461bcd60e51b81526020600482015260136024820152724578636565646564206d617820737570706c7960681b604482015260640161076e565b61013454816001600160401b03161115610c4c5760405162461bcd60e51b8152602060048201526015602482015274115e18d959591959081b585e081c195c881b5a5b9d605a1b604482015260640161076e565b6000610c816001600160401b03871661013083335b6001600160a01b0316815260208101919091526040016000205490611b3d565b6101375490915060ff16610ccc5760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b604482015260640161076e565b61013154600003610d115760405162461bcd60e51b815260206004820152600f60248201526e141c995cd85b19481b9bdd081cd95d608a1b604482015260640161076e565b61013554811115610d345760405162461bcd60e51b815260040161076e90613020565b84811115610d545760405162461bcd60e51b815260040161076e90613020565b610dd184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050610131546040516bffffffffffffffffffffffff193360601b166020820152603481018b9052909250605401905060405160208183030381529060405280519060200120611b49565b610e0f5760405162461bcd60e51b815260206004820152600f60248201526e141c995cd85b19481a5b9d985b1a59608a1b604482015260640161076e565b610e198633611b5f565b505050505050565b60004711610e5d5760405162461bcd60e51b8152602060048201526009602482015268302062616c616e636560b81b604482015260640161076e565b60c954604051639af608c960e01b815230600482015247916000916001600160a01b0390911690639af608c990602401602060405180830381865afa158015610eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ece9190613057565b60c95460405163b9bff4bb60e01b8152600481018390529192506001600160a01b03169063b9bff4bb90602401600060405180830381600087803b158015610f1557600080fd5b505af1158015610f29573d6000803e3d6000fd5b505060c954610f4492506001600160a01b0316905082611c72565b60ca54610781906001600160a01b0316610f5e8484611d8b565b611c72565b6109bc838383604051806020016040528060008152506112e6565b6000610f8a6101005490565b8210610fed5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076e565b610100828154811061100157611001613070565b90600052602060002001549050919050565b6033546001600160a01b0316331461103d5760405162461bcd60e51b815260040161076e90612f01565b61013261078182826130cc565b6033546001600160a01b031633146110745760405162461bcd60e51b815260040161076e90612f01565b6109bc838383611d97565b600081815260ce60205260408120546001600160a01b03168061073e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076e565b60006001600160a01b0382166111615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076e565b506001600160a01b0316600090815260cf602052604090205490565b6033546001600160a01b031633146111a75760405162461bcd60e51b815260040161076e90612f01565b6111b16000611e62565b565b6033546001600160a01b031633146111dd5760405162461bcd60e51b815260040161076e90612f01565b610137805491151561ffff199092169190911761010017905561013393909355610134919091556101355561013655565b6033546001600160a01b031633146112385760405162461bcd60e51b815260040161076e90612f01565b61013155565b606060cd805461079490612f36565b610781338383611eb4565b60006112646001611f82565b9050801561127c576000805461ff0019166101001790555b611286868661200f565b61128e612040565b611299848484612067565b8015610e19576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050505050565b6112f0338361189f565b61130c5760405162461bcd60e51b815260040161076e90612f70565b611318848484846120d1565b50505050565b600081815260ce60205260409020546060906001600160a01b031661139d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076e565b60006113a7612104565b905060008151116113c757604051806020016040528060008152506113f2565b806113d184612114565b6040516020016113e292919061318b565b6040516020818303038152906040525b9392505050565b6033546001600160a01b031633146114235760405162461bcd60e51b815260040161076e90612f01565b808381146114675760405162461bcd60e51b8152602060048201526011602482015270496e76616c696420417267756d656e747360781b604482015260640161076e565b60005b81811015610e19576114c886868381811061148757611487613070565b905060200201602081019061149c9190612ee6565b8585848181106114ae576114ae613070565b90506020020160208101906114c39190612cbb565b612214565b60010161146a565b6033546001600160a01b031633146114fa5760405162461bcd60e51b815260040161076e90612f01565b610137805461ffff19169055565b6033546001600160a01b031633146115325760405162461bcd60e51b815260040161076e90612f01565b60ca80546001600160a01b0319166001600160a01b0392909216919091179055565b61155d81612251565b50565b806000816001600160401b0316116115aa5760405162461bcd60e51b815260206004820152600d60248201526c05175616e74697479206973203609c1b604482015260640161076e565b600061013354116115bc5760016115da565b610133546115d7826001600160401b0316610bad6101005490565b11155b61161c5760405162461bcd60e51b81526020600482015260136024820152724578636565646564206d617820737570706c7960681b604482015260640161076e565b61013454816001600160401b031611156116705760405162461bcd60e51b8152602060048201526015602482015274115e18d959591959081b585e081c195c881b5a5b9d605a1b604482015260640161076e565b6101375460ff16156116b55760405162461bcd60e51b815260206004820152600e60248201526d50726573616c652061637469766560901b604482015260640161076e565b61013754610100900460ff166116ff5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161076e565b6101355461171b6001600160401b038416610130600033610c61565b11156117395760405162461bcd60e51b815260040161076e90613020565b6107818233611b5f565b6001600160a01b03163b151590565b60006001600160e01b0319821663780e9d6360e01b148061073e575061073e826122e9565b6127106001600160601b03821611156117a25760405162461bcd60e51b815260040161076e906131ba565b6001600160a01b0382166117f85760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161076e565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217609755565b600081815260d06020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118668261107f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260ce60205260408120546001600160a01b03166119185760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076e565b60006119238361107f565b9050806001600160a01b0316846001600160a01b0316148061196a57506001600160a01b03808216600090815260d1602090815260408083209388168352929052205460ff165b8061198e5750836001600160a01b031661198384610817565b6001600160a01b0316145b949350505050565b826001600160a01b03166119a98261107f565b6001600160a01b031614611a0d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161076e565b6001600160a01b038216611a6f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076e565b611a7a838383612329565b611a85600082611831565b6001600160a01b038316600090815260cf60205260408120805460019290611aae908490613204565b90915550506001600160a01b038216600090815260cf60205260408120805460019290611adc90849061321b565b9091555050600081815260ce602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113f2828461321b565b600082611b568584612334565b14949350505050565b610136543490611b78906001600160401b0385166123a8565b1115611bb85760405162461bcd60e51b815260206004820152600f60248201526e15985b1d59481a5b98dbdc9c9958dd608a1b604482015260640161076e565b60cb54611bc59034611b3d565b60cb556001600160a01b03811660009081526101306020526040902054611bf5906001600160401b038416611b3d565b6001600160a01b0382811660009081526101306020526040908190209290925560c954915163107e9cf160e01b815234600482015291169063107e9cf190602401600060405180830381600087803b158015611c5057600080fd5b505af1158015611c64573d6000803e3d6000fd5b505050506107818282612214565b80471015611cc25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161076e565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611d0f576040519150601f19603f3d011682016040523d82523d6000602084013e611d14565b606091505b50509050806109bc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161076e565b60006113f28284613204565b6127106001600160601b0382161115611dc25760405162461bcd60e51b815260040161076e906131ba565b6001600160a01b038216611e185760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d65746572730000000000604482015260640161076e565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752609890529190942093519051909116600160a01b029116179055565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611f155760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076e565b6001600160a01b03838116600081815260d16020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008054610100900460ff1615611fc9578160ff166001148015611fa55750303b155b611fc15760405162461bcd60e51b815260040161076e90613233565b506000919050565b60005460ff808416911610611ff05760405162461bcd60e51b815260040161076e90613233565b506000805460ff191660ff92909216919091179055600190565b919050565b600054610100900460ff166120365760405162461bcd60e51b815260040161076e90613281565b61078182826123b4565b600054610100900460ff166111b15760405162461bcd60e51b815260040161076e90613281565b600054610100900460ff1661208e5760405162461bcd60e51b815260040161076e90613281565b6120966123f4565b61209e612040565b60c98054336001600160a01b03199182161790915560ca80549091166001600160a01b0385161790556109bc8282611777565b6120dc848484611996565b6120e884848484612423565b6113185760405162461bcd60e51b815260040161076e906132cc565b6060610132805461079490612f36565b60608160000361213b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612165578061214f8161331e565b915061215e9050600a8361300c565b915061213f565b6000816001600160401b0381111561217f5761217f612ba0565b6040519080825280601f01601f1916602001820160405280156121a9576020820181803683370190505b5090505b841561198e576121be600183613204565b91506121cb600a86613337565b6121d690603061321b565b60f81b8183815181106121eb576121eb613070565b60200101906001600160f81b031916908160001a90535061220d600a8661300c565b94506121ad565b60005b826001600160401b0316816001600160401b031610156109bc57612249826122446001610bad6101005490565b612524565b600101612217565b6033546001600160a01b0316331461227b5760405162461bcd60e51b815260040161076e90612f01565b6001600160a01b0381166122e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b61155d81611e62565b60006001600160e01b031982166380ac58cd60e01b148061231a57506001600160e01b03198216635b5e139f60e01b145b8061073e575061073e82612672565b6109bc838383612697565b600081815b84518110156123a057600085828151811061235657612356613070565b6020026020010151905080831161237c576000838152602082905260409020925061238d565b600081815260208490526040902092505b50806123988161331e565b915050612339565b509392505050565b60006113f28284612fd7565b600054610100900460ff166123db5760405162461bcd60e51b815260040161076e90613281565b60cc6123e783826130cc565b5060cd6109bc82826130cc565b600054610100900460ff1661241b5760405162461bcd60e51b815260040161076e90613281565b6111b1612751565b60006001600160a01b0384163b1561251957604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061246790339089908890889060040161334b565b6020604051808303816000875af19250505080156124a2575060408051601f3d908101601f1916820190925261249f91810190613388565b60015b6124ff573d8080156124d0576040519150601f19603f3d011682016040523d82523d6000602084013e6124d5565b606091505b5080516000036124f75760405162461bcd60e51b815260040161076e906132cc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061198e565b506001949350505050565b6001600160a01b03821661257a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076e565b600081815260ce60205260409020546001600160a01b0316156125df5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076e565b6125eb60008383612329565b6001600160a01b038216600090815260cf6020526040812080546001929061261490849061321b565b9091555050600081815260ce602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b03198216635d129f8f60e01b148061073e575061073e82612781565b6001600160a01b0383166126f4576126ef816101008054600083815261010160205260408120829055600182018355919091527f45e010b9ae401e2eb71529478da8bd513a9bdc2d095a111e324f5b95c09ed87b0155565b612717565b816001600160a01b0316836001600160a01b0316146127175761271783826127b6565b6001600160a01b03821661272e576109bc81612853565b826001600160a01b0316826001600160a01b0316146109bc576109bc8282612908565b600054610100900460ff166127785760405162461bcd60e51b815260040161076e90613281565b6111b133611e62565b60006001600160e01b0319821663152a902d60e11b148061073e57506301ffc9a760e01b6001600160e01b031983161461073e565b600060016127c3846110f6565b6127cd9190613204565b600083815260ff6020526040902054909150808214612820576001600160a01b038416600090815260fe60209081526040808320858452825280832054848452818420819055835260ff90915290208190555b50600091825260ff602090815260408084208490556001600160a01b03909416835260fe81528383209183525290812055565b6101005460009061286690600190613204565b60008381526101016020526040812054610100805493945090928490811061289057612890613070565b906000526020600020015490508061010083815481106128b2576128b2613070565b600091825260208083209091019290925582815261010190915260408082208490558582528120556101008054806128ec576128ec6133a5565b6001900381819060005260206000200160009055905550505050565b6000612913836110f6565b6001600160a01b03909316600090815260fe60209081526040808320868452825280832085905593825260ff9052919091209190915550565b6001600160e01b03198116811461155d57600080fd5b60006020828403121561297457600080fd5b81356113f28161294c565b80356001600160a01b038116811461200a57600080fd5b80356001600160601b038116811461200a57600080fd5b600080604083850312156129c057600080fd5b6129c98361297f565b91506129d760208401612996565b90509250929050565b60005b838110156129fb5781810151838201526020016129e3565b838111156113185750506000910152565b60008151808452612a248160208601602086016129e0565b601f01601f19169290920160200192915050565b6020815260006113f26020830184612a0c565b600060208284031215612a5d57600080fd5b5035919050565b60008060408385031215612a7757600080fd5b612a808361297f565b946020939093013593505050565b600080600060608486031215612aa357600080fd5b612aac8461297f565b9250612aba6020850161297f565b9150604084013590509250925092565b60008060408385031215612add57600080fd5b50508035926020909101359150565b80356001600160401b038116811461200a57600080fd5b60008083601f840112612b1557600080fd5b5081356001600160401b03811115612b2c57600080fd5b6020830191508360208260051b8501011115610a9957600080fd5b60008060008060608587031215612b5d57600080fd5b612b6685612aec565b93506020850135925060408501356001600160401b03811115612b8857600080fd5b612b9487828801612b03565b95989497509550505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612bd057612bd0612ba0565b604051601f8501601f19908116603f01168101908282118183101715612bf857612bf8612ba0565b81604052809350858152868686011115612c1157600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c3c57600080fd5b6113f283833560208501612bb6565b600060208284031215612c5d57600080fd5b81356001600160401b03811115612c7357600080fd5b61198e84828501612c2b565b600080600060608486031215612c9457600080fd5b83359250612ca46020850161297f565b9150612cb260408501612996565b90509250925092565b600060208284031215612ccd57600080fd5b6113f28261297f565b8035801515811461200a57600080fd5b600080600080600060a08688031215612cfe57600080fd5b85359450602086013593506040860135925060608601359150612d2360808701612cd6565b90509295509295909350565b60008060408385031215612d4257600080fd5b612d4b8361297f565b91506129d760208401612cd6565b600080600080600060a08688031215612d7157600080fd5b85356001600160401b0380821115612d8857600080fd5b612d9489838a01612c2b565b96506020880135915080821115612daa57600080fd5b50612db788828901612c2b565b945050612dc66040870161297f565b9250612dd46060870161297f565b9150612d2360808701612996565b60008060008060808587031215612df857600080fd5b612e018561297f565b9350612e0f6020860161297f565b92506040850135915060608501356001600160401b03811115612e3157600080fd5b8501601f81018713612e4257600080fd5b612e5187823560208401612bb6565b91505092959194509250565b60008060008060408587031215612e7357600080fd5b84356001600160401b0380821115612e8a57600080fd5b612e9688838901612b03565b90965094506020870135915080821115612eaf57600080fd5b50612b9487828801612b03565b60008060408385031215612ecf57600080fd5b612ed88361297f565b91506129d76020840161297f565b600060208284031215612ef857600080fd5b6113f282612aec565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612f4a57607f821691505b602082108103612f6a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ff157612ff1612fc1565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261301b5761301b612ff6565b500490565b60208082526017908201527f4578636565646564206d6178207065722077616c6c6574000000000000000000604082015260600190565b60006020828403121561306957600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b601f8211156109bc57600081815260208120601f850160051c810160208610156130ad5750805b601f850160051c820191505b81811015610e19578281556001016130b9565b81516001600160401b038111156130e5576130e5612ba0565b6130f9816130f38454612f36565b84613086565b602080601f83116001811461312e57600084156131165750858301515b600019600386901b1c1916600185901b178555610e19565b600085815260208120601f198616915b8281101561315d5788860151825594840194600190910190840161313e565b508582101561317b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000835161319d8184602088016129e0565b8351908301906131b18183602088016129e0565b01949350505050565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b60008282101561321657613216612fc1565b500390565b6000821982111561322e5761322e612fc1565b500190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006001820161333057613330612fc1565b5060010190565b60008261334657613346612ff6565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061337e90830184612a0c565b9695505050505050565b60006020828403121561339a57600080fd5b81516113f28161294c565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c0364cbd73509c075328c944ef6a9cb9f9b497471b5a2b9dc330ab17770f498164736f6c634300080f0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.