Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
48296145 | 478 days ago | Contract Creation | 0 POL |
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 20 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; /// @author thirdweb // $$\ $$\ $$\ $$\ $$\ // $$ | $$ | \__| $$ | $$ | // $$$$$$\ $$$$$$$\ $$\ $$$$$$\ $$$$$$$ |$$\ $$\ $$\ $$$$$$\ $$$$$$$\ // \_$$ _| $$ __$$\ $$ |$$ __$$\ $$ __$$ |$$ | $$ | $$ |$$ __$$\ $$ __$$\ // $$ | $$ | $$ |$$ |$$ | \__|$$ / $$ |$$ | $$ | $$ |$$$$$$$$ |$$ | $$ | // $$ |$$\ $$ | $$ |$$ |$$ | $$ | $$ |$$ | $$ | $$ |$$ ____|$$ | $$ | // \$$$$ |$$ | $$ |$$ |$$ | \$$$$$$$ |\$$$$$\$$$$ |\$$$$$$$\ $$$$$$$ | // \____/ \__| \__|\__|\__| \_______| \_____\____/ \_______|\_______/ // ========== 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 "../../external-deps/openzeppelin/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 Only METADATA_ROLE holders can reveal the URI for a batch of delayed reveal NFTs, and update or freeze batch metadata. bytes32 private metadataRole; /// @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 Initializes 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"); bytes32 _metadataRole = keccak256("METADATA_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)); _setupRole(_metadataRole, _defaultAdmin); _setRoleAdmin(_metadataRole, _metadataRole); _setupPlatformFeeInfo(_platformFeeRecipient, _platformFeeBps); _setupDefaultRoyaltyInfo(_royaltyRecipient, _royaltyBps); _setupPrimarySaleRecipient(_saleRecipient); transferRole = _transferRole; minterRole = _minterRole; metadataRole = _metadataRole; 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); } /** * @notice Updates the base URI for a batch of tokens. * * @param _index Index of the desired batch in batchIds array. * @param _uri the new base URI for the batch. */ function updateBatchBaseURI(uint256 _index, string calldata _uri) external onlyRole(metadataRole) { uint256 batchId = getBatchIdAtIndex(_index); _setBaseURI(batchId, _uri); } /** * @notice Freezes the base URI for a batch of tokens. * * @param _index Index of the desired batch in batchIds array. */ function freezeBatchBaseURI(uint256 _index) external onlyRole(metadataRole) { uint256 batchId = getBatchIdAtIndex(_index); _freezeBaseURI(batchId); } /*/////////////////////////////////////////////////////////////// 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) { require(msg.value == 0, "!V"); 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; bool validMsgValue; if (_currency == CurrencyTransferLib.NATIVE_TOKEN) { validMsgValue = msg.value == totalPrice; } else { validMsgValue = msg.value == 0; } require(validMsgValue, "!V"); 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 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; /** * @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: 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: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @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; /// @dev Mapping from id of a batch of tokens => to whether the base URI for the respective batch of tokens is frozen. mapping(uint256 => bool) public batchFrozen; /// @dev This event emits when the metadata of all tokens are frozen. /// While not currently supported by marketplaces, this event allows /// future indexing if desired. event MetadataFrozen(); // @dev This event emits when the metadata of a range of tokens is updated. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); /** * @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 at the given index. * @dev See {getBaseURICount}. * @param _index Index of the desired batch in batchIds array. */ 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 returns the starting tokenId of a given batchId. function _getBatchStartId(uint256 _batchID) internal view returns (uint256) { uint256 numOfTokenBatches = getBaseURICount(); uint256[] memory indices = batchIds; for (uint256 i = 0; i < numOfTokenBatches; i++) { if (_batchID == indices[i]) { if (i > 0) { return indices[i - 1]; } return 0; } } revert("Invalid batchId"); } /// @dev Sets the base URI for the batch of tokens with the given batchId. function _setBaseURI(uint256 _batchId, string memory _baseURI) internal { require(!batchFrozen[_batchId], "Batch frozen"); baseURI[_batchId] = _baseURI; emit BatchMetadataUpdate(_getBatchStartId(_batchId), _batchId); } /// @dev Freezes the base URI for the batch of tokens with the given batchId. function _freezeBaseURI(uint256 _batchId) internal { string memory baseURIForBatch = baseURI[_batchId]; require(bytes(baseURIForBatch).length > 0, "Invalid batch"); batchFrozen[_batchId] = true; emit MetadataFrozen(); } /// @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; /// @author thirdweb 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; /// @author thirdweb 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: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb 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; /// @author thirdweb 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; /// @author thirdweb 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; /// @author thirdweb 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; /// @author thirdweb 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 Fee type variants: percentage fee and flat fee PlatformFeeType private platformFeeType; /// @dev The flat amount collected by the contract as fees on primary sales. uint256 private flatPlatformFee; /// @dev Returns the platform fee recipient and bps. function getPlatformFeeInfo() public view override returns (address, uint16) { return (platformFeeRecipient, uint16(platformFeeBps)); } /// @dev Returns the platform fee bps and recipient. function getFlatPlatformFeeInfo() public view returns (address, uint256) { return (platformFeeRecipient, flatPlatformFee); } /// @dev Returns the platform fee bps and recipient. function getPlatformFeeType() public view returns (PlatformFeeType) { return platformFeeType; } /** * @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 Sets 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); } /// @notice Lets a module admin set a flat fee on primary sales. function setFlatPlatformFeeInfo(address _platformFeeRecipient, uint256 _flatFee) external { if (!_canSetPlatformFeeInfo()) { revert("Not authorized"); } _setupFlatPlatformFeeInfo(_platformFeeRecipient, _flatFee); } /// @dev Sets a flat fee on primary sales. function _setupFlatPlatformFeeInfo(address _platformFeeRecipient, uint256 _flatFee) internal { flatPlatformFee = _flatFee; platformFeeRecipient = _platformFeeRecipient; emit FlatPlatformFeeUpdated(_platformFeeRecipient, _flatFee); } /// @notice Lets a module admin set platform fee type. function setPlatformFeeType(PlatformFeeType _feeType) external { if (!_canSetPlatformFeeInfo()) { revert("Not authorized"); } _setupPlatformFeeType(_feeType); } /// @dev Sets platform fee type. function _setupPlatformFeeType(PlatformFeeType _feeType) internal { platformFeeType = _feeType; emit PlatformFeeTypeUpdated(_feeType); } /// @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; /// @author thirdweb 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; /// @author thirdweb 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; /// @author thirdweb /** * 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; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb 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; /// @author thirdweb /** * 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; /// @author thirdweb 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 Proof 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: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * 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; /// @author thirdweb /** * 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; /// @author thirdweb /** * @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: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb 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; /// @author thirdweb /** * 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 Fee type variants: percentage fee and flat fee enum PlatformFeeType { Bps, Flat } /// @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); /// @dev Emitted when the flat platform fee is updated. event FlatPlatformFeeUpdated(address platformFeeRecipient, uint256 flatFee); /// @dev Emitted when the platform fee type is updated. event PlatformFeeTypeUpdated(PlatformFeeType feeType); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * 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; /// @author thirdweb 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: 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: 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; interface IWETH { function deposit() external payable; function withdraw(uint256 amount) external; function transfer(address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb // Helper interfaces import { IWETH } from "../infra/interface/IWETH.sol"; import "../external-deps/openzeppelin/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; /// @author thirdweb /** * @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; /// @author thirdweb /** * @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; /// @author thirdweb /** * @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: 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 (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 (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) (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 (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 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 (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 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 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); }
{ "optimizer": { "enabled": true, "runs": 20 }, "evmVersion": "london", "remappings": [ ":@chainlink/=lib/chainlink/", ":@ds-test/=lib/ds-test/src/", ":@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", ":@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", ":@std/=lib/forge-std/src/", ":@thirdweb-dev/dynamic-contracts/=lib/dynamic-contracts/", ":ERC721A-Upgradeable/=lib/ERC721A-Upgradeable/contracts/", ":ERC721A/=lib/ERC721A/contracts/", ":chainlink/=lib/chainlink/", ":contracts/=contracts/", ":ds-test/=lib/ds-test/src/", ":dynamic-contracts/=lib/dynamic-contracts/src/", ":erc4626-tests/=lib/chainlink/contracts/foundry-lib/openzeppelin-contracts/lib/erc4626-tests/", ":erc721a-upgradeable/=lib/ERC721A-Upgradeable/", ":erc721a/=lib/ERC721A/", ":forge-std/=lib/forge-std/src/", ":openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", ":openzeppelin-contracts/=lib/openzeppelin-contracts/", ":sstore2/=lib/dynamic-contracts/lib/sstore2/contracts/" ], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","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":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"flatFee","type":"uint256"}],"name":"FlatPlatformFeeUpdated","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":[],"name":"MetadataFrozen","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":false,"internalType":"enum IPlatformFee.PlatformFeeType","name":"feeType","type":"uint8"}],"name":"PlatformFeeTypeUpdated","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":"uint256","name":"","type":"uint256"}],"name":"batchFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_index","type":"uint256"}],"name":"freezeBatchBaseURI","outputs":[],"stateMutability":"nonpayable","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":"getFlatPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlatformFeeType","outputs":[{"internalType":"enum IPlatformFee.PlatformFeeType","name":"","type":"uint8"}],"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":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_flatFee","type":"uint256"}],"name":"setFlatPlatformFeeInfo","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":"enum IPlatformFee.PlatformFeeType","name":"_feeType","type":"uint8"}],"name":"setPlatformFeeType","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":"_index","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateBatchBaseURI","outputs":[],"stateMutability":"nonpayable","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
60806040523480156200001157600080fd5b50600054610100900460ff1615808015620000335750600054600160ff909116105b8062000063575062000050306200013d60201b620026001760201c565b15801562000063575060005460ff166001145b620000cb5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b6000805460ff191660011790558015620000ef576000805461ff0019166101001790555b801562000136576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b506200014c565b6001600160a01b03163b151590565b615f29806200015c6000396000f3fe6080604052600436106102c15760003560e01c80638da5cb5b116101775780638da5cb5b146107215780639010d07c1461073f57806391d148541461075f578063938e3d7b1461077f57806395d89b411461079f5780639bcf7a15146107b4578063a07ced9e146107d4578063a0a8e460146107f4578063a217fddf14610810578063a22cb46514610825578063a32fa5b314610845578063ac9650d814610865578063b24f2d3914610892578063b6f10c79146108bd578063bd85b039146108dd578063c7337d6b1461090b578063ca15c87314610942578063cb2ef6f714610962578063d37c353b14610983578063d45573f6146109a3578063d45b28d7146109b8578063d547741f146109e5578063de903ddd14610a05578063e159163414610a25578063e57553da14610a45578063e8a3d48514610a69578063e9703d2514610a7e578063e985e9c514610ac7578063ea1def9c14610b10578063f242432a14610b30578063f28083c314610b5057600080fd5b8062fdd58e146102c657806301ffc9a7146102f957806306fdde0314610329578063079fe40e1461034b5780630e89341c1461036d57806313af40351461038d578063183718d1146103af5780631e7ac488146103cf5780632419f51b146103ef578063248a9ca31461040f57806324aaffaa1461043c57806329c49b9b1461046a5780632a55205a1461048a5780632eb2c2d6146104b85780632f2ff15d146104d857806336568abe146104f85780633b1475a7146105185780634cc157df1461052d5780634e1273f41461056f578063572b6c051461059c57806357bc3d78146105bc5780635811ddab146105cf5780635ab063e81461061c578063600dd5ea1461063c57806363b45e2d1461065c5780636b20c454146106715780636f4f2837146106915780637e54523c146106b157806383040532146106d157806387198cf214610701575b600080fd5b3480156102d257600080fd5b506102e66102e136600461496d565b610b77565b6040519081526020015b60405180910390f35b34801561030557600080fd5b506103196103143660046149af565b610c12565b60405190151581526020016102f0565b34801561033557600080fd5b5061033e610c3a565b6040516102f09190614a24565b34801561035757600080fd5b50610360610cc9565b6040516102f09190614a37565b34801561037957600080fd5b5061033e610388366004614a4b565b610cd8565b34801561039957600080fd5b506103ad6103a8366004614a64565b610d19565b005b3480156103bb57600080fd5b506103ad6103ca366004614ada565b610d49565b3480156103db57600080fd5b506103ad6103ea36600461496d565b6110a9565b3480156103fb57600080fd5b506102e661040a366004614a4b565b6110db565b34801561041b57600080fd5b506102e661042a366004614a4b565b6000908152600d602052604090205490565b34801561044857600080fd5b506102e6610457366004614a4b565b6101106020526000908152604090205481565b34801561047657600080fd5b506103ad610485366004614b38565b611149565b34801561049657600080fd5b506104aa6104a5366004614b68565b6111bc565b6040516102f0929190614b8a565b3480156104c457600080fd5b506103ad6104d3366004614cec565b6111f9565b3480156104e457600080fd5b506103ad6104f3366004614b38565b611257565b34801561050457600080fd5b506103ad610513366004614b38565b6112ed565b34801561052457600080fd5b50600b546102e6565b34801561053957600080fd5b5061054d610548366004614a4b565b61134c565b604080516001600160a01b03909316835261ffff9091166020830152016102f0565b34801561057b57600080fd5b5061058f61058a366004614e08565b6113b7565b6040516102f09190614ea6565b3480156105a857600080fd5b506103196105b7366004614a64565b6114e0565b6103ad6105ca366004614ecb565b6114fe565b3480156105db57600080fd5b506102e66105ea366004614f70565b6000928352600f60209081526040808520938552600390930181528284206001600160a01b0390921684525290205490565b34801561062857600080fd5b506102e6610637366004614a4b565b611641565b34801561064857600080fd5b506103ad61065736600461496d565b6116f2565b34801561066857600080fd5b506008546102e6565b34801561067d57600080fd5b506103ad61068c366004614fa9565b611720565b34801561069d57600080fd5b506103ad6106ac366004614a64565b6117bd565b3480156106bd57600080fd5b506103ad6106cc36600461496d565b6117ea565b3480156106dd57600080fd5b506103196106ec366004614a4b565b600a6020526000908152604090205460ff1681565b34801561070d57600080fd5b506103ad61071c366004614b68565b611818565b34801561072d57600080fd5b506007546001600160a01b0316610360565b34801561074b57600080fd5b5061036061075a366004614b68565b611875565b34801561076b57600080fd5b5061031961077a366004614b38565b611964565b34801561078b57600080fd5b506103ad61079a36600461501e565b61198f565b3480156107ab57600080fd5b5061033e6119bc565b3480156107c057600080fd5b506103ad6107cf366004615052565b6119ca565b3480156107e057600080fd5b506103ad6107ef366004614a4b565b6119f9565b34801561080057600080fd5b50604051600481526020016102f0565b34801561081c57600080fd5b506102e6600081565b34801561083157600080fd5b506103ad61084036600461508a565b611a1d565b34801561085157600080fd5b50610319610860366004614b38565b611a2f565b34801561087157600080fd5b506108856108803660046150b8565b611a85565b6040516102f091906150f9565b34801561089e57600080fd5b506004546001600160a01b03811690600160a01b900461ffff1661054d565b3480156108c957600080fd5b506103ad6108d836600461515b565b611b79565b3480156108e957600080fd5b506102e66108f8366004614a4b565b61010f6020526000908152604090205481565b34801561091757600080fd5b50610360610926366004614a4b565b610111602052600090815260409020546001600160a01b031681565b34801561094e57600080fd5b506102e661095d366004614a4b565b611ba6565b34801561096e57600080fd5b506a44726f704552433131353560a81b6102e6565b34801561098f57600080fd5b506102e661099e3660046151bd565b611c2f565b3480156109af57600080fd5b5061054d611d39565b3480156109c457600080fd5b506109d86109d3366004614b68565b611d56565b6040516102f09190615236565b3480156109f157600080fd5b506103ad610a00366004614b38565b611ebd565b348015610a1157600080fd5b506103ad610a203660046152a3565b611ed6565b348015610a3157600080fd5b506103ad610a40366004615305565b611f31565b348015610a5157600080fd5b506104aa6002546003546001600160a01b0390911691565b348015610a7557600080fd5b5061033e612196565b348015610a8a57600080fd5b50610ab2610a99366004614a4b565b600f602052600090815260409020805460019091015482565b604080519283526020830191909152016102f0565b348015610ad357600080fd5b50610319610ae2366004615417565b6001600160a01b03918216600090815260d96020908152604080832093909416825291909152205460ff1690565b348015610b1c57600080fd5b50610319610b2b366004615445565b6121a3565b348015610b3c57600080fd5b506103ad610b4b3660046154be565b6125a9565b348015610b5c57600080fd5b50600254600160b01b900460ff166040516102f0919061553c565b60006001600160a01b038316610be75760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b50600081815260d8602090815260408083206001600160a01b03861684529091529020545b92915050565b6000610c1d8261260f565b80610c0c5750506001600160e01b03191663152a902d60e11b1490565b61010a8054610c4890615564565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7490615564565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b505050505081565b6006546001600160a01b031690565b60606000610ce58361265f565b905080610cf1846127fb565b604051602001610d02929190615599565b604051602081830303815290604052915050919050565b610d216128f8565b610d3d5760405162461bcd60e51b8152600401610bde906155c8565b610d468161290b565b50565b610d516128f8565b610d6d5760405162461bcd60e51b8152600401610bde906155c8565b6000848152600f6020526040902080546001820154818415610d9657610d938284615606565b90505b600184018690558084556000805b87811015610f4f57801580610ddc5750888882818110610dc657610dc661561e565b9050602002810190610dd89190615634565b3582105b610e0d5760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610bde565b60006002870181610e1e8487615606565b8152602001908152602001600020600201549050898983818110610e4457610e4461561e565b9050602002810190610e569190615634565b60200135811115610e9e5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e4818db185a5b595960721b6044820152606401610bde565b898983818110610eb057610eb061561e565b9050602002810190610ec29190615634565b600288016000610ed28588615606565b81526020019081526020016000208181610eec919061579f565b50819050600288016000610f008588615606565b8152602081019190915260400160002060020155898983818110610f2657610f2661561e565b9050602002810190610f389190615634565b359250819050610f478161581d565b915050610da4565b508515610fd157835b82811015610fcb576000818152600280880160205260408220828155600181018390559081018290556003810182905560048101829055600581018290556006810180546001600160a01b031916905590610fb66007830182614875565b50508080610fc39061581d565b915050610f58565b50611062565b8683111561106257865b8381101561106057600286016000610ff38386615606565b81526020810191909152604001600090812081815560018101829055600281018290556003810182905560048101829055600581018290556006810180546001600160a01b03191690559061104b6007830182614875565b505080806110589061581d565b915050610fdb565b505b887f066f72a648b18490c0bc4ab07d508cdb5d6589fa188c63cfba1e0547f3a6556a898989604051611096939291906158a6565b60405180910390a2505050505050505050565b6110b16128f8565b6110cd5760405162461bcd60e51b8152600401610bde906155c8565b6110d7828261295d565b5050565b60006110e660085490565b82106111245760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b6044820152606401610bde565b600882815481106111375761113761561e565b90600052602060002001549050919050565b600061115581336129eb565b600083815261011160205260409081902080546001600160a01b0319166001600160a01b0385161790555183907f359479172ba65a6639b0df237f704e030498cb7135d5e89b56f598bd1d84b016906111af908590614a37565b60405180910390a2505050565b6000806000806111cb8661134c565b90945084925061ffff1690506127106111e4828761598e565b6111ee91906159c3565b925050509250929050565b611201612a6b565b6001600160a01b0316856001600160a01b03161480611227575061122785610ae2612a6b565b6112435760405162461bcd60e51b8152600401610bde906159d7565b6112508585858585612a75565b5050505050565b6000828152600d602052604090205461127090336129eb565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff16156112e35760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206772616e7420746f206e6f6e20686f6c646572730000006044820152606401610bde565b6110d78282612c2d565b336001600160a01b038216146113425760405162461bcd60e51b815260206004820152601a60248201527921b0b71037b7363c903932b737bab731b2903337b91039b2b63360311b6044820152606401610bde565b6110d78282612c41565b6000818152600560209081526040808320815180830190925280546001600160a01b03168083526001909101549282019290925282911561139357805160208201516113ad565b6004546001600160a01b03811690600160a01b900461ffff165b9250925050915091565b6060815183511461141c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610bde565b600083516001600160401b0381111561143757611437614ba3565b604051908082528060200260200182016040528015611460578160200160208202803683370190505b50905060005b84518110156114d8576114ab8582815181106114845761148461561e565b602002602001015185838151811061149e5761149e61561e565b6020026020010151610b77565b8282815181106114bd576114bd61561e565b60209081029190910101526114d18161581d565b9050611466565b509392505050565b6001600160a01b031660009081526042602052604090205460ff1690565b61150d86888787878787612c98565b600061151887611641565b905061153081611526612d29565b89898989896121a3565b506000878152600f6020908152604080832084845260029081019092528220018054889290611560908490615606565b90915550506000878152600f602090815260408083208484526003019091528120879161158b612d29565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546115ba9190615606565b909155506115ce9050876000888888612d33565b6115d9888888612e75565b876001600160a01b03166115eb612d29565b6001600160a01b0316827ffa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e8a8a60405161162f929190918252602082015260400190565b60405180910390a45050505050505050565b6000818152600f6020526040812060018101548154839161166191615606565b90505b81548111156116bb5760028201600061167e600184615a26565b81526020019081526020016000206000015442106116a9576116a1600182615a26565b949350505050565b806116b381615a3d565b915050611664565b5060405162461bcd60e51b815260206004820152600b60248201526a10a1a7a72224aa24a7a71760a91b6044820152606401610bde565b6116fa6128f8565b6117165760405162461bcd60e51b8152600401610bde906155c8565b6110d78282612e90565b611728612a6b565b6001600160a01b0316836001600160a01b0316148061174e575061174e83610ae2612a6b565b6117ad5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f726044820152691030b8383937bb32b21760b11b6064820152608401610bde565b6117b8838383612f0d565b505050565b6117c56128f8565b6117e15760405162461bcd60e51b8152600401610bde906155c8565b610d468161312d565b6117f26128f8565b61180e5760405162461bcd60e51b8152600401610bde906155c8565b6110d78282613177565b600061182481336129eb565b6000838152610110602090815260409182902084905581518581529081018490527fc58cd6132bb46df23d468939c03dd023b74b509aaa6b04c39d5a6461c65963bd910160405180910390a1505050565b6000828152600e602052604081205481805b8281101561195b576000868152600e602090815260408083208484526001019091529020546001600160a01b03161561190457848214156118f2576000868152600e602090815260408083209383526001909301905220546001600160a01b03169250610c0c915050565b6118fd600183615606565b9150611949565b61190f866000611964565b801561193657506000868152600e6020908152604080832083805260020190915290205481145b1561194957611946600183615606565b91505b611954600182615606565b9050611887565b50505092915050565b6000918252600c602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6119976128f8565b6119b35760405162461bcd60e51b8152600401610bde906155c8565b610d46816131d5565b61010b8054610c4890615564565b6119d26128f8565b6119ee5760405162461bcd60e51b8152600401610bde906155c8565b6117b88383836132ab565b61010e54611a0781336129eb565b6000611a12836110db565b90506117b881613353565b6110d7611a28612a6b565b8383613470565b6000828152600c6020908152604080832083805290915281205460ff16611a7c57506000828152600c602090815260408083206001600160a01b038516845290915290205460ff16610c0c565b50600192915050565b6060816001600160401b03811115611a9f57611a9f614ba3565b604051908082528060200260200182016040528015611ad257816020015b6060815260200190600190039081611abd5790505b50905060005b82811015611b7257611b4230858584818110611af657611af661561e565b9050602002810190611b089190615654565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061354992505050565b828281518110611b5457611b5461561e565b60200260200101819052508080611b6a9061581d565b915050611ad8565b5092915050565b611b816128f8565b611b9d5760405162461bcd60e51b8152600401610bde906155c8565b610d468161363b565b6000818152600e6020526040812054815b81811015611c0a576000848152600e602090815260408083208484526001019091529020546001600160a01b031615611bf857611bf5600184615606565b92505b611c03600182615606565b9050611bb7565b50611c16836000611964565b15611c2957611c26600183615606565b91505b50919050565b6000611c3961369f565b611c555760405162461bcd60e51b8152600401610bde906155c8565b85611c8a5760405162461bcd60e51b81526020600482015260056024820152640c08185b5d60da1b6044820152606401610bde565b6000600b549050611cd2818888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506136b092505050565b600b919091559150807f2a0365091ef1a40953c670dce28177e37520648a6fdc91506bffac0ab045570d6001611d088a84615606565b611d129190615a26565b88888888604051611d27959493929190615a54565b60405180910390a25095945050505050565b6002546001600160a01b03811691600160a01b90910461ffff1690565b611daa60405180610100016040528060008152602001600081526020016000815260200160008152602001600080191681526020016000815260200160006001600160a01b03168152602001606081525090565b6000838152600f6020908152604080832085845260029081018352928190208151610100810183528154815260018201549381019390935292830154908201526003820154606082015260048201546080820152600582015460a082015260068201546001600160a01b031660c082015260078201805491929160e084019190611e3390615564565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5f90615564565b8015611eac5780601f10611e8157610100808354040283529160200191611eac565b820191906000526020600020905b815481529060010190602001808311611e8f57829003601f168201915b505050505081525050905092915050565b6000828152600d602052604090205461134290336129eb565b61010e54611ee481336129eb565b6000611eef856110db565b90506112508185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061371d92505050565b600054610100900460ff1615808015611f515750600054600160ff909116105b80611f725750611f6030612600565b158015611f72575060005460ff166001145b611fd55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bde565b6000805460ff191660011790558015611ff8576000805461ff0019166101001790555b7f8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a67f6bd6b5318a46e5fff572d5e4258a20774aab40cc35ac7680654b9081fcc82f806120648a6137c9565b61207c60405180602001604052806000815250613801565b6120858b6131d5565b61208e8e61290b565b61209960008f612c2d565b6120a3828f612c2d565b6120ad838f612c2d565b6120b8836000612c2d565b6120c2818f612c2d565b6120cc8182613831565b6120df85876001600160801b031661295d565b6120f288886001600160801b0316612e90565b6120fb8961312d565b8261010c819055508161010d819055508061010e819055508c61010a908051906020019061212a9291906148af565b508b5161213f9061010b9060208f01906148af565b505050508015612189576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b60018054610c4890615564565b6000858152600f602090815260408083208a8452600290810183528184208251610100810184528154815260018201549481019490945290810154918301919091526003810154606083015260048101546080830152600581015460a083015260068101546001600160a01b031660c08301526007810180548493929160e084019161222e90615564565b80601f016020809104026020016040519081016040528092919081815260200182805461225a90615564565b80156122a75780601f1061227c576101008083540402835291602001916122a7565b820191906000526020600020905b81548152906001019060200180831161228a57829003601f168201915b50505091909252505050606081015160a082015160c08301516080840151939450919290919015612387576123836122df8780615a8d565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250505060808088015191508e9060208b01359060408c013590612334908d0160608e01614a64565b6040516001600160601b0319606095861b811660208301526034820194909452605481019290925290921b16607482015260880160405160208183030381529060405280519060200120613879565b5094505b841561240c57602086013561239c57826123a2565b85602001355b9250600019866040013514156123b857816123be565b85604001355b91506000198660400135141580156123ef575060006123e36080880160608901614a64565b6001600160a01b031614155b6123f95780612409565b6124096080870160608801614a64565b90505b6000600f60008c815260200190815260200160002060030160008e815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020549050816001600160a01b0316896001600160a01b031614158061247c5750828814155b156124bc5760405162461bcd60e51b815260206004820152601060248201526f2150726963654f7243757272656e637960801b6044820152606401610bde565b8915806124d15750836124cf828c615606565b115b156125075760405162461bcd60e51b8152600401610bde906020808252600490820152632151747960e01b604082015260600190565b84602001518a866040015161251c9190615606565b11156125575760405162461bcd60e51b815260206004820152600a602482015269214d6178537570706c7960b01b6044820152606401610bde565b84514210156125995760405162461bcd60e51b815260206004820152600e60248201526d18d85b9d0818db185a5b481e595d60921b6044820152606401610bde565b5050505050979650505050505050565b6125b1612a6b565b6001600160a01b0316856001600160a01b031614806125d757506125d785610ae2612a6b565b6125f35760405162461bcd60e51b8152600401610bde906159d7565b6112508585858585613947565b6001600160a01b03163b151590565b60006001600160e01b03198216636cdb3d1360e11b148061264057506001600160e01b031982166303a24d0760e21b145b80610c0c57506301ffc9a760e01b6001600160e01b0319831614610c0c565b6060600061266c60085490565b9050600060088054806020026020016040519081016040528092919081815260200182805480156126bc57602002820191906000526020600020905b8154815260200190600101908083116126a8575b5050505050905060005b828110156127c0578181815181106126e0576126e061561e565b60200260200101518510156127ae57600960008383815181106127055761270561561e565b60200260200101518152602001908152602001600020805461272690615564565b80601f016020809104026020016040519081016040528092919081815260200182805461275290615564565b801561279f5780601f106127745761010080835404028352916020019161279f565b820191906000526020600020905b81548152906001019060200180831161278257829003601f168201915b50505050509350505050919050565b6127b9600182615606565b90506126c6565b5060405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b6044820152606401610bde565b60608161281f5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561284957806128338161581d565b91506128429050600a836159c3565b9150612823565b6000816001600160401b0381111561286357612863614ba3565b6040519080825280601f01601f19166020018201604052801561288d576020820181803683370190505b5090505b84156116a1576128a2600183615a26565b91506128af600a86615ad6565b6128ba906030615606565b60f81b8183815181106128cf576128cf61561e565b60200101906001600160f81b031916908160001a9053506128f1600a866159c3565b9450612891565b60006129068161077a612a6b565b905090565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7690600090a35050565b61271081111561297f5760405162461bcd60e51b8152600401610bde90615aea565b600280546001600160b01b031916600160a01b61ffff8416026001600160a01b031916176001600160a01b0384169081179091556040518281527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f18304906020015b60405180910390a25050565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff166110d757612a29816001600160a01b03166014613a8e565b612a34836020613a8e565b604051602001612a45929190615b13565b60408051601f198184030181529082905262461bcd60e51b8252610bde91600401614a24565b6000612906613c30565b8151835114612a965760405162461bcd60e51b8152600401610bde90615b80565b6001600160a01b038416612abc5760405162461bcd60e51b8152600401610bde90615bc8565b6000612ac6612a6b565b9050612ad6818787878787613c55565b60005b8451811015612bbf576000858281518110612af657612af661561e565b602002602001015190506000858381518110612b1457612b1461561e565b602090810291909101810151600084815260d8835260408082206001600160a01b038e168352909352919091205490915081811015612b655760405162461bcd60e51b8152600401610bde90615c0d565b600083815260d8602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612ba4908490615606565b9250508190555050505080612bb89061581d565b9050612ad9565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612c0f929190615c57565b60405180910390a4612c25818787878787613e17565b505050505050565b612c378282613f7a565b6110d78282613fd5565b612c4b8282614042565b6000828152600e602090815260408083206001600160a01b03851680855260028201808552838620805487526001909301855292852080546001600160a01b031916905584529152555050565b600087815261011060205260409020541580612cda57506000878152610110602090815260408083205461010f90925290912054612cd7908790615606565b11155b612d205760405162461bcd60e51b8152602060048201526017602482015276657863656564206d617820746f74616c20737570706c7960481b6044820152606401610bde565b50505050505050565b6000612906612a6b565b80612d5b573415612d565760405162461bcd60e51b8152600401610bde90615c7c565b611250565b600080612d66611d39565b909250905060006001600160a01b03871615612d825786612dc6565b600088815261011160205260409020546001600160a01b031615612dbe57600088815261011160205260409020546001600160a01b0316612dc6565b612dc6610cc9565b90506000612dd4858861598e565b90506000612710612de961ffff86168461598e565b612df391906159c3565b905060006001600160a01b03881673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415612e255750348214612e29565b5034155b80612e465760405162461bcd60e51b8152600401610bde90615c7c565b612e5988612e52612a6b565b88856140a4565b61218988612e65612a6b565b86612e708688615a26565b6140a4565b6117b8838383604051806020016040528060008152506140ee565b612710811115612eb25760405162461bcd60e51b8152600401610bde90615aea565b600480546001600160a01b0384166001600160b01b03199091168117600160a01b61ffff851602179091556040518281527f90d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb906020016129df565b6001600160a01b038316612f6f5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610bde565b8051825114612f905760405162461bcd60e51b8152600401610bde90615b80565b6000612f9a612a6b565b9050612fba81856000868660405180602001604052806000815250613c55565b60005b83518110156130be576000848281518110612fda57612fda61561e565b602002602001015190506000848381518110612ff857612ff861561e565b602090810291909101810151600084815260d8835260408082206001600160a01b038c1683529093529190912054909150818110156130855760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610bde565b600092835260d8602090815260408085206001600160a01b038b16865290915290922091039055806130b68161581d565b915050612fbd565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161310f929190615c57565b60405180910390a46040805160208101909152600090525b50505050565b600680546001600160a01b0319166001600160a01b0383169081179091556040517f299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33390600090a250565b6003819055600280546001600160a01b0319166001600160a01b0384161790556040517ff8086cee80709bd44c82f89dbca54115ebd05e840a88ab81df9cf5be9754eb63906131c99084908490614b8a565b60405180910390a15050565b6000600180546131e490615564565b80601f016020809104026020016040519081016040528092919081815260200182805461321090615564565b801561325d5780601f106132325761010080835404028352916020019161325d565b820191906000526020600020905b81548152906001019060200180831161324057829003601f168201915b50508551939450613279936001935060208701925090506148af565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a1681836040516131c9929190615c98565b6127108111156132cd5760405162461bcd60e51b8152600401610bde90615aea565b6040805180820182526001600160a01b038481168083526020808401868152600089815260058352869020945185546001600160a01b031916941693909317845591516001909301929092559151838152909185917f7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d91015b60405180910390a3505050565b6000818152600960205260408120805461336c90615564565b80601f016020809104026020016040519081016040528092919081815260200182805461339890615564565b80156133e55780601f106133ba576101008083540402835291602001916133e5565b820191906000526020600020905b8154815290600101906020018083116133c857829003601f168201915b50505050509050600081511161342d5760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840c4c2e8c6d609b1b6044820152606401610bde565b6000828152600a6020526040808220805460ff19166001179055517feef043febddf4e1d1cf1f72ff1407b84e036e805aa0934418cb82095da8d71649190a15050565b816001600160a01b0316836001600160a01b031614156134e45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610bde565b6001600160a01b03838116600081815260d96020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101613346565b606061355483612600565b6135af5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610bde565b600080846001600160a01b0316846040516135ca9190615cbd565b600060405180830381855af49150503d8060008114613605576040519150601f19603f3d011682016040523d82523d6000602084013e61360a565b606091505b50915091506136328282604051806060016040528060278152602001615ecd60279139614215565b95945050505050565b6002805482919060ff60b01b1916600160b01b83600181111561366057613660615526565b02179055507fd246da9440709ce0dd3f4fd669abc85ada012ab9774b8ecdcc5059ba1486b9c181604051613694919061553c565b60405180910390a150565b600061290661010d5461077a612a6b565b6000806136bd8486615606565b60088054600181019091557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301819055600081815260096020908152604090912085519294508493506137149290918601906148af565b50935093915050565b6000828152600a602052604090205460ff161561376b5760405162461bcd60e51b815260206004820152600c60248201526b2130ba31b410333937bd32b760a11b6044820152606401610bde565b6000828152600960209081526040909120825161378a928401906148af565b507f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c6137b58361424e565b6040805191825260208201859052016131c9565b600054610100900460ff166137f05760405162461bcd60e51b8152600401610bde90615ccf565b6137f8614369565b610d4681614392565b600054610100900460ff166138285760405162461bcd60e51b8152600401610bde90615ccf565b610d4681614421565b6000828152600d6020526040808220805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6000808281805b875181101561393b5761389460028361598e565b915060008882815181106138aa576138aa61561e565b602002602001015190508084116138ec576040805160208101869052908101829052606001604051602081830303815290604052805190602001209350613928565b60408051602081018390529081018590526060016040516020818303038152906040528051906020012093506001836139259190615606565b92505b50806139338161581d565b915050613880565b50941495939450505050565b6001600160a01b03841661396d5760405162461bcd60e51b8152600401610bde90615bc8565b6000613977612a6b565b9050600061398485614434565b9050600061399185614434565b90506139a1838989858589613c55565b600086815260d8602090815260408083206001600160a01b038c168452909152902054858110156139e45760405162461bcd60e51b8152600401610bde90615c0d565b600087815260d8602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290613a23908490615606565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4613a83848a8a8a8a8a61447f565b505050505050505050565b60606000613a9d83600261598e565b613aa8906002615606565b6001600160401b03811115613abf57613abf614ba3565b6040519080825280601f01601f191660200182016040528015613ae9576020820181803683370190505b509050600360fc1b81600081518110613b0457613b0461561e565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613b3357613b3361561e565b60200101906001600160f81b031916908160001a9053506000613b5784600261598e565b613b62906001615606565b90505b6001811115613bda576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613b9657613b9661561e565b1a60f81b828281518110613bac57613bac61561e565b60200101906001600160f81b031916908160001a90535060049490941c93613bd381615a3d565b9050613b65565b508315613c295760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bde565b9392505050565b6000613c3b336114e0565b15613c4d575060131936013560601c90565b503390565b90565b613c6361010c546000611964565b158015613c7857506001600160a01b03851615155b8015613c8c57506001600160a01b03841615155b15613d0957613c9e61010c5486611964565b80613cb15750613cb161010c5485611964565b613d095760405162461bcd60e51b8152602060048201526024808201527f7265737472696374656420746f205452414e534645525f524f4c4520686f6c6460448201526332b9399760e11b6064820152608401610bde565b6001600160a01b038516613d915760005b8351811015613d8f57828181518110613d3557613d3561561e565b602002602001015161010f6000868481518110613d5457613d5461561e565b602002602001015181526020019081526020016000206000828254613d799190615606565b90915550613d8890508161581d565b9050613d1a565b505b6001600160a01b038416612c255760005b8351811015612d2057828181518110613dbd57613dbd61561e565b602002602001015161010f6000868481518110613ddc57613ddc61561e565b602002602001015181526020019081526020016000206000828254613e019190615a26565b90915550613e1090508161581d565b9050613da2565b613e29846001600160a01b0316612600565b15612c255760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190613e629089908990889088908890600401615d1a565b6020604051808303816000875af1925050508015613e9d575060408051601f3d908101601f19168201909252613e9a91810190615d6c565b60015b613f4a57613ea9615d89565b806308c379a01415613ee35750613ebe615da4565b80613ec95750613ee5565b8060405162461bcd60e51b8152600401610bde9190614a24565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610bde565b6001600160e01b0319811663bc197c8160e01b14612d205760405162461bcd60e51b8152600401610bde90615e2d565b6000828152600c602090815260408083206001600160a01b0385168085529252808320805460ff1916600117905551339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000828152600e6020526040812080549160019190613ff48385615606565b90915550506000928352600e6020908152604080852083865260018101835281862080546001600160a01b039096166001600160a01b03199096168617905593855260029093019052912055565b61404c82826129eb565b6000828152600c602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b806140ae57613127565b6001600160a01b03841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156140e2576140dd8282614541565b613127565b613127848484846145e3565b6001600160a01b03841661414e5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bde565b6000614158612a6b565b9050600061416585614434565b9050600061417285614434565b905061418383600089858589613c55565b600086815260d8602090815260408083206001600160a01b038b168452909152812080548792906141b5908490615606565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612d208360008989898961447f565b60608315614224575081613c29565b8251156142345782518084602001fd5b8160405162461bcd60e51b8152600401610bde9190614a24565b60008061425a60085490565b9050600060088054806020026020016040519081016040528092919081815260200182805480156142aa57602002820191906000526020600020905b815481526020019060010190808311614296575b5050505050905060005b8281101561432e578181815181106142ce576142ce61561e565b602002602001015185141561431c57801561431157816142ef600183615a26565b815181106142ff576142ff61561e565b60200260200101519350505050919050565b506000949350505050565b806143268161581d565b9150506142b4565b5060405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a590818985d18da1259608a1b6044820152606401610bde565b600054610100900460ff166143905760405162461bcd60e51b8152600401610bde90615ccf565b565b600054610100900460ff166143b95760405162461bcd60e51b8152600401610bde90615ccf565b60005b81518110156110d7576001604260008484815181106143dd576143dd61561e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806144198161581d565b9150506143bc565b80516110d79060da9060208401906148af565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061446e5761446e61561e565b602090810291909101015292915050565b614491846001600160a01b0316612600565b15612c255760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906144ca9089908990889088908890600401615e75565b6020604051808303816000875af1925050508015614505575060408051601f3d908101601f1916820190925261450291810190615d6c565b60015b61451157613ea9615d89565b6001600160e01b0319811663f23a6e6160e01b14612d205760405162461bcd60e51b8152600401610bde90615e2d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461458e576040519150601f19603f3d011682016040523d82523d6000602084013e614593565b606091505b50509050806117b85760405162461bcd60e51b815260206004820152601c60248201527b1b985d1a5d99481d1bdad95b881d1c985b9cd9995c8819985a5b195960221b6044820152606401610bde565b816001600160a01b0316836001600160a01b0316141561460257613127565b6001600160a01b038316301415614627576140dd6001600160a01b038516838361463c565b6131276001600160a01b038516848484614692565b6117b88363a9059cbb60e01b848460405160240161465b929190614b8a565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526146ca565b6040516001600160a01b03808516602483015283166044820152606481018290526131279085906323b872dd60e01b9060840161465b565b600061471f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661479c9092919063ffffffff16565b8051909150156117b8578080602001905181019061473d9190615eaf565b6117b85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bde565b60606116a18484600085856147b085612600565b6147fc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bde565b600080866001600160a01b031685876040516148189190615cbd565b60006040518083038185875af1925050503d8060008114614855576040519150601f19603f3d011682016040523d82523d6000602084013e61485a565b606091505b509150915061486a828286614215565b979650505050505050565b50805461488190615564565b6000825580601f10614891575050565b601f016020900490600052602060002090810190610d469190614933565b8280546148bb90615564565b90600052602060002090601f0160209004810192826148dd5760008555614923565b82601f106148f657805160ff1916838001178555614923565b82800160010185558215614923579182015b82811115614923578251825591602001919060010190614908565b5061492f929150614933565b5090565b5b8082111561492f5760008155600101614934565b6001600160a01b0381168114610d4657600080fd5b803561496881614948565b919050565b6000806040838503121561498057600080fd5b823561498b81614948565b946020939093013593505050565b6001600160e01b031981168114610d4657600080fd5b6000602082840312156149c157600080fd5b8135613c2981614999565b60005b838110156149e75781810151838201526020016149cf565b838111156131275750506000910152565b60008151808452614a108160208601602086016149cc565b601f01601f19169290920160200192915050565b602081526000613c2960208301846149f8565b6001600160a01b0391909116815260200190565b600060208284031215614a5d57600080fd5b5035919050565b600060208284031215614a7657600080fd5b8135613c2981614948565b60008083601f840112614a9357600080fd5b5081356001600160401b03811115614aaa57600080fd5b6020830191508360208260051b8501011115614ac557600080fd5b9250929050565b8015158114610d4657600080fd5b60008060008060608587031215614af057600080fd5b8435935060208501356001600160401b03811115614b0d57600080fd5b614b1987828801614a81565b9094509250506040850135614b2d81614acc565b939692955090935050565b60008060408385031215614b4b57600080fd5b823591506020830135614b5d81614948565b809150509250929050565b60008060408385031215614b7b57600080fd5b50508035926020909101359150565b6001600160a01b03929092168252602082015260400190565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715614bde57614bde614ba3565b6040525050565b60006001600160401b03821115614bfe57614bfe614ba3565b5060051b60200190565b600082601f830112614c1957600080fd5b81356020614c2682614be5565b604051614c338282614bb9565b83815260059390931b8501820192828101915086841115614c5357600080fd5b8286015b84811015614c6e5780358352918301918301614c57565b509695505050505050565b600082601f830112614c8a57600080fd5b81356001600160401b03811115614ca357614ca3614ba3565b604051614cba601f8301601f191660200182614bb9565b818152846020838601011115614ccf57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215614d0457600080fd5b8535614d0f81614948565b94506020860135614d1f81614948565b935060408601356001600160401b0380821115614d3b57600080fd5b614d4789838a01614c08565b94506060880135915080821115614d5d57600080fd5b614d6989838a01614c08565b93506080880135915080821115614d7f57600080fd5b50614d8c88828901614c79565b9150509295509295909350565b600082601f830112614daa57600080fd5b81356020614db782614be5565b604051614dc48282614bb9565b83815260059390931b8501820192828101915086841115614de457600080fd5b8286015b84811015614c6e578035614dfb81614948565b8352918301918301614de8565b60008060408385031215614e1b57600080fd5b82356001600160401b0380821115614e3257600080fd5b614e3e86838701614d99565b93506020850135915080821115614e5457600080fd5b50614e6185828601614c08565b9150509250929050565b600081518084526020808501945080840160005b83811015614e9b57815187529582019590820190600101614e7f565b509495945050505050565b602081526000613c296020830184614e6b565b600060808284031215611c2957600080fd5b600080600080600080600060e0888a031215614ee657600080fd5b8735614ef181614948565b965060208801359550604088013594506060880135614f0f81614948565b93506080880135925060a08801356001600160401b0380821115614f3257600080fd5b614f3e8b838c01614eb9565b935060c08a0135915080821115614f5457600080fd5b50614f618a828b01614c79565b91505092959891949750929550565b600080600060608486031215614f8557600080fd5b83359250602084013591506040840135614f9e81614948565b809150509250925092565b600080600060608486031215614fbe57600080fd5b8335614fc981614948565b925060208401356001600160401b0380821115614fe557600080fd5b614ff187838801614c08565b9350604086013591508082111561500757600080fd5b5061501486828701614c08565b9150509250925092565b60006020828403121561503057600080fd5b81356001600160401b0381111561504657600080fd5b6116a184828501614c79565b60008060006060848603121561506757600080fd5b83359250602084013561507981614948565b929592945050506040919091013590565b6000806040838503121561509d57600080fd5b82356150a881614948565b91506020830135614b5d81614acc565b600080602083850312156150cb57600080fd5b82356001600160401b038111156150e157600080fd5b6150ed85828601614a81565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561514e57603f1988860301845261513c8583516149f8565b94509285019290850190600101615120565b5092979650505050505050565b60006020828403121561516d57600080fd5b813560028110613c2957600080fd5b60008083601f84011261518e57600080fd5b5081356001600160401b038111156151a557600080fd5b602083019150836020828501011115614ac557600080fd5b6000806000806000606086880312156151d557600080fd5b8535945060208601356001600160401b03808211156151f357600080fd5b6151ff89838a0161517c565b9096509450604088013591508082111561521857600080fd5b506152258882890161517c565b969995985093965092949392505050565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c082015260018060a01b0360c08301511660e0820152600060e08301516101008081850152506116a16101208401826149f8565b6000806000604084860312156152b857600080fd5b8335925060208401356001600160401b038111156152d557600080fd5b6152e18682870161517c565b9497909650939450505050565b80356001600160801b038116811461496857600080fd5b6000806000806000806000806000806101408b8d03121561532557600080fd5b61532e8b61495d565b995060208b01356001600160401b038082111561534a57600080fd5b6153568e838f01614c79565b9a5060408d013591508082111561536c57600080fd5b6153788e838f01614c79565b995060608d013591508082111561538e57600080fd5b61539a8e838f01614c79565b985060808d01359150808211156153b057600080fd5b506153bd8d828e01614d99565b9650506153cc60a08c0161495d565b94506153da60c08c0161495d565b93506153e860e08c016152ee565b92506153f76101008c016152ee565b91506154066101208c0161495d565b90509295989b9194979a5092959850565b6000806040838503121561542a57600080fd5b823561543581614948565b91506020830135614b5d81614948565b600080600080600080600060e0888a03121561546057600080fd5b87359650602088013561547281614948565b95506040880135945060608801359350608088013561549081614948565b925060a0880135915060c08801356001600160401b038111156154b257600080fd5b614f618a828b01614eb9565b600080600080600060a086880312156154d657600080fd5b85356154e181614948565b945060208601356154f181614948565b9350604086013592506060860135915060808601356001600160401b0381111561551a57600080fd5b614d8c88828901614c79565b634e487b7160e01b600052602160045260246000fd5b602081016002831061555e57634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c9082168061557857607f821691505b60208210811415611c2957634e487b7160e01b600052602260045260246000fd5b600083516155ab8184602088016149cc565b8351908301906155bf8183602088016149cc565b01949350505050565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115615619576156196155f0565b500190565b634e487b7160e01b600052603260045260246000fd5b6000823560fe1983360301811261564a57600080fd5b9190910192915050565b6000808335601e1984360301811261566b57600080fd5b8301803591506001600160401b0382111561568557600080fd5b602001915036819003821315614ac557600080fd5b601f8211156117b857600081815260208120601f850160051c810160208610156156c15750805b601f850160051c820191505b81811015612c25578281556001016156cd565b6001600160401b038311156156f7576156f7614ba3565b61570b836157058354615564565b8361569a565b6000601f84116001811461573f57600085156157275750838201355b600019600387901b1c1916600186901b178355611250565b600083815260209020601f19861690835b828110156157705786850135825560209485019460019092019101615750565b508682101561578d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a082013560058201556006810160c08301356157e781614948565b81546001600160a01b0319166001600160a01b039190911617905561580f60e0830183615654565b6131278183600786016156e0565b6000600019821415615831576158316155f0565b5060010190565b6000808335601e1984360301811261584f57600080fd5b83016020810192503590506001600160401b0381111561586e57600080fd5b803603831315614ac557600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408082528181018490526000906060808401600587901b850182018885805b8a81101561597857888403605f190185528235368d900360fe190181126158eb578283fd5b8c018035855260208082013581870152888201358987015287820135888701526080808301359087015260a080830135908701526101009060c08084013561593281614948565b6001600160a01b03169088015260e061594d84820185615838565b945083828a0152615961848a01868361587d565b9983019998505050949094019350506001016158c6565b505050861515602087015293506116a192505050565b60008160001904831182151516156159a8576159a86155f0565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826159d2576159d26159ad565b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b600082821015615a3857615a386155f0565b500390565b600081615a4c57615a4c6155f0565b506000190190565b858152606060208201526000615a6e60608301868861587d565b8281036040840152615a8181858761587d565b98975050505050505050565b6000808335601e19843603018112615aa457600080fd5b8301803591506001600160401b03821115615abe57600080fd5b6020019150600581901b3603821315614ac557600080fd5b600082615ae557615ae56159ad565b500690565b6020808252600f908201526e45786365656473206d61782062707360881b604082015260600190565b7402832b936b4b9b9b4b7b7399d1030b1b1b7bab73a1605d1b815260008351615b438160158501602088016149cc565b7001034b99036b4b9b9b4b733903937b6329607d1b6015918401918201528351615b748160268401602088016149cc565b01602601949350505050565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000615c6a6040830185614e6b565b82810360208401526136328185614e6b565b60208082526002908201526110ab60f11b604082015260600190565b604081526000615cab60408301856149f8565b828103602084015261363281856149f8565b6000825161564a8184602087016149cc565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090615d4690830186614e6b565b8281036060840152615d588186614e6b565b90508281036080840152615a8181856149f8565b600060208284031215615d7e57600080fd5b8151613c2981614999565b600060033d1115613c525760046000803e5060005160e01c90565b600060443d1015615db25790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715615de157505050505090565b8285019150815181811115615df95750505050505090565b843d8701016020828501011115615e135750505050505090565b615e2260208286010187614bb9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061486a908301846149f8565b600060208284031215615ec157600080fd5b8151613c2981614acc56fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220d4ef4b6569c230db1e5c94208ab6741f66e5149eb4d93d54732fb859896a959464736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106102c15760003560e01c80638da5cb5b116101775780638da5cb5b146107215780639010d07c1461073f57806391d148541461075f578063938e3d7b1461077f57806395d89b411461079f5780639bcf7a15146107b4578063a07ced9e146107d4578063a0a8e460146107f4578063a217fddf14610810578063a22cb46514610825578063a32fa5b314610845578063ac9650d814610865578063b24f2d3914610892578063b6f10c79146108bd578063bd85b039146108dd578063c7337d6b1461090b578063ca15c87314610942578063cb2ef6f714610962578063d37c353b14610983578063d45573f6146109a3578063d45b28d7146109b8578063d547741f146109e5578063de903ddd14610a05578063e159163414610a25578063e57553da14610a45578063e8a3d48514610a69578063e9703d2514610a7e578063e985e9c514610ac7578063ea1def9c14610b10578063f242432a14610b30578063f28083c314610b5057600080fd5b8062fdd58e146102c657806301ffc9a7146102f957806306fdde0314610329578063079fe40e1461034b5780630e89341c1461036d57806313af40351461038d578063183718d1146103af5780631e7ac488146103cf5780632419f51b146103ef578063248a9ca31461040f57806324aaffaa1461043c57806329c49b9b1461046a5780632a55205a1461048a5780632eb2c2d6146104b85780632f2ff15d146104d857806336568abe146104f85780633b1475a7146105185780634cc157df1461052d5780634e1273f41461056f578063572b6c051461059c57806357bc3d78146105bc5780635811ddab146105cf5780635ab063e81461061c578063600dd5ea1461063c57806363b45e2d1461065c5780636b20c454146106715780636f4f2837146106915780637e54523c146106b157806383040532146106d157806387198cf214610701575b600080fd5b3480156102d257600080fd5b506102e66102e136600461496d565b610b77565b6040519081526020015b60405180910390f35b34801561030557600080fd5b506103196103143660046149af565b610c12565b60405190151581526020016102f0565b34801561033557600080fd5b5061033e610c3a565b6040516102f09190614a24565b34801561035757600080fd5b50610360610cc9565b6040516102f09190614a37565b34801561037957600080fd5b5061033e610388366004614a4b565b610cd8565b34801561039957600080fd5b506103ad6103a8366004614a64565b610d19565b005b3480156103bb57600080fd5b506103ad6103ca366004614ada565b610d49565b3480156103db57600080fd5b506103ad6103ea36600461496d565b6110a9565b3480156103fb57600080fd5b506102e661040a366004614a4b565b6110db565b34801561041b57600080fd5b506102e661042a366004614a4b565b6000908152600d602052604090205490565b34801561044857600080fd5b506102e6610457366004614a4b565b6101106020526000908152604090205481565b34801561047657600080fd5b506103ad610485366004614b38565b611149565b34801561049657600080fd5b506104aa6104a5366004614b68565b6111bc565b6040516102f0929190614b8a565b3480156104c457600080fd5b506103ad6104d3366004614cec565b6111f9565b3480156104e457600080fd5b506103ad6104f3366004614b38565b611257565b34801561050457600080fd5b506103ad610513366004614b38565b6112ed565b34801561052457600080fd5b50600b546102e6565b34801561053957600080fd5b5061054d610548366004614a4b565b61134c565b604080516001600160a01b03909316835261ffff9091166020830152016102f0565b34801561057b57600080fd5b5061058f61058a366004614e08565b6113b7565b6040516102f09190614ea6565b3480156105a857600080fd5b506103196105b7366004614a64565b6114e0565b6103ad6105ca366004614ecb565b6114fe565b3480156105db57600080fd5b506102e66105ea366004614f70565b6000928352600f60209081526040808520938552600390930181528284206001600160a01b0390921684525290205490565b34801561062857600080fd5b506102e6610637366004614a4b565b611641565b34801561064857600080fd5b506103ad61065736600461496d565b6116f2565b34801561066857600080fd5b506008546102e6565b34801561067d57600080fd5b506103ad61068c366004614fa9565b611720565b34801561069d57600080fd5b506103ad6106ac366004614a64565b6117bd565b3480156106bd57600080fd5b506103ad6106cc36600461496d565b6117ea565b3480156106dd57600080fd5b506103196106ec366004614a4b565b600a6020526000908152604090205460ff1681565b34801561070d57600080fd5b506103ad61071c366004614b68565b611818565b34801561072d57600080fd5b506007546001600160a01b0316610360565b34801561074b57600080fd5b5061036061075a366004614b68565b611875565b34801561076b57600080fd5b5061031961077a366004614b38565b611964565b34801561078b57600080fd5b506103ad61079a36600461501e565b61198f565b3480156107ab57600080fd5b5061033e6119bc565b3480156107c057600080fd5b506103ad6107cf366004615052565b6119ca565b3480156107e057600080fd5b506103ad6107ef366004614a4b565b6119f9565b34801561080057600080fd5b50604051600481526020016102f0565b34801561081c57600080fd5b506102e6600081565b34801561083157600080fd5b506103ad61084036600461508a565b611a1d565b34801561085157600080fd5b50610319610860366004614b38565b611a2f565b34801561087157600080fd5b506108856108803660046150b8565b611a85565b6040516102f091906150f9565b34801561089e57600080fd5b506004546001600160a01b03811690600160a01b900461ffff1661054d565b3480156108c957600080fd5b506103ad6108d836600461515b565b611b79565b3480156108e957600080fd5b506102e66108f8366004614a4b565b61010f6020526000908152604090205481565b34801561091757600080fd5b50610360610926366004614a4b565b610111602052600090815260409020546001600160a01b031681565b34801561094e57600080fd5b506102e661095d366004614a4b565b611ba6565b34801561096e57600080fd5b506a44726f704552433131353560a81b6102e6565b34801561098f57600080fd5b506102e661099e3660046151bd565b611c2f565b3480156109af57600080fd5b5061054d611d39565b3480156109c457600080fd5b506109d86109d3366004614b68565b611d56565b6040516102f09190615236565b3480156109f157600080fd5b506103ad610a00366004614b38565b611ebd565b348015610a1157600080fd5b506103ad610a203660046152a3565b611ed6565b348015610a3157600080fd5b506103ad610a40366004615305565b611f31565b348015610a5157600080fd5b506104aa6002546003546001600160a01b0390911691565b348015610a7557600080fd5b5061033e612196565b348015610a8a57600080fd5b50610ab2610a99366004614a4b565b600f602052600090815260409020805460019091015482565b604080519283526020830191909152016102f0565b348015610ad357600080fd5b50610319610ae2366004615417565b6001600160a01b03918216600090815260d96020908152604080832093909416825291909152205460ff1690565b348015610b1c57600080fd5b50610319610b2b366004615445565b6121a3565b348015610b3c57600080fd5b506103ad610b4b3660046154be565b6125a9565b348015610b5c57600080fd5b50600254600160b01b900460ff166040516102f0919061553c565b60006001600160a01b038316610be75760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b50600081815260d8602090815260408083206001600160a01b03861684529091529020545b92915050565b6000610c1d8261260f565b80610c0c5750506001600160e01b03191663152a902d60e11b1490565b61010a8054610c4890615564565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7490615564565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b505050505081565b6006546001600160a01b031690565b60606000610ce58361265f565b905080610cf1846127fb565b604051602001610d02929190615599565b604051602081830303815290604052915050919050565b610d216128f8565b610d3d5760405162461bcd60e51b8152600401610bde906155c8565b610d468161290b565b50565b610d516128f8565b610d6d5760405162461bcd60e51b8152600401610bde906155c8565b6000848152600f6020526040902080546001820154818415610d9657610d938284615606565b90505b600184018690558084556000805b87811015610f4f57801580610ddc5750888882818110610dc657610dc661561e565b9050602002810190610dd89190615634565b3582105b610e0d5760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610bde565b60006002870181610e1e8487615606565b8152602001908152602001600020600201549050898983818110610e4457610e4461561e565b9050602002810190610e569190615634565b60200135811115610e9e5760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e4818db185a5b595960721b6044820152606401610bde565b898983818110610eb057610eb061561e565b9050602002810190610ec29190615634565b600288016000610ed28588615606565b81526020019081526020016000208181610eec919061579f565b50819050600288016000610f008588615606565b8152602081019190915260400160002060020155898983818110610f2657610f2661561e565b9050602002810190610f389190615634565b359250819050610f478161581d565b915050610da4565b508515610fd157835b82811015610fcb576000818152600280880160205260408220828155600181018390559081018290556003810182905560048101829055600581018290556006810180546001600160a01b031916905590610fb66007830182614875565b50508080610fc39061581d565b915050610f58565b50611062565b8683111561106257865b8381101561106057600286016000610ff38386615606565b81526020810191909152604001600090812081815560018101829055600281018290556003810182905560048101829055600581018290556006810180546001600160a01b03191690559061104b6007830182614875565b505080806110589061581d565b915050610fdb565b505b887f066f72a648b18490c0bc4ab07d508cdb5d6589fa188c63cfba1e0547f3a6556a898989604051611096939291906158a6565b60405180910390a2505050505050505050565b6110b16128f8565b6110cd5760405162461bcd60e51b8152600401610bde906155c8565b6110d7828261295d565b5050565b60006110e660085490565b82106111245760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840d2dcc8caf609b1b6044820152606401610bde565b600882815481106111375761113761561e565b90600052602060002001549050919050565b600061115581336129eb565b600083815261011160205260409081902080546001600160a01b0319166001600160a01b0385161790555183907f359479172ba65a6639b0df237f704e030498cb7135d5e89b56f598bd1d84b016906111af908590614a37565b60405180910390a2505050565b6000806000806111cb8661134c565b90945084925061ffff1690506127106111e4828761598e565b6111ee91906159c3565b925050509250929050565b611201612a6b565b6001600160a01b0316856001600160a01b03161480611227575061122785610ae2612a6b565b6112435760405162461bcd60e51b8152600401610bde906159d7565b6112508585858585612a75565b5050505050565b6000828152600d602052604090205461127090336129eb565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff16156112e35760405162461bcd60e51b815260206004820152601d60248201527f43616e206f6e6c79206772616e7420746f206e6f6e20686f6c646572730000006044820152606401610bde565b6110d78282612c2d565b336001600160a01b038216146113425760405162461bcd60e51b815260206004820152601a60248201527921b0b71037b7363c903932b737bab731b2903337b91039b2b63360311b6044820152606401610bde565b6110d78282612c41565b6000818152600560209081526040808320815180830190925280546001600160a01b03168083526001909101549282019290925282911561139357805160208201516113ad565b6004546001600160a01b03811690600160a01b900461ffff165b9250925050915091565b6060815183511461141c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610bde565b600083516001600160401b0381111561143757611437614ba3565b604051908082528060200260200182016040528015611460578160200160208202803683370190505b50905060005b84518110156114d8576114ab8582815181106114845761148461561e565b602002602001015185838151811061149e5761149e61561e565b6020026020010151610b77565b8282815181106114bd576114bd61561e565b60209081029190910101526114d18161581d565b9050611466565b509392505050565b6001600160a01b031660009081526042602052604090205460ff1690565b61150d86888787878787612c98565b600061151887611641565b905061153081611526612d29565b89898989896121a3565b506000878152600f6020908152604080832084845260029081019092528220018054889290611560908490615606565b90915550506000878152600f602090815260408083208484526003019091528120879161158b612d29565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546115ba9190615606565b909155506115ce9050876000888888612d33565b6115d9888888612e75565b876001600160a01b03166115eb612d29565b6001600160a01b0316827ffa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e8a8a60405161162f929190918252602082015260400190565b60405180910390a45050505050505050565b6000818152600f6020526040812060018101548154839161166191615606565b90505b81548111156116bb5760028201600061167e600184615a26565b81526020019081526020016000206000015442106116a9576116a1600182615a26565b949350505050565b806116b381615a3d565b915050611664565b5060405162461bcd60e51b815260206004820152600b60248201526a10a1a7a72224aa24a7a71760a91b6044820152606401610bde565b6116fa6128f8565b6117165760405162461bcd60e51b8152600401610bde906155c8565b6110d78282612e90565b611728612a6b565b6001600160a01b0316836001600160a01b0316148061174e575061174e83610ae2612a6b565b6117ad5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f726044820152691030b8383937bb32b21760b11b6064820152608401610bde565b6117b8838383612f0d565b505050565b6117c56128f8565b6117e15760405162461bcd60e51b8152600401610bde906155c8565b610d468161312d565b6117f26128f8565b61180e5760405162461bcd60e51b8152600401610bde906155c8565b6110d78282613177565b600061182481336129eb565b6000838152610110602090815260409182902084905581518581529081018490527fc58cd6132bb46df23d468939c03dd023b74b509aaa6b04c39d5a6461c65963bd910160405180910390a1505050565b6000828152600e602052604081205481805b8281101561195b576000868152600e602090815260408083208484526001019091529020546001600160a01b03161561190457848214156118f2576000868152600e602090815260408083209383526001909301905220546001600160a01b03169250610c0c915050565b6118fd600183615606565b9150611949565b61190f866000611964565b801561193657506000868152600e6020908152604080832083805260020190915290205481145b1561194957611946600183615606565b91505b611954600182615606565b9050611887565b50505092915050565b6000918252600c602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6119976128f8565b6119b35760405162461bcd60e51b8152600401610bde906155c8565b610d46816131d5565b61010b8054610c4890615564565b6119d26128f8565b6119ee5760405162461bcd60e51b8152600401610bde906155c8565b6117b88383836132ab565b61010e54611a0781336129eb565b6000611a12836110db565b90506117b881613353565b6110d7611a28612a6b565b8383613470565b6000828152600c6020908152604080832083805290915281205460ff16611a7c57506000828152600c602090815260408083206001600160a01b038516845290915290205460ff16610c0c565b50600192915050565b6060816001600160401b03811115611a9f57611a9f614ba3565b604051908082528060200260200182016040528015611ad257816020015b6060815260200190600190039081611abd5790505b50905060005b82811015611b7257611b4230858584818110611af657611af661561e565b9050602002810190611b089190615654565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061354992505050565b828281518110611b5457611b5461561e565b60200260200101819052508080611b6a9061581d565b915050611ad8565b5092915050565b611b816128f8565b611b9d5760405162461bcd60e51b8152600401610bde906155c8565b610d468161363b565b6000818152600e6020526040812054815b81811015611c0a576000848152600e602090815260408083208484526001019091529020546001600160a01b031615611bf857611bf5600184615606565b92505b611c03600182615606565b9050611bb7565b50611c16836000611964565b15611c2957611c26600183615606565b91505b50919050565b6000611c3961369f565b611c555760405162461bcd60e51b8152600401610bde906155c8565b85611c8a5760405162461bcd60e51b81526020600482015260056024820152640c08185b5d60da1b6044820152606401610bde565b6000600b549050611cd2818888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506136b092505050565b600b919091559150807f2a0365091ef1a40953c670dce28177e37520648a6fdc91506bffac0ab045570d6001611d088a84615606565b611d129190615a26565b88888888604051611d27959493929190615a54565b60405180910390a25095945050505050565b6002546001600160a01b03811691600160a01b90910461ffff1690565b611daa60405180610100016040528060008152602001600081526020016000815260200160008152602001600080191681526020016000815260200160006001600160a01b03168152602001606081525090565b6000838152600f6020908152604080832085845260029081018352928190208151610100810183528154815260018201549381019390935292830154908201526003820154606082015260048201546080820152600582015460a082015260068201546001600160a01b031660c082015260078201805491929160e084019190611e3390615564565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5f90615564565b8015611eac5780601f10611e8157610100808354040283529160200191611eac565b820191906000526020600020905b815481529060010190602001808311611e8f57829003601f168201915b505050505081525050905092915050565b6000828152600d602052604090205461134290336129eb565b61010e54611ee481336129eb565b6000611eef856110db565b90506112508185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061371d92505050565b600054610100900460ff1615808015611f515750600054600160ff909116105b80611f725750611f6030612600565b158015611f72575060005460ff166001145b611fd55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bde565b6000805460ff191660011790558015611ff8576000805461ff0019166101001790555b7f8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a67f6bd6b5318a46e5fff572d5e4258a20774aab40cc35ac7680654b9081fcc82f806120648a6137c9565b61207c60405180602001604052806000815250613801565b6120858b6131d5565b61208e8e61290b565b61209960008f612c2d565b6120a3828f612c2d565b6120ad838f612c2d565b6120b8836000612c2d565b6120c2818f612c2d565b6120cc8182613831565b6120df85876001600160801b031661295d565b6120f288886001600160801b0316612e90565b6120fb8961312d565b8261010c819055508161010d819055508061010e819055508c61010a908051906020019061212a9291906148af565b508b5161213f9061010b9060208f01906148af565b505050508015612189576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050505050505050505050565b60018054610c4890615564565b6000858152600f602090815260408083208a8452600290810183528184208251610100810184528154815260018201549481019490945290810154918301919091526003810154606083015260048101546080830152600581015460a083015260068101546001600160a01b031660c08301526007810180548493929160e084019161222e90615564565b80601f016020809104026020016040519081016040528092919081815260200182805461225a90615564565b80156122a75780601f1061227c576101008083540402835291602001916122a7565b820191906000526020600020905b81548152906001019060200180831161228a57829003601f168201915b50505091909252505050606081015160a082015160c08301516080840151939450919290919015612387576123836122df8780615a8d565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250505060808088015191508e9060208b01359060408c013590612334908d0160608e01614a64565b6040516001600160601b0319606095861b811660208301526034820194909452605481019290925290921b16607482015260880160405160208183030381529060405280519060200120613879565b5094505b841561240c57602086013561239c57826123a2565b85602001355b9250600019866040013514156123b857816123be565b85604001355b91506000198660400135141580156123ef575060006123e36080880160608901614a64565b6001600160a01b031614155b6123f95780612409565b6124096080870160608801614a64565b90505b6000600f60008c815260200190815260200160002060030160008e815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020549050816001600160a01b0316896001600160a01b031614158061247c5750828814155b156124bc5760405162461bcd60e51b815260206004820152601060248201526f2150726963654f7243757272656e637960801b6044820152606401610bde565b8915806124d15750836124cf828c615606565b115b156125075760405162461bcd60e51b8152600401610bde906020808252600490820152632151747960e01b604082015260600190565b84602001518a866040015161251c9190615606565b11156125575760405162461bcd60e51b815260206004820152600a602482015269214d6178537570706c7960b01b6044820152606401610bde565b84514210156125995760405162461bcd60e51b815260206004820152600e60248201526d18d85b9d0818db185a5b481e595d60921b6044820152606401610bde565b5050505050979650505050505050565b6125b1612a6b565b6001600160a01b0316856001600160a01b031614806125d757506125d785610ae2612a6b565b6125f35760405162461bcd60e51b8152600401610bde906159d7565b6112508585858585613947565b6001600160a01b03163b151590565b60006001600160e01b03198216636cdb3d1360e11b148061264057506001600160e01b031982166303a24d0760e21b145b80610c0c57506301ffc9a760e01b6001600160e01b0319831614610c0c565b6060600061266c60085490565b9050600060088054806020026020016040519081016040528092919081815260200182805480156126bc57602002820191906000526020600020905b8154815260200190600101908083116126a8575b5050505050905060005b828110156127c0578181815181106126e0576126e061561e565b60200260200101518510156127ae57600960008383815181106127055761270561561e565b60200260200101518152602001908152602001600020805461272690615564565b80601f016020809104026020016040519081016040528092919081815260200182805461275290615564565b801561279f5780601f106127745761010080835404028352916020019161279f565b820191906000526020600020905b81548152906001019060200180831161278257829003601f168201915b50505050509350505050919050565b6127b9600182615606565b90506126c6565b5060405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a59081d1bdad95b9259608a1b6044820152606401610bde565b60608161281f5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561284957806128338161581d565b91506128429050600a836159c3565b9150612823565b6000816001600160401b0381111561286357612863614ba3565b6040519080825280601f01601f19166020018201604052801561288d576020820181803683370190505b5090505b84156116a1576128a2600183615a26565b91506128af600a86615ad6565b6128ba906030615606565b60f81b8183815181106128cf576128cf61561e565b60200101906001600160f81b031916908160001a9053506128f1600a866159c3565b9450612891565b60006129068161077a612a6b565b905090565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7690600090a35050565b61271081111561297f5760405162461bcd60e51b8152600401610bde90615aea565b600280546001600160b01b031916600160a01b61ffff8416026001600160a01b031916176001600160a01b0384169081179091556040518281527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f18304906020015b60405180910390a25050565b6000828152600c602090815260408083206001600160a01b038516845290915290205460ff166110d757612a29816001600160a01b03166014613a8e565b612a34836020613a8e565b604051602001612a45929190615b13565b60408051601f198184030181529082905262461bcd60e51b8252610bde91600401614a24565b6000612906613c30565b8151835114612a965760405162461bcd60e51b8152600401610bde90615b80565b6001600160a01b038416612abc5760405162461bcd60e51b8152600401610bde90615bc8565b6000612ac6612a6b565b9050612ad6818787878787613c55565b60005b8451811015612bbf576000858281518110612af657612af661561e565b602002602001015190506000858381518110612b1457612b1461561e565b602090810291909101810151600084815260d8835260408082206001600160a01b038e168352909352919091205490915081811015612b655760405162461bcd60e51b8152600401610bde90615c0d565b600083815260d8602090815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612ba4908490615606565b9250508190555050505080612bb89061581d565b9050612ad9565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612c0f929190615c57565b60405180910390a4612c25818787878787613e17565b505050505050565b612c378282613f7a565b6110d78282613fd5565b612c4b8282614042565b6000828152600e602090815260408083206001600160a01b03851680855260028201808552838620805487526001909301855292852080546001600160a01b031916905584529152555050565b600087815261011060205260409020541580612cda57506000878152610110602090815260408083205461010f90925290912054612cd7908790615606565b11155b612d205760405162461bcd60e51b8152602060048201526017602482015276657863656564206d617820746f74616c20737570706c7960481b6044820152606401610bde565b50505050505050565b6000612906612a6b565b80612d5b573415612d565760405162461bcd60e51b8152600401610bde90615c7c565b611250565b600080612d66611d39565b909250905060006001600160a01b03871615612d825786612dc6565b600088815261011160205260409020546001600160a01b031615612dbe57600088815261011160205260409020546001600160a01b0316612dc6565b612dc6610cc9565b90506000612dd4858861598e565b90506000612710612de961ffff86168461598e565b612df391906159c3565b905060006001600160a01b03881673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415612e255750348214612e29565b5034155b80612e465760405162461bcd60e51b8152600401610bde90615c7c565b612e5988612e52612a6b565b88856140a4565b61218988612e65612a6b565b86612e708688615a26565b6140a4565b6117b8838383604051806020016040528060008152506140ee565b612710811115612eb25760405162461bcd60e51b8152600401610bde90615aea565b600480546001600160a01b0384166001600160b01b03199091168117600160a01b61ffff851602179091556040518281527f90d7ec04bcb8978719414f82e52e4cb651db41d0e6f8cea6118c2191e6183adb906020016129df565b6001600160a01b038316612f6f5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610bde565b8051825114612f905760405162461bcd60e51b8152600401610bde90615b80565b6000612f9a612a6b565b9050612fba81856000868660405180602001604052806000815250613c55565b60005b83518110156130be576000848281518110612fda57612fda61561e565b602002602001015190506000848381518110612ff857612ff861561e565b602090810291909101810151600084815260d8835260408082206001600160a01b038c1683529093529190912054909150818110156130855760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610bde565b600092835260d8602090815260408085206001600160a01b038b16865290915290922091039055806130b68161581d565b915050612fbd565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161310f929190615c57565b60405180910390a46040805160208101909152600090525b50505050565b600680546001600160a01b0319166001600160a01b0383169081179091556040517f299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33390600090a250565b6003819055600280546001600160a01b0319166001600160a01b0384161790556040517ff8086cee80709bd44c82f89dbca54115ebd05e840a88ab81df9cf5be9754eb63906131c99084908490614b8a565b60405180910390a15050565b6000600180546131e490615564565b80601f016020809104026020016040519081016040528092919081815260200182805461321090615564565b801561325d5780601f106132325761010080835404028352916020019161325d565b820191906000526020600020905b81548152906001019060200180831161324057829003601f168201915b50508551939450613279936001935060208701925090506148af565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a1681836040516131c9929190615c98565b6127108111156132cd5760405162461bcd60e51b8152600401610bde90615aea565b6040805180820182526001600160a01b038481168083526020808401868152600089815260058352869020945185546001600160a01b031916941693909317845591516001909301929092559151838152909185917f7365cf4122f072a3365c20d54eff9b38d73c096c28e1892ec8f5b0e403a0f12d91015b60405180910390a3505050565b6000818152600960205260408120805461336c90615564565b80601f016020809104026020016040519081016040528092919081815260200182805461339890615564565b80156133e55780601f106133ba576101008083540402835291602001916133e5565b820191906000526020600020905b8154815290600101906020018083116133c857829003601f168201915b50505050509050600081511161342d5760405162461bcd60e51b815260206004820152600d60248201526c092dcecc2d8d2c840c4c2e8c6d609b1b6044820152606401610bde565b6000828152600a6020526040808220805460ff19166001179055517feef043febddf4e1d1cf1f72ff1407b84e036e805aa0934418cb82095da8d71649190a15050565b816001600160a01b0316836001600160a01b031614156134e45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610bde565b6001600160a01b03838116600081815260d96020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101613346565b606061355483612600565b6135af5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610bde565b600080846001600160a01b0316846040516135ca9190615cbd565b600060405180830381855af49150503d8060008114613605576040519150601f19603f3d011682016040523d82523d6000602084013e61360a565b606091505b50915091506136328282604051806060016040528060278152602001615ecd60279139614215565b95945050505050565b6002805482919060ff60b01b1916600160b01b83600181111561366057613660615526565b02179055507fd246da9440709ce0dd3f4fd669abc85ada012ab9774b8ecdcc5059ba1486b9c181604051613694919061553c565b60405180910390a150565b600061290661010d5461077a612a6b565b6000806136bd8486615606565b60088054600181019091557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301819055600081815260096020908152604090912085519294508493506137149290918601906148af565b50935093915050565b6000828152600a602052604090205460ff161561376b5760405162461bcd60e51b815260206004820152600c60248201526b2130ba31b410333937bd32b760a11b6044820152606401610bde565b6000828152600960209081526040909120825161378a928401906148af565b507f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c6137b58361424e565b6040805191825260208201859052016131c9565b600054610100900460ff166137f05760405162461bcd60e51b8152600401610bde90615ccf565b6137f8614369565b610d4681614392565b600054610100900460ff166138285760405162461bcd60e51b8152600401610bde90615ccf565b610d4681614421565b6000828152600d6020526040808220805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6000808281805b875181101561393b5761389460028361598e565b915060008882815181106138aa576138aa61561e565b602002602001015190508084116138ec576040805160208101869052908101829052606001604051602081830303815290604052805190602001209350613928565b60408051602081018390529081018590526060016040516020818303038152906040528051906020012093506001836139259190615606565b92505b50806139338161581d565b915050613880565b50941495939450505050565b6001600160a01b03841661396d5760405162461bcd60e51b8152600401610bde90615bc8565b6000613977612a6b565b9050600061398485614434565b9050600061399185614434565b90506139a1838989858589613c55565b600086815260d8602090815260408083206001600160a01b038c168452909152902054858110156139e45760405162461bcd60e51b8152600401610bde90615c0d565b600087815260d8602090815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290613a23908490615606565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4613a83848a8a8a8a8a61447f565b505050505050505050565b60606000613a9d83600261598e565b613aa8906002615606565b6001600160401b03811115613abf57613abf614ba3565b6040519080825280601f01601f191660200182016040528015613ae9576020820181803683370190505b509050600360fc1b81600081518110613b0457613b0461561e565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613b3357613b3361561e565b60200101906001600160f81b031916908160001a9053506000613b5784600261598e565b613b62906001615606565b90505b6001811115613bda576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613b9657613b9661561e565b1a60f81b828281518110613bac57613bac61561e565b60200101906001600160f81b031916908160001a90535060049490941c93613bd381615a3d565b9050613b65565b508315613c295760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bde565b9392505050565b6000613c3b336114e0565b15613c4d575060131936013560601c90565b503390565b90565b613c6361010c546000611964565b158015613c7857506001600160a01b03851615155b8015613c8c57506001600160a01b03841615155b15613d0957613c9e61010c5486611964565b80613cb15750613cb161010c5485611964565b613d095760405162461bcd60e51b8152602060048201526024808201527f7265737472696374656420746f205452414e534645525f524f4c4520686f6c6460448201526332b9399760e11b6064820152608401610bde565b6001600160a01b038516613d915760005b8351811015613d8f57828181518110613d3557613d3561561e565b602002602001015161010f6000868481518110613d5457613d5461561e565b602002602001015181526020019081526020016000206000828254613d799190615606565b90915550613d8890508161581d565b9050613d1a565b505b6001600160a01b038416612c255760005b8351811015612d2057828181518110613dbd57613dbd61561e565b602002602001015161010f6000868481518110613ddc57613ddc61561e565b602002602001015181526020019081526020016000206000828254613e019190615a26565b90915550613e1090508161581d565b9050613da2565b613e29846001600160a01b0316612600565b15612c255760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190613e629089908990889088908890600401615d1a565b6020604051808303816000875af1925050508015613e9d575060408051601f3d908101601f19168201909252613e9a91810190615d6c565b60015b613f4a57613ea9615d89565b806308c379a01415613ee35750613ebe615da4565b80613ec95750613ee5565b8060405162461bcd60e51b8152600401610bde9190614a24565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610bde565b6001600160e01b0319811663bc197c8160e01b14612d205760405162461bcd60e51b8152600401610bde90615e2d565b6000828152600c602090815260408083206001600160a01b0385168085529252808320805460ff1916600117905551339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000828152600e6020526040812080549160019190613ff48385615606565b90915550506000928352600e6020908152604080852083865260018101835281862080546001600160a01b039096166001600160a01b03199096168617905593855260029093019052912055565b61404c82826129eb565b6000828152600c602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b806140ae57613127565b6001600160a01b03841673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee14156140e2576140dd8282614541565b613127565b613127848484846145e3565b6001600160a01b03841661414e5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bde565b6000614158612a6b565b9050600061416585614434565b9050600061417285614434565b905061418383600089858589613c55565b600086815260d8602090815260408083206001600160a01b038b168452909152812080548792906141b5908490615606565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612d208360008989898961447f565b60608315614224575081613c29565b8251156142345782518084602001fd5b8160405162461bcd60e51b8152600401610bde9190614a24565b60008061425a60085490565b9050600060088054806020026020016040519081016040528092919081815260200182805480156142aa57602002820191906000526020600020905b815481526020019060010190808311614296575b5050505050905060005b8281101561432e578181815181106142ce576142ce61561e565b602002602001015185141561431c57801561431157816142ef600183615a26565b815181106142ff576142ff61561e565b60200260200101519350505050919050565b506000949350505050565b806143268161581d565b9150506142b4565b5060405162461bcd60e51b815260206004820152600f60248201526e125b9d985b1a590818985d18da1259608a1b6044820152606401610bde565b600054610100900460ff166143905760405162461bcd60e51b8152600401610bde90615ccf565b565b600054610100900460ff166143b95760405162461bcd60e51b8152600401610bde90615ccf565b60005b81518110156110d7576001604260008484815181106143dd576143dd61561e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806144198161581d565b9150506143bc565b80516110d79060da9060208401906148af565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061446e5761446e61561e565b602090810291909101015292915050565b614491846001600160a01b0316612600565b15612c255760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906144ca9089908990889088908890600401615e75565b6020604051808303816000875af1925050508015614505575060408051601f3d908101601f1916820190925261450291810190615d6c565b60015b61451157613ea9615d89565b6001600160e01b0319811663f23a6e6160e01b14612d205760405162461bcd60e51b8152600401610bde90615e2d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461458e576040519150601f19603f3d011682016040523d82523d6000602084013e614593565b606091505b50509050806117b85760405162461bcd60e51b815260206004820152601c60248201527b1b985d1a5d99481d1bdad95b881d1c985b9cd9995c8819985a5b195960221b6044820152606401610bde565b816001600160a01b0316836001600160a01b0316141561460257613127565b6001600160a01b038316301415614627576140dd6001600160a01b038516838361463c565b6131276001600160a01b038516848484614692565b6117b88363a9059cbb60e01b848460405160240161465b929190614b8a565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526146ca565b6040516001600160a01b03808516602483015283166044820152606481018290526131279085906323b872dd60e01b9060840161465b565b600061471f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661479c9092919063ffffffff16565b8051909150156117b8578080602001905181019061473d9190615eaf565b6117b85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bde565b60606116a18484600085856147b085612600565b6147fc5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bde565b600080866001600160a01b031685876040516148189190615cbd565b60006040518083038185875af1925050503d8060008114614855576040519150601f19603f3d011682016040523d82523d6000602084013e61485a565b606091505b509150915061486a828286614215565b979650505050505050565b50805461488190615564565b6000825580601f10614891575050565b601f016020900490600052602060002090810190610d469190614933565b8280546148bb90615564565b90600052602060002090601f0160209004810192826148dd5760008555614923565b82601f106148f657805160ff1916838001178555614923565b82800160010185558215614923579182015b82811115614923578251825591602001919060010190614908565b5061492f929150614933565b5090565b5b8082111561492f5760008155600101614934565b6001600160a01b0381168114610d4657600080fd5b803561496881614948565b919050565b6000806040838503121561498057600080fd5b823561498b81614948565b946020939093013593505050565b6001600160e01b031981168114610d4657600080fd5b6000602082840312156149c157600080fd5b8135613c2981614999565b60005b838110156149e75781810151838201526020016149cf565b838111156131275750506000910152565b60008151808452614a108160208601602086016149cc565b601f01601f19169290920160200192915050565b602081526000613c2960208301846149f8565b6001600160a01b0391909116815260200190565b600060208284031215614a5d57600080fd5b5035919050565b600060208284031215614a7657600080fd5b8135613c2981614948565b60008083601f840112614a9357600080fd5b5081356001600160401b03811115614aaa57600080fd5b6020830191508360208260051b8501011115614ac557600080fd5b9250929050565b8015158114610d4657600080fd5b60008060008060608587031215614af057600080fd5b8435935060208501356001600160401b03811115614b0d57600080fd5b614b1987828801614a81565b9094509250506040850135614b2d81614acc565b939692955090935050565b60008060408385031215614b4b57600080fd5b823591506020830135614b5d81614948565b809150509250929050565b60008060408385031215614b7b57600080fd5b50508035926020909101359150565b6001600160a01b03929092168252602082015260400190565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715614bde57614bde614ba3565b6040525050565b60006001600160401b03821115614bfe57614bfe614ba3565b5060051b60200190565b600082601f830112614c1957600080fd5b81356020614c2682614be5565b604051614c338282614bb9565b83815260059390931b8501820192828101915086841115614c5357600080fd5b8286015b84811015614c6e5780358352918301918301614c57565b509695505050505050565b600082601f830112614c8a57600080fd5b81356001600160401b03811115614ca357614ca3614ba3565b604051614cba601f8301601f191660200182614bb9565b818152846020838601011115614ccf57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215614d0457600080fd5b8535614d0f81614948565b94506020860135614d1f81614948565b935060408601356001600160401b0380821115614d3b57600080fd5b614d4789838a01614c08565b94506060880135915080821115614d5d57600080fd5b614d6989838a01614c08565b93506080880135915080821115614d7f57600080fd5b50614d8c88828901614c79565b9150509295509295909350565b600082601f830112614daa57600080fd5b81356020614db782614be5565b604051614dc48282614bb9565b83815260059390931b8501820192828101915086841115614de457600080fd5b8286015b84811015614c6e578035614dfb81614948565b8352918301918301614de8565b60008060408385031215614e1b57600080fd5b82356001600160401b0380821115614e3257600080fd5b614e3e86838701614d99565b93506020850135915080821115614e5457600080fd5b50614e6185828601614c08565b9150509250929050565b600081518084526020808501945080840160005b83811015614e9b57815187529582019590820190600101614e7f565b509495945050505050565b602081526000613c296020830184614e6b565b600060808284031215611c2957600080fd5b600080600080600080600060e0888a031215614ee657600080fd5b8735614ef181614948565b965060208801359550604088013594506060880135614f0f81614948565b93506080880135925060a08801356001600160401b0380821115614f3257600080fd5b614f3e8b838c01614eb9565b935060c08a0135915080821115614f5457600080fd5b50614f618a828b01614c79565b91505092959891949750929550565b600080600060608486031215614f8557600080fd5b83359250602084013591506040840135614f9e81614948565b809150509250925092565b600080600060608486031215614fbe57600080fd5b8335614fc981614948565b925060208401356001600160401b0380821115614fe557600080fd5b614ff187838801614c08565b9350604086013591508082111561500757600080fd5b5061501486828701614c08565b9150509250925092565b60006020828403121561503057600080fd5b81356001600160401b0381111561504657600080fd5b6116a184828501614c79565b60008060006060848603121561506757600080fd5b83359250602084013561507981614948565b929592945050506040919091013590565b6000806040838503121561509d57600080fd5b82356150a881614948565b91506020830135614b5d81614acc565b600080602083850312156150cb57600080fd5b82356001600160401b038111156150e157600080fd5b6150ed85828601614a81565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561514e57603f1988860301845261513c8583516149f8565b94509285019290850190600101615120565b5092979650505050505050565b60006020828403121561516d57600080fd5b813560028110613c2957600080fd5b60008083601f84011261518e57600080fd5b5081356001600160401b038111156151a557600080fd5b602083019150836020828501011115614ac557600080fd5b6000806000806000606086880312156151d557600080fd5b8535945060208601356001600160401b03808211156151f357600080fd5b6151ff89838a0161517c565b9096509450604088013591508082111561521857600080fd5b506152258882890161517c565b969995985093965092949392505050565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c082015260018060a01b0360c08301511660e0820152600060e08301516101008081850152506116a16101208401826149f8565b6000806000604084860312156152b857600080fd5b8335925060208401356001600160401b038111156152d557600080fd5b6152e18682870161517c565b9497909650939450505050565b80356001600160801b038116811461496857600080fd5b6000806000806000806000806000806101408b8d03121561532557600080fd5b61532e8b61495d565b995060208b01356001600160401b038082111561534a57600080fd5b6153568e838f01614c79565b9a5060408d013591508082111561536c57600080fd5b6153788e838f01614c79565b995060608d013591508082111561538e57600080fd5b61539a8e838f01614c79565b985060808d01359150808211156153b057600080fd5b506153bd8d828e01614d99565b9650506153cc60a08c0161495d565b94506153da60c08c0161495d565b93506153e860e08c016152ee565b92506153f76101008c016152ee565b91506154066101208c0161495d565b90509295989b9194979a5092959850565b6000806040838503121561542a57600080fd5b823561543581614948565b91506020830135614b5d81614948565b600080600080600080600060e0888a03121561546057600080fd5b87359650602088013561547281614948565b95506040880135945060608801359350608088013561549081614948565b925060a0880135915060c08801356001600160401b038111156154b257600080fd5b614f618a828b01614eb9565b600080600080600060a086880312156154d657600080fd5b85356154e181614948565b945060208601356154f181614948565b9350604086013592506060860135915060808601356001600160401b0381111561551a57600080fd5b614d8c88828901614c79565b634e487b7160e01b600052602160045260246000fd5b602081016002831061555e57634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c9082168061557857607f821691505b60208210811415611c2957634e487b7160e01b600052602260045260246000fd5b600083516155ab8184602088016149cc565b8351908301906155bf8183602088016149cc565b01949350505050565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115615619576156196155f0565b500190565b634e487b7160e01b600052603260045260246000fd5b6000823560fe1983360301811261564a57600080fd5b9190910192915050565b6000808335601e1984360301811261566b57600080fd5b8301803591506001600160401b0382111561568557600080fd5b602001915036819003821315614ac557600080fd5b601f8211156117b857600081815260208120601f850160051c810160208610156156c15750805b601f850160051c820191505b81811015612c25578281556001016156cd565b6001600160401b038311156156f7576156f7614ba3565b61570b836157058354615564565b8361569a565b6000601f84116001811461573f57600085156157275750838201355b600019600387901b1c1916600186901b178355611250565b600083815260209020601f19861690835b828110156157705786850135825560209485019460019092019101615750565b508682101561578d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b813581556020820135600182015560408201356002820155606082013560038201556080820135600482015560a082013560058201556006810160c08301356157e781614948565b81546001600160a01b0319166001600160a01b039190911617905561580f60e0830183615654565b6131278183600786016156e0565b6000600019821415615831576158316155f0565b5060010190565b6000808335601e1984360301811261584f57600080fd5b83016020810192503590506001600160401b0381111561586e57600080fd5b803603831315614ac557600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408082528181018490526000906060808401600587901b850182018885805b8a81101561597857888403605f190185528235368d900360fe190181126158eb578283fd5b8c018035855260208082013581870152888201358987015287820135888701526080808301359087015260a080830135908701526101009060c08084013561593281614948565b6001600160a01b03169088015260e061594d84820185615838565b945083828a0152615961848a01868361587d565b9983019998505050949094019350506001016158c6565b505050861515602087015293506116a192505050565b60008160001904831182151516156159a8576159a86155f0565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826159d2576159d26159ad565b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b600082821015615a3857615a386155f0565b500390565b600081615a4c57615a4c6155f0565b506000190190565b858152606060208201526000615a6e60608301868861587d565b8281036040840152615a8181858761587d565b98975050505050505050565b6000808335601e19843603018112615aa457600080fd5b8301803591506001600160401b03821115615abe57600080fd5b6020019150600581901b3603821315614ac557600080fd5b600082615ae557615ae56159ad565b500690565b6020808252600f908201526e45786365656473206d61782062707360881b604082015260600190565b7402832b936b4b9b9b4b7b7399d1030b1b1b7bab73a1605d1b815260008351615b438160158501602088016149cc565b7001034b99036b4b9b9b4b733903937b6329607d1b6015918401918201528351615b748160268401602088016149cc565b01602601949350505050565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000615c6a6040830185614e6b565b82810360208401526136328185614e6b565b60208082526002908201526110ab60f11b604082015260600190565b604081526000615cab60408301856149f8565b828103602084015261363281856149f8565b6000825161564a8184602087016149cc565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090615d4690830186614e6b565b8281036060840152615d588186614e6b565b90508281036080840152615a8181856149f8565b600060208284031215615d7e57600080fd5b8151613c2981614999565b600060033d1115613c525760046000803e5060005160e01c90565b600060443d1015615db25790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715615de157505050505090565b8285019150815181811115615df95750505050505090565b843d8701016020828501011115615e135750505050505090565b615e2260208286010187614bb9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061486a908301846149f8565b600060208284031215615ec157600080fd5b8151613c2981614acc56fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220d4ef4b6569c230db1e5c94208ab6741f66e5149eb4d93d54732fb859896a959464736f6c634300080c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
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.