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
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
DropERC1155
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 490 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; // ========== External imports ========== import "@openzeppelin/contracts-upgradeable/token/ERC1155/ERC1155Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol"; // ========== Internal imports ========== import "../openzeppelin-presets/metatx/ERC2771ContextUpgradeable.sol"; import "../lib/CurrencyTransferLib.sol"; // ========== Features ========== import "../extension/ContractMetadata.sol"; import "../extension/PlatformFee.sol"; import "../extension/Royalty.sol"; import "../extension/PrimarySale.sol"; import "../extension/Ownable.sol"; import "../extension/LazyMint.sol"; import "../extension/PermissionsEnumerable.sol"; import "../extension/Drop1155.sol"; contract DropERC1155 is Initializable, ContractMetadata, PlatformFee, Royalty, PrimarySale, Ownable, LazyMint, PermissionsEnumerable, Drop1155, ERC2771ContextUpgradeable, MulticallUpgradeable, ERC1155Upgradeable { using StringsUpgradeable for uint256; /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ // Token name string public name; // Token symbol string public symbol; /// @dev Only transfers to or from TRANSFER_ROLE holders are valid, when transfers are restricted. bytes32 private transferRole; /// @dev Only MINTER_ROLE holders can sign off on `MintRequest`s and lazy mint tokens. bytes32 private minterRole; /// @dev Max bps in the thirdweb system. uint256 private constant MAX_BPS = 10_000; /*/////////////////////////////////////////////////////////////// Mappings //////////////////////////////////////////////////////////////*/ /// @dev Mapping from token ID => total circulating supply of tokens with that ID. mapping(uint256 => uint256) public totalSupply; /// @dev Mapping from token ID => maximum possible total circulating supply of tokens with that ID. mapping(uint256 => uint256) public maxTotalSupply; /// @dev Mapping from token ID => the address of the recipient of primary sales. mapping(uint256 => address) public saleRecipient; /*/////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////*/ /// @dev Emitted when the global max supply of a token is updated. event MaxTotalSupplyUpdated(uint256 tokenId, uint256 maxTotalSupply); /// @dev Emitted when the sale recipient for a particular tokenId is updated. event SaleRecipientForTokenUpdated(uint256 indexed tokenId, address saleRecipient); /*/////////////////////////////////////////////////////////////// Constructor + initializer logic //////////////////////////////////////////////////////////////*/ constructor() initializer {} /// @dev Initiliazes the contract, like a constructor. function initialize( address _defaultAdmin, string memory _name, string memory _symbol, string memory _contractURI, address[] memory _trustedForwarders, address _saleRecipient, address _royaltyRecipient, uint128 _royaltyBps, uint128 _platformFeeBps, address _platformFeeRecipient ) external initializer { bytes32 _transferRole = keccak256("TRANSFER_ROLE"); bytes32 _minterRole = keccak256("MINTER_ROLE"); // Initialize inherited contracts, most base-like -> most derived. __ERC2771Context_init(_trustedForwarders); __ERC1155_init_unchained(""); // Initialize this contract's state. _setupContractURI(_contractURI); _setupOwner(_defaultAdmin); _setupRole(DEFAULT_ADMIN_ROLE, _defaultAdmin); _setupRole(_minterRole, _defaultAdmin); _setupRole(_transferRole, _defaultAdmin); _setupRole(_transferRole, address(0)); _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); _setupPrimarySaleRecipient(_saleRecipient); transferRole = _transferRole; minterRole = _minterRole; name = _name; symbol = _symbol; } /*/////////////////////////////////////////////////////////////// ERC 165 / 1155 / 2981 logic //////////////////////////////////////////////////////////////*/ /// @dev Returns the uri for a given tokenId. function uri(uint256 _tokenId) public view override returns (string memory) { string memory batchUri = _getBaseURI(_tokenId); return string(abi.encodePacked(batchUri, _tokenId.toString())); } /// @dev See ERC 165 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155Upgradeable, IERC165) returns (bool) { return super.supportsInterface(interfaceId) || type(IERC2981Upgradeable).interfaceId == interfaceId; } /*/////////////////////////////////////////////////////////////// Contract identifiers //////////////////////////////////////////////////////////////*/ function contractType() external pure returns (bytes32) { return bytes32("DropERC1155"); } function contractVersion() external pure returns (uint8) { return uint8(4); } /*/////////////////////////////////////////////////////////////// Setter functions //////////////////////////////////////////////////////////////*/ /// @dev Lets a module admin set a max total supply for token. function setMaxTotalSupply(uint256 _tokenId, uint256 _maxTotalSupply) external onlyRole(DEFAULT_ADMIN_ROLE) { maxTotalSupply[_tokenId] = _maxTotalSupply; emit MaxTotalSupplyUpdated(_tokenId, _maxTotalSupply); } /// @dev Lets a contract admin set the recipient for all primary sales. function setSaleRecipientForToken(uint256 _tokenId, address _saleRecipient) external onlyRole(DEFAULT_ADMIN_ROLE) { saleRecipient[_tokenId] = _saleRecipient; emit SaleRecipientForTokenUpdated(_tokenId, _saleRecipient); } /*/////////////////////////////////////////////////////////////// Internal functions //////////////////////////////////////////////////////////////*/ /// @dev Runs before every `claim` function call. function _beforeClaim( uint256 _tokenId, address, uint256 _quantity, address, uint256, AllowlistProof calldata, bytes memory ) internal view override { require( maxTotalSupply[_tokenId] == 0 || totalSupply[_tokenId] + _quantity <= maxTotalSupply[_tokenId], "exceed max total supply" ); } /// @dev Collects and distributes the primary sale value of NFTs being claimed. function collectPriceOnClaim( uint256 _tokenId, address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal override { if (_pricePerToken == 0) { return; } (address platformFeeRecipient, uint16 platformFeeBps) = getPlatformFeeInfo(); address _saleRecipient = _primarySaleRecipient == address(0) ? (saleRecipient[_tokenId] == address(0) ? primarySaleRecipient() : saleRecipient[_tokenId]) : _primarySaleRecipient; uint256 totalPrice = _quantityToClaim * _pricePerToken; uint256 platformFees = (totalPrice * platformFeeBps) / MAX_BPS; if (_currency == CurrencyTransferLib.NATIVE_TOKEN) { if (msg.value != totalPrice) { revert("!Price"); } } CurrencyTransferLib.transferCurrency(_currency, _msgSender(), platformFeeRecipient, platformFees); CurrencyTransferLib.transferCurrency(_currency, _msgSender(), _saleRecipient, totalPrice - platformFees); } /// @dev Transfers the NFTs being claimed. function transferTokensOnClaim( address _to, uint256 _tokenId, uint256 _quantityBeingClaimed ) internal override { _mint(_to, _tokenId, _quantityBeingClaimed, ""); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether owner can be set in the given execution context. function _canSetOwner() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether royalty info can be set in the given execution context. function _canSetRoyaltyInfo() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetClaimConditions() internal view override returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev Returns whether lazy minting can be done in the given execution context. function _canLazyMint() internal view virtual override returns (bool) { return hasRole(minterRole, _msgSender()); } /*/////////////////////////////////////////////////////////////// Miscellaneous //////////////////////////////////////////////////////////////*/ /// @dev The tokenId of the next NFT that will be minted / lazy minted. function nextTokenIdToMint() external view returns (uint256) { return nextTokenIdToLazyMint; } /// @dev Lets a token owner burn multiple tokens they own at once (i.e. destroy for good) function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved." ); _burnBatch(account, ids, values); } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); // if transfer is restricted on the contract, we still want to allow burning and minting if (!hasRole(transferRole, address(0)) && from != address(0) && to != address(0)) { require(hasRole(transferRole, from) || hasRole(transferRole, to), "restricted to TRANSFER_ROLE holders."); } if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { totalSupply[ids[i]] -= amounts[i]; } } } function _dropMsgSender() internal view virtual override returns (address) { return _msgSender(); } function _msgSender() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (address sender) { return ERC2771ContextUpgradeable._msgSender(); } function _msgData() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (bytes calldata) { return ERC2771ContextUpgradeable._msgData(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155Upgradeable.sol"; import "./IERC1155ReceiverUpgradeable.sol"; import "./extensions/IERC1155MetadataURIUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC1155Upgradeable, IERC1155MetadataURIUpgradeable { using AddressUpgradeable for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ function __ERC1155_init(string memory uri_) internal onlyInitializing { __ERC1155_init_unchained(uri_); } function __ERC1155_init_unchained(string memory uri_) internal onlyInitializing { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC1155Upgradeable).interfaceId || interfaceId == type(IERC1155MetadataURIUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155ReceiverUpgradeable(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155ReceiverUpgradeable.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155ReceiverUpgradeable(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155ReceiverUpgradeable.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } /** * @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[47] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol) pragma solidity ^0.8.0; import "./AddressUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ abstract contract MulticallUpgradeable is Initializable { function __Multicall_init() internal onlyInitializing { } function __Multicall_init_unchained() internal onlyInitializing { } /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i = 0; i < data.length; i++) { results[i] = _functionDelegateCall(address(this), data[i]); } return results; } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function _functionDelegateCall(address target, bytes memory data) private returns (bytes memory) { require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed"); } /** * @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.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (metatx/ERC2771Context.sol) pragma solidity ^0.8.11; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable { mapping(address => bool) private _trustedForwarder; function __ERC2771Context_init(address[] memory trustedForwarder) internal onlyInitializing { __Context_init_unchained(); __ERC2771Context_init_unchained(trustedForwarder); } function __ERC2771Context_init_unchained(address[] memory trustedForwarder) internal onlyInitializing { for (uint256 i = 0; i < trustedForwarder.length; i++) { _trustedForwarder[trustedForwarder[i]] = true; } } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return _trustedForwarder[forwarder]; } function _msgSender() internal view virtual override returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } uint256[49] private __gap; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; // Helper interfaces import { IWETH } from "../interfaces/IWETH.sol"; import "../openzeppelin-presets/token/ERC20/utils/SafeERC20.sol"; library CurrencyTransferLib { using SafeERC20 for IERC20; /// @dev The address interpreted as native token of the chain. address public constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @dev Transfers a given amount of currency. function transferCurrency( address _currency, address _from, address _to, uint256 _amount ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { safeTransferNativeToken(_to, _amount); } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfers a given amount of currency. (With native token wrapping) function transferCurrencyWithWrapper( address _currency, address _from, address _to, uint256 _amount, address _nativeTokenWrapper ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { if (_from == address(this)) { // withdraw from weth then transfer withdrawn native token to recipient IWETH(_nativeTokenWrapper).withdraw(_amount); safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } else if (_to == address(this)) { // store native currency in weth require(_amount == msg.value, "msg.value != amount"); IWETH(_nativeTokenWrapper).deposit{ value: _amount }(); } else { safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfer `amount` of ERC20 token from `from` to `to`. function safeTransferERC20( address _currency, address _from, address _to, uint256 _amount ) internal { if (_from == _to) { return; } if (_from == address(this)) { IERC20(_currency).safeTransfer(_to, _amount); } else { IERC20(_currency).safeTransferFrom(_from, _to, _amount); } } /// @dev Transfers `amount` of native token to `to`. function safeTransferNativeToken(address to, uint256 value) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); require(success, "native token transfer failed"); } /// @dev Transfers `amount` of native token to `to`. (With native token wrapping) function safeTransferNativeTokenWithWrapper( address to, uint256 value, address _nativeTokenWrapper ) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { IWETH(_nativeTokenWrapper).deposit{ value: value }(); IERC20(_nativeTokenWrapper).safeTransfer(to, value); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IContractMetadata.sol"; /** * @title Contract Metadata * @notice Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ abstract contract ContractMetadata is IContractMetadata { /// @notice Returns the contract metadata URI. string public override contractURI; /** * @notice Lets a contract admin set the URI for contract-level metadata. * @dev Caller should be authorized to setup contractURI, e.g. contract admin. * See {_canSetContractURI}. * Emits {ContractURIUpdated Event}. * * @param _uri keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function setContractURI(string memory _uri) external override { if (!_canSetContractURI()) { revert("Not authorized"); } _setupContractURI(_uri); } /// @dev Lets a contract admin set the URI for contract-level metadata. function _setupContractURI(string memory _uri) internal { string memory prevURI = contractURI; contractURI = _uri; emit ContractURIUpdated(prevURI, _uri); } /// @dev Returns whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IPlatformFee.sol"; /** * @title Platform Fee * @notice Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ abstract contract PlatformFee is IPlatformFee { /// @dev The address that receives all platform fees from all sales. address private platformFeeRecipient; /// @dev The % of primary sales collected as platform fees. uint16 private platformFeeBps; /// @dev Returns the platform fee recipient and bps. function getPlatformFeeInfo() public view override returns (address, uint16) { return (platformFeeRecipient, uint16(platformFeeBps)); } /** * @notice Updates the platform fee recipient and bps. * @dev Caller should be authorized to set platform fee info. * See {_canSetPlatformFeeInfo}. * Emits {PlatformFeeInfoUpdated Event}; See {_setupPlatformFeeInfo}. * * @param _platformFeeRecipient Address to be set as new platformFeeRecipient. * @param _platformFeeBps Updated platformFeeBps. */ function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external override { if (!_canSetPlatformFeeInfo()) { revert("Not authorized"); } _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); } /// @dev Lets a contract admin update the platform fee recipient and bps function _setupPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) internal { if (_platformFeeBps > 10_000) { revert("Exceeds max bps"); } platformFeeBps = uint16(_platformFeeBps); platformFeeRecipient = _platformFeeRecipient; emit PlatformFeeInfoUpdated(_platformFeeRecipient, _platformFeeBps); } /// @dev Returns whether platform fee info can be set in the given execution context. function _canSetPlatformFeeInfo() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IRoyalty.sol"; /** * @title Royalty * @notice Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic * that uses information about royalty fees, if desired. * * @dev The `Royalty` contract is ERC2981 compliant. */ abstract contract Royalty is IRoyalty { /// @dev The (default) address that receives all royalty value. address private royaltyRecipient; /// @dev The (default) % of a sale to take as royalty (in basis points). uint16 private royaltyBps; /// @dev Token ID => royalty recipient and bps for token mapping(uint256 => RoyaltyInfo) private royaltyInfoForToken; /** * @notice View royalty info for a given token and sale price. * @dev Returns royalty amount and recipient for `tokenId` and `salePrice`. * @param tokenId The tokenID of the NFT for which to query royalty info. * @param salePrice Sale price of the token. * * @return receiver Address of royalty recipient account. * @return royaltyAmount Royalty amount calculated at current royaltyBps value. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view virtual override returns (address receiver, uint256 royaltyAmount) { (address recipient, uint256 bps) = getRoyaltyInfoForToken(tokenId); receiver = recipient; royaltyAmount = (salePrice * bps) / 10_000; } /** * @notice View royalty info for a given token. * @dev Returns royalty recipient and bps for `_tokenId`. * @param _tokenId The tokenID of the NFT for which to query royalty info. */ function getRoyaltyInfoForToken(uint256 _tokenId) public view override returns (address, uint16) { RoyaltyInfo memory royaltyForToken = royaltyInfoForToken[_tokenId]; return royaltyForToken.recipient == address(0) ? (royaltyRecipient, uint16(royaltyBps)) : (royaltyForToken.recipient, uint16(royaltyForToken.bps)); } /** * @notice Returns the defualt royalty recipient and BPS for this contract's NFTs. */ function getDefaultRoyaltyInfo() external view override returns (address, uint16) { return (royaltyRecipient, uint16(royaltyBps)); } /** * @notice Updates default royalty recipient and bps. * @dev Caller should be authorized to set royalty info. * See {_canSetRoyaltyInfo}. * Emits {DefaultRoyalty Event}; See {_setupDefaultRoyaltyInfo}. * * @param _royaltyRecipient Address to be set as default royalty recipient. * @param _royaltyBps Updated royalty bps. */ function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external override { if (!_canSetRoyaltyInfo()) { revert("Not authorized"); } _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); } /// @dev Lets a contract admin update the default royalty recipient and bps. function _setupDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) internal { if (_royaltyBps > 10_000) { revert("Exceeds max bps"); } royaltyRecipient = _royaltyRecipient; royaltyBps = uint16(_royaltyBps); emit DefaultRoyalty(_royaltyRecipient, _royaltyBps); } /** * @notice Updates default royalty recipient and bps for a particular token. * @dev Sets royalty info for `_tokenId`. Caller should be authorized to set royalty info. * See {_canSetRoyaltyInfo}. * Emits {RoyaltyForToken Event}; See {_setupRoyaltyInfoForToken}. * * @param _recipient Address to be set as royalty recipient for given token Id. * @param _bps Updated royalty bps for the token Id. */ function setRoyaltyInfoForToken( uint256 _tokenId, address _recipient, uint256 _bps ) external override { if (!_canSetRoyaltyInfo()) { revert("Not authorized"); } _setupRoyaltyInfoForToken(_tokenId, _recipient, _bps); } /// @dev Lets a contract admin set the royalty recipient and bps for a particular token Id. function _setupRoyaltyInfoForToken( uint256 _tokenId, address _recipient, uint256 _bps ) internal { if (_bps > 10_000) { revert("Exceeds max bps"); } royaltyInfoForToken[_tokenId] = RoyaltyInfo({ recipient: _recipient, bps: _bps }); emit RoyaltyForToken(_tokenId, _recipient, _bps); } /// @dev Returns whether royalty info can be set in the given execution context. function _canSetRoyaltyInfo() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IPrimarySale.sol"; /** * @title Primary Sale * @notice Thirdweb's `PrimarySale` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ abstract contract PrimarySale is IPrimarySale { /// @dev The address that receives all primary sales value. address private recipient; /// @dev Returns primary sale recipient address. function primarySaleRecipient() public view override returns (address) { return recipient; } /** * @notice Updates primary sale recipient. * @dev Caller should be authorized to set primary sales info. * See {_canSetPrimarySaleRecipient}. * Emits {PrimarySaleRecipientUpdated Event}; See {_setupPrimarySaleRecipient}. * * @param _saleRecipient Address to be set as new recipient of primary sales. */ function setPrimarySaleRecipient(address _saleRecipient) external override { if (!_canSetPrimarySaleRecipient()) { revert("Not authorized"); } _setupPrimarySaleRecipient(_saleRecipient); } /// @dev Lets a contract admin set the recipient for all primary sales. function _setupPrimarySaleRecipient(address _saleRecipient) internal { recipient = _saleRecipient; emit PrimarySaleRecipientUpdated(_saleRecipient); } /// @dev Returns whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IOwnable.sol"; /** * @title Ownable * @notice Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ abstract contract Ownable is IOwnable { /// @dev Owner of the contract (purpose: OpenSea compatibility) address private _owner; /// @dev Reverts if caller is not the owner. modifier onlyOwner() { if (msg.sender != _owner) { revert("Not authorized"); } _; } /** * @notice Returns the owner of the contract. */ function owner() public view override returns (address) { return _owner; } /** * @notice Lets an authorized wallet set a new owner for the contract. * @param _newOwner The address to set as the new owner of the contract. */ function setOwner(address _newOwner) external override { if (!_canSetOwner()) { revert("Not authorized"); } _setupOwner(_newOwner); } /// @dev Lets a contract admin set a new owner for the contract. The new owner must be a contract admin. function _setupOwner(address _newOwner) internal { address _prevOwner = _owner; _owner = _newOwner; emit OwnerUpdated(_prevOwner, _newOwner); } /// @dev Returns whether owner can be set in the given execution context. function _canSetOwner() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/ILazyMint.sol"; import "./BatchMintMetadata.sol"; /** * The `LazyMint` is a contract extension for any base NFT contract. It lets you 'lazy mint' any number of NFTs * at once. Here, 'lazy mint' means defining the metadata for particular tokenIds of your NFT contract, without actually * minting a non-zero balance of NFTs of those tokenIds. */ abstract contract LazyMint is ILazyMint, BatchMintMetadata { /// @notice The tokenId assigned to the next new NFT to be lazy minted. uint256 internal nextTokenIdToLazyMint; /** * @notice Lets an authorized address lazy mint a given amount of NFTs. * * @param _amount The number of NFTs to lazy mint. * @param _baseURIForTokens The base URI for the 'n' number of NFTs being lazy minted, where the metadata for each * of those NFTs is `${baseURIForTokens}/${tokenId}`. * @param _data Additional bytes data to be used at the discretion of the consumer of the contract. * @return batchId A unique integer identifier for the batch of NFTs lazy minted together. */ function lazyMint( uint256 _amount, string calldata _baseURIForTokens, bytes calldata _data ) public virtual override returns (uint256 batchId) { if (!_canLazyMint()) { revert("Not authorized"); } if (_amount == 0) { revert("0 amt"); } uint256 startId = nextTokenIdToLazyMint; (nextTokenIdToLazyMint, batchId) = _batchMintMetadata(startId, _amount, _baseURIForTokens); emit TokensLazyMinted(startId, startId + _amount - 1, _baseURIForTokens, _data); return batchId; } /// @dev Returns whether lazy minting can be performed in the given execution context. function _canLazyMint() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IPermissionsEnumerable.sol"; import "./Permissions.sol"; /** * @title PermissionsEnumerable * @dev This contracts provides extending-contracts with role-based access control mechanisms. * Also provides interfaces to view all members with a given role, and total count of members. */ contract PermissionsEnumerable is IPermissionsEnumerable, Permissions { /** * @notice A data structure to store data of members for a given role. * * @param index Current index in the list of accounts that have a role. * @param members map from index => address of account that has a role * @param indexOf map from address => index which the account has. */ struct RoleMembers { uint256 index; mapping(uint256 => address) members; mapping(address => uint256) indexOf; } /// @dev map from keccak256 hash of a role to its members' data. See {RoleMembers}. mapping(bytes32 => RoleMembers) private roleMembers; /** * @notice Returns the role-member from a list of members for a role, * at a given index. * @dev Returns `member` who has `role`, at `index` of role-members list. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param index Index in list of current members for the role. * * @return member Address of account that has `role` */ function getRoleMember(bytes32 role, uint256 index) external view override returns (address member) { uint256 currentIndex = roleMembers[role].index; uint256 check; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { if (check == index) { member = roleMembers[role].members[i]; return member; } check += 1; } else if (hasRole(role, address(0)) && i == roleMembers[role].indexOf[address(0)]) { check += 1; } } } /** * @notice Returns total number of accounts that have a role. * @dev Returns `count` of accounts that have `role`. * See struct {RoleMembers}, and mapping {roleMembers} * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * * @return count Total number of accounts that have `role` */ function getRoleMemberCount(bytes32 role) external view override returns (uint256 count) { uint256 currentIndex = roleMembers[role].index; for (uint256 i = 0; i < currentIndex; i += 1) { if (roleMembers[role].members[i] != address(0)) { count += 1; } } if (hasRole(role, address(0))) { count += 1; } } /// @dev Revokes `role` from `account`, and removes `account` from {roleMembers} /// See {_removeMember} function _revokeRole(bytes32 role, address account) internal override { super._revokeRole(role, account); _removeMember(role, account); } /// @dev Grants `role` to `account`, and adds `account` to {roleMembers} /// See {_addMember} function _setupRole(bytes32 role, address account) internal override { super._setupRole(role, account); _addMember(role, account); } /// @dev adds `account` to {roleMembers}, for `role` function _addMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].index; roleMembers[role].index += 1; roleMembers[role].members[idx] = account; roleMembers[role].indexOf[account] = idx; } /// @dev removes `account` from {roleMembers}, for `role` function _removeMember(bytes32 role, address account) internal { uint256 idx = roleMembers[role].indexOf[account]; delete roleMembers[role].members[idx]; delete roleMembers[role].indexOf[account]; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IDrop1155.sol"; import "../lib/MerkleProof.sol"; abstract contract Drop1155 is IDrop1155 { /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ /// @dev Mapping from token ID => the set of all claim conditions, at any given moment, for tokens of the token ID. mapping(uint256 => ClaimConditionList) public claimCondition; /*/////////////////////////////////////////////////////////////// Drop logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account claim tokens. function claim( address _receiver, uint256 _tokenId, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) public payable virtual override { _beforeClaim(_tokenId, _receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); uint256 activeConditionId = getActiveClaimConditionId(_tokenId); verifyClaim( activeConditionId, _dropMsgSender(), _tokenId, _quantity, _currency, _pricePerToken, _allowlistProof ); // Update contract state. claimCondition[_tokenId].conditions[activeConditionId].supplyClaimed += _quantity; claimCondition[_tokenId].supplyClaimedByWallet[activeConditionId][_dropMsgSender()] += _quantity; // If there's a price, collect price. collectPriceOnClaim(_tokenId, address(0), _quantity, _currency, _pricePerToken); // Mint the relevant NFTs to claimer. transferTokensOnClaim(_receiver, _tokenId, _quantity); emit TokensClaimed(activeConditionId, _dropMsgSender(), _receiver, _tokenId, _quantity); _afterClaim(_tokenId, _receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); } /// @dev Lets a contract admin set claim conditions. function setClaimConditions( uint256 _tokenId, ClaimCondition[] calldata _conditions, bool _resetClaimEligibility ) external virtual override { if (!_canSetClaimConditions()) { revert("Not authorized"); } ClaimConditionList storage conditionList = claimCondition[_tokenId]; uint256 existingStartIndex = conditionList.currentStartId; uint256 existingPhaseCount = conditionList.count; /** * The mapping `supplyClaimedByWallet` uses a claim condition's UID as a key. * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`, effectively resetting the restrictions on claims expressed * by `supplyClaimedByWallet`. */ uint256 newStartIndex = existingStartIndex; if (_resetClaimEligibility) { newStartIndex = existingStartIndex + existingPhaseCount; } conditionList.count = _conditions.length; conditionList.currentStartId = newStartIndex; uint256 lastConditionStartTimestamp; for (uint256 i = 0; i < _conditions.length; i++) { require(i == 0 || lastConditionStartTimestamp < _conditions[i].startTimestamp, "ST"); uint256 supplyClaimedAlready = conditionList.conditions[newStartIndex + i].supplyClaimed; if (supplyClaimedAlready > _conditions[i].maxClaimableSupply) { revert("max supply claimed"); } conditionList.conditions[newStartIndex + i] = _conditions[i]; conditionList.conditions[newStartIndex + i].supplyClaimed = supplyClaimedAlready; lastConditionStartTimestamp = _conditions[i].startTimestamp; } /** * Gas refunds (as much as possible) * * If `_resetClaimEligibility == true`, we assign completely new UIDs to the claim * conditions in `_conditions`. So, we delete claim conditions with UID < `newStartIndex`. * * If `_resetClaimEligibility == false`, and there are more existing claim conditions * than in `_conditions`, we delete the existing claim conditions that don't get replaced * by the conditions in `_conditions`. */ if (_resetClaimEligibility) { for (uint256 i = existingStartIndex; i < newStartIndex; i++) { delete conditionList.conditions[i]; } } else { if (existingPhaseCount > _conditions.length) { for (uint256 i = _conditions.length; i < existingPhaseCount; i++) { delete conditionList.conditions[newStartIndex + i]; } } } emit ClaimConditionsUpdated(_tokenId, _conditions, _resetClaimEligibility); } /// @dev Checks a request to claim NFTs against the active claim condition's criteria. function verifyClaim( uint256 _conditionId, address _claimer, uint256 _tokenId, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof ) public view returns (bool isOverride) { ClaimCondition memory currentClaimPhase = claimCondition[_tokenId].conditions[_conditionId]; uint256 claimLimit = currentClaimPhase.quantityLimitPerWallet; uint256 claimPrice = currentClaimPhase.pricePerToken; address claimCurrency = currentClaimPhase.currency; if (currentClaimPhase.merkleRoot != bytes32(0)) { (isOverride, ) = MerkleProof.verify( _allowlistProof.proof, currentClaimPhase.merkleRoot, keccak256( abi.encodePacked( _claimer, _allowlistProof.quantityLimitPerWallet, _allowlistProof.pricePerToken, _allowlistProof.currency ) ) ); } if (isOverride) { claimLimit = _allowlistProof.quantityLimitPerWallet != 0 ? _allowlistProof.quantityLimitPerWallet : claimLimit; claimPrice = _allowlistProof.pricePerToken != type(uint256).max ? _allowlistProof.pricePerToken : claimPrice; claimCurrency = _allowlistProof.pricePerToken != type(uint256).max && _allowlistProof.currency != address(0) ? _allowlistProof.currency : claimCurrency; } uint256 supplyClaimedByWallet = claimCondition[_tokenId].supplyClaimedByWallet[_conditionId][_claimer]; if (_currency != claimCurrency || _pricePerToken != claimPrice) { revert("!PriceOrCurrency"); } if (_quantity == 0 || (_quantity + supplyClaimedByWallet > claimLimit)) { revert("!Qty"); } if (currentClaimPhase.supplyClaimed + _quantity > currentClaimPhase.maxClaimableSupply) { revert("!MaxSupply"); } if (currentClaimPhase.startTimestamp > block.timestamp) { revert("cant claim yet"); } } /// @dev At any given moment, returns the uid for the active claim condition. function getActiveClaimConditionId(uint256 _tokenId) public view returns (uint256) { ClaimConditionList storage conditionList = claimCondition[_tokenId]; for (uint256 i = conditionList.currentStartId + conditionList.count; i > conditionList.currentStartId; i--) { if (block.timestamp >= conditionList.conditions[i - 1].startTimestamp) { return i - 1; } } revert("!CONDITION."); } /// @dev Returns the claim condition at the given uid. function getClaimConditionById(uint256 _tokenId, uint256 _conditionId) external view returns (ClaimCondition memory condition) { condition = claimCondition[_tokenId].conditions[_conditionId]; } /// @dev Returns the supply claimed by claimer for a given conditionId. function getSupplyClaimedByWallet( uint256 _tokenId, uint256 _conditionId, address _claimer ) public view returns (uint256 supplyClaimedByWallet) { supplyClaimedByWallet = claimCondition[_tokenId].supplyClaimedByWallet[_conditionId][_claimer]; } /*//////////////////////////////////////////////////////////////////// Optional hooks that can be implemented in the derived contract ///////////////////////////////////////////////////////////////////*/ /// @dev Exposes the ability to override the msg sender. function _dropMsgSender() internal virtual returns (address) { return msg.sender; } /// @dev Runs before every `claim` function call. function _beforeClaim( uint256 _tokenId, address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /// @dev Runs after every `claim` function call. function _afterClaim( uint256 _tokenId, address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /*/////////////////////////////////////////////////////////////// Virtual functions: to be implemented in derived contract //////////////////////////////////////////////////////////////*/ /// @dev Collects and distributes the primary sale value of NFTs being claimed. function collectPriceOnClaim( uint256 _tokenId, address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal virtual; /// @dev Transfers the NFTs being claimed. function transferTokensOnClaim( address _to, uint256 _tokenId, uint256 _quantityBeingClaimed ) internal virtual; /// @dev Determine what wallet can update claim conditions function _canSetClaimConditions() internal view virtual returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155ReceiverUpgradeable is IERC165Upgradeable { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155Upgradeable.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURIUpgradeable is IERC1155Upgradeable { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-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/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.7.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 = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 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) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _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 { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// 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: Apache-2.0 pragma solidity ^0.8.0; interface IWETH { function deposit() external payable; function withdraw(uint256 amount) external; function transfer(address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../../../../eip/interface/IERC20.sol"; import "../../../../lib/TWAddress.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using TWAddress for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library TWAddress { /** * @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. * * [EIP1884](https://eips.ethereum.org/EIPS/eip-1884) increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{ value: value }(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ interface IContractMetadata { /// @dev Returns the metadata URI of the contract. function contractURI() external view returns (string memory); /** * @dev Sets contract URI for the storefront-level metadata of the contract. * Only module admin can call this function. */ function setContractURI(string calldata _uri) external; /// @dev Emitted when the contract URI is updated. event ContractURIUpdated(string prevURI, string newURI); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `PlatformFee` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of platform fee and the platform fee basis points, and lets the inheriting contract perform conditional logic * that uses information about platform fees, if desired. */ interface IPlatformFee { /// @dev Returns the platform fee bps and recipient. function getPlatformFeeInfo() external view returns (address, uint16); /// @dev Lets a module admin update the fees on primary sales. function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external; /// @dev Emitted when fee on primary sales is updated. event PlatformFeeInfoUpdated(address indexed platformFeeRecipient, uint256 platformFeeBps); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "../../eip/interface/IERC2981.sol"; /** * Thirdweb's `Royalty` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of royalty fee and the royalty fee basis points, and lets the inheriting contract perform conditional logic * that uses information about royalty fees, if desired. * * The `Royalty` contract is ERC2981 compliant. */ interface IRoyalty is IERC2981 { struct RoyaltyInfo { address recipient; uint256 bps; } /// @dev Returns the royalty recipient and fee bps. function getDefaultRoyaltyInfo() external view returns (address, uint16); /// @dev Lets a module admin update the royalty bps and recipient. function setDefaultRoyaltyInfo(address _royaltyRecipient, uint256 _royaltyBps) external; /// @dev Lets a module admin set the royalty recipient for a particular token Id. function setRoyaltyInfoForToken( uint256 tokenId, address recipient, uint256 bps ) external; /// @dev Returns the royalty recipient for a particular token Id. function getRoyaltyInfoForToken(uint256 tokenId) external view returns (address, uint16); /// @dev Emitted when royalty info is updated. event DefaultRoyalty(address indexed newRoyaltyRecipient, uint256 newRoyaltyBps); /// @dev Emitted when royalty recipient for tokenId is set event RoyaltyForToken(uint256 indexed tokenId, address indexed royaltyRecipient, uint256 royaltyBps); }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * [EIP](https://eips.ethereum.org/EIPS/eip-165). * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * 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: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `Primary` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ interface IPrimarySale { /// @dev The adress that receives all primary sales value. function primarySaleRecipient() external view returns (address); /// @dev Lets a module admin set the default recipient of all primary sales. function setPrimarySaleRecipient(address _saleRecipient) external; /// @dev Emitted when a new sale recipient is set. event PrimarySaleRecipientUpdated(address indexed recipient); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ interface IOwnable { /// @dev Returns the owner of the contract. function owner() external view returns (address); /// @dev Lets a module admin set a new owner for the contract. The new owner must be a module admin. function setOwner(address _newOwner) external; /// @dev Emitted when a new Owner is set. event OwnerUpdated(address indexed prevOwner, address indexed newOwner); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * Thirdweb's `LazyMint` is a contract extension for any base NFT contract. It lets you 'lazy mint' any number of NFTs * at once. Here, 'lazy mint' means defining the metadata for particular tokenIds of your NFT contract, without actually * minting a non-zero balance of NFTs of those tokenIds. */ interface ILazyMint { /// @dev Emitted when tokens are lazy minted. event TokensLazyMinted(uint256 indexed startTokenId, uint256 endTokenId, string baseURI, bytes encryptedBaseURI); /** * @notice Lazy mints a given amount of NFTs. * * @param amount The number of NFTs to lazy mint. * * @param baseURIForTokens The base URI for the 'n' number of NFTs being lazy minted, where the metadata for each * of those NFTs is `${baseURIForTokens}/${tokenId}`. * * @param extraData Additional bytes data to be used at the discretion of the consumer of the contract. * * @return batchId A unique integer identifier for the batch of NFTs lazy minted together. */ function lazyMint( uint256 amount, string calldata baseURIForTokens, bytes calldata extraData ) external returns (uint256 batchId); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * @title Batch-mint Metadata * @notice The `BatchMintMetadata` is a contract extension for any base NFT contract. It lets the smart contract * using this extension set metadata for `n` number of NFTs all at once. This is enabled by storing a single * base URI for a batch of `n` NFTs, where the metadata for each NFT in a relevant batch is `baseURI/tokenId`. */ contract BatchMintMetadata { /// @dev Largest tokenId of each batch of tokens with the same baseURI. uint256[] private batchIds; /// @dev Mapping from id of a batch of tokens => to base URI for the respective batch of tokens. mapping(uint256 => string) private baseURI; /** * @notice Returns the count of batches of NFTs. * @dev Each batch of tokens has an in ID and an associated `baseURI`. * See {batchIds}. */ function getBaseURICount() public view returns (uint256) { return batchIds.length; } /** * @notice Returns the ID for the batch of tokens the given tokenId belongs to. * @dev See {getBaseURICount}. * @param _index ID of a token. */ function getBatchIdAtIndex(uint256 _index) public view returns (uint256) { if (_index >= getBaseURICount()) { revert("Invalid index"); } return batchIds[_index]; } /// @dev Returns the id for the batch of tokens the given tokenId belongs to. function _getBatchId(uint256 _tokenId) internal view returns (uint256 batchId, uint256 index) { uint256 numOfTokenBatches = getBaseURICount(); uint256[] memory indices = batchIds; for (uint256 i = 0; i < numOfTokenBatches; i += 1) { if (_tokenId < indices[i]) { index = i; batchId = indices[i]; return (batchId, index); } } revert("Invalid tokenId"); } /// @dev Returns the baseURI for a token. The intended metadata URI for the token is baseURI + tokenId. function _getBaseURI(uint256 _tokenId) internal view returns (string memory) { uint256 numOfTokenBatches = getBaseURICount(); uint256[] memory indices = batchIds; for (uint256 i = 0; i < numOfTokenBatches; i += 1) { if (_tokenId < indices[i]) { return baseURI[indices[i]]; } } revert("Invalid tokenId"); } /// @dev Sets the base URI for the batch of tokens with the given batchId. function _setBaseURI(uint256 _batchId, string memory _baseURI) internal { baseURI[_batchId] = _baseURI; } /// @dev Mints a batch of tokenIds and associates a common baseURI to all those Ids. function _batchMintMetadata( uint256 _startId, uint256 _amountToMint, string memory _baseURIForTokens ) internal returns (uint256 nextTokenIdToMint, uint256 batchId) { batchId = _startId + _amountToMint; nextTokenIdToMint = batchId; batchIds.push(batchId); baseURI[batchId] = _baseURIForTokens; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./IPermissions.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IPermissionsEnumerable is IPermissions { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * [forum post](https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296) * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./interface/IPermissions.sol"; import "../lib/TWStrings.sol"; /** * @title Permissions * @dev This contracts provides extending-contracts with role-based access control mechanisms */ contract Permissions is IPermissions { /// @dev Map from keccak256 hash of a role => a map from address => whether address has role. mapping(bytes32 => mapping(address => bool)) private _hasRole; /// @dev Map from keccak256 hash of a role to role admin. See {getRoleAdmin}. mapping(bytes32 => bytes32) private _getRoleAdmin; /// @dev Default admin role for all roles. Only accounts with this role can grant/revoke other roles. bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /// @dev Modifier that checks if an account has the specified role; reverts otherwise. modifier onlyRole(bytes32 role) { _checkRole(role, msg.sender); _; } /** * @notice Checks whether an account has a particular role. * @dev Returns `true` if `account` has been granted `role`. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _hasRole[role][account]; } /** * @notice Checks whether an account has a particular role; * role restrictions can be swtiched on and off. * * @dev Returns `true` if `account` has been granted `role`. * Role restrictions can be swtiched on and off: * - If address(0) has ROLE, then the ROLE restrictions * don't apply. * - If address(0) does not have ROLE, then the ROLE * restrictions will apply. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account for which the role is being checked. */ function hasRoleWithSwitch(bytes32 role, address account) public view returns (bool) { if (!_hasRole[role][address(0)]) { return _hasRole[role][account]; } return true; } /** * @notice Returns the admin role that controls the specified role. * @dev See {grantRole} and {revokeRole}. * To change a role's admin, use {_setRoleAdmin}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function getRoleAdmin(bytes32 role) external view override returns (bytes32) { return _getRoleAdmin[role]; } /** * @notice Grants a role to an account, if not previously granted. * @dev Caller must have admin role for the `role`. * Emits {RoleGranted Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account to which the role is being granted. */ function grantRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); if (_hasRole[role][account]) { revert("Can only grant to non holders"); } _setupRole(role, account); } /** * @notice Revokes role from an account. * @dev Caller must have admin role for the `role`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function revokeRole(bytes32 role, address account) public virtual override { _checkRole(_getRoleAdmin[role], msg.sender); _revokeRole(role, account); } /** * @notice Revokes role from the account. * @dev Caller must have the `role`, with caller being the same as `account`. * Emits {RoleRevoked Event}. * * @param role keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") * @param account Address of the account from which the role is being revoked. */ function renounceRole(bytes32 role, address account) public virtual override { if (msg.sender != account) { revert("Can only renounce for self"); } _revokeRole(role, account); } /// @dev Sets `adminRole` as `role`'s admin role. function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = _getRoleAdmin[role]; _getRoleAdmin[role] = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /// @dev Sets up `role` for `account` function _setupRole(bytes32 role, address account) internal virtual { _hasRole[role][account] = true; emit RoleGranted(role, account, msg.sender); } /// @dev Revokes `role` from `account` function _revokeRole(bytes32 role, address account) internal virtual { _checkRole(role, account); delete _hasRole[role][account]; emit RoleRevoked(role, account, msg.sender); } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRole(bytes32 role, address account) internal view virtual { if (!_hasRole[role][account]) { revert( string( abi.encodePacked( "Permissions: account ", TWStrings.toHexString(uint160(account), 20), " is missing role ", TWStrings.toHexString(uint256(role), 32) ) ) ); } } /// @dev Checks `role` for `account`. Reverts with a message including the required role. function _checkRoleWithSwitch(bytes32 role, address account) internal view virtual { if (!hasRoleWithSwitch(role, account)) { revert( string( abi.encodePacked( "Permissions: account ", TWStrings.toHexString(uint160(account), 20), " is missing role ", TWStrings.toHexString(uint256(role), 32) ) ) ); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IPermissions { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library TWStrings { 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: Apache-2.0 pragma solidity ^0.8.0; import "./IClaimConditionMultiPhase.sol"; /** * The interface `IDrop1155` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IDrop1155 is IClaimConditionMultiPhase { /** * @param proof Prood of concerned wallet's inclusion in an allowlist. * @param quantityLimitPerWallet The total quantity of tokens the allowlisted wallet is eligible to claim over time. * @param pricePerToken The price per token the allowlisted wallet must pay to claim tokens. * @param currency The currency in which the allowlisted wallet must pay the price for claiming tokens. */ struct AllowlistProof { bytes32[] proof; uint256 quantityLimitPerWallet; uint256 pricePerToken; address currency; } /// @notice Emitted when tokens are claimed. event TokensClaimed( uint256 indexed claimConditionIndex, address indexed claimer, address indexed receiver, uint256 tokenId, uint256 quantityClaimed ); /// @notice Emitted when the contract's claim conditions are updated. event ClaimConditionsUpdated(uint256 indexed tokenId, ClaimCondition[] claimConditions, bool resetEligibility); /** * @notice Lets an account claim a given quantity of NFTs. * * @param receiver The receiver of the NFTs to claim. * @param tokenId The tokenId of the NFT to claim. * @param quantity The quantity of NFTs to claim. * @param currency The currency in which to pay for the claim. * @param pricePerToken The price per token to pay for the claim. * @param allowlistProof The proof of the claimer's inclusion in the merkle root allowlist * of the claim conditions that apply. * @param data Arbitrary bytes data that can be leveraged in the implementation of this interface. */ function claim( address receiver, uint256 tokenId, uint256 quantity, address currency, uint256 pricePerToken, AllowlistProof calldata allowlistProof, bytes memory data ) external payable; /** * @notice Lets a contract admin (account with `DEFAULT_ADMIN_ROLE`) set claim conditions. * * @param tokenId The token ID for which to set mint conditions. * @param phases Claim conditions in ascending order by `startTimestamp`. * * @param resetClaimEligibility Whether to honor the restrictions applied to wallets who have claimed tokens in the current conditions, * in the new claim conditions being set. * */ function setClaimConditions( uint256 tokenId, ClaimCondition[] calldata phases, bool resetClaimEligibility ) external; }
// SPDX-License-Identifier: MIT // Modified from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.0/contracts/utils/cryptography/MerkleProof.sol // Copied from https://github.com/ensdomains/governance/blob/master/contracts/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. * * Source: https://github.com/ensdomains/governance/blob/master/contracts/MerkleProof.sol */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool, uint256) { bytes32 computedHash = leaf; uint256 index = 0; for (uint256 i = 0; i < proof.length; i++) { index *= 2; bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); index += 1; } } // Check if the computed hash (root) is equal to the provided root return (computedHash == root, index); } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "./IClaimCondition.sol"; /** * The interface `IClaimConditionMultiPhase` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a series of claim conditions, ordered by their respective `startTimestamp`. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimConditionMultiPhase is IClaimCondition { /** * @notice The set of all claim conditions, at any given moment. * Claim Phase ID = [currentStartId, currentStartId + length - 1]; * * @param currentStartId The uid for the first claim condition amongst the current set of * claim conditions. The uid for each next claim condition is one * more than the previous claim condition's uid. * * @param count The total number of phases / claim conditions in the list * of claim conditions. * * @param conditions The claim conditions at a given uid. Claim conditions * are ordered in an ascending order by their `startTimestamp`. * * @param supplyClaimedByWallet Map from a claim condition uid and account to supply claimed by account. */ struct ClaimConditionList { uint256 currentStartId; uint256 count; mapping(uint256 => ClaimCondition) conditions; mapping(uint256 => mapping(address => uint256)) supplyClaimedByWallet; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * The interface `IClaimCondition` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimCondition { /** * @notice The criteria that make up a claim condition. * * @param startTimestamp The unix timestamp after which the claim condition applies. * The same claim condition applies until the `startTimestamp` * of the next claim condition. * * @param maxClaimableSupply The maximum total number of tokens that can be claimed under * the claim condition. * * @param supplyClaimed At any given point, the number of tokens that have been claimed * under the claim condition. * * @param quantityLimitPerWallet The maximum number of tokens that can be claimed by a wallet. * * @param merkleRoot The allowlist of addresses that can claim tokens under the claim * condition. * * @param pricePerToken The price required to pay per token claimed. * * @param currency The currency in which the `pricePerToken` must be paid. * * @param metadata Claim condition metadata. */ struct ClaimCondition { uint256 startTimestamp; uint256 maxClaimableSupply; uint256 supplyClaimed; uint256 quantityLimitPerWallet; bytes32 merkleRoot; uint256 pricePerToken; address currency; string metadata; } }
{ "metadata": { "bytecodeHash": "ipfs" }, "optimizer": { "enabled": true, "runs": 490 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "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":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"indexed":false,"internalType":"struct IClaimCondition.ClaimCondition[]","name":"claimConditions","type":"tuple[]"},{"indexed":false,"internalType":"bool","name":"resetEligibility","type":"bool"}],"name":"ClaimConditionsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"prevURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRoyaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"newRoyaltyBps","type":"uint256"}],"name":"DefaultRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxTotalSupply","type":"uint256"}],"name":"MaxTotalSupplyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prevOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFeeBps","type":"uint256"}],"name":"PlatformFeeInfoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"PrimarySaleRecipientUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"royaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"royaltyBps","type":"uint256"}],"name":"RoyaltyForToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"saleRecipient","type":"address"}],"name":"SaleRecipientForTokenUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimConditionIndex","type":"uint256"},{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantityClaimed","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"startTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"baseURI","type":"string"},{"indexed":false,"internalType":"bytes","name":"encryptedBaseURI","type":"bytes"}],"name":"TokensLazyMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop1155.AllowlistProof","name":"_allowlistProof","type":"tuple"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimCondition","outputs":[{"internalType":"uint256","name":"currentStartId","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractType","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractVersion","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getActiveClaimConditionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURICount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getBatchIdAtIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_conditionId","type":"uint256"}],"name":"getClaimConditionById","outputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition","name":"condition","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDefaultRoyaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"member","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getRoyaltyInfoForToken","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"}],"name":"getSupplyClaimedByWallet","outputs":[{"internalType":"uint256","name":"supplyClaimedByWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRoleWithSwitch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_defaultAdmin","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address[]","name":"_trustedForwarders","type":"address[]"},{"internalType":"address","name":"_saleRecipient","type":"address"},{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint128","name":"_royaltyBps","type":"uint128"},{"internalType":"uint128","name":"_platformFeeBps","type":"uint128"},{"internalType":"address","name":"_platformFeeRecipient","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_baseURIForTokens","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"lazyMint","outputs":[{"internalType":"uint256","name":"batchId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenIdToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"primarySaleRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"saleRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"_tokenId","type":"uint256"},{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition[]","name":"_conditions","type":"tuple[]"},{"internalType":"bool","name":"_resetClaimEligibility","type":"bool"}],"name":"setClaimConditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint256","name":"_royaltyBps","type":"uint256"}],"name":"setDefaultRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"name":"setMaxTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_platformFeeBps","type":"uint256"}],"name":"setPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_saleRecipient","type":"address"}],"name":"setPrimarySaleRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_bps","type":"uint256"}],"name":"setRoyaltyInfoForToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_saleRecipient","type":"address"}],"name":"setSaleRecipientForToken","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":"","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_conditionId","type":"uint256"},{"internalType":"address","name":"_claimer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDrop1155.AllowlistProof","name":"_allowlistProof","type":"tuple"}],"name":"verifyClaim","outputs":[{"internalType":"bool","name":"isOverride","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50600054610100900460ff1615808015620000335750600054600160ff909116105b8062000063575062000050306200013d60201b620026621760201c565b15801562000063575060005460ff166001145b620000cb5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b6000805460ff191660011790558015620000ef576000805461ff0019166101001790555b801562000136576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b506200014c565b6001600160a01b03163b151590565b615c32806200015c6000396000f3fe6080604052600436106103545760003560e01c806387198cf2116101bb578063bd85b039116100f7578063d547741f11610095578063e9703d251161006f578063e9703d2514610ab3578063e985e9c514610afc578063ea1def9c14610b45578063f242432a14610b6557600080fd5b8063d547741f14610a5e578063e159163414610a7e578063e8a3d48514610a9e57600080fd5b8063cb2ef6f7116100d1578063cb2ef6f7146109c5578063d37c353b146109e6578063d45573f614610a06578063d45b28d714610a3157600080fd5b8063bd85b03914610940578063c7337d6b1461096e578063ca15c873146109a557600080fd5b80639bcf7a1511610164578063a22cb4651161013e578063a22cb465146108a8578063a32fa5b3146108c8578063ac9650d8146108e8578063b24f2d391461091557600080fd5b80639bcf7a1514610857578063a0a8e46014610877578063a217fddf1461089357600080fd5b806391d148541161019557806391d14854146107dc578063938e3d7b1461082257806395d89b411461084257600080fd5b806387198cf21461077e5780638da5cb5b1461079e5780639010d07c146107bc57600080fd5b80632eb2c2d61161029557806357bc3d7811610233578063600dd5ea1161020d578063600dd5ea1461070957806363b45e2d146107295780636b20c4541461073e5780636f4f28371461075e57600080fd5b806357bc3d78146106895780635811ddab1461069c5780635ab063e8146106e957600080fd5b80633b1475a71161026f5780633b1475a7146105cc5780634cc157df146105e15780634e1273f414610623578063572b6c051461065057600080fd5b80632eb2c2d61461056c5780632f2ff15d1461058c57806336568abe146105ac57600080fd5b8063183718d111610302578063248a9ca3116102dc578063248a9ca3146104b257806324aaffaa146104df57806329c49b9b1461050d5780632a55205a1461052d57600080fd5b8063183718d1146104525780631e7ac488146104725780632419f51b1461049257600080fd5b8063079fe40e11610333578063079fe40e146103de5780630e89341c1461041057806313af40351461043057600080fd5b8062fdd58e1461035957806301ffc9a71461038c57806306fdde03146103bc575b600080fd5b34801561036557600080fd5b506103796103743660046148f7565b610b85565b6040519081526020015b60405180910390f35b34801561039857600080fd5b506103ac6103a7366004614939565b610c20565b6040519015158152602001610383565b3480156103c857600080fd5b506103d1610c48565b60405161038391906149ae565b3480156103ea57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610383565b34801561041c57600080fd5b506103d161042b3660046149c1565b610cd7565b34801561043c57600080fd5b5061045061044b3660046149da565b610d18565b005b34801561045e57600080fd5b5061045061046d366004614a51565b610d69565b34801561047e57600080fd5b5061045061048d3660046148f7565b6110f5565b34801561049e57600080fd5b506103796104ad3660046149c1565b611148565b3480156104be57600080fd5b506103796104cd3660046149c1565b6000908152600b602052604090205490565b3480156104eb57600080fd5b506103796104fa3660046149c1565b61010d6020526000908152604090205481565b34801561051957600080fd5b50610450610528366004614ab0565b6111b6565b34801561053957600080fd5b5061054d610548366004614ae0565b611228565b604080516001600160a01b039093168352602083019190915201610383565b34801561057857600080fd5b50610450610587366004614c4e565b611265565b34801561059857600080fd5b506104506105a7366004614ab0565b61130b565b3480156105b857600080fd5b506104506105c7366004614ab0565b6113a1565b3480156105d857600080fd5b50600954610379565b3480156105ed57600080fd5b506106016105fc3660046149c1565b611403565b604080516001600160a01b03909316835261ffff909116602083015201610383565b34801561062f57600080fd5b5061064361063e366004614d6b565b61146e565b6040516103839190614e0a565b34801561065c57600080fd5b506103ac61066b3660046149da565b6001600160a01b031660009081526040602081905290205460ff1690565b610450610697366004614e2f565b611598565b3480156106a857600080fd5b506103796106b7366004614ed5565b6000928352600d60209081526040808520938552600390930181528284206001600160a01b0390921684525290205490565b3480156106f557600080fd5b506103796107043660046149c1565b6116db565b34801561071557600080fd5b506104506107243660046148f7565b61178c565b34801561073557600080fd5b50600754610379565b34801561074a57600080fd5b50610450610759366004614f0e565b6117db565b34801561076a57600080fd5b506104506107793660046149da565b611878565b34801561078a57600080fd5b50610450610799366004614ae0565b6118c6565b3480156107aa57600080fd5b506006546001600160a01b03166103f8565b3480156107c857600080fd5b506103f86107d7366004614ae0565b611923565b3480156107e857600080fd5b506103ac6107f7366004614ab0565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561082e57600080fd5b5061045061083d366004614f84565b611a24565b34801561084e57600080fd5b506103d1611a72565b34801561086357600080fd5b50610450610872366004614fb9565b611a80565b34801561088357600080fd5b5060405160048152602001610383565b34801561089f57600080fd5b50610379600081565b3480156108b457600080fd5b506104506108c3366004614ff1565b611ad0565b3480156108d457600080fd5b506103ac6108e3366004614ab0565b611ae2565b3480156108f457600080fd5b5061090861090336600461501f565b611b38565b6040516103839190615061565b34801561092157600080fd5b506003546001600160a01b03811690600160a01b900461ffff16610601565b34801561094c57600080fd5b5061037961095b3660046149c1565b61010c6020526000908152604090205481565b34801561097a57600080fd5b506103f86109893660046149c1565b61010e602052600090815260409020546001600160a01b031681565b3480156109b157600080fd5b506103796109c03660046149c1565b611c2d565b3480156109d157600080fd5b506a44726f704552433131353560a81b610379565b3480156109f257600080fd5b50610379610a01366004615105565b611cc8565b348015610a1257600080fd5b506002546001600160a01b03811690600160a01b900461ffff16610601565b348015610a3d57600080fd5b50610a51610a4c366004614ae0565b611df3565b604051610383919061517f565b348015610a6a57600080fd5b50610450610a79366004614ab0565b611f5a565b348015610a8a57600080fd5b50610450610a9936600461520d565b611f73565b348015610aaa57600080fd5b506103d161219e565b348015610abf57600080fd5b50610ae7610ace3660046149c1565b600d602052600090815260409020805460019091015482565b60408051928352602083019190915201610383565b348015610b0857600080fd5b506103ac610b17366004615320565b6001600160a01b03918216600090815260d76020908152604080832093909416825291909152205460ff1690565b348015610b5157600080fd5b506103ac610b6036600461534e565b6121ab565b348015610b7157600080fd5b50610450610b803660046153c8565b6125c3565b60006001600160a01b038316610bf55760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b50600081815260d6602090815260408083206001600160a01b03861684529091529020545b92915050565b6000610c2b82612671565b80610c1a5750506001600160e01b03191663152a902d60e11b1490565b6101088054610c5690615431565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8290615431565b8015610ccf5780601f10610ca457610100808354040283529160200191610ccf565b820191906000526020600020905b815481529060010190602001808311610cb257829003601f168201915b505050505081565b60606000610ce4836126c1565b905080610cf08461286b565b604051602001610d01929190615466565b604051602081830303815290604052915050919050565b610d20612969565b610d5d5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b610d668161297c565b50565b610d71612969565b610dae5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b6000848152600d6020526040902080546001820154818415610dd757610dd482846154ab565b90505b600184018690558084556000805b87811015610f9b57801580610e1d5750888882818110610e0757610e076154c3565b9050602002810190610e1991906154d9565b3582105b610e4e5760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610bec565b60006002870181610e5f84876154ab565b8152602001908152602001600020600201549050898983818110610e8557610e856154c3565b9050602002810190610e9791906154d9565b60200135811115610eea5760405162461bcd60e51b815260206004820152601260248201527f6d617820737570706c7920636c61696d656400000000000000000000000000006044820152606401610bec565b898983818110610efc57610efc6154c3565b9050602002810190610f0e91906154d9565b600288016000610f1e85886154ab565b81526020019081526020016000208181610f389190615646565b50819050600288016000610f4c85886154ab565b8152602081019190915260400160002060020155898983818110610f7257610f726154c3565b9050602002810190610f8491906154d9565b359250819050610f93816156c4565b915050610de5565b50851561101d57835b82811015611017576000818152600280880160205260408220828155600181018390559081018290556003810182905560048101829055600581018290556006810180546001600160a01b03191690559061100260078301826147ff565b5050808061100f906156c4565b915050610fa4565b506110ae565b868311156110ae57865b838110156110ac5760028601600061103f83866154ab565b81526020810191909152604001600090812081815560018101829055600281018290556003810182905560048101829055600581018290556006810180546001600160a01b03191690559061109760078301826147ff565b505080806110a4906156c4565b915050611027565b505b887f066f72a648b18490c0bc4ab07d508cdb5d6589fa188c63cfba1e0547f3a6556a8989896040516110e29392919061574e565b60405180910390a2505050505050505050565b6110fd612969565b61113a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b61114482826129ce565b5050565b600061115360075490565b82106111915760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b6044820152606401610bec565b600782815481106111a4576111a46154c3565b90600052602060002001549050919050565b60006111c28133612a7e565b600083815261010e602090815260409182902080546001600160a01b0319166001600160a01b038616908117909155915191825284917f359479172ba65a6639b0df237f704e030498cb7135d5e89b56f598bd1d84b016910160405180910390a2505050565b60008060008061123786611403565b90945084925061ffff1690506127106112508287615836565b61125a919061586b565b925050509250929050565b61126d612afe565b6001600160a01b0316856001600160a01b03161480611293575061129385610b17612afe565b6112f75760405162461bcd60e51b815260206004820152602f60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526e195c881b9bdc88185c1c1c9bdd9959608a1b6064820152608401610bec565b6113048585858585612b08565b5050505050565b6000828152600b60205260409020546113249033612a7e565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16156113975760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206772616e7420746f206e6f6e20686f6c646572730000006044820152606401610bec565b6111448282612d82565b336001600160a01b038216146113f95760405162461bcd60e51b815260206004820152601a60248201527f43616e206f6e6c792072656e6f756e636520666f722073656c660000000000006044820152606401610bec565b6111448282612d96565b6000818152600460209081526040808320815180830190925280546001600160a01b03168083526001909101549282019290925282911561144a5780516020820151611464565b6003546001600160a01b03811690600160a01b900461ffff165b9250925050915091565b606081518351146114d35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610bec565b6000835167ffffffffffffffff8111156114ef576114ef614b02565b604051908082528060200260200182016040528015611518578160200160208202803683370190505b50905060005b84518110156115905761156385828151811061153c5761153c6154c3565b6020026020010151858381518110611556576115566154c3565b6020026020010151610b85565b828281518110611575576115756154c3565b6020908102919091010152611589816156c4565b905061151e565b509392505050565b6115a786888787878787612ded565b60006115b2876116db565b90506115ca816115c0612e84565b89898989896121ab565b506000878152600d60209081526040808320848452600290810190925282200180548892906115fa9084906154ab565b90915550506000878152600d6020908152604080832084845260030190915281208791611625612e84565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461165491906154ab565b909155506116689050876000888888612e8e565b611673888888612fd3565b876001600160a01b0316611685612e84565b6001600160a01b0316827ffa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e8a8a6040516116c9929190918252602082015260400190565b60405180910390a45050505050505050565b6000818152600d602052604081206001810154815483916116fb916154ab565b90505b81548111156117555760028201600061171860018461587f565b81526020019081526020016000206000015442106117435761173b60018261587f565b949350505050565b8061174d81615896565b9150506116fe565b5060405162461bcd60e51b815260206004820152600b60248201526a10a1a7a72224aa24a7a71760a91b6044820152606401610bec565b611794612969565b6117d15760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b6111448282612fee565b6117e3612afe565b6001600160a01b0316836001600160a01b03161480611809575061180983610b17612afe565b6118685760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f726044820152691030b8383937bb32b21760b11b6064820152608401610bec565b61187383838361308d565b505050565b611880612969565b6118bd5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b610d66816132ee565b60006118d28133612a7e565b600083815261010d602090815260409182902084905581518581529081018490527fc58cd6132bb46df23d468939c03dd023b74b509aaa6b04c39d5a6461c65963bd910160405180910390a1505050565b6000828152600c602052604081205481805b82811015611a1b576000868152600c602090815260408083208484526001019091529020546001600160a01b0316156119b257848214156119a0576000868152600c602090815260408083209383526001909301905220546001600160a01b03169250610c1a915050565b6119ab6001836154ab565b9150611a09565b6000868152600a6020908152604080832083805290915290205460ff1680156119f657506000868152600c6020908152604080832083805260020190915290205481145b15611a0957611a066001836154ab565b91505b611a146001826154ab565b9050611935565b50505092915050565b611a2c612969565b611a695760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b610d6681613338565b6101098054610c5690615431565b611a88612969565b611ac55760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b61187383838361341a565b611144611adb612afe565b83836134e4565b6000828152600a6020908152604080832083805290915281205460ff16611b2f57506000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610c1a565b50600192915050565b60608167ffffffffffffffff811115611b5357611b53614b02565b604051908082528060200260200182016040528015611b8657816020015b6060815260200190600190039081611b715790505b50905060005b82811015611c2657611bf630858584818110611baa57611baa6154c3565b9050602002810190611bbc91906154f9565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506135bd92505050565b828281518110611c0857611c086154c3565b60200260200101819052508080611c1e906156c4565b915050611b8c565b5092915050565b6000818152600c6020526040812054815b81811015611c91576000848152600c602090815260408083208484526001019091529020546001600160a01b031615611c7f57611c7c6001846154ab565b92505b611c8a6001826154ab565b9050611c3e565b506000838152600a6020908152604080832083805290915290205460ff1615611cc257611cbf6001836154ab565b91505b50919050565b6000611cd26136b1565b611d0f5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b85611d445760405162461bcd60e51b81526020600482015260056024820152640c08185b5d60da1b6044820152606401610bec565b60006009549050611d8c818888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506136c292505050565b6009919091559150807f2a0365091ef1a40953c670dce28177e37520648a6fdc91506bffac0ab045570d6001611dc28a846154ab565b611dcc919061587f565b88888888604051611de19594939291906158ad565b60405180910390a25095945050505050565b611e4760405180610100016040528060008152602001600081526020016000815260200160008152602001600080191681526020016000815260200160006001600160a01b03168152602001606081525090565b6000838152600d6020908152604080832085845260029081018352928190208151610100810183528154815260018201549381019390935292830154908201526003820154606082015260048201546080820152600582015460a082015260068201546001600160a01b031660c082015260078201805491929160e084019190611ed090615431565b80601f0160208091040260200160405190810160405280929190818152602001828054611efc90615431565b8015611f495780601f10611f1e57610100808354040283529160200191611f49565b820191906000526020600020905b815481529060010190602001808311611f2c57829003601f168201915b505050505081525050905092915050565b6000828152600b60205260409020546113f99033612a7e565b600054610100900460ff1615808015611f935750600054600160ff909116105b80611fad5750303b158015611fad575060005460ff166001145b6120105760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bec565b6000805460ff191660011790558015612033576000805461ff0019166101001790555b7f8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661207e8961372f565b61209660405180602001604052806000815250613767565b61209f8a613338565b6120a88d61297c565b6120b360008e612d82565b6120bd818e612d82565b6120c7828e612d82565b6120d2826000612d82565b6120ee84866fffffffffffffffffffffffffffffffff166129ce565b61210a87876fffffffffffffffffffffffffffffffff16612fee565b612113886132ee565b61010a82905561010b8190558b51612133906101089060208f0190614839565b508a51612148906101099060208e0190614839565b5050508015612191576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b60018054610c5690615431565b6000858152600d602090815260408083208a8452600290810183528184208251610100810184528154815260018201549481019490945290810154918301919091526003810154606083015260048101546080830152600581015460a083015260068101546001600160a01b031660c08301526007810180548493929160e084019161223690615431565b80601f016020809104026020016040519081016040528092919081815260200182805461226290615431565b80156122af5780601f10612284576101008083540402835291602001916122af565b820191906000526020600020905b81548152906001019060200180831161229257829003601f168201915b50505091909252505050606081015160a082015160c08301516080840151939450919290919015612394576123906122e787806158e6565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250505060808088015191508e9060208b01359060408c01359061233c908d0160608e016149da565b6040516bffffffffffffffffffffffff19606095861b811660208301526034820194909452605481019290925290921b16607482015260880160405160208183030381529060405280519060200120613797565b5094505b84156124195760208601356123a957826123af565b85602001355b9250600019866040013514156123c557816123cb565b85604001355b91506000198660400135141580156123fc575060006123f060808801606089016149da565b6001600160a01b031614155b6124065780612416565b61241660808701606088016149da565b90505b6000600d60008c815260200190815260200160002060030160008e815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020549050816001600160a01b0316896001600160a01b03161415806124895750828814155b156124d65760405162461bcd60e51b815260206004820152601060248201527f2150726963654f7243757272656e6379000000000000000000000000000000006044820152606401610bec565b8915806124eb5750836124e9828c6154ab565b115b156125215760405162461bcd60e51b8152600401610bec906020808252600490820152632151747960e01b604082015260600190565b84602001518a866040015161253691906154ab565b11156125715760405162461bcd60e51b815260206004820152600a602482015269214d6178537570706c7960b01b6044820152606401610bec565b84514210156125b35760405162461bcd60e51b815260206004820152600e60248201526d18d85b9d0818db185a5b481e595d60921b6044820152606401610bec565b5050505050979650505050505050565b6125cb612afe565b6001600160a01b0316856001600160a01b031614806125f157506125f185610b17612afe565b6126555760405162461bcd60e51b815260206004820152602f60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526e195c881b9bdc88185c1c1c9bdd9959608a1b6064820152608401610bec565b6113048585858585613865565b6001600160a01b03163b151590565b60006001600160e01b03198216636cdb3d1360e11b14806126a257506001600160e01b031982166303a24d0760e21b145b80610c1a57506301ffc9a760e01b6001600160e01b0319831614610c1a565b606060006126ce60075490565b90506000600780548060200260200160405190810160405280929190818152602001828054801561271e57602002820191906000526020600020905b81548152602001906001019080831161270a575b5050505050905060005b8281101561282257818181518110612742576127426154c3565b60200260200101518510156128105760086000838381518110612767576127676154c3565b60200260200101518152602001908152602001600020805461278890615431565b80601f01602080910402602001604051908101604052809291908181526020018280546127b490615431565b80156128015780601f106127d657610100808354040283529160200191612801565b820191906000526020600020905b8154815290600101906020018083116127e457829003601f168201915b50505050509350505050919050565b61281b6001826154ab565b9050612728565b5060405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420746f6b656e496400000000000000000000000000000000006044820152606401610bec565b60608161288f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128b957806128a3816156c4565b91506128b29050600a8361586b565b9150612893565b60008167ffffffffffffffff8111156128d4576128d4614b02565b6040519080825280601f01601f1916602001820160405280156128fe576020820181803683370190505b5090505b841561173b5761291360018361587f565b9150612920600a86615930565b61292b9060306154ab565b60f81b818381518110612940576129406154c3565b60200101906001600160f81b031916908160001a905350612962600a8661586b565b9450612902565b6000612977816107f7612afe565b905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7690600090a35050565b612710811115612a125760405162461bcd60e51b815260206004820152600f60248201526e45786365656473206d61782062707360881b6044820152606401610bec565b600280546001600160b01b031916600160a01b61ffff8416026001600160a01b031916176001600160a01b0384169081179091556040518281527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f18304906020015b60405180910390a25050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff1661114457612abc816001600160a01b03166014613a2d565b612ac7836020613a2d565b604051602001612ad8929190615944565b60408051601f198184030181529082905262461bcd60e51b8252610bec916004016149ae565b6000612977613bdd565b8151835114612b6a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610bec565b6001600160a01b038416612bce5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6000612bd8612afe565b9050612be8818787878787613c0a565b60005b8451811015612d14576000858281518110612c0857612c086154c3565b602002602001015190506000858381518110612c2657612c266154c3565b602090810291909101810151600084815260d6835260408082206001600160a01b038e168352909352919091205490915081811015612cba5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610bec565b600083815260d6602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612cf99084906154ab565b9250508190555050505080612d0d906156c4565b9050612beb565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612d649291906159c5565b60405180910390a4612d7a818787878787613e1a565b505050505050565b612d8c8282613fc0565b611144828261401b565b612da08282614088565b6000828152600c602090815260408083206001600160a01b03851680855260028201808552838620805487526001909301855292852080546001600160a01b031916905584529152555050565b600087815261010d60205260409020541580612e2f5750600087815261010d602090815260408083205461010c90925290912054612e2c9087906154ab565b11155b612e7b5760405162461bcd60e51b815260206004820152601760248201527f657863656564206d617820746f74616c20737570706c790000000000000000006044820152606401610bec565b50505050505050565b6000612977612afe565b80612e9857611304565b6002546001600160a01b0380821691600160a01b900461ffff1690600090871615612ec35786612f0c565b600088815261010e60205260409020546001600160a01b031615612eff57600088815261010e60205260409020546001600160a01b0316612f0c565b6005546001600160a01b03165b90506000612f1a8588615836565b90506000612710612f2f61ffff861684615836565b612f39919061586b565b90506001600160a01b03871673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415612f9857813414612f985760405162461bcd60e51b815260206004820152600660248201526521507269636560d01b6044820152606401610bec565b612fab87612fa4612afe565b87846140ea565b612fc787612fb7612afe565b85612fc2858761587f565b6140ea565b50505050505050505050565b61187383838360405180602001604052806000815250614134565b6127108111156130325760405162461bcd60e51b815260206004820152600f60248201526e45786365656473206d61782062707360881b6044820152606401610bec565b600380546001600160a01b0384166001600160b01b03199091168117600160a01b61ffff851602179091556040518281527f90d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb90602001612a72565b6001600160a01b0383166130ef5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610bec565b80518251146131515760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610bec565b600061315b612afe565b905061317b81856000868660405180602001604052806000815250613c0a565b60005b835181101561327f57600084828151811061319b5761319b6154c3565b6020026020010151905060008483815181106131b9576131b96154c3565b602090810291909101810151600084815260d6835260408082206001600160a01b038c1683529093529190912054909150818110156132465760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610bec565b600092835260d6602090815260408085206001600160a01b038b1686529091529092209103905580613277816156c4565b91505061317e565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516132d09291906159c5565b60405180910390a46040805160208101909152600090525b50505050565b600580546001600160a01b0319166001600160a01b0383169081179091556040517f299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33390600090a250565b60006001805461334790615431565b80601f016020809104026020016040519081016040528092919081815260200182805461337390615431565b80156133c05780601f10613395576101008083540402835291602001916133c0565b820191906000526020600020905b8154815290600101906020018083116133a357829003601f168201915b505085519394506133dc93600193506020870192509050614839565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a16818360405161340e9291906159ea565b60405180910390a15050565b61271081111561345e5760405162461bcd60e51b815260206004820152600f60248201526e45786365656473206d61782062707360881b6044820152606401610bec565b6040805180820182526001600160a01b038481168083526020808401868152600089815260048352869020945185546001600160a01b031916941693909317845591516001909301929092559151838152909185917f7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d91015b60405180910390a3505050565b816001600160a01b0316836001600160a01b031614156135585760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610bec565b6001600160a01b03838116600081815260d76020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191016134d7565b60606001600160a01b0383163b6136255760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610bec565b600080846001600160a01b0316846040516136409190615a0f565b600060405180830381855af49150503d806000811461367b576040519150601f19603f3d011682016040523d82523d6000602084013e613680565b606091505b50915091506136a88282604051806060016040528060278152602001615bd66027913961425b565b95945050505050565b600061297761010b546107f7612afe565b6000806136cf84866154ab565b60078054600181019091557fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880181905560008181526008602090815260409091208551929450849350613726929091860190614839565b50935093915050565b600054610100900460ff166137565760405162461bcd60e51b8152600401610bec90615a21565b61375e614294565b610d66816142bd565b600054610100900460ff1661378e5760405162461bcd60e51b8152600401610bec90615a21565b610d668161434c565b6000808281805b8751811015613859576137b2600283615836565b915060008882815181106137c8576137c86154c3565b6020026020010151905080841161380a576040805160208101869052908101829052606001604051602081830303815290604052805190602001209350613846565b604080516020810183905290810185905260600160405160208183030381529060405280519060200120935060018361384391906154ab565b92505b5080613851816156c4565b91505061379e565b50941495939450505050565b6001600160a01b0384166138c95760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b60006138d3612afe565b905060006138e08561435f565b905060006138ed8561435f565b90506138fd838989858589613c0a565b600086815260d6602090815260408083206001600160a01b038c168452909152902054858110156139835760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610bec565b600087815260d6602090815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906139c29084906154ab565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4613a22848a8a8a8a8a6143aa565b505050505050505050565b60606000613a3c836002615836565b613a479060026154ab565b67ffffffffffffffff811115613a5f57613a5f614b02565b6040519080825280601f01601f191660200182016040528015613a89576020820181803683370190505b509050600360fc1b81600081518110613aa457613aa46154c3565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613ad357613ad36154c3565b60200101906001600160f81b031916908160001a9053506000613af7846002615836565b613b029060016154ab565b90505b6001811115613b87577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110613b4357613b436154c3565b1a60f81b828281518110613b5957613b596154c3565b60200101906001600160f81b031916908160001a90535060049490941c93613b8081615896565b9050613b05565b508315613bd65760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bec565b9392505050565b3360009081526040602081905281205460ff1615613c02575060131936013560601c90565b503390565b90565b61010a546000908152600a6020908152604080832083805290915290205460ff16158015613c4057506001600160a01b03851615155b8015613c5457506001600160a01b03841615155b15613d0c5761010a546000908152600a602090815260408083206001600160a01b038916845290915290205460ff1680613cb4575061010a546000908152600a602090815260408083206001600160a01b038816845290915290205460ff165b613d0c5760405162461bcd60e51b8152602060048201526024808201527f7265737472696374656420746f205452414e534645525f524f4c4520686f6c6460448201526332b9399760e11b6064820152608401610bec565b6001600160a01b038516613d945760005b8351811015613d9257828181518110613d3857613d386154c3565b602002602001015161010c6000868481518110613d5757613d576154c3565b602002602001015181526020019081526020016000206000828254613d7c91906154ab565b90915550613d8b9050816156c4565b9050613d1d565b505b6001600160a01b038416612d7a5760005b8351811015612e7b57828181518110613dc057613dc06154c3565b602002602001015161010c6000868481518110613ddf57613ddf6154c3565b602002602001015181526020019081526020016000206000828254613e04919061587f565b90915550613e139050816156c4565b9050613da5565b6001600160a01b0384163b15612d7a5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190613e5e9089908990889088908890600401615a6c565b6020604051808303816000875af1925050508015613e99575060408051601f3d908101601f19168201909252613e9691810190615abe565b60015b613f4f57613ea5615adb565b806308c379a01415613edf5750613eba615af6565b80613ec55750613ee1565b8060405162461bcd60e51b8152600401610bec91906149ae565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610bec565b6001600160e01b0319811663bc197c8160e01b14612e7b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610bec565b6000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916600117905551339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000828152600c602052604081208054916001919061403a83856154ab565b90915550506000928352600c6020908152604080852083865260018101835281862080546001600160a01b039096166001600160a01b03199096168617905593855260029093019052912055565b6140928282612a7e565b6000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b806140f4576132e8565b6001600160a01b03841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156141285761412382826144a6565b6132e8565b6132e884848484614549565b6001600160a01b0384166141945760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b600061419e612afe565b905060006141ab8561435f565b905060006141b88561435f565b90506141c983600089858589613c0a565b600086815260d6602090815260408083206001600160a01b038b168452909152812080548792906141fb9084906154ab565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612e7b836000898989896143aa565b6060831561426a575081613bd6565b82511561427a5782518084602001fd5b8160405162461bcd60e51b8152600401610bec91906149ae565b600054610100900460ff166142bb5760405162461bcd60e51b8152600401610bec90615a21565b565b600054610100900460ff166142e45760405162461bcd60e51b8152600401610bec90615a21565b60005b815181101561114457600160406000848481518110614308576143086154c3565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580614344816156c4565b9150506142e7565b80516111449060d8906020840190614839565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110614399576143996154c3565b602090810291909101015292915050565b6001600160a01b0384163b15612d7a5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906143ee9089908990889088908890600401615b80565b6020604051808303816000875af1925050508015614429575060408051601f3d908101601f1916820190925261442691810190615abe565b60015b61443557613ea5615adb565b6001600160e01b0319811663f23a6e6160e01b14612e7b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610bec565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146144f3576040519150601f19603f3d011682016040523d82523d6000602084013e6144f8565b606091505b50509050806118735760405162461bcd60e51b815260206004820152601c60248201527f6e617469766520746f6b656e207472616e73666572206661696c6564000000006044820152606401610bec565b816001600160a01b0316836001600160a01b03161415614568576132e8565b6001600160a01b03831630141561458d576141236001600160a01b03851683836145a2565b6132e86001600160a01b03851684848461461a565b6040516001600160a01b03831660248201526044810182905261187390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152614652565b6040516001600160a01b03808516602483015283166044820152606481018290526132e89085906323b872dd60e01b906084016145ce565b60006146a7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166147249092919063ffffffff16565b80519091501561187357808060200190518101906146c59190615bb8565b6118735760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bec565b606061173b8484600085856001600160a01b0385163b6147865760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bec565b600080866001600160a01b031685876040516147a29190615a0f565b60006040518083038185875af1925050503d80600081146147df576040519150601f19603f3d011682016040523d82523d6000602084013e6147e4565b606091505b50915091506147f482828661425b565b979650505050505050565b50805461480b90615431565b6000825580601f1061481b575050565b601f016020900490600052602060002090810190610d6691906148bd565b82805461484590615431565b90600052602060002090601f01602090048101928261486757600085556148ad565b82601f1061488057805160ff19168380011785556148ad565b828001600101855582156148ad579182015b828111156148ad578251825591602001919060010190614892565b506148b99291506148bd565b5090565b5b808211156148b957600081556001016148be565b6001600160a01b0381168114610d6657600080fd5b80356148f2816148d2565b919050565b6000806040838503121561490a57600080fd5b8235614915816148d2565b946020939093013593505050565b6001600160e01b031981168114610d6657600080fd5b60006020828403121561494b57600080fd5b8135613bd681614923565b60005b83811015614971578181015183820152602001614959565b838111156132e85750506000910152565b6000815180845261499a816020860160208601614956565b601f01601f19169290920160200192915050565b602081526000613bd66020830184614982565b6000602082840312156149d357600080fd5b5035919050565b6000602082840312156149ec57600080fd5b8135613bd6816148d2565b60008083601f840112614a0957600080fd5b50813567ffffffffffffffff811115614a2157600080fd5b6020830191508360208260051b8501011115614a3c57600080fd5b9250929050565b8015158114610d6657600080fd5b60008060008060608587031215614a6757600080fd5b84359350602085013567ffffffffffffffff811115614a8557600080fd5b614a91878288016149f7565b9094509250506040850135614aa581614a43565b939692955090935050565b60008060408385031215614ac357600080fd5b823591506020830135614ad5816148d2565b809150509250929050565b60008060408385031215614af357600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715614b3e57614b3e614b02565b6040525050565b600067ffffffffffffffff821115614b5f57614b5f614b02565b5060051b60200190565b600082601f830112614b7a57600080fd5b81356020614b8782614b45565b604051614b948282614b18565b83815260059390931b8501820192828101915086841115614bb457600080fd5b8286015b84811015614bcf5780358352918301918301614bb8565b509695505050505050565b600082601f830112614beb57600080fd5b813567ffffffffffffffff811115614c0557614c05614b02565b604051614c1c601f8301601f191660200182614b18565b818152846020838601011115614c3157600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215614c6657600080fd5b8535614c71816148d2565b94506020860135614c81816148d2565b9350604086013567ffffffffffffffff80821115614c9e57600080fd5b614caa89838a01614b69565b94506060880135915080821115614cc057600080fd5b614ccc89838a01614b69565b93506080880135915080821115614ce257600080fd5b50614cef88828901614bda565b9150509295509295909350565b600082601f830112614d0d57600080fd5b81356020614d1a82614b45565b604051614d278282614b18565b83815260059390931b8501820192828101915086841115614d4757600080fd5b8286015b84811015614bcf578035614d5e816148d2565b8352918301918301614d4b565b60008060408385031215614d7e57600080fd5b823567ffffffffffffffff80821115614d9657600080fd5b614da286838701614cfc565b93506020850135915080821115614db857600080fd5b50614dc585828601614b69565b9150509250929050565b600081518084526020808501945080840160005b83811015614dff57815187529582019590820190600101614de3565b509495945050505050565b602081526000613bd66020830184614dcf565b600060808284031215611cc257600080fd5b600080600080600080600060e0888a031215614e4a57600080fd5b8735614e55816148d2565b965060208801359550604088013594506060880135614e73816148d2565b93506080880135925060a088013567ffffffffffffffff80821115614e9757600080fd5b614ea38b838c01614e1d565b935060c08a0135915080821115614eb957600080fd5b50614ec68a828b01614bda565b91505092959891949750929550565b600080600060608486031215614eea57600080fd5b83359250602084013591506040840135614f03816148d2565b809150509250925092565b600080600060608486031215614f2357600080fd5b8335614f2e816148d2565b9250602084013567ffffffffffffffff80821115614f4b57600080fd5b614f5787838801614b69565b93506040860135915080821115614f6d57600080fd5b50614f7a86828701614b69565b9150509250925092565b600060208284031215614f9657600080fd5b813567ffffffffffffffff811115614fad57600080fd5b61173b84828501614bda565b600080600060608486031215614fce57600080fd5b833592506020840135614fe0816148d2565b929592945050506040919091013590565b6000806040838503121561500457600080fd5b823561500f816148d2565b91506020830135614ad581614a43565b6000806020838503121561503257600080fd5b823567ffffffffffffffff81111561504957600080fd5b615055858286016149f7565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156150b657603f198886030184526150a4858351614982565b94509285019290850190600101615088565b5092979650505050505050565b60008083601f8401126150d557600080fd5b50813567ffffffffffffffff8111156150ed57600080fd5b602083019150836020828501011115614a3c57600080fd5b60008060008060006060868803121561511d57600080fd5b85359450602086013567ffffffffffffffff8082111561513c57600080fd5b61514889838a016150c3565b9096509450604088013591508082111561516157600080fd5b5061516e888289016150c3565b969995985093965092949392505050565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c08201526001600160a01b0360c08301511660e0820152600060e083015161010080818501525061173b610120840182614982565b80356fffffffffffffffffffffffffffffffff811681146148f257600080fd5b6000806000806000806000806000806101408b8d03121561522d57600080fd5b6152368b6148e7565b995060208b013567ffffffffffffffff8082111561525357600080fd5b61525f8e838f01614bda565b9a5060408d013591508082111561527557600080fd5b6152818e838f01614bda565b995060608d013591508082111561529757600080fd5b6152a38e838f01614bda565b985060808d01359150808211156152b957600080fd5b506152c68d828e01614cfc565b9650506152d560a08c016148e7565b94506152e360c08c016148e7565b93506152f160e08c016151ed565b92506153006101008c016151ed565b915061530f6101208c016148e7565b90509295989b9194979a5092959850565b6000806040838503121561533357600080fd5b823561533e816148d2565b91506020830135614ad5816148d2565b600080600080600080600060e0888a03121561536957600080fd5b87359650602088013561537b816148d2565b955060408801359450606088013593506080880135615399816148d2565b925060a0880135915060c088013567ffffffffffffffff8111156153bc57600080fd5b614ec68a828b01614e1d565b600080600080600060a086880312156153e057600080fd5b85356153eb816148d2565b945060208601356153fb816148d2565b93506040860135925060608601359150608086013567ffffffffffffffff81111561542557600080fd5b614cef88828901614bda565b600181811c9082168061544557607f821691505b60208210811415611cc257634e487b7160e01b600052602260045260246000fd5b60008351615478818460208801614956565b83519083019061548c818360208801614956565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156154be576154be615495565b500190565b634e487b7160e01b600052603260045260246000fd5b6000823560fe198336030181126154ef57600080fd5b9190910192915050565b6000808335601e1984360301811261551057600080fd5b83018035915067ffffffffffffffff82111561552b57600080fd5b602001915036819003821315614a3c57600080fd5b601f82111561187357600081815260208120601f850160051c810160208610156155675750805b601f850160051c820191505b81811015612d7a57828155600101615573565b67ffffffffffffffff83111561559e5761559e614b02565b6155b2836155ac8354615431565b83615540565b6000601f8411600181146155e657600085156155ce5750838201355b600019600387901b1c1916600186901b178355611304565b600083815260209020601f19861690835b8281101561561757868501358255602094850194600190920191016155f7565b50868210156156345760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a082013560058201556006810160c083013561568e816148d2565b81546001600160a01b0319166001600160a01b03919091161790556156b660e08301836154f9565b6132e8818360078601615586565b60006000198214156156d8576156d8615495565b5060010190565b6000808335601e198436030181126156f657600080fd5b830160208101925035905067ffffffffffffffff81111561571657600080fd5b803603831315614a3c57600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408082528181018490526000906060808401600587901b850182018885805b8a81101561582057888403605f190185528235368d900360fe19018112615793578283fd5b8c018035855260208082013581870152888201358987015287820135888701526080808301359087015260a080830135908701526101009060c0808401356157da816148d2565b6001600160a01b03169088015260e06157f5848201856156df565b945083828a0152615809848a018683615725565b99830199985050509490940193505060010161576e565b5050508615156020870152935061173b92505050565b600081600019048311821515161561585057615850615495565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261587a5761587a615855565b500490565b60008282101561589157615891615495565b500390565b6000816158a5576158a5615495565b506000190190565b8581526060602082015260006158c7606083018688615725565b82810360408401526158da818587615725565b98975050505050505050565b6000808335601e198436030181126158fd57600080fd5b83018035915067ffffffffffffffff82111561591857600080fd5b6020019150600581901b3603821315614a3c57600080fd5b60008261593f5761593f615855565b500690565b7f5065726d697373696f6e733a206163636f756e7420000000000000000000000081526000835161597c816015850160208801614956565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060159184019182015283516159b9816026840160208801614956565b01602601949350505050565b6040815260006159d86040830185614dcf565b82810360208401526136a88185614dcf565b6040815260006159fd6040830185614982565b82810360208401526136a88185614982565b600082516154ef818460208701614956565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60006001600160a01b03808816835280871660208401525060a06040830152615a9860a0830186614dcf565b8281036060840152615aaa8186614dcf565b905082810360808401526158da8185614982565b600060208284031215615ad057600080fd5b8151613bd681614923565b600060033d1115613c075760046000803e5060005160e01c90565b600060443d1015615b045790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715615b3457505050505090565b8285019150815181811115615b4c5750505050505090565b843d8701016020828501011115615b665750505050505090565b615b7560208286010187614b18565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526147f460a0830184614982565b600060208284031215615bca57600080fd5b8151613bd681614a4356fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220453bb671b5ad373b339965d64801e9e903dd89d4d258360b667e5cef1b2a02eb64736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106103545760003560e01c806387198cf2116101bb578063bd85b039116100f7578063d547741f11610095578063e9703d251161006f578063e9703d2514610ab3578063e985e9c514610afc578063ea1def9c14610b45578063f242432a14610b6557600080fd5b8063d547741f14610a5e578063e159163414610a7e578063e8a3d48514610a9e57600080fd5b8063cb2ef6f7116100d1578063cb2ef6f7146109c5578063d37c353b146109e6578063d45573f614610a06578063d45b28d714610a3157600080fd5b8063bd85b03914610940578063c7337d6b1461096e578063ca15c873146109a557600080fd5b80639bcf7a1511610164578063a22cb4651161013e578063a22cb465146108a8578063a32fa5b3146108c8578063ac9650d8146108e8578063b24f2d391461091557600080fd5b80639bcf7a1514610857578063a0a8e46014610877578063a217fddf1461089357600080fd5b806391d148541161019557806391d14854146107dc578063938e3d7b1461082257806395d89b411461084257600080fd5b806387198cf21461077e5780638da5cb5b1461079e5780639010d07c146107bc57600080fd5b80632eb2c2d61161029557806357bc3d7811610233578063600dd5ea1161020d578063600dd5ea1461070957806363b45e2d146107295780636b20c4541461073e5780636f4f28371461075e57600080fd5b806357bc3d78146106895780635811ddab1461069c5780635ab063e8146106e957600080fd5b80633b1475a71161026f5780633b1475a7146105cc5780634cc157df146105e15780634e1273f414610623578063572b6c051461065057600080fd5b80632eb2c2d61461056c5780632f2ff15d1461058c57806336568abe146105ac57600080fd5b8063183718d111610302578063248a9ca3116102dc578063248a9ca3146104b257806324aaffaa146104df57806329c49b9b1461050d5780632a55205a1461052d57600080fd5b8063183718d1146104525780631e7ac488146104725780632419f51b1461049257600080fd5b8063079fe40e11610333578063079fe40e146103de5780630e89341c1461041057806313af40351461043057600080fd5b8062fdd58e1461035957806301ffc9a71461038c57806306fdde03146103bc575b600080fd5b34801561036557600080fd5b506103796103743660046148f7565b610b85565b6040519081526020015b60405180910390f35b34801561039857600080fd5b506103ac6103a7366004614939565b610c20565b6040519015158152602001610383565b3480156103c857600080fd5b506103d1610c48565b60405161038391906149ae565b3480156103ea57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610383565b34801561041c57600080fd5b506103d161042b3660046149c1565b610cd7565b34801561043c57600080fd5b5061045061044b3660046149da565b610d18565b005b34801561045e57600080fd5b5061045061046d366004614a51565b610d69565b34801561047e57600080fd5b5061045061048d3660046148f7565b6110f5565b34801561049e57600080fd5b506103796104ad3660046149c1565b611148565b3480156104be57600080fd5b506103796104cd3660046149c1565b6000908152600b602052604090205490565b3480156104eb57600080fd5b506103796104fa3660046149c1565b61010d6020526000908152604090205481565b34801561051957600080fd5b50610450610528366004614ab0565b6111b6565b34801561053957600080fd5b5061054d610548366004614ae0565b611228565b604080516001600160a01b039093168352602083019190915201610383565b34801561057857600080fd5b50610450610587366004614c4e565b611265565b34801561059857600080fd5b506104506105a7366004614ab0565b61130b565b3480156105b857600080fd5b506104506105c7366004614ab0565b6113a1565b3480156105d857600080fd5b50600954610379565b3480156105ed57600080fd5b506106016105fc3660046149c1565b611403565b604080516001600160a01b03909316835261ffff909116602083015201610383565b34801561062f57600080fd5b5061064361063e366004614d6b565b61146e565b6040516103839190614e0a565b34801561065c57600080fd5b506103ac61066b3660046149da565b6001600160a01b031660009081526040602081905290205460ff1690565b610450610697366004614e2f565b611598565b3480156106a857600080fd5b506103796106b7366004614ed5565b6000928352600d60209081526040808520938552600390930181528284206001600160a01b0390921684525290205490565b3480156106f557600080fd5b506103796107043660046149c1565b6116db565b34801561071557600080fd5b506104506107243660046148f7565b61178c565b34801561073557600080fd5b50600754610379565b34801561074a57600080fd5b50610450610759366004614f0e565b6117db565b34801561076a57600080fd5b506104506107793660046149da565b611878565b34801561078a57600080fd5b50610450610799366004614ae0565b6118c6565b3480156107aa57600080fd5b506006546001600160a01b03166103f8565b3480156107c857600080fd5b506103f86107d7366004614ae0565b611923565b3480156107e857600080fd5b506103ac6107f7366004614ab0565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561082e57600080fd5b5061045061083d366004614f84565b611a24565b34801561084e57600080fd5b506103d1611a72565b34801561086357600080fd5b50610450610872366004614fb9565b611a80565b34801561088357600080fd5b5060405160048152602001610383565b34801561089f57600080fd5b50610379600081565b3480156108b457600080fd5b506104506108c3366004614ff1565b611ad0565b3480156108d457600080fd5b506103ac6108e3366004614ab0565b611ae2565b3480156108f457600080fd5b5061090861090336600461501f565b611b38565b6040516103839190615061565b34801561092157600080fd5b506003546001600160a01b03811690600160a01b900461ffff16610601565b34801561094c57600080fd5b5061037961095b3660046149c1565b61010c6020526000908152604090205481565b34801561097a57600080fd5b506103f86109893660046149c1565b61010e602052600090815260409020546001600160a01b031681565b3480156109b157600080fd5b506103796109c03660046149c1565b611c2d565b3480156109d157600080fd5b506a44726f704552433131353560a81b610379565b3480156109f257600080fd5b50610379610a01366004615105565b611cc8565b348015610a1257600080fd5b506002546001600160a01b03811690600160a01b900461ffff16610601565b348015610a3d57600080fd5b50610a51610a4c366004614ae0565b611df3565b604051610383919061517f565b348015610a6a57600080fd5b50610450610a79366004614ab0565b611f5a565b348015610a8a57600080fd5b50610450610a9936600461520d565b611f73565b348015610aaa57600080fd5b506103d161219e565b348015610abf57600080fd5b50610ae7610ace3660046149c1565b600d602052600090815260409020805460019091015482565b60408051928352602083019190915201610383565b348015610b0857600080fd5b506103ac610b17366004615320565b6001600160a01b03918216600090815260d76020908152604080832093909416825291909152205460ff1690565b348015610b5157600080fd5b506103ac610b6036600461534e565b6121ab565b348015610b7157600080fd5b50610450610b803660046153c8565b6125c3565b60006001600160a01b038316610bf55760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b50600081815260d6602090815260408083206001600160a01b03861684529091529020545b92915050565b6000610c2b82612671565b80610c1a5750506001600160e01b03191663152a902d60e11b1490565b6101088054610c5690615431565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8290615431565b8015610ccf5780601f10610ca457610100808354040283529160200191610ccf565b820191906000526020600020905b815481529060010190602001808311610cb257829003601f168201915b505050505081565b60606000610ce4836126c1565b905080610cf08461286b565b604051602001610d01929190615466565b604051602081830303815290604052915050919050565b610d20612969565b610d5d5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b610d668161297c565b50565b610d71612969565b610dae5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b6000848152600d6020526040902080546001820154818415610dd757610dd482846154ab565b90505b600184018690558084556000805b87811015610f9b57801580610e1d5750888882818110610e0757610e076154c3565b9050602002810190610e1991906154d9565b3582105b610e4e5760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610bec565b60006002870181610e5f84876154ab565b8152602001908152602001600020600201549050898983818110610e8557610e856154c3565b9050602002810190610e9791906154d9565b60200135811115610eea5760405162461bcd60e51b815260206004820152601260248201527f6d617820737570706c7920636c61696d656400000000000000000000000000006044820152606401610bec565b898983818110610efc57610efc6154c3565b9050602002810190610f0e91906154d9565b600288016000610f1e85886154ab565b81526020019081526020016000208181610f389190615646565b50819050600288016000610f4c85886154ab565b8152602081019190915260400160002060020155898983818110610f7257610f726154c3565b9050602002810190610f8491906154d9565b359250819050610f93816156c4565b915050610de5565b50851561101d57835b82811015611017576000818152600280880160205260408220828155600181018390559081018290556003810182905560048101829055600581018290556006810180546001600160a01b03191690559061100260078301826147ff565b5050808061100f906156c4565b915050610fa4565b506110ae565b868311156110ae57865b838110156110ac5760028601600061103f83866154ab565b81526020810191909152604001600090812081815560018101829055600281018290556003810182905560048101829055600581018290556006810180546001600160a01b03191690559061109760078301826147ff565b505080806110a4906156c4565b915050611027565b505b887f066f72a648b18490c0bc4ab07d508cdb5d6589fa188c63cfba1e0547f3a6556a8989896040516110e29392919061574e565b60405180910390a2505050505050505050565b6110fd612969565b61113a5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b61114482826129ce565b5050565b600061115360075490565b82106111915760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b6044820152606401610bec565b600782815481106111a4576111a46154c3565b90600052602060002001549050919050565b60006111c28133612a7e565b600083815261010e602090815260409182902080546001600160a01b0319166001600160a01b038616908117909155915191825284917f359479172ba65a6639b0df237f704e030498cb7135d5e89b56f598bd1d84b016910160405180910390a2505050565b60008060008061123786611403565b90945084925061ffff1690506127106112508287615836565b61125a919061586b565b925050509250929050565b61126d612afe565b6001600160a01b0316856001600160a01b03161480611293575061129385610b17612afe565b6112f75760405162461bcd60e51b815260206004820152602f60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526e195c881b9bdc88185c1c1c9bdd9959608a1b6064820152608401610bec565b6113048585858585612b08565b5050505050565b6000828152600b60205260409020546113249033612a7e565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16156113975760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206772616e7420746f206e6f6e20686f6c646572730000006044820152606401610bec565b6111448282612d82565b336001600160a01b038216146113f95760405162461bcd60e51b815260206004820152601a60248201527f43616e206f6e6c792072656e6f756e636520666f722073656c660000000000006044820152606401610bec565b6111448282612d96565b6000818152600460209081526040808320815180830190925280546001600160a01b03168083526001909101549282019290925282911561144a5780516020820151611464565b6003546001600160a01b03811690600160a01b900461ffff165b9250925050915091565b606081518351146114d35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610bec565b6000835167ffffffffffffffff8111156114ef576114ef614b02565b604051908082528060200260200182016040528015611518578160200160208202803683370190505b50905060005b84518110156115905761156385828151811061153c5761153c6154c3565b6020026020010151858381518110611556576115566154c3565b6020026020010151610b85565b828281518110611575576115756154c3565b6020908102919091010152611589816156c4565b905061151e565b509392505050565b6115a786888787878787612ded565b60006115b2876116db565b90506115ca816115c0612e84565b89898989896121ab565b506000878152600d60209081526040808320848452600290810190925282200180548892906115fa9084906154ab565b90915550506000878152600d6020908152604080832084845260030190915281208791611625612e84565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461165491906154ab565b909155506116689050876000888888612e8e565b611673888888612fd3565b876001600160a01b0316611685612e84565b6001600160a01b0316827ffa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e8a8a6040516116c9929190918252602082015260400190565b60405180910390a45050505050505050565b6000818152600d602052604081206001810154815483916116fb916154ab565b90505b81548111156117555760028201600061171860018461587f565b81526020019081526020016000206000015442106117435761173b60018261587f565b949350505050565b8061174d81615896565b9150506116fe565b5060405162461bcd60e51b815260206004820152600b60248201526a10a1a7a72224aa24a7a71760a91b6044820152606401610bec565b611794612969565b6117d15760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b6111448282612fee565b6117e3612afe565b6001600160a01b0316836001600160a01b03161480611809575061180983610b17612afe565b6118685760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f726044820152691030b8383937bb32b21760b11b6064820152608401610bec565b61187383838361308d565b505050565b611880612969565b6118bd5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b610d66816132ee565b60006118d28133612a7e565b600083815261010d602090815260409182902084905581518581529081018490527fc58cd6132bb46df23d468939c03dd023b74b509aaa6b04c39d5a6461c65963bd910160405180910390a1505050565b6000828152600c602052604081205481805b82811015611a1b576000868152600c602090815260408083208484526001019091529020546001600160a01b0316156119b257848214156119a0576000868152600c602090815260408083209383526001909301905220546001600160a01b03169250610c1a915050565b6119ab6001836154ab565b9150611a09565b6000868152600a6020908152604080832083805290915290205460ff1680156119f657506000868152600c6020908152604080832083805260020190915290205481145b15611a0957611a066001836154ab565b91505b611a146001826154ab565b9050611935565b50505092915050565b611a2c612969565b611a695760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b610d6681613338565b6101098054610c5690615431565b611a88612969565b611ac55760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b61187383838361341a565b611144611adb612afe565b83836134e4565b6000828152600a6020908152604080832083805290915281205460ff16611b2f57506000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610c1a565b50600192915050565b60608167ffffffffffffffff811115611b5357611b53614b02565b604051908082528060200260200182016040528015611b8657816020015b6060815260200190600190039081611b715790505b50905060005b82811015611c2657611bf630858584818110611baa57611baa6154c3565b9050602002810190611bbc91906154f9565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506135bd92505050565b828281518110611c0857611c086154c3565b60200260200101819052508080611c1e906156c4565b915050611b8c565b5092915050565b6000818152600c6020526040812054815b81811015611c91576000848152600c602090815260408083208484526001019091529020546001600160a01b031615611c7f57611c7c6001846154ab565b92505b611c8a6001826154ab565b9050611c3e565b506000838152600a6020908152604080832083805290915290205460ff1615611cc257611cbf6001836154ab565b91505b50919050565b6000611cd26136b1565b611d0f5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610bec565b85611d445760405162461bcd60e51b81526020600482015260056024820152640c08185b5d60da1b6044820152606401610bec565b60006009549050611d8c818888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506136c292505050565b6009919091559150807f2a0365091ef1a40953c670dce28177e37520648a6fdc91506bffac0ab045570d6001611dc28a846154ab565b611dcc919061587f565b88888888604051611de19594939291906158ad565b60405180910390a25095945050505050565b611e4760405180610100016040528060008152602001600081526020016000815260200160008152602001600080191681526020016000815260200160006001600160a01b03168152602001606081525090565b6000838152600d6020908152604080832085845260029081018352928190208151610100810183528154815260018201549381019390935292830154908201526003820154606082015260048201546080820152600582015460a082015260068201546001600160a01b031660c082015260078201805491929160e084019190611ed090615431565b80601f0160208091040260200160405190810160405280929190818152602001828054611efc90615431565b8015611f495780601f10611f1e57610100808354040283529160200191611f49565b820191906000526020600020905b815481529060010190602001808311611f2c57829003601f168201915b505050505081525050905092915050565b6000828152600b60205260409020546113f99033612a7e565b600054610100900460ff1615808015611f935750600054600160ff909116105b80611fad5750303b158015611fad575060005460ff166001145b6120105760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bec565b6000805460ff191660011790558015612033576000805461ff0019166101001790555b7f8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661207e8961372f565b61209660405180602001604052806000815250613767565b61209f8a613338565b6120a88d61297c565b6120b360008e612d82565b6120bd818e612d82565b6120c7828e612d82565b6120d2826000612d82565b6120ee84866fffffffffffffffffffffffffffffffff166129ce565b61210a87876fffffffffffffffffffffffffffffffff16612fee565b612113886132ee565b61010a82905561010b8190558b51612133906101089060208f0190614839565b508a51612148906101099060208e0190614839565b5050508015612191576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b60018054610c5690615431565b6000858152600d602090815260408083208a8452600290810183528184208251610100810184528154815260018201549481019490945290810154918301919091526003810154606083015260048101546080830152600581015460a083015260068101546001600160a01b031660c08301526007810180548493929160e084019161223690615431565b80601f016020809104026020016040519081016040528092919081815260200182805461226290615431565b80156122af5780601f10612284576101008083540402835291602001916122af565b820191906000526020600020905b81548152906001019060200180831161229257829003601f168201915b50505091909252505050606081015160a082015160c08301516080840151939450919290919015612394576123906122e787806158e6565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250505060808088015191508e9060208b01359060408c01359061233c908d0160608e016149da565b6040516bffffffffffffffffffffffff19606095861b811660208301526034820194909452605481019290925290921b16607482015260880160405160208183030381529060405280519060200120613797565b5094505b84156124195760208601356123a957826123af565b85602001355b9250600019866040013514156123c557816123cb565b85604001355b91506000198660400135141580156123fc575060006123f060808801606089016149da565b6001600160a01b031614155b6124065780612416565b61241660808701606088016149da565b90505b6000600d60008c815260200190815260200160002060030160008e815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020549050816001600160a01b0316896001600160a01b03161415806124895750828814155b156124d65760405162461bcd60e51b815260206004820152601060248201527f2150726963654f7243757272656e6379000000000000000000000000000000006044820152606401610bec565b8915806124eb5750836124e9828c6154ab565b115b156125215760405162461bcd60e51b8152600401610bec906020808252600490820152632151747960e01b604082015260600190565b84602001518a866040015161253691906154ab565b11156125715760405162461bcd60e51b815260206004820152600a602482015269214d6178537570706c7960b01b6044820152606401610bec565b84514210156125b35760405162461bcd60e51b815260206004820152600e60248201526d18d85b9d0818db185a5b481e595d60921b6044820152606401610bec565b5050505050979650505050505050565b6125cb612afe565b6001600160a01b0316856001600160a01b031614806125f157506125f185610b17612afe565b6126555760405162461bcd60e51b815260206004820152602f60248201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60448201526e195c881b9bdc88185c1c1c9bdd9959608a1b6064820152608401610bec565b6113048585858585613865565b6001600160a01b03163b151590565b60006001600160e01b03198216636cdb3d1360e11b14806126a257506001600160e01b031982166303a24d0760e21b145b80610c1a57506301ffc9a760e01b6001600160e01b0319831614610c1a565b606060006126ce60075490565b90506000600780548060200260200160405190810160405280929190818152602001828054801561271e57602002820191906000526020600020905b81548152602001906001019080831161270a575b5050505050905060005b8281101561282257818181518110612742576127426154c3565b60200260200101518510156128105760086000838381518110612767576127676154c3565b60200260200101518152602001908152602001600020805461278890615431565b80601f01602080910402602001604051908101604052809291908181526020018280546127b490615431565b80156128015780601f106127d657610100808354040283529160200191612801565b820191906000526020600020905b8154815290600101906020018083116127e457829003601f168201915b50505050509350505050919050565b61281b6001826154ab565b9050612728565b5060405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420746f6b656e496400000000000000000000000000000000006044820152606401610bec565b60608161288f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128b957806128a3816156c4565b91506128b29050600a8361586b565b9150612893565b60008167ffffffffffffffff8111156128d4576128d4614b02565b6040519080825280601f01601f1916602001820160405280156128fe576020820181803683370190505b5090505b841561173b5761291360018361587f565b9150612920600a86615930565b61292b9060306154ab565b60f81b818381518110612940576129406154c3565b60200101906001600160f81b031916908160001a905350612962600a8661586b565b9450612902565b6000612977816107f7612afe565b905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7690600090a35050565b612710811115612a125760405162461bcd60e51b815260206004820152600f60248201526e45786365656473206d61782062707360881b6044820152606401610bec565b600280546001600160b01b031916600160a01b61ffff8416026001600160a01b031916176001600160a01b0384169081179091556040518281527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f18304906020015b60405180910390a25050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff1661114457612abc816001600160a01b03166014613a2d565b612ac7836020613a2d565b604051602001612ad8929190615944565b60408051601f198184030181529082905262461bcd60e51b8252610bec916004016149ae565b6000612977613bdd565b8151835114612b6a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610bec565b6001600160a01b038416612bce5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6000612bd8612afe565b9050612be8818787878787613c0a565b60005b8451811015612d14576000858281518110612c0857612c086154c3565b602002602001015190506000858381518110612c2657612c266154c3565b602090810291909101810151600084815260d6835260408082206001600160a01b038e168352909352919091205490915081811015612cba5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610bec565b600083815260d6602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612cf99084906154ab565b9250508190555050505080612d0d906156c4565b9050612beb565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612d649291906159c5565b60405180910390a4612d7a818787878787613e1a565b505050505050565b612d8c8282613fc0565b611144828261401b565b612da08282614088565b6000828152600c602090815260408083206001600160a01b03851680855260028201808552838620805487526001909301855292852080546001600160a01b031916905584529152555050565b600087815261010d60205260409020541580612e2f5750600087815261010d602090815260408083205461010c90925290912054612e2c9087906154ab565b11155b612e7b5760405162461bcd60e51b815260206004820152601760248201527f657863656564206d617820746f74616c20737570706c790000000000000000006044820152606401610bec565b50505050505050565b6000612977612afe565b80612e9857611304565b6002546001600160a01b0380821691600160a01b900461ffff1690600090871615612ec35786612f0c565b600088815261010e60205260409020546001600160a01b031615612eff57600088815261010e60205260409020546001600160a01b0316612f0c565b6005546001600160a01b03165b90506000612f1a8588615836565b90506000612710612f2f61ffff861684615836565b612f39919061586b565b90506001600160a01b03871673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415612f9857813414612f985760405162461bcd60e51b815260206004820152600660248201526521507269636560d01b6044820152606401610bec565b612fab87612fa4612afe565b87846140ea565b612fc787612fb7612afe565b85612fc2858761587f565b6140ea565b50505050505050505050565b61187383838360405180602001604052806000815250614134565b6127108111156130325760405162461bcd60e51b815260206004820152600f60248201526e45786365656473206d61782062707360881b6044820152606401610bec565b600380546001600160a01b0384166001600160b01b03199091168117600160a01b61ffff851602179091556040518281527f90d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb90602001612a72565b6001600160a01b0383166130ef5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610bec565b80518251146131515760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610bec565b600061315b612afe565b905061317b81856000868660405180602001604052806000815250613c0a565b60005b835181101561327f57600084828151811061319b5761319b6154c3565b6020026020010151905060008483815181106131b9576131b96154c3565b602090810291909101810151600084815260d6835260408082206001600160a01b038c1683529093529190912054909150818110156132465760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610bec565b600092835260d6602090815260408085206001600160a01b038b1686529091529092209103905580613277816156c4565b91505061317e565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516132d09291906159c5565b60405180910390a46040805160208101909152600090525b50505050565b600580546001600160a01b0319166001600160a01b0383169081179091556040517f299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33390600090a250565b60006001805461334790615431565b80601f016020809104026020016040519081016040528092919081815260200182805461337390615431565b80156133c05780601f10613395576101008083540402835291602001916133c0565b820191906000526020600020905b8154815290600101906020018083116133a357829003601f168201915b505085519394506133dc93600193506020870192509050614839565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a16818360405161340e9291906159ea565b60405180910390a15050565b61271081111561345e5760405162461bcd60e51b815260206004820152600f60248201526e45786365656473206d61782062707360881b6044820152606401610bec565b6040805180820182526001600160a01b038481168083526020808401868152600089815260048352869020945185546001600160a01b031916941693909317845591516001909301929092559151838152909185917f7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d91015b60405180910390a3505050565b816001600160a01b0316836001600160a01b031614156135585760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610bec565b6001600160a01b03838116600081815260d76020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191016134d7565b60606001600160a01b0383163b6136255760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610bec565b600080846001600160a01b0316846040516136409190615a0f565b600060405180830381855af49150503d806000811461367b576040519150601f19603f3d011682016040523d82523d6000602084013e613680565b606091505b50915091506136a88282604051806060016040528060278152602001615bd66027913961425b565b95945050505050565b600061297761010b546107f7612afe565b6000806136cf84866154ab565b60078054600181019091557fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880181905560008181526008602090815260409091208551929450849350613726929091860190614839565b50935093915050565b600054610100900460ff166137565760405162461bcd60e51b8152600401610bec90615a21565b61375e614294565b610d66816142bd565b600054610100900460ff1661378e5760405162461bcd60e51b8152600401610bec90615a21565b610d668161434c565b6000808281805b8751811015613859576137b2600283615836565b915060008882815181106137c8576137c86154c3565b6020026020010151905080841161380a576040805160208101869052908101829052606001604051602081830303815290604052805190602001209350613846565b604080516020810183905290810185905260600160405160208183030381529060405280519060200120935060018361384391906154ab565b92505b5080613851816156c4565b91505061379e565b50941495939450505050565b6001600160a01b0384166138c95760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b60006138d3612afe565b905060006138e08561435f565b905060006138ed8561435f565b90506138fd838989858589613c0a565b600086815260d6602090815260408083206001600160a01b038c168452909152902054858110156139835760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610bec565b600087815260d6602090815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906139c29084906154ab565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4613a22848a8a8a8a8a6143aa565b505050505050505050565b60606000613a3c836002615836565b613a479060026154ab565b67ffffffffffffffff811115613a5f57613a5f614b02565b6040519080825280601f01601f191660200182016040528015613a89576020820181803683370190505b509050600360fc1b81600081518110613aa457613aa46154c3565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613ad357613ad36154c3565b60200101906001600160f81b031916908160001a9053506000613af7846002615836565b613b029060016154ab565b90505b6001811115613b87577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110613b4357613b436154c3565b1a60f81b828281518110613b5957613b596154c3565b60200101906001600160f81b031916908160001a90535060049490941c93613b8081615896565b9050613b05565b508315613bd65760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bec565b9392505050565b3360009081526040602081905281205460ff1615613c02575060131936013560601c90565b503390565b90565b61010a546000908152600a6020908152604080832083805290915290205460ff16158015613c4057506001600160a01b03851615155b8015613c5457506001600160a01b03841615155b15613d0c5761010a546000908152600a602090815260408083206001600160a01b038916845290915290205460ff1680613cb4575061010a546000908152600a602090815260408083206001600160a01b038816845290915290205460ff165b613d0c5760405162461bcd60e51b8152602060048201526024808201527f7265737472696374656420746f205452414e534645525f524f4c4520686f6c6460448201526332b9399760e11b6064820152608401610bec565b6001600160a01b038516613d945760005b8351811015613d9257828181518110613d3857613d386154c3565b602002602001015161010c6000868481518110613d5757613d576154c3565b602002602001015181526020019081526020016000206000828254613d7c91906154ab565b90915550613d8b9050816156c4565b9050613d1d565b505b6001600160a01b038416612d7a5760005b8351811015612e7b57828181518110613dc057613dc06154c3565b602002602001015161010c6000868481518110613ddf57613ddf6154c3565b602002602001015181526020019081526020016000206000828254613e04919061587f565b90915550613e139050816156c4565b9050613da5565b6001600160a01b0384163b15612d7a5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190613e5e9089908990889088908890600401615a6c565b6020604051808303816000875af1925050508015613e99575060408051601f3d908101601f19168201909252613e9691810190615abe565b60015b613f4f57613ea5615adb565b806308c379a01415613edf5750613eba615af6565b80613ec55750613ee1565b8060405162461bcd60e51b8152600401610bec91906149ae565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610bec565b6001600160e01b0319811663bc197c8160e01b14612e7b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610bec565b6000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916600117905551339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000828152600c602052604081208054916001919061403a83856154ab565b90915550506000928352600c6020908152604080852083865260018101835281862080546001600160a01b039096166001600160a01b03199096168617905593855260029093019052912055565b6140928282612a7e565b6000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b806140f4576132e8565b6001600160a01b03841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156141285761412382826144a6565b6132e8565b6132e884848484614549565b6001600160a01b0384166141945760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b600061419e612afe565b905060006141ab8561435f565b905060006141b88561435f565b90506141c983600089858589613c0a565b600086815260d6602090815260408083206001600160a01b038b168452909152812080548792906141fb9084906154ab565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612e7b836000898989896143aa565b6060831561426a575081613bd6565b82511561427a5782518084602001fd5b8160405162461bcd60e51b8152600401610bec91906149ae565b600054610100900460ff166142bb5760405162461bcd60e51b8152600401610bec90615a21565b565b600054610100900460ff166142e45760405162461bcd60e51b8152600401610bec90615a21565b60005b815181101561114457600160406000848481518110614308576143086154c3565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580614344816156c4565b9150506142e7565b80516111449060d8906020840190614839565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110614399576143996154c3565b602090810291909101015292915050565b6001600160a01b0384163b15612d7a5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906143ee9089908990889088908890600401615b80565b6020604051808303816000875af1925050508015614429575060408051601f3d908101601f1916820190925261442691810190615abe565b60015b61443557613ea5615adb565b6001600160e01b0319811663f23a6e6160e01b14612e7b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610bec565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146144f3576040519150601f19603f3d011682016040523d82523d6000602084013e6144f8565b606091505b50509050806118735760405162461bcd60e51b815260206004820152601c60248201527f6e617469766520746f6b656e207472616e73666572206661696c6564000000006044820152606401610bec565b816001600160a01b0316836001600160a01b03161415614568576132e8565b6001600160a01b03831630141561458d576141236001600160a01b03851683836145a2565b6132e86001600160a01b03851684848461461a565b6040516001600160a01b03831660248201526044810182905261187390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152614652565b6040516001600160a01b03808516602483015283166044820152606481018290526132e89085906323b872dd60e01b906084016145ce565b60006146a7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166147249092919063ffffffff16565b80519091501561187357808060200190518101906146c59190615bb8565b6118735760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bec565b606061173b8484600085856001600160a01b0385163b6147865760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bec565b600080866001600160a01b031685876040516147a29190615a0f565b60006040518083038185875af1925050503d80600081146147df576040519150601f19603f3d011682016040523d82523d6000602084013e6147e4565b606091505b50915091506147f482828661425b565b979650505050505050565b50805461480b90615431565b6000825580601f1061481b575050565b601f016020900490600052602060002090810190610d6691906148bd565b82805461484590615431565b90600052602060002090601f01602090048101928261486757600085556148ad565b82601f1061488057805160ff19168380011785556148ad565b828001600101855582156148ad579182015b828111156148ad578251825591602001919060010190614892565b506148b99291506148bd565b5090565b5b808211156148b957600081556001016148be565b6001600160a01b0381168114610d6657600080fd5b80356148f2816148d2565b919050565b6000806040838503121561490a57600080fd5b8235614915816148d2565b946020939093013593505050565b6001600160e01b031981168114610d6657600080fd5b60006020828403121561494b57600080fd5b8135613bd681614923565b60005b83811015614971578181015183820152602001614959565b838111156132e85750506000910152565b6000815180845261499a816020860160208601614956565b601f01601f19169290920160200192915050565b602081526000613bd66020830184614982565b6000602082840312156149d357600080fd5b5035919050565b6000602082840312156149ec57600080fd5b8135613bd6816148d2565b60008083601f840112614a0957600080fd5b50813567ffffffffffffffff811115614a2157600080fd5b6020830191508360208260051b8501011115614a3c57600080fd5b9250929050565b8015158114610d6657600080fd5b60008060008060608587031215614a6757600080fd5b84359350602085013567ffffffffffffffff811115614a8557600080fd5b614a91878288016149f7565b9094509250506040850135614aa581614a43565b939692955090935050565b60008060408385031215614ac357600080fd5b823591506020830135614ad5816148d2565b809150509250929050565b60008060408385031215614af357600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715614b3e57614b3e614b02565b6040525050565b600067ffffffffffffffff821115614b5f57614b5f614b02565b5060051b60200190565b600082601f830112614b7a57600080fd5b81356020614b8782614b45565b604051614b948282614b18565b83815260059390931b8501820192828101915086841115614bb457600080fd5b8286015b84811015614bcf5780358352918301918301614bb8565b509695505050505050565b600082601f830112614beb57600080fd5b813567ffffffffffffffff811115614c0557614c05614b02565b604051614c1c601f8301601f191660200182614b18565b818152846020838601011115614c3157600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215614c6657600080fd5b8535614c71816148d2565b94506020860135614c81816148d2565b9350604086013567ffffffffffffffff80821115614c9e57600080fd5b614caa89838a01614b69565b94506060880135915080821115614cc057600080fd5b614ccc89838a01614b69565b93506080880135915080821115614ce257600080fd5b50614cef88828901614bda565b9150509295509295909350565b600082601f830112614d0d57600080fd5b81356020614d1a82614b45565b604051614d278282614b18565b83815260059390931b8501820192828101915086841115614d4757600080fd5b8286015b84811015614bcf578035614d5e816148d2565b8352918301918301614d4b565b60008060408385031215614d7e57600080fd5b823567ffffffffffffffff80821115614d9657600080fd5b614da286838701614cfc565b93506020850135915080821115614db857600080fd5b50614dc585828601614b69565b9150509250929050565b600081518084526020808501945080840160005b83811015614dff57815187529582019590820190600101614de3565b509495945050505050565b602081526000613bd66020830184614dcf565b600060808284031215611cc257600080fd5b600080600080600080600060e0888a031215614e4a57600080fd5b8735614e55816148d2565b965060208801359550604088013594506060880135614e73816148d2565b93506080880135925060a088013567ffffffffffffffff80821115614e9757600080fd5b614ea38b838c01614e1d565b935060c08a0135915080821115614eb957600080fd5b50614ec68a828b01614bda565b91505092959891949750929550565b600080600060608486031215614eea57600080fd5b83359250602084013591506040840135614f03816148d2565b809150509250925092565b600080600060608486031215614f2357600080fd5b8335614f2e816148d2565b9250602084013567ffffffffffffffff80821115614f4b57600080fd5b614f5787838801614b69565b93506040860135915080821115614f6d57600080fd5b50614f7a86828701614b69565b9150509250925092565b600060208284031215614f9657600080fd5b813567ffffffffffffffff811115614fad57600080fd5b61173b84828501614bda565b600080600060608486031215614fce57600080fd5b833592506020840135614fe0816148d2565b929592945050506040919091013590565b6000806040838503121561500457600080fd5b823561500f816148d2565b91506020830135614ad581614a43565b6000806020838503121561503257600080fd5b823567ffffffffffffffff81111561504957600080fd5b615055858286016149f7565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156150b657603f198886030184526150a4858351614982565b94509285019290850190600101615088565b5092979650505050505050565b60008083601f8401126150d557600080fd5b50813567ffffffffffffffff8111156150ed57600080fd5b602083019150836020828501011115614a3c57600080fd5b60008060008060006060868803121561511d57600080fd5b85359450602086013567ffffffffffffffff8082111561513c57600080fd5b61514889838a016150c3565b9096509450604088013591508082111561516157600080fd5b5061516e888289016150c3565b969995985093965092949392505050565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c08201526001600160a01b0360c08301511660e0820152600060e083015161010080818501525061173b610120840182614982565b80356fffffffffffffffffffffffffffffffff811681146148f257600080fd5b6000806000806000806000806000806101408b8d03121561522d57600080fd5b6152368b6148e7565b995060208b013567ffffffffffffffff8082111561525357600080fd5b61525f8e838f01614bda565b9a5060408d013591508082111561527557600080fd5b6152818e838f01614bda565b995060608d013591508082111561529757600080fd5b6152a38e838f01614bda565b985060808d01359150808211156152b957600080fd5b506152c68d828e01614cfc565b9650506152d560a08c016148e7565b94506152e360c08c016148e7565b93506152f160e08c016151ed565b92506153006101008c016151ed565b915061530f6101208c016148e7565b90509295989b9194979a5092959850565b6000806040838503121561533357600080fd5b823561533e816148d2565b91506020830135614ad5816148d2565b600080600080600080600060e0888a03121561536957600080fd5b87359650602088013561537b816148d2565b955060408801359450606088013593506080880135615399816148d2565b925060a0880135915060c088013567ffffffffffffffff8111156153bc57600080fd5b614ec68a828b01614e1d565b600080600080600060a086880312156153e057600080fd5b85356153eb816148d2565b945060208601356153fb816148d2565b93506040860135925060608601359150608086013567ffffffffffffffff81111561542557600080fd5b614cef88828901614bda565b600181811c9082168061544557607f821691505b60208210811415611cc257634e487b7160e01b600052602260045260246000fd5b60008351615478818460208801614956565b83519083019061548c818360208801614956565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156154be576154be615495565b500190565b634e487b7160e01b600052603260045260246000fd5b6000823560fe198336030181126154ef57600080fd5b9190910192915050565b6000808335601e1984360301811261551057600080fd5b83018035915067ffffffffffffffff82111561552b57600080fd5b602001915036819003821315614a3c57600080fd5b601f82111561187357600081815260208120601f850160051c810160208610156155675750805b601f850160051c820191505b81811015612d7a57828155600101615573565b67ffffffffffffffff83111561559e5761559e614b02565b6155b2836155ac8354615431565b83615540565b6000601f8411600181146155e657600085156155ce5750838201355b600019600387901b1c1916600186901b178355611304565b600083815260209020601f19861690835b8281101561561757868501358255602094850194600190920191016155f7565b50868210156156345760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a082013560058201556006810160c083013561568e816148d2565b81546001600160a01b0319166001600160a01b03919091161790556156b660e08301836154f9565b6132e8818360078601615586565b60006000198214156156d8576156d8615495565b5060010190565b6000808335601e198436030181126156f657600080fd5b830160208101925035905067ffffffffffffffff81111561571657600080fd5b803603831315614a3c57600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408082528181018490526000906060808401600587901b850182018885805b8a81101561582057888403605f190185528235368d900360fe19018112615793578283fd5b8c018035855260208082013581870152888201358987015287820135888701526080808301359087015260a080830135908701526101009060c0808401356157da816148d2565b6001600160a01b03169088015260e06157f5848201856156df565b945083828a0152615809848a018683615725565b99830199985050509490940193505060010161576e565b5050508615156020870152935061173b92505050565b600081600019048311821515161561585057615850615495565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261587a5761587a615855565b500490565b60008282101561589157615891615495565b500390565b6000816158a5576158a5615495565b506000190190565b8581526060602082015260006158c7606083018688615725565b82810360408401526158da818587615725565b98975050505050505050565b6000808335601e198436030181126158fd57600080fd5b83018035915067ffffffffffffffff82111561591857600080fd5b6020019150600581901b3603821315614a3c57600080fd5b60008261593f5761593f615855565b500690565b7f5065726d697373696f6e733a206163636f756e7420000000000000000000000081526000835161597c816015850160208801614956565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060159184019182015283516159b9816026840160208801614956565b01602601949350505050565b6040815260006159d86040830185614dcf565b82810360208401526136a88185614dcf565b6040815260006159fd6040830185614982565b82810360208401526136a88185614982565b600082516154ef818460208701614956565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60006001600160a01b03808816835280871660208401525060a06040830152615a9860a0830186614dcf565b8281036060840152615aaa8186614dcf565b905082810360808401526158da8185614982565b600060208284031215615ad057600080fd5b8151613bd681614923565b600060033d1115613c075760046000803e5060005160e01c90565b600060443d1015615b045790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715615b3457505050505090565b8285019150815181811115615b4c5750505050505090565b843d8701016020828501011115615b665750505050505090565b615b7560208286010187614b18565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a060808301526147f460a0830184614982565b600060208284031215615bca57600080fd5b8151613bd681614a4356fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220453bb671b5ad373b339965d64801e9e903dd89d4d258360b667e5cef1b2a02eb64736f6c634300080c0033
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.