ERC-721
Overview
Max Total Supply
480 FERALFILE
Holders
100
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
277 FERALFILELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FeralfileExhibitionV4_3
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {FeralfileExhibitionV4_1} from "./FeralfileArtworkV4_1.sol"; contract FeralfileExhibitionV4_3 is FeralfileExhibitionV4_1 { error InvalidOwner(); error TokenIsNonMergeable(); error InvalidLength(); struct MergeArtworkInfo { uint256 singleSeriesId; uint256 mergedSeriesId; uint256 nextTokenId; } MergeArtworkInfo private mergeArtworkInfo; constructor( string memory name_, string memory symbol_, bool burnable_, bool bridgeable_, address signer_, address vault_, address costReceiver_, string memory contractURI_, uint256[] memory seriesIds_, uint256[] memory seriesMaxSupplies_, MergeArtworkInfo memory mergeArtworkInfo_ ) FeralfileExhibitionV4_1( name_, symbol_, burnable_, bridgeable_, signer_, vault_, costReceiver_, contractURI_, seriesIds_, seriesMaxSupplies_ ) { mergeArtworkInfo = mergeArtworkInfo_; } /// @notice burns multiples mergeable artworks and mint a new artworks /// @param tokenIds - list of tokenIds to be burned function mergeArtworks(uint256[] calldata tokenIds) external { if (tokenIds.length < 2) { revert InvalidLength(); } // Burn artworks for (uint256 i = 0; i < tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; Artwork memory artwork = _allArtworks[tokenId]; if ( artwork.seriesId != mergeArtworkInfo.singleSeriesId && artwork.seriesId != mergeArtworkInfo.mergedSeriesId ) { revert TokenIsNonMergeable(); } if (ownerOf(tokenId) != _msgSender()) { revert InvalidOwner(); } _burnArtwork(tokenId); } // Mint new artwork uint256 newTokenId = mergeArtworkInfo.nextTokenId; _mintArtwork( mergeArtworkInfo.mergedSeriesId, newTokenId, _msgSender() ); mergeArtworkInfo.nextTokenId++; emit MergedArtwork(_msgSender(), tokenIds, newTokenId); } /// @notice Event emitted when a merged artwork has been minted event MergedArtwork( address indexed owner, uint256[] mergingTokenIds, uint256 indexed newTokenId ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./operator-filter-registry/IOperatorFilterRegistry.sol"; import "./Authorizable.sol"; /** * @title UpdateableOperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract UpdateableOperatorFilterer is Authorizable { error OperatorNotAllowed(address operator); address constant DEFAULT_OPERATOR_FILTER_REGISTRY_ADDRESS = address(0x000000000000AAeB6D7670E522A718067333cd4E); address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); IOperatorFilterRegistry public OperatorFilterRegistry = IOperatorFilterRegistry(DEFAULT_OPERATOR_FILTER_REGISTRY_ADDRESS); constructor() { if (address(OperatorFilterRegistry).code.length > 0) { OperatorFilterRegistry.registerAndSubscribe( address(this), DEFAULT_SUBSCRIPTION ); } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OperatorFilterRegistry).code.length > 0) { require( OperatorFilterRegistry.isOperatorAllowed( address(this), operator ), "operator is not allowed" ); } } /** * @notice update the operator filter registry */ function updateOperatorFilterRegistry(address operatorFilterRegisterAddress) external onlyOwner { OperatorFilterRegistry = IOperatorFilterRegistry( operatorFilterRegisterAddress ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IFeralfileSaleData.sol"; import "./ECDSASigner.sol"; interface IFeralfileVault is IFeralfileSaleData { function payForSale( bytes32 r_, bytes32 s_, uint8 v_, SaleData calldata saleData_ ) external; function withdrawFund(uint256 weiAmount) external; receive() external payable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IFeralfileSaleData { struct RevenueShare { address recipient; uint256 bps; } struct SaleData { uint256 price; // in wei uint256 cost; // in wei uint256 expiryTime; address destination; uint256[] tokenIds; RevenueShare[][] revenueShares; // address and royalty bps (500 means 5%) bool payByVaultContract; // get eth from vault contract, used by credit card pay that proxy by ITX } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "./IFeralfileSaleData.sol"; contract FeralfileSaleData is IFeralfileSaleData { function validateSaleData(SaleData calldata saleData_) internal view { require( saleData_.tokenIds.length > 0, "FeralfileSaleData: tokenIds is empty" ); require( saleData_.tokenIds.length == saleData_.revenueShares.length, "FeralfileSaleData: tokenIds and revenueShares length mismatch" ); require( saleData_.expiryTime > block.timestamp, "FeralfileSaleData: sale is expired" ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "./FeralfileArtworkV4.sol"; contract FeralfileExhibitionV4_1 is FeralfileExhibitionV4 { mapping(address => uint256) public advances; error InvalidAdvanceAddressesAndAmounts(); error InvalidAdvanceAddress(); error InvalidAdvanceAmount(); error InvalidSignature(); error AdvanceAddressAlreadyUsed(); constructor( string memory name_, string memory symbol_, bool burnable_, bool bridgeable_, address signer_, address vault_, address costReceiver_, string memory contractURI_, uint256[] memory seriesIds_, uint256[] memory seriesMaxSupplies_ ) FeralfileExhibitionV4( name_, symbol_, burnable_, bridgeable_, signer_, vault_, costReceiver_, contractURI_, seriesIds_, seriesMaxSupplies_ ) {} /// @notice set advances setting /// @param addresses_ - the addresses to set advances /// @param amounts_ - the amounts to set advances function setAdvanceSetting( address[] calldata addresses_, uint256[] calldata amounts_ ) external onlyOwner { if (addresses_.length != amounts_.length) { revert InvalidAdvanceAddressesAndAmounts(); } for (uint256 i = 0; i < addresses_.length; i++) { if (addresses_[i] == address(0)) { revert InvalidAdvanceAddress(); } if (amounts_[i] == 0) { revert InvalidAdvanceAmount(); } if (advances[addresses_[i]] > 0) { revert AdvanceAddressAlreadyUsed(); } advances[addresses_[i]] = amounts_[i]; } } /// @notice replace advance addresses /// @param oldAddresses_ - the old addresses to replace /// @param newAddresses_ - the new addresses to replace function replaceAdvanceAddresses( address[] calldata oldAddresses_, address[] calldata newAddresses_ ) external onlyOwner { if (oldAddresses_.length != newAddresses_.length) { revert InvalidAdvanceAddressesAndAmounts(); } for (uint256 i = 0; i < oldAddresses_.length; i++) { if (newAddresses_[i] == address(0)) { revert InvalidAdvanceAddress(); } if (advances[newAddresses_[i]] > 0) { revert AdvanceAddressAlreadyUsed(); } advances[newAddresses_[i]] = advances[oldAddresses_[i]]; delete advances[oldAddresses_[i]]; } } /// @notice pay to get artworks to a destination address. The pricing, costs and other details is included in the saleData /// @param r_ - part of signature for validating parameters integrity /// @param s_ - part of signature for validating parameters integrity /// @param v_ - part of signature for validating parameters integrity /// @param saleData_ - the sale data function buyArtworks( bytes32 r_, bytes32 s_, uint8 v_, SaleData calldata saleData_ ) external payable override virtual { require(_selling, "FeralfileExhibitionV4: sale is not started"); super._checkContractOwnedToken(); validateSaleData(saleData_); saleData_.payByVaultContract ? vault.payForSale(r_, s_, v_, saleData_) : require( saleData_.price == msg.value, "FeralfileExhibitionV4: invalid payment amount" ); bytes32 message = keccak256( abi.encode(block.chainid, address(this), saleData_) ); if (!isValidSignature(message, r_, s_, v_)) { revert InvalidSignature(); } uint256 itemRevenue; if (saleData_.price > saleData_.cost) { itemRevenue = (saleData_.price - saleData_.cost) / saleData_.tokenIds.length; } uint256 distributedRevenue; uint256 platformRevenue; for (uint256 i = 0; i < saleData_.tokenIds.length; i++) { // send NFT _safeTransfer( address(this), saleData_.destination, saleData_.tokenIds[i], "" ); // distribute royalty RevenueShare[] memory revenueShares = saleData_.revenueShares[i]; uint256 remainingRev = itemRevenue; // deduct advances payment from revenue for ( uint256 j = 0; j < revenueShares.length && remainingRev > 0; j++ ) { uint256 remainingAdvanceAmount = advances[ revenueShares[j].recipient ]; uint256 rev = remainingAdvanceAmount >= remainingRev ? remainingRev : remainingAdvanceAmount; platformRevenue += rev; advances[revenueShares[j].recipient] -= rev; remainingRev -= rev; } // distribute revenue if (remainingRev > 0) { for (uint256 j = 0; j < revenueShares.length; j++) { address recipient = revenueShares[j].recipient; uint256 rev = (remainingRev * revenueShares[j].bps) / 10000; if (recipient == costReceiver) { platformRevenue += rev; continue; } distributedRevenue += rev; payable(recipient).transfer(rev); } } emit BuyArtwork(saleData_.destination, saleData_.tokenIds[i]); } require( saleData_.price - saleData_.cost >= distributedRevenue + platformRevenue, "FeralfileExhibitionV4: total bps over 10,000" ); // Transfer cost, platform revenue and remaining funds uint256 leftOver = saleData_.price - distributedRevenue; if (leftOver > 0) { payable(costReceiver).transfer(leftOver); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./Authorizable.sol"; import "./UpdateableOperatorFilterer.sol"; import "./FeralfileSaleData.sol"; import "./ECDSASigner.sol"; import "./IFeralfileVault.sol"; contract FeralfileExhibitionV4 is ERC721, Authorizable, UpdateableOperatorFilterer, FeralfileSaleData, ECDSASigner { using Strings for uint256; struct Artwork { uint256 seriesId; uint256 tokenId; } struct MintData { uint256 seriesId; uint256 tokenId; address owner; } // version code of contract string public constant codeVersion = "FeralfileExhibitionV4"; // token base URI string public tokenBaseURI; // contract URI string public contractURI; // total supply uint256 public totalSupply; // burnable bool public burnable; // bridgeable bool public bridgeable; // selling bool internal _selling; // mintable bool public mintable = true; // cost receiver address public costReceiver; // vault contract instance IFeralfileVault public vault; // series max supplies mapping(uint256 => uint256) internal _seriesMaxSupplies; // series total supplies mapping(uint256 => uint256) internal _seriesTotalSupplies; // all artworks mapping(uint256 => Artwork) internal _allArtworks; // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; constructor( string memory name_, string memory symbol_, bool burnable_, bool bridgeable_, address signer_, address vault_, address costReceiver_, string memory contractURI_, uint256[] memory seriesIds_, uint256[] memory seriesMaxSupplies_ ) ERC721(name_, symbol_) ECDSASigner(signer_) { // validations require( bytes(name_).length > 0, "FeralfileExhibitionV4: name_ is empty" ); require( bytes(symbol_).length > 0, "FeralfileExhibitionV4: symbol_ is empty" ); require( vault_ != address(0), "FeralfileExhibitionV4: vaultAddress_ is zero address" ); require( costReceiver_ != address(0), "FeralfileExhibitionV4: costReceiver_ is zero address" ); require( bytes(contractURI_).length > 0, "FeralfileExhibitionV4: contractURI_ is empty" ); require( seriesIds_.length > 0, "FeralfileExhibitionV4: seriesIds_ is empty" ); require( seriesMaxSupplies_.length > 0, "FeralfileExhibitionV4: _seriesMaxSupplies is empty" ); require( seriesIds_.length == seriesMaxSupplies_.length, "FeralfileExhibitionV4: seriesMaxSupplies_ and seriesIds_ lengths are not the same" ); burnable = burnable_; bridgeable = bridgeable_; costReceiver = costReceiver_; vault = IFeralfileVault(payable(vault_)); contractURI = contractURI_; // initialize max supply map for (uint256 i = 0; i < seriesIds_.length; i++) { require( _seriesMaxSupplies[seriesIds_[i]] == 0, "FeralfileExhibitionV4: duplicate seriesId" ); require( seriesMaxSupplies_[i] > 0, "FeralfileExhibitionV4: zero max supply" ); _seriesMaxSupplies[seriesIds_[i]] = seriesMaxSupplies_[i]; } } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex( address owner, uint256 index ) external view returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /// @notice Get token ID from owner function tokensOfOwner( address owner ) external view returns (uint256[] memory) { return _ownedTokens[owner]; } /// @notice Get series max supply /// @param seriesId a series ID /// @return uint256 the max supply function seriesMaxSupply( uint256 seriesId ) external view virtual returns (uint256) { return _seriesMaxSupplies[seriesId]; } /// @notice Get series total supply /// @param seriesId a series ID /// @return uint256 the total supply function seriesTotalSupply( uint256 seriesId ) external view virtual returns (uint256) { return _seriesTotalSupplies[seriesId]; } /// @notice Get artwork data /// @param tokenId a token ID representing the artwork /// @return Artwork the Artwork object function getArtwork( uint256 tokenId ) external view virtual returns (Artwork memory) { require(_exists(tokenId), "ERC721: invalid token ID"); return _allArtworks[tokenId]; } /// @notice Set vault contract /// @dev don't allow to set vault as zero address function setVault(address vault_) external virtual onlyOwner { require( vault_ != address(0), "FeralfileExhibitionV4: vault_ is zero address" ); vault = IFeralfileVault(payable(vault_)); } /// @notice Return flag _selling; function selling() external view returns (bool) { return _selling; } function _checkContractOwnedToken() internal view { uint256 balance = balanceOf(address(this)); require( balance > 0, "FeralfileExhibitionV4: No token owned by the contract" ); } /// @notice Start token sale function startSale() external onlyOwner { mintable = false; resumeSale(); } /// @notice Resume token sale function resumeSale() public onlyOwner { require( !mintable, "FeralfileExhibitionV4: mintable required to be false" ); require( !_selling, "FeralfileExhibitionV4: _selling required to be false" ); _checkContractOwnedToken(); _selling = true; } /// @notice Pause token sale function pauseSale() public onlyOwner { require( !mintable, "FeralfileExhibitionV4: mintable required to be false" ); require( _selling, "FeralfileExhibitionV4: _selling required to be true" ); _selling = false; } /// @notice Stop token sale and burn remaining tokens function stopSaleAndBurn() external onlyOwner { pauseSale(); // burn remaining tokens uint256[] memory tokenIds = _ownedTokens[address(this)]; for (uint256 i = 0; i < tokenIds.length; i++) { _burnArtwork(tokenIds[i]); } } /// @notice Stop token selling and transfer remaining tokens back to the underlying addresses function stopSaleAndTransfer( uint256[] memory seriesIds, address[] memory recipientAddresses ) external onlyOwner { require( seriesIds.length > 0 && recipientAddresses.length > 0, "FeralfileExhibitionV4: seriesIds or recipientAddresses length is zero" ); require( seriesIds.length == recipientAddresses.length, "FeralfileExhibitionV4: seriesIds length is different from recipientAddresses" ); pauseSale(); // transfer tokens back to the addresses address from = address(this); uint256[] memory tokenIds = _ownedTokens[from]; for (uint256 i = 0; i < tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; Artwork memory artwork = _allArtworks[tokenId]; for (uint16 j = 0; j < seriesIds.length; j++) { if (artwork.seriesId == seriesIds[j]) { address to = recipientAddresses[j]; _safeTransfer(from, to, tokenId, ""); break; } } } require( balanceOf(from) == 0, "FeralfileExhibitionV4: Token for sale balance has to be zero" ); } /// @dev override for OperatorFilterRegistry function setApprovalForAll( address operator, bool approved ) public override(ERC721) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } /// @dev override for OperatorFilterRegistry function approve( address operator, uint256 tokenId ) public override(ERC721) onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } /// @dev override for OperatorFilterRegistry function transferFrom( address from, address to, uint256 tokenId ) public override(ERC721) onlyAllowedOperator(from) { require( to != address(this), "FeralfileExhibitionV4: Contract isn't allowed to receive token" ); super.transferFrom(from, to, tokenId); } /// @dev override for OperatorFilterRegistry function safeTransferFrom( address from, address to, uint256 tokenId ) public override(ERC721) onlyAllowedOperator(from) { require( to != address(this), "FeralfileExhibitionV4: Contract isn't allowed to receive token" ); super.safeTransferFrom(from, to, tokenId); } /// @dev override for OperatorFilterRegistry function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public override(ERC721) onlyAllowedOperator(from) { require( to != address(this), "FeralfileExhibitionV4: Contract isn't allowed to receive token" ); super.safeTransferFrom(from, to, tokenId, data); } /// @notice A distinct Uniform Resource Identifier (URI) for a given asset. function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require( bytes(tokenBaseURI).length > 0, "ERC721Metadata: _tokenBaseURI is empty" ); require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(tokenBaseURI, "/", tokenId.toString())); } /// @notice Update the base URI for all tokens function setTokenBaseURI(string memory baseURI_) external onlyOwner { require( bytes(baseURI_).length > 0, "ERC721Metadata: baseURI_ is empty" ); tokenBaseURI = baseURI_; } /// @notice the cost receiver address /// @param costReceiver_ - the address of cost receiver function setCostReceiver(address costReceiver_) external onlyOwner { require( costReceiver_ != address(0), "FeralfileExhibitionV4: costReceiver_ is zero address" ); costReceiver = costReceiver_; } /// @notice pay to get artworks to a destination address. The pricing, costs and other details is included in the saleData /// @param r_ - part of signature for validating parameters integrity /// @param s_ - part of signature for validating parameters integrity /// @param v_ - part of signature for validating parameters integrity /// @param saleData_ - the sale data function buyArtworks( bytes32 r_, bytes32 s_, uint8 v_, SaleData calldata saleData_ ) external payable virtual { require(_selling, "FeralfileExhibitionV4: sale is not started"); _checkContractOwnedToken(); validateSaleData(saleData_); saleData_.payByVaultContract ? vault.payForSale(r_, s_, v_, saleData_) : require( saleData_.price == msg.value, "FeralfileExhibitionV4: invalid payment amount" ); bytes32 message = keccak256( abi.encode(block.chainid, address(this), saleData_) ); require( isValidSignature(message, r_, s_, v_), "FeralfileExhibitionV4: invalid signature" ); uint256 itemRevenue; if (saleData_.price > saleData_.cost) { itemRevenue = (saleData_.price - saleData_.cost) / saleData_.tokenIds.length; } uint256 distributedRevenue; uint256 platformRevenue; for (uint256 i = 0; i < saleData_.tokenIds.length; i++) { // send NFT _safeTransfer( address(this), saleData_.destination, saleData_.tokenIds[i], "" ); if (itemRevenue > 0) { // distribute royalty for ( uint256 j = 0; j < saleData_.revenueShares[i].length; j++ ) { uint256 rev = (itemRevenue * saleData_.revenueShares[i][j].bps) / 10000; if ( saleData_.revenueShares[i][j].recipient == costReceiver ) { platformRevenue += rev; continue; } distributedRevenue += rev; payable(saleData_.revenueShares[i][j].recipient).transfer( rev ); } } emit BuyArtwork(saleData_.destination, saleData_.tokenIds[i]); } require( saleData_.price - saleData_.cost >= distributedRevenue + platformRevenue, "FeralfileExhibitionV4: total bps over 10,000" ); // Transfer cost, platform revenue and remaining funds uint256 leftOver = saleData_.price - distributedRevenue; if (leftOver > 0) { payable(costReceiver).transfer(leftOver); } } /// @notice utility function for checking the series exists function _seriesExists(uint256 seriesId) private view returns (bool) { return _seriesMaxSupplies[seriesId] > 0; } /// @dev Modify from ERC721Enumerable function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from != address(0) && from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to != address(0) && to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /// @dev Modify from ERC721Enumerable function _removeTokenFromOwnerEnumeration( address from, uint256 tokenId ) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } delete _ownedTokensIndex[tokenId]; _ownedTokens[from].pop(); } /// @dev Modify from ERC721Enumerable function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256[] storage tokens = _ownedTokens[to]; uint256 length = tokens.length; tokens.push(tokenId); _ownedTokensIndex[tokenId] = length; } /// @notice Mint new collection of Artwork /// @dev the function iterates over the array of MintData to call the internal function _mintArtwork /// @param data an array of MintData function mintArtworks( MintData[] calldata data ) external virtual onlyAuthorized { require( mintable, "FeralfileExhibitionV4: contract doesn't allow to mint" ); for (uint256 i = 0; i < data.length; i++) { _mintArtwork(data[i].seriesId, data[i].tokenId, data[i].owner); } } function _mintArtwork( uint256 seriesId, uint256 tokenId, address owner ) internal { // pre-condition checks require( _seriesExists(seriesId), string( abi.encodePacked( "FeralfileExhibitionV4: seriesId doesn't exist: ", Strings.toString(seriesId) ) ) ); require( _seriesTotalSupplies[seriesId] < _seriesMaxSupplies[seriesId], "FeralfileExhibitionV4: no slots available" ); // mint totalSupply += 1; _seriesTotalSupplies[seriesId] += 1; _allArtworks[tokenId] = Artwork(seriesId, tokenId); _mint(owner, tokenId); // emit event emit NewArtwork(owner, seriesId, tokenId); } /// @notice Burn a collection of artworks /// @dev the function iterates over the array of token ID to call the internal function _burnArtwork /// @param tokenIds an array of token ID function burnArtworks(uint256[] memory tokenIds) external { require(burnable, "FeralfileExhibitionV4: token is not burnable"); for (uint256 i = 0; i < tokenIds.length; i++) { require( _isApprovedOrOwner(_msgSender(), tokenIds[i]), "ERC721: caller is not token owner or approved" ); _burnArtwork(tokenIds[i]); } } function _burnArtwork(uint256 tokenId) internal { require(_exists(tokenId), "ERC721: invalid token ID"); // burn artwork Artwork memory artwork = _allArtworks[tokenId]; _seriesTotalSupplies[artwork.seriesId] -= 1; totalSupply -= 1; delete _allArtworks[tokenId]; _burn(tokenId); // emit event emit BurnArtwork(tokenId); } /// @notice able to receive fund from vault contract receive() external payable { require( msg.sender == address(vault), "FeralfileExhibitionV4: only accept fund from vault contract." ); } /// @notice Event emitted when new Artwork has been minted event NewArtwork( address indexed owner, uint256 indexed seriesId, uint256 indexed tokenId ); /// @notice Event emitted when Artwork has been burned event BurnArtwork(uint256 indexed tokenId); /// @notice Event emitted when Artwork has been sold event BuyArtwork(address indexed buyer, uint256 indexed tokenId); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract ECDSASigner is Ownable { address private _signer; constructor(address signer_) { require(signer_ != address(0), "ECDSASign: signer_ is zero address"); _signer = signer_; } /// @notice isValidSignature validates a message by ecrecover to ensure // it is signed by signer. /// @param message_ - the raw message for signing /// @param r_ - part of signature for validating parameters integrity /// @param s_ - part of signature for validating parameters integrity /// @param v_ - part of signature for validating parameters integrity function isValidSignature( bytes32 message_, bytes32 r_, bytes32 s_, uint8 v_ ) internal view returns (bool) { address reqSigner = ECDSA.recover( ECDSA.toEthSignedMessageHash(message_), v_, r_, s_ ); return reqSigner == _signer; } /// @notice set the signer /// @param signer_ - the address of signer function setSigner(address signer_) external onlyOwner { require(signer_ != address(0), "ECDSASign: signer_ is zero address"); _signer = signer_; } function signer() external view returns (address) { return _signer; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; contract Authorizable is Ownable { mapping(address => bool) public trustees; constructor() {} modifier onlyAuthorized() { require(trustees[msg.sender] || msg.sender == owner()); _; } function addTrustee(address _trustee) public onlyOwner { trustees[_trustee] = true; } function removeTrustee(address _trustee) public onlyOwner { delete trustees[_trustee]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _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) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"bool","name":"burnable_","type":"bool"},{"internalType":"bool","name":"bridgeable_","type":"bool"},{"internalType":"address","name":"signer_","type":"address"},{"internalType":"address","name":"vault_","type":"address"},{"internalType":"address","name":"costReceiver_","type":"address"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"uint256[]","name":"seriesIds_","type":"uint256[]"},{"internalType":"uint256[]","name":"seriesMaxSupplies_","type":"uint256[]"},{"components":[{"internalType":"uint256","name":"singleSeriesId","type":"uint256"},{"internalType":"uint256","name":"mergedSeriesId","type":"uint256"},{"internalType":"uint256","name":"nextTokenId","type":"uint256"}],"internalType":"struct FeralfileExhibitionV4_3.MergeArtworkInfo","name":"mergeArtworkInfo_","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AdvanceAddressAlreadyUsed","type":"error"},{"inputs":[],"name":"InvalidAdvanceAddress","type":"error"},{"inputs":[],"name":"InvalidAdvanceAddressesAndAmounts","type":"error"},{"inputs":[],"name":"InvalidAdvanceAmount","type":"error"},{"inputs":[],"name":"InvalidLength","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"TokenIsNonMergeable","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BurnArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BuyArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"mergingTokenIds","type":"uint256[]"},{"indexed":true,"internalType":"uint256","name":"newTokenId","type":"uint256"}],"name":"MergedArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"seriesId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NewArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OperatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"addTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"advances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridgeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnArtworks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"r_","type":"bytes32"},{"internalType":"bytes32","name":"s_","type":"bytes32"},{"internalType":"uint8","name":"v_","type":"uint8"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"expiryTime","type":"uint256"},{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"internalType":"struct IFeralfileSaleData.RevenueShare[][]","name":"revenueShares","type":"tuple[][]"},{"internalType":"bool","name":"payByVaultContract","type":"bool"}],"internalType":"struct IFeralfileSaleData.SaleData","name":"saleData_","type":"tuple"}],"name":"buyArtworks","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"codeVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getArtwork","outputs":[{"components":[{"internalType":"uint256","name":"seriesId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct FeralfileExhibitionV4.Artwork","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mergeArtworks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"seriesId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"internalType":"struct FeralfileExhibitionV4.MintData[]","name":"data","type":"tuple[]"}],"name":"mintArtworks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"removeTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"oldAddresses_","type":"address[]"},{"internalType":"address[]","name":"newAddresses_","type":"address[]"}],"name":"replaceAdvanceAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resumeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"selling","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"seriesId","type":"uint256"}],"name":"seriesMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"seriesId","type":"uint256"}],"name":"seriesTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"setAdvanceSetting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"costReceiver_","type":"address"}],"name":"setCostReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer_","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"vault_","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSaleAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"seriesIds","type":"uint256[]"},{"internalType":"address[]","name":"recipientAddresses","type":"address[]"}],"name":"stopSaleAndTransfer","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":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"trustees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operatorFilterRegisterAddress","type":"address"}],"name":"updateOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"contract IFeralfileVault","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600880546001600160a01b0319166daaeb6d7670e522a718067333cd4e179055600d805463ff000000191663010000001790553480156200004457600080fd5b5060405162005765380380620057658339810160408190526200006791620009cf565b8a8a8a8a8a8a8a8a8a8a89898989898989898989858a8a60006200008c838262000bd0565b5060016200009b828262000bd0565b505050620000b8620000b26200078e60201b60201c565b62000792565b6008546001600160a01b03163b156200014557600854604051633e9f1edf60e11b8152306004820152733cc6cdda760b79bafa08df41ecfa224f810dceb660248201526001600160a01b0390911690637d3e3dbe90604401600060405180830381600087803b1580156200012b57600080fd5b505af115801562000140573d6000803e3d6000fd5b505050505b6001600160a01b038116620001ac5760405162461bcd60e51b815260206004820152602260248201527f45434453415369676e3a207369676e65725f206973207a65726f206164647265604482015261737360f01b60648201526084015b60405180910390fd5b600980546001600160a01b0319166001600160a01b039290921691909117905589516200022a5760405162461bcd60e51b815260206004820152602560248201527f466572616c66696c6545786869626974696f6e56343a206e616d655f20697320604482015264656d70747960d81b6064820152608401620001a3565b60008951116200028d5760405162461bcd60e51b815260206004820152602760248201527f466572616c66696c6545786869626974696f6e56343a2073796d626f6c5f20696044820152667320656d70747960c81b6064820152608401620001a3565b6001600160a01b0385166200030b5760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a207661756c744164647260448201527f6573735f206973207a65726f20616464726573730000000000000000000000006064820152608401620001a3565b6001600160a01b038416620003895760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a20636f7374526563656960448201527f7665725f206973207a65726f20616464726573730000000000000000000000006064820152608401620001a3565b6000835111620003f15760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20636f6e74726163745560448201526b52495f20697320656d70747960a01b6064820152608401620001a3565b6000825111620004575760405162461bcd60e51b815260206004820152602a60248201527f466572616c66696c6545786869626974696f6e56343a207365726965734964736044820152695f20697320656d70747960b01b6064820152608401620001a3565b6000815111620004c55760405162461bcd60e51b815260206004820152603260248201527f466572616c66696c6545786869626974696f6e56343a205f7365726965734d6160448201527178537570706c69657320697320656d70747960701b6064820152608401620001a3565b8051825114620005585760405162461bcd60e51b815260206004820152605160248201527f466572616c66696c6545786869626974696f6e56343a207365726965734d617860448201527f537570706c6965735f20616e64207365726965734964735f206c656e6774687360648201527020617265206e6f74207468652073616d6560781b608482015260a401620001a3565b600d805461ffff191689151561ff001916176101008915150217600160201b600160c01b0319166401000000006001600160a01b038781169190910291909117909155600e80546001600160a01b031916918716919091179055600b620005c0848262000bd0565b5060005b82518110156200074457600f6000848381518110620005e757620005e762000c9c565b6020026020010151815260200190815260200160002054600014620006615760405162461bcd60e51b815260206004820152602960248201527f466572616c66696c6545786869626974696f6e56343a206475706c6963617465604482015268081cd95c9a595cd25960ba1b6064820152608401620001a3565b600082828151811062000678576200067862000c9c565b602002602001015111620006de5760405162461bcd60e51b815260206004820152602660248201527f466572616c66696c6545786869626974696f6e56343a207a65726f206d617820604482015265737570706c7960d01b6064820152608401620001a3565b818181518110620006f357620006f362000c9c565b6020026020010151600f600085848151811062000714576200071462000c9c565b602002602001015181526020019081526020016000208190555080806200073b9062000cb2565b915050620005c4565b505050505050505050505050505050505050505050806015600082015181600001556020820151816001015560408201518160020155905050505050505050505050505062000cda565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620008255762000825620007e4565b604052919050565b600082601f8301126200083f57600080fd5b81516001600160401b038111156200085b576200085b620007e4565b602062000871601f8301601f19168201620007fa565b82815285828487010111156200088657600080fd5b60005b83811015620008a657858101830151828201840152820162000889565b506000928101909101919091529392505050565b80518015158114620008cb57600080fd5b919050565b80516001600160a01b0381168114620008cb57600080fd5b600082601f830112620008fa57600080fd5b815160206001600160401b03821115620009185762000918620007e4565b8160051b62000929828201620007fa565b92835284810182019282810190878511156200094457600080fd5b83870192505b8483101562000965578251825291830191908301906200094a565b979650505050505050565b6000606082840312156200098357600080fd5b604051606081016001600160401b0381118282101715620009a857620009a8620007e4565b80604052508091508251815260208301516020820152604083015160408201525092915050565b60008060008060008060008060008060006101a08c8e031215620009f257600080fd5b8b516001600160401b0381111562000a0957600080fd5b62000a178e828f016200082d565b60208e0151909c5090506001600160401b0381111562000a3657600080fd5b62000a448e828f016200082d565b9a505062000a5560408d01620008ba565b985062000a6560608d01620008ba565b975062000a7560808d01620008d0565b965062000a8560a08d01620008d0565b955062000a9560c08d01620008d0565b60e08d01519095506001600160401b0381111562000ab257600080fd5b62000ac08e828f016200082d565b6101008e015190955090506001600160401b0381111562000ae057600080fd5b62000aee8e828f01620008e8565b6101208e015190945090506001600160401b0381111562000b0e57600080fd5b62000b1c8e828f01620008e8565b92505062000b2f8d6101408e0162000970565b90509295989b509295989b9093969950565b600181811c9082168062000b5657607f821691505b60208210810362000b7757634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000bcb57600081815260208120601f850160051c8101602086101562000ba65750805b601f850160051c820191505b8181101562000bc75782815560010162000bb2565b5050505b505050565b81516001600160401b0381111562000bec5762000bec620007e4565b62000c048162000bfd845462000b41565b8462000b7d565b602080601f83116001811462000c3c576000841562000c235750858301515b600019600386901b1c1916600185901b17855562000bc7565b600085815260208120601f198616915b8281101562000c6d5788860151825594840194600190910190840162000c4c565b508582101562000c8c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006001820162000cd357634e487b7160e01b600052601160045260246000fd5b5060010190565b614a7b8062000cea6000396000f3fe60806040526004361061031e5760003560e01c80636817031b116101ab578063b66a0e5d116100f7578063e985e9c511610095578063f07e7fd01161006f578063f07e7fd014610a3a578063f2fde38b14610a5a578063f4e638be14610a7a578063fbfa77cf14610aa257600080fd5b8063e985e9c514610994578063eb5c60f2146109dd578063eee608a414610a0a57600080fd5b8063c3714c69116100d1578063c3714c691461091f578063c87b56dd1461093f578063dc78ac1c1461095f578063e8a3d4851461097f57600080fd5b8063b66a0e5d146108d5578063b88d4fde146108ea578063b9b8311a1461090a57600080fd5b80638cba1c6711610164578063926ce44e1161013e578063926ce44e1461085957806395d89b4114610886578063a07c7ce41461089b578063a22cb465146108b557600080fd5b80638cba1c67146107fb5780638da5cb5b1461081b5780638ef79e911461083957600080fd5b80636817031b1461072c5780636c19e7831461074c57806370a082311461076c578063715018a61461078c5780637f06ee06146107a15780638462151c146107ce57600080fd5b80632977e4b31161026a5780634bf365df1161022357806355367ba9116101fd57806355367ba9146106965780636352211e146106ab57806363e60230146106cb57806365a46e081461070c57600080fd5b80634bf365df146106415780634e99b80014610662578063530da8ef1461067757600080fd5b80632977e4b3146105995780632f745c59146105ac57806333e364cb146105cc5780633c352b0d146105e157806341a5626a1461060157806342842e0e1461062157600080fd5b80631623528f116102d757806321fe0c64116102b157806321fe0c641461051d578063238ac9331461053d57806323aed2281461055b57806323b872dd1461057957600080fd5b80631623528f1461049e578063167ddf6e146104be57806318160ddd146104f957600080fd5b806301ffc9a7146103af57806303120506146103e457806306fdde0314610404578063081812fc14610426578063095ea7b31461045e578063114ba8ee1461047e57600080fd5b366103aa57600e546001600160a01b031633146103a85760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a206f6e6c79206163636560448201527f70742066756e642066726f6d207661756c7420636f6e74726163742e0000000060648201526084015b60405180910390fd5b005b600080fd5b3480156103bb57600080fd5b506103cf6103ca366004613ac3565b610ac2565b60405190151581526020015b60405180910390f35b3480156103f057600080fd5b506103a86103ff366004613b03565b610b14565b34801561041057600080fd5b50610419610b3d565b6040516103db9190613b6e565b34801561043257600080fd5b50610446610441366004613b81565b610bcf565b6040516001600160a01b0390911681526020016103db565b34801561046a57600080fd5b506103a8610479366004613b9a565b610bf6565b34801561048a57600080fd5b506103a8610499366004613b03565b610c0f565b3480156104aa57600080fd5b506103a86104b9366004613b03565b610c39565b3480156104ca57600080fd5b506104de6104d9366004613b81565b610ce2565b604080518251815260209283015192810192909252016103db565b34801561050557600080fd5b5061050f600c5481565b6040519081526020016103db565b34801561052957600080fd5b506103a8610538366004613c98565b610d45565b34801561054957600080fd5b506009546001600160a01b0316610446565b34801561056757600080fd5b50600d5462010000900460ff166103cf565b34801561058557600080fd5b506103a8610594366004613ccc565b610e2f565b6103a86105a7366004613d08565b610e82565b3480156105b857600080fd5b5061050f6105c7366004613b9a565b6114bf565b3480156105d857600080fd5b506103a8611569565b3480156105ed57600080fd5b506103a86105fc366004613dc0565b61162c565b34801561060d57600080fd5b506103a861061c366004613dc0565b6117cc565b34801561062d57600080fd5b506103a861063c366004613ccc565b6119b0565b34801561064d57600080fd5b50600d546103cf906301000000900460ff1681565b34801561066e57600080fd5b506104196119fd565b34801561068357600080fd5b50600d546103cf90610100900460ff1681565b3480156106a257600080fd5b506103a8611a8b565b3480156106b757600080fd5b506104466106c6366004613b81565b611b3f565b3480156106d757600080fd5b506104196040518060400160405280601581526020017411995c985b199a5b19515e1a1a589a5d1a5bdb958d605a1b81525081565b34801561071857600080fd5b506103a8610727366004613e2b565b611b74565b34801561073857600080fd5b506103a8610747366004613b03565b611e72565b34801561075857600080fd5b506103a8610767366004613b03565b611f08565b34801561077857600080fd5b5061050f610787366004613b03565b611f93565b34801561079857600080fd5b506103a8612019565b3480156107ad57600080fd5b5061050f6107bc366004613b81565b60009081526010602052604090205490565b3480156107da57600080fd5b506107ee6107e9366004613b03565b61202d565b6040516103db9190613eec565b34801561080757600080fd5b506103a8610816366004613f30565b612099565b34801561082757600080fd5b506006546001600160a01b0316610446565b34801561084557600080fd5b506103a8610854366004613ffb565b6121c8565b34801561086557600080fd5b5061050f610874366004613b03565b60146020526000908152604090205481565b34801561089257600080fd5b50610419612237565b3480156108a757600080fd5b50600d546103cf9060ff1681565b3480156108c157600080fd5b506103a86108d036600461405c565b612246565b3480156108e157600080fd5b506103a861225a565b3480156108f657600080fd5b506103a8610905366004614093565b612277565b34801561091657600080fd5b506103a86122c5565b34801561092b57600080fd5b506103a861093a36600461410e565b612366565b34801561094b57600080fd5b5061041961095a366004613b81565b6124d6565b34801561096b57600080fd5b506103a861097a366004613b03565b6125e4565b34801561098b57600080fd5b50610419612610565b3480156109a057600080fd5b506103cf6109af36600461414f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e957600080fd5b5061050f6109f8366004613b81565b6000908152600f602052604090205490565b348015610a1657600080fd5b506103cf610a25366004613b03565b60076020526000908152604090205460ff1681565b348015610a4657600080fd5b50600854610446906001600160a01b031681565b348015610a6657600080fd5b506103a8610a75366004613b03565b61261d565b348015610a8657600080fd5b50600d546104469064010000000090046001600160a01b031681565b348015610aae57600080fd5b50600e54610446906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b1480610af357506001600160e01b03198216635b5e139f60e01b145b80610b0e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b610b1c612696565b6001600160a01b03166000908152600760205260409020805460ff19169055565b606060008054610b4c90614182565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7890614182565b8015610bc55780601f10610b9a57610100808354040283529160200191610bc5565b820191906000526020600020905b815481529060010190602001808311610ba857829003601f168201915b5050505050905090565b6000610bda826126f0565b506000908152600460205260409020546001600160a01b031690565b81610c0081612715565b610c0a83836127e7565b505050565b610c17612696565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610c41612696565b6001600160a01b038116610cb45760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a20636f737452656365696044820152737665725f206973207a65726f206164647265737360601b606482015260840161039f565b600d80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b6040805180820190915260008082526020820152610cff826128f7565b610d1b5760405162461bcd60e51b815260040161039f906141bc565b50600090815260116020908152604091829020825180840190935280548352600101549082015290565b600d5460ff16610dac5760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f6b656e2069732060448201526b6e6f74206275726e61626c6560a01b606482015260840161039f565b60005b8151811015610e2b57610ddb33838381518110610dce57610dce6141f3565b6020026020010151612914565b610df75760405162461bcd60e51b815260040161039f90614209565b610e19828281518110610e0c57610e0c6141f3565b6020026020010151612993565b80610e238161426c565b915050610daf565b5050565b826001600160a01b0381163314610e4957610e4933612715565b306001600160a01b03841603610e715760405162461bcd60e51b815260040161039f90614285565b610e7c848484612a69565b50505050565b600d5462010000900460ff16610eed5760405162461bcd60e51b815260206004820152602a60248201527f466572616c66696c6545786869626974696f6e56343a2073616c65206973206e6044820152691bdd081cdd185c9d195960b21b606482015260840161039f565b610ef5612a9a565b610efe81612b15565b610f0e60e0820160c083016142e2565b610f7d5780353414610f785760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56343a20696e76616c6964207060448201526c185e5b595b9d08185b5bdd5b9d609a1b606482015260840161039f565b610fe6565b600e54604051632eeee16360e01b81526001600160a01b0390911690632eeee16390610fb39087908790879087906004016144e2565b600060405180830381600087803b158015610fcd57600080fd5b505af1158015610fe1573d6000803e3d6000fd5b505050505b6000463083604051602001610ffd93929190614514565b60405160208183030381529060405280519060200120905061102181868686612c6e565b61103e57604051638baa579f60e01b815260040160405180910390fd5b60006020830135833511156110785761105a6080840184614547565b905061106b60208501358535614590565b61107591906145a3565b90505b60008060005b61108b6080870187614547565b90508110156113df576110e1306110a86080890160608a01613b03565b6110b560808a018a614547565b858181106110c5576110c56141f3565b9050602002013560405180602001604052806000815250612cc6565b60006110f060a0880188614547565b83818110611100576111006141f3565b905060200281019061111291906145c5565b808060200260200160405190810160405280939291908181526020016000905b8282101561115e5761114f6040830286013681900381019061460e565b81526020019060010190611132565b50505050509050600085905060005b82518110801561117d5750600082115b156112625760006014600085848151811061119a5761119a6141f3565b6020026020010151600001516001600160a01b03166001600160a01b031681526020019081526020016000205490506000838210156111d957816111db565b835b90506111e78188614664565b96508060146000878681518110611200576112006141f3565b6020026020010151600001516001600160a01b03166001600160a01b03168152602001908152602001600020600082825461123b9190614590565b9091555061124b90508185614590565b93505050808061125a9061426c565b91505061116d565b50801561135e5760005b825181101561135c576000838281518110611289576112896141f3565b602002602001015160000151905060006127108584815181106112ae576112ae6141f3565b602002602001015160200151856112c59190614677565b6112cf91906145a3565b600d549091506001600160a01b03640100000000909104811690831603611303576112fa8188614664565b9650505061134a565b61130d8189614664565b6040519098506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611346573d6000803e3d6000fd5b5050505b806113548161426c565b91505061126c565b505b61136b6080890189614547565b8481811061137b5761137b6141f3565b905060200201358860600160208101906113959190613b03565b6001600160a01b03167f0475389cd69b8d3163620b43283bf74e8fc71020c3c6cef2a529b5c405e9687f60405160405180910390a3505080806113d79061426c565b91505061107e565b506113ea8183614664565b6113f960208701358735614590565b101561145c5760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f74616c2062707360448201526b0206f7665722031302c3030360a41b606482015260840161039f565b6000611469838735614590565b905080156114b457600d546040516401000000009091046001600160a01b0316906108fc8315029083906000818181858888f193505050501580156114b2573d6000803e3d6000fd5b505b505050505050505050565b60006114ca83611f93565b821061152c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161039f565b6001600160a01b0383166000908152601260205260409020805483908110611556576115566141f3565b9060005260206000200154905092915050565b611571612696565b600d546301000000900460ff161561159b5760405162461bcd60e51b815260040161039f9061468e565b600d5462010000900460ff16156116115760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015273726571756972656420746f2062652066616c736560601b606482015260840161039f565b611619612a9a565b600d805462ff0000191662010000179055565b611634612696565b828114611654576040516313086eff60e21b815260040160405180910390fd5b60005b838110156117c5576000858583818110611673576116736141f3565b90506020020160208101906116889190613b03565b6001600160a01b0316036116af57604051630107349760e51b815260040160405180910390fd5b8282828181106116c1576116c16141f3565b905060200201356000036116e857604051636745f8fb60e01b815260040160405180910390fd5b600060146000878785818110611700576117006141f3565b90506020020160208101906117159190613b03565b6001600160a01b03166001600160a01b03168152602001908152602001600020541115611755576040516328547bdf60e01b815260040160405180910390fd5b828282818110611767576117676141f3565b9050602002013560146000878785818110611784576117846141f3565b90506020020160208101906117999190613b03565b6001600160a01b03168152602081019190915260400160002055806117bd8161426c565b915050611657565b5050505050565b6117d4612696565b8281146117f4576040516313086eff60e21b815260040160405180910390fd5b60005b838110156117c5576000838383818110611813576118136141f3565b90506020020160208101906118289190613b03565b6001600160a01b03160361184f57604051630107349760e51b815260040160405180910390fd5b600060146000858585818110611867576118676141f3565b905060200201602081019061187c9190613b03565b6001600160a01b03166001600160a01b031681526020019081526020016000205411156118bc576040516328547bdf60e01b815260040160405180910390fd5b601460008686848181106118d2576118d26141f3565b90506020020160208101906118e79190613b03565b6001600160a01b03166001600160a01b03168152602001908152602001600020546014600085858581811061191e5761191e6141f3565b90506020020160208101906119339190613b03565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506014600086868481811061196d5761196d6141f3565b90506020020160208101906119829190613b03565b6001600160a01b031681526020810191909152604001600090812055806119a88161426c565b9150506117f7565b826001600160a01b03811633146119ca576119ca33612715565b306001600160a01b038416036119f25760405162461bcd60e51b815260040161039f90614285565b610e7c848484612cf9565b600a8054611a0a90614182565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3690614182565b8015611a835780601f10611a5857610100808354040283529160200191611a83565b820191906000526020600020905b815481529060010190602001808311611a6657829003601f168201915b505050505081565b611a93612696565b600d546301000000900460ff1615611abd5760405162461bcd60e51b815260040161039f9061468e565b600d5462010000900460ff16611b315760405162461bcd60e51b815260206004820152603360248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015272726571756972656420746f206265207472756560681b606482015260840161039f565b600d805462ff000019169055565b6000818152600260205260408120546001600160a01b031680610b0e5760405162461bcd60e51b815260040161039f906141bc565b611b7c612696565b60008251118015611b8e575060008151115b611c0e5760405162461bcd60e51b815260206004820152604560248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206f7220726563697069656e74416464726573736573206c656e677468206973606482015264207a65726f60d81b608482015260a40161039f565b8051825114611c9a5760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206c656e67746820697320646966666572656e742066726f6d2072656369706960648201526b656e7441646472657373657360a01b608482015260a40161039f565b611ca2611a8b565b30600081815260126020908152604080832080548251818502810185019093528083529192909190830182828015611cf957602002820191906000526020600020905b815481526020019060010190808311611ce5575b5050505050905060005b8151811015611df5576000828281518110611d2057611d206141f3565b602090810291909101810151600081815260118352604080822081518083019092528054825260010154938101939093529092505b87518161ffff161015611ddf57878161ffff1681518110611d7857611d786141f3565b6020026020010151826000015103611dcd576000878261ffff1681518110611da257611da26141f3565b60200260200101519050611dc787828660405180602001604052806000815250612cc6565b50611ddf565b80611dd7816146e2565b915050611d55565b5050508080611ded9061426c565b915050611d03565b50611dff82611f93565b15610e7c5760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a20546f6b656e20666f7260448201527f2073616c652062616c616e63652068617320746f206265207a65726f00000000606482015260840161039f565b611e7a612696565b6001600160a01b038116611ee65760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56343a207661756c745f20697360448201526c207a65726f206164647265737360981b606482015260840161039f565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b611f10612696565b6001600160a01b038116611f715760405162461bcd60e51b815260206004820152602260248201527f45434453415369676e3a207369676e65725f206973207a65726f206164647265604482015261737360f01b606482015260840161039f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611ffd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161039f565b506001600160a01b031660009081526003602052604090205490565b612021612696565b61202b6000612d14565b565b6001600160a01b03811660009081526012602090815260409182902080548351818402810184019094528084526060939283018282801561208d57602002820191906000526020600020905b815481526020019060010190808311612079575b50505050509050919050565b3360009081526007602052604090205460ff16806120c157506006546001600160a01b031633145b6120ca57600080fd5b600d546301000000900460ff166121415760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a20636f6e747261637420604482015274191bd95cdb89dd08185b1b1bddc81d1bc81b5a5b9d605a1b606482015260840161039f565b60005b81811015610c0a576121b6838383818110612161576121616141f3565b9050606002016000013584848481811061217d5761217d6141f3565b90506060020160200135858585818110612199576121996141f3565b90506060020160400160208101906121b19190613b03565b612d66565b806121c08161426c565b915050612144565b6121d0612696565b600081511161222b5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a20626173655552495f20697320656d70746044820152607960f81b606482015260840161039f565b600a610e2b8282614751565b606060018054610b4c90614182565b8161225081612715565b610c0a8383612ee8565b612262612696565b600d805463ff0000001916905561202b611569565b836001600160a01b03811633146122915761229133612715565b306001600160a01b038516036122b95760405162461bcd60e51b815260040161039f90614285565b6117c585858585612ef3565b6122cd612696565b6122d5611a8b565b3060009081526012602090815260408083208054825181850281018501909352808352919290919083018282801561232c57602002820191906000526020600020905b815481526020019060010190808311612318575b5050505050905060005b8151811015610e2b57612354828281518110610e0c57610e0c6141f3565b8061235e8161426c565b915050612336565b60028110156123885760405163251f56a160e21b815260040160405180910390fd5b60005b818110156124605760008383838181106123a7576123a76141f3565b6020908102929092013560008181526011845260409081902081518083019092528054808352600190910154948201949094526015549194509214801591506123f35750601654815114155b15612411576040516324c940df60e01b815260040160405180910390fd5b3361241b83611b3f565b6001600160a01b031614612442576040516349e27cff60e01b815260040160405180910390fd5b61244b82612993565b505080806124589061426c565b91505061238b565b50601754601654612472908233612d66565b601780549060006124828361426c565b91905055508061248f3390565b6001600160a01b03167f01cb282a137c69adfa541f949214e683b63d21e063da2750ccd324692dca838285856040516124c9929190614810565b60405180910390a3505050565b60606000600a80546124e790614182565b9050116125455760405162461bcd60e51b815260206004820152602660248201527f4552433732314d657461646174613a205f746f6b656e4261736555524920697360448201526520656d70747960d01b606482015260840161039f565b61254e826128f7565b6125b25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161039f565b600a6125bd83612f25565b6040516020016125ce929190614824565b6040516020818303038152906040529050919050565b6125ec612696565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b600b8054611a0a90614182565b612625612696565b6001600160a01b03811661268a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039f565b61269381612d14565b50565b6006546001600160a01b0316331461202b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039f565b6126f9816128f7565b6126935760405162461bcd60e51b815260040161039f906141bc565b6008546001600160a01b03163b1561269357600854604051633185c44d60e21b81523060048201526001600160a01b0383811660248301529091169063c617113490604401602060405180830381865afa158015612777573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279b91906148b8565b6126935760405162461bcd60e51b815260206004820152601760248201527f6f70657261746f72206973206e6f7420616c6c6f776564000000000000000000604482015260640161039f565b60006127f282611b3f565b9050806001600160a01b0316836001600160a01b03160361285f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161039f565b336001600160a01b038216148061287b575061287b81336109af565b6128ed5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161039f565b610c0a8383612fb7565b6000908152600260205260409020546001600160a01b0316151590565b60008061292083611b3f565b9050806001600160a01b0316846001600160a01b0316148061296757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061298b5750836001600160a01b031661298084610bcf565b6001600160a01b0316145b949350505050565b61299c816128f7565b6129b85760405162461bcd60e51b815260040161039f906141bc565b600081815260116020908152604080832081518083018352815480825260019283015482860152855260109093529083208054929391929091906129fd908490614590565b925050819055506001600c6000828254612a179190614590565b9091555050600082815260116020526040812081815560010155612a3a82613025565b60405182907fbde7938970372996ff103863625e348ef2bf8f38a5b02181be75aafef17c23d590600090a25050565b612a733382612914565b612a8f5760405162461bcd60e51b815260040161039f90614209565b610c0a8383836130c8565b6000612aa530611f93565b9050600081116126935760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a204e6f20746f6b656e206044820152741bdddb995908189e481d1a194818dbdb9d1c9858dd605a1b606482015260840161039f565b6000612b246080830183614547565b905011612b7f5760405162461bcd60e51b8152602060048201526024808201527f466572616c66696c6553616c65446174613a20746f6b656e49647320697320656044820152636d70747960e01b606482015260840161039f565b612b8c60a0820182614547565b9050612b9b6080830183614547565b905014612c105760405162461bcd60e51b815260206004820152603d60248201527f466572616c66696c6553616c65446174613a20746f6b656e49647320616e642060448201527f726576656e7565536861726573206c656e677468206d69736d61746368000000606482015260840161039f565b428160400135116126935760405162461bcd60e51b815260206004820152602260248201527f466572616c66696c6553616c65446174613a2073616c65206973206578706972604482015261195960f21b606482015260840161039f565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c859052603c81208190612cab90848787613239565b6009546001600160a01b039081169116149695505050505050565b612cd18484846130c8565b612cdd84848484613261565b610e7c5760405162461bcd60e51b815260040161039f906148d5565b610c0a83838360405180602001604052806000815250612277565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000838152600f60205260409020541515612d8084612f25565b604051602001612d909190614927565b60405160208183030381529060405290612dbd5760405162461bcd60e51b815260040161039f9190613b6e565b506000838152600f602090815260408083205460109092529091205410612e385760405162461bcd60e51b815260206004820152602960248201527f466572616c66696c6545786869626974696f6e56343a206e6f20736c6f747320604482015268617661696c61626c6560b81b606482015260840161039f565b6001600c6000828254612e4b9190614664565b90915550506000838152601060205260408120805460019290612e6f908490614664565b9091555050604080518082018252848152602080820185815260008681526011909252929020905181559051600190910155612eab818361335f565b8183826001600160a01b03167f407d7da1d3b2b1871fbfa2b5b1c4657a3cc5711d3023c552798551c7ee301eea60405160405180910390a4505050565b610e2b3383836134da565b612efd3383612914565b612f195760405162461bcd60e51b815260040161039f90614209565b610e7c84848484612cc6565b60606000612f32836135a0565b60010190506000816001600160401b03811115612f5157612f51613bc4565b6040519080825280601f01601f191660200182016040528015612f7b576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612f8557509392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612fec82611b3f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061303082611b3f565b9050613040816000846001613678565b61304982611b3f565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b826001600160a01b03166130db82611b3f565b6001600160a01b0316146131015760405162461bcd60e51b815260040161039f90614984565b6001600160a01b0382166131635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161039f565b6131708383836001613678565b826001600160a01b031661318382611b3f565b6001600160a01b0316146131a95760405162461bcd60e51b815260040161039f90614984565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080600061324a8787878761378f565b9150915061325781613853565b5095945050505050565b60006001600160a01b0384163b1561335757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906132a59033908990889088906004016149c9565b6020604051808303816000875af19250505080156132e0575060408051601f3d908101601f191682019092526132dd918101906149fc565b60015b61333d573d80801561330e576040519150601f19603f3d011682016040523d82523d6000602084013e613313565b606091505b5080516000036133355760405162461bcd60e51b815260040161039f906148d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061298b565b50600161298b565b6001600160a01b0382166133b55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161039f565b6133be816128f7565b1561340b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161039f565b613419600083836001613678565b613422816128f7565b1561346f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161039f565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b03160361353b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161039f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191016124c9565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106135df5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061360b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061362957662386f26fc10000830492506010015b6305f5e1008310613641576305f5e100830492506008015b612710831061365557612710830492506004015b60648310613667576064830492506002015b600a8310610b0e5760010192915050565b60018111156136e75760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161039f565b816001600160a01b038516158015906137125750836001600160a01b0316856001600160a01b031614155b1561372157613721858261399d565b6001600160a01b0384161580159061374b5750846001600160a01b0316846001600160a01b031614155b156117c5576001600160a01b0384166000908152601260209081526040808320805460018101825590845282842081018590558484526013909252909120556117c5565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156137c6575060009050600361384a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561381a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166138435760006001925092505061384a565b9150600090505b94509492505050565b600081600481111561386757613867614a19565b0361386f5750565b600181600481111561388357613883614a19565b036138d05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161039f565b60028160048111156138e4576138e4614a19565b036139315760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161039f565b600381600481111561394557613945614a19565b036126935760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161039f565b600060016139aa84611f93565b6139b49190614590565b600083815260136020526040902054909150808214613a5b576001600160a01b03841660009081526012602052604081208054849081106139f7576139f76141f3565b906000526020600020015490508060126000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110613a3b57613a3b6141f3565b600091825260208083209091019290925591825260139052604090208190555b60008381526013602090815260408083208390556001600160a01b038716835260129091529020805480613a9157613a91614a2f565b6001900381819060005260206000200160009055905550505050565b6001600160e01b03198116811461269357600080fd5b600060208284031215613ad557600080fd5b8135613ae081613aad565b9392505050565b80356001600160a01b0381168114613afe57600080fd5b919050565b600060208284031215613b1557600080fd5b613ae082613ae7565b60005b83811015613b39578181015183820152602001613b21565b50506000910152565b60008151808452613b5a816020860160208601613b1e565b601f01601f19169290920160200192915050565b602081526000613ae06020830184613b42565b600060208284031215613b9357600080fd5b5035919050565b60008060408385031215613bad57600080fd5b613bb683613ae7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613c0257613c02613bc4565b604052919050565b60006001600160401b03821115613c2357613c23613bc4565b5060051b60200190565b600082601f830112613c3e57600080fd5b81356020613c53613c4e83613c0a565b613bda565b82815260059290921b84018101918181019086841115613c7257600080fd5b8286015b84811015613c8d5780358352918301918301613c76565b509695505050505050565b600060208284031215613caa57600080fd5b81356001600160401b03811115613cc057600080fd5b61298b84828501613c2d565b600080600060608486031215613ce157600080fd5b613cea84613ae7565b9250613cf860208501613ae7565b9150604084013590509250925092565b60008060008060808587031215613d1e57600080fd5b8435935060208501359250604085013560ff81168114613d3d57600080fd5b915060608501356001600160401b03811115613d5857600080fd5b850160e08188031215613d6a57600080fd5b939692955090935050565b60008083601f840112613d8757600080fd5b5081356001600160401b03811115613d9e57600080fd5b6020830191508360208260051b8501011115613db957600080fd5b9250929050565b60008060008060408587031215613dd657600080fd5b84356001600160401b0380821115613ded57600080fd5b613df988838901613d75565b90965094506020870135915080821115613e1257600080fd5b50613e1f87828801613d75565b95989497509550505050565b60008060408385031215613e3e57600080fd5b82356001600160401b0380821115613e5557600080fd5b613e6186838701613c2d565b9350602091508185013581811115613e7857600080fd5b85019050601f81018613613e8b57600080fd5b8035613e99613c4e82613c0a565b81815260059190911b82018301908381019088831115613eb857600080fd5b928401925b82841015613edd57613ece84613ae7565b82529284019290840190613ebd565b80955050505050509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613f2457835183529284019291840191600101613f08565b50909695505050505050565b60008060208385031215613f4357600080fd5b82356001600160401b0380821115613f5a57600080fd5b818501915085601f830112613f6e57600080fd5b813581811115613f7d57600080fd5b866020606083028501011115613f9257600080fd5b60209290920196919550909350505050565b60006001600160401b03831115613fbd57613fbd613bc4565b613fd0601f8401601f1916602001613bda565b9050828152838383011115613fe457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561400d57600080fd5b81356001600160401b0381111561402357600080fd5b8201601f8101841361403457600080fd5b61298b84823560208401613fa4565b801515811461269357600080fd5b8035613afe81614043565b6000806040838503121561406f57600080fd5b61407883613ae7565b9150602083013561408881614043565b809150509250929050565b600080600080608085870312156140a957600080fd5b6140b285613ae7565b93506140c060208601613ae7565b92506040850135915060608501356001600160401b038111156140e257600080fd5b8501601f810187136140f357600080fd5b61410287823560208401613fa4565b91505092959194509250565b6000806020838503121561412157600080fd5b82356001600160401b0381111561413757600080fd5b61414385828601613d75565b90969095509350505050565b6000806040838503121561416257600080fd5b61416b83613ae7565b915061417960208401613ae7565b90509250929050565b600181811c9082168061419657607f821691505b6020821081036141b657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60006001820161427e5761427e614256565b5060010190565b6020808252603e908201527f466572616c66696c6545786869626974696f6e56343a20436f6e74726163742060408201527f69736e277420616c6c6f77656420746f207265636569766520746f6b656e0000606082015260800190565b6000602082840312156142f457600080fd5b8135613ae081614043565b6000808335601e1984360301811261431657600080fd5b83016020810192503590506001600160401b0381111561433557600080fd5b8060051b3603821315613db957600080fd5b81835260006001600160fb1b0383111561436057600080fd5b8260051b80836020870137939093016020019392505050565b8183526000602080850194508260005b858110156143bf576001600160a01b036143a283613ae7565b168752818301358388015260409687019690910190600101614389565b509495945050505050565b8035825260208082013581840152604080830135908401526000906001600160a01b036143f960608501613ae7565b16606085015261440c60808401846142ff565b60e0608087015261442160e087018284614347565b91505061443160a08501856142ff565b86830360a0880152808352838301600582901b840185018360005b848110156144be57868303601f19018452813536879003601e1901811261447257600080fd5b860188810190356001600160401b0381111561448d57600080fd5b8060061b360382131561449f57600080fd5b6144aa858284614379565b958a0195945050509087019060010161444c565b50506144cc60c08901614051565b80151560c08b0152955098975050505050505050565b84815283602082015260ff8316604082015260806060820152600061450a60808301846143ca565b9695505050505050565b8381526001600160a01b038316602082015260606040820181905260009061453e908301846143ca565b95945050505050565b6000808335601e1984360301811261455e57600080fd5b8301803591506001600160401b0382111561457857600080fd5b6020019150600581901b3603821315613db957600080fd5b81810381811115610b0e57610b0e614256565b6000826145c057634e487b7160e01b600052601260045260246000fd5b500490565b6000808335601e198436030181126145dc57600080fd5b8301803591506001600160401b038211156145f657600080fd5b6020019150600681901b3603821315613db957600080fd5b60006040828403121561462057600080fd5b604051604081018181106001600160401b038211171561464257614642613bc4565b60405261464e83613ae7565b8152602083013560208201528091505092915050565b80820180821115610b0e57610b0e614256565b8082028115828204841417610b0e57610b0e614256565b60208082526034908201527f466572616c66696c6545786869626974696f6e56343a206d696e7461626c6520604082015273726571756972656420746f2062652066616c736560601b606082015260800190565b600061ffff8083168181036146f9576146f9614256565b6001019392505050565b601f821115610c0a57600081815260208120601f850160051c8101602086101561472a5750805b601f850160051c820191505b8181101561474957828155600101614736565b505050505050565b81516001600160401b0381111561476a5761476a613bc4565b61477e816147788454614182565b84614703565b602080601f8311600181146147b3576000841561479b5750858301515b600019600386901b1c1916600185901b178555614749565b600085815260208120601f198616915b828110156147e2578886015182559484019460019091019084016147c3565b50858210156148005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208152600061298b602083018486614347565b600080845461483281614182565b6001828116801561484a576001811461485f5761488e565b60ff198416875282151583028701945061488e565b8860005260208060002060005b858110156148855781548a82015290840190820161486c565b50505082870194505b50602f60f81b8452865192506148aa8382860160208a01613b1e565b919092010195945050505050565b6000602082840312156148ca57600080fd5b8151613ae081614043565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f466572616c66696c6545786869626974696f6e56343a2073657269657349642081526e03237b2b9b713ba1032bc34b9ba1d1608d1b60208201526000825161497781602f850160208701613b1e565b91909101602f0192915050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061450a90830184613b42565b600060208284031215614a0e57600080fd5b8151613ae081613aad565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fdfea26469706673582212200f9af8766cfbd73bcde68788a1424cd908635bd6c9c66cce1df35f75ea013a5464736f6c6343000811003300000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f000000000000000000000000455464f0d369dac13002e81e9fab857f6ad21795000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000023c4b0a8b6d3e4c32aaaec701bb9deca9000000000000000000000000001e84800000000000000000000000000000000000000000000000000000000000000005435241574c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009464552414c46494c4500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5557423352426834327174543461525247695a4372767839384c507138476d446d696f453845516935566d360000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x60806040526004361061031e5760003560e01c80636817031b116101ab578063b66a0e5d116100f7578063e985e9c511610095578063f07e7fd01161006f578063f07e7fd014610a3a578063f2fde38b14610a5a578063f4e638be14610a7a578063fbfa77cf14610aa257600080fd5b8063e985e9c514610994578063eb5c60f2146109dd578063eee608a414610a0a57600080fd5b8063c3714c69116100d1578063c3714c691461091f578063c87b56dd1461093f578063dc78ac1c1461095f578063e8a3d4851461097f57600080fd5b8063b66a0e5d146108d5578063b88d4fde146108ea578063b9b8311a1461090a57600080fd5b80638cba1c6711610164578063926ce44e1161013e578063926ce44e1461085957806395d89b4114610886578063a07c7ce41461089b578063a22cb465146108b557600080fd5b80638cba1c67146107fb5780638da5cb5b1461081b5780638ef79e911461083957600080fd5b80636817031b1461072c5780636c19e7831461074c57806370a082311461076c578063715018a61461078c5780637f06ee06146107a15780638462151c146107ce57600080fd5b80632977e4b31161026a5780634bf365df1161022357806355367ba9116101fd57806355367ba9146106965780636352211e146106ab57806363e60230146106cb57806365a46e081461070c57600080fd5b80634bf365df146106415780634e99b80014610662578063530da8ef1461067757600080fd5b80632977e4b3146105995780632f745c59146105ac57806333e364cb146105cc5780633c352b0d146105e157806341a5626a1461060157806342842e0e1461062157600080fd5b80631623528f116102d757806321fe0c64116102b157806321fe0c641461051d578063238ac9331461053d57806323aed2281461055b57806323b872dd1461057957600080fd5b80631623528f1461049e578063167ddf6e146104be57806318160ddd146104f957600080fd5b806301ffc9a7146103af57806303120506146103e457806306fdde0314610404578063081812fc14610426578063095ea7b31461045e578063114ba8ee1461047e57600080fd5b366103aa57600e546001600160a01b031633146103a85760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a206f6e6c79206163636560448201527f70742066756e642066726f6d207661756c7420636f6e74726163742e0000000060648201526084015b60405180910390fd5b005b600080fd5b3480156103bb57600080fd5b506103cf6103ca366004613ac3565b610ac2565b60405190151581526020015b60405180910390f35b3480156103f057600080fd5b506103a86103ff366004613b03565b610b14565b34801561041057600080fd5b50610419610b3d565b6040516103db9190613b6e565b34801561043257600080fd5b50610446610441366004613b81565b610bcf565b6040516001600160a01b0390911681526020016103db565b34801561046a57600080fd5b506103a8610479366004613b9a565b610bf6565b34801561048a57600080fd5b506103a8610499366004613b03565b610c0f565b3480156104aa57600080fd5b506103a86104b9366004613b03565b610c39565b3480156104ca57600080fd5b506104de6104d9366004613b81565b610ce2565b604080518251815260209283015192810192909252016103db565b34801561050557600080fd5b5061050f600c5481565b6040519081526020016103db565b34801561052957600080fd5b506103a8610538366004613c98565b610d45565b34801561054957600080fd5b506009546001600160a01b0316610446565b34801561056757600080fd5b50600d5462010000900460ff166103cf565b34801561058557600080fd5b506103a8610594366004613ccc565b610e2f565b6103a86105a7366004613d08565b610e82565b3480156105b857600080fd5b5061050f6105c7366004613b9a565b6114bf565b3480156105d857600080fd5b506103a8611569565b3480156105ed57600080fd5b506103a86105fc366004613dc0565b61162c565b34801561060d57600080fd5b506103a861061c366004613dc0565b6117cc565b34801561062d57600080fd5b506103a861063c366004613ccc565b6119b0565b34801561064d57600080fd5b50600d546103cf906301000000900460ff1681565b34801561066e57600080fd5b506104196119fd565b34801561068357600080fd5b50600d546103cf90610100900460ff1681565b3480156106a257600080fd5b506103a8611a8b565b3480156106b757600080fd5b506104466106c6366004613b81565b611b3f565b3480156106d757600080fd5b506104196040518060400160405280601581526020017411995c985b199a5b19515e1a1a589a5d1a5bdb958d605a1b81525081565b34801561071857600080fd5b506103a8610727366004613e2b565b611b74565b34801561073857600080fd5b506103a8610747366004613b03565b611e72565b34801561075857600080fd5b506103a8610767366004613b03565b611f08565b34801561077857600080fd5b5061050f610787366004613b03565b611f93565b34801561079857600080fd5b506103a8612019565b3480156107ad57600080fd5b5061050f6107bc366004613b81565b60009081526010602052604090205490565b3480156107da57600080fd5b506107ee6107e9366004613b03565b61202d565b6040516103db9190613eec565b34801561080757600080fd5b506103a8610816366004613f30565b612099565b34801561082757600080fd5b506006546001600160a01b0316610446565b34801561084557600080fd5b506103a8610854366004613ffb565b6121c8565b34801561086557600080fd5b5061050f610874366004613b03565b60146020526000908152604090205481565b34801561089257600080fd5b50610419612237565b3480156108a757600080fd5b50600d546103cf9060ff1681565b3480156108c157600080fd5b506103a86108d036600461405c565b612246565b3480156108e157600080fd5b506103a861225a565b3480156108f657600080fd5b506103a8610905366004614093565b612277565b34801561091657600080fd5b506103a86122c5565b34801561092b57600080fd5b506103a861093a36600461410e565b612366565b34801561094b57600080fd5b5061041961095a366004613b81565b6124d6565b34801561096b57600080fd5b506103a861097a366004613b03565b6125e4565b34801561098b57600080fd5b50610419612610565b3480156109a057600080fd5b506103cf6109af36600461414f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e957600080fd5b5061050f6109f8366004613b81565b6000908152600f602052604090205490565b348015610a1657600080fd5b506103cf610a25366004613b03565b60076020526000908152604090205460ff1681565b348015610a4657600080fd5b50600854610446906001600160a01b031681565b348015610a6657600080fd5b506103a8610a75366004613b03565b61261d565b348015610a8657600080fd5b50600d546104469064010000000090046001600160a01b031681565b348015610aae57600080fd5b50600e54610446906001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b1480610af357506001600160e01b03198216635b5e139f60e01b145b80610b0e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b610b1c612696565b6001600160a01b03166000908152600760205260409020805460ff19169055565b606060008054610b4c90614182565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7890614182565b8015610bc55780601f10610b9a57610100808354040283529160200191610bc5565b820191906000526020600020905b815481529060010190602001808311610ba857829003601f168201915b5050505050905090565b6000610bda826126f0565b506000908152600460205260409020546001600160a01b031690565b81610c0081612715565b610c0a83836127e7565b505050565b610c17612696565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610c41612696565b6001600160a01b038116610cb45760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a20636f737452656365696044820152737665725f206973207a65726f206164647265737360601b606482015260840161039f565b600d80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b6040805180820190915260008082526020820152610cff826128f7565b610d1b5760405162461bcd60e51b815260040161039f906141bc565b50600090815260116020908152604091829020825180840190935280548352600101549082015290565b600d5460ff16610dac5760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f6b656e2069732060448201526b6e6f74206275726e61626c6560a01b606482015260840161039f565b60005b8151811015610e2b57610ddb33838381518110610dce57610dce6141f3565b6020026020010151612914565b610df75760405162461bcd60e51b815260040161039f90614209565b610e19828281518110610e0c57610e0c6141f3565b6020026020010151612993565b80610e238161426c565b915050610daf565b5050565b826001600160a01b0381163314610e4957610e4933612715565b306001600160a01b03841603610e715760405162461bcd60e51b815260040161039f90614285565b610e7c848484612a69565b50505050565b600d5462010000900460ff16610eed5760405162461bcd60e51b815260206004820152602a60248201527f466572616c66696c6545786869626974696f6e56343a2073616c65206973206e6044820152691bdd081cdd185c9d195960b21b606482015260840161039f565b610ef5612a9a565b610efe81612b15565b610f0e60e0820160c083016142e2565b610f7d5780353414610f785760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56343a20696e76616c6964207060448201526c185e5b595b9d08185b5bdd5b9d609a1b606482015260840161039f565b610fe6565b600e54604051632eeee16360e01b81526001600160a01b0390911690632eeee16390610fb39087908790879087906004016144e2565b600060405180830381600087803b158015610fcd57600080fd5b505af1158015610fe1573d6000803e3d6000fd5b505050505b6000463083604051602001610ffd93929190614514565b60405160208183030381529060405280519060200120905061102181868686612c6e565b61103e57604051638baa579f60e01b815260040160405180910390fd5b60006020830135833511156110785761105a6080840184614547565b905061106b60208501358535614590565b61107591906145a3565b90505b60008060005b61108b6080870187614547565b90508110156113df576110e1306110a86080890160608a01613b03565b6110b560808a018a614547565b858181106110c5576110c56141f3565b9050602002013560405180602001604052806000815250612cc6565b60006110f060a0880188614547565b83818110611100576111006141f3565b905060200281019061111291906145c5565b808060200260200160405190810160405280939291908181526020016000905b8282101561115e5761114f6040830286013681900381019061460e565b81526020019060010190611132565b50505050509050600085905060005b82518110801561117d5750600082115b156112625760006014600085848151811061119a5761119a6141f3565b6020026020010151600001516001600160a01b03166001600160a01b031681526020019081526020016000205490506000838210156111d957816111db565b835b90506111e78188614664565b96508060146000878681518110611200576112006141f3565b6020026020010151600001516001600160a01b03166001600160a01b03168152602001908152602001600020600082825461123b9190614590565b9091555061124b90508185614590565b93505050808061125a9061426c565b91505061116d565b50801561135e5760005b825181101561135c576000838281518110611289576112896141f3565b602002602001015160000151905060006127108584815181106112ae576112ae6141f3565b602002602001015160200151856112c59190614677565b6112cf91906145a3565b600d549091506001600160a01b03640100000000909104811690831603611303576112fa8188614664565b9650505061134a565b61130d8189614664565b6040519098506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611346573d6000803e3d6000fd5b5050505b806113548161426c565b91505061126c565b505b61136b6080890189614547565b8481811061137b5761137b6141f3565b905060200201358860600160208101906113959190613b03565b6001600160a01b03167f0475389cd69b8d3163620b43283bf74e8fc71020c3c6cef2a529b5c405e9687f60405160405180910390a3505080806113d79061426c565b91505061107e565b506113ea8183614664565b6113f960208701358735614590565b101561145c5760405162461bcd60e51b815260206004820152602c60248201527f466572616c66696c6545786869626974696f6e56343a20746f74616c2062707360448201526b0206f7665722031302c3030360a41b606482015260840161039f565b6000611469838735614590565b905080156114b457600d546040516401000000009091046001600160a01b0316906108fc8315029083906000818181858888f193505050501580156114b2573d6000803e3d6000fd5b505b505050505050505050565b60006114ca83611f93565b821061152c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161039f565b6001600160a01b0383166000908152601260205260409020805483908110611556576115566141f3565b9060005260206000200154905092915050565b611571612696565b600d546301000000900460ff161561159b5760405162461bcd60e51b815260040161039f9061468e565b600d5462010000900460ff16156116115760405162461bcd60e51b815260206004820152603460248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015273726571756972656420746f2062652066616c736560601b606482015260840161039f565b611619612a9a565b600d805462ff0000191662010000179055565b611634612696565b828114611654576040516313086eff60e21b815260040160405180910390fd5b60005b838110156117c5576000858583818110611673576116736141f3565b90506020020160208101906116889190613b03565b6001600160a01b0316036116af57604051630107349760e51b815260040160405180910390fd5b8282828181106116c1576116c16141f3565b905060200201356000036116e857604051636745f8fb60e01b815260040160405180910390fd5b600060146000878785818110611700576117006141f3565b90506020020160208101906117159190613b03565b6001600160a01b03166001600160a01b03168152602001908152602001600020541115611755576040516328547bdf60e01b815260040160405180910390fd5b828282818110611767576117676141f3565b9050602002013560146000878785818110611784576117846141f3565b90506020020160208101906117999190613b03565b6001600160a01b03168152602081019190915260400160002055806117bd8161426c565b915050611657565b5050505050565b6117d4612696565b8281146117f4576040516313086eff60e21b815260040160405180910390fd5b60005b838110156117c5576000838383818110611813576118136141f3565b90506020020160208101906118289190613b03565b6001600160a01b03160361184f57604051630107349760e51b815260040160405180910390fd5b600060146000858585818110611867576118676141f3565b905060200201602081019061187c9190613b03565b6001600160a01b03166001600160a01b031681526020019081526020016000205411156118bc576040516328547bdf60e01b815260040160405180910390fd5b601460008686848181106118d2576118d26141f3565b90506020020160208101906118e79190613b03565b6001600160a01b03166001600160a01b03168152602001908152602001600020546014600085858581811061191e5761191e6141f3565b90506020020160208101906119339190613b03565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506014600086868481811061196d5761196d6141f3565b90506020020160208101906119829190613b03565b6001600160a01b031681526020810191909152604001600090812055806119a88161426c565b9150506117f7565b826001600160a01b03811633146119ca576119ca33612715565b306001600160a01b038416036119f25760405162461bcd60e51b815260040161039f90614285565b610e7c848484612cf9565b600a8054611a0a90614182565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3690614182565b8015611a835780601f10611a5857610100808354040283529160200191611a83565b820191906000526020600020905b815481529060010190602001808311611a6657829003601f168201915b505050505081565b611a93612696565b600d546301000000900460ff1615611abd5760405162461bcd60e51b815260040161039f9061468e565b600d5462010000900460ff16611b315760405162461bcd60e51b815260206004820152603360248201527f466572616c66696c6545786869626974696f6e56343a205f73656c6c696e6720604482015272726571756972656420746f206265207472756560681b606482015260840161039f565b600d805462ff000019169055565b6000818152600260205260408120546001600160a01b031680610b0e5760405162461bcd60e51b815260040161039f906141bc565b611b7c612696565b60008251118015611b8e575060008151115b611c0e5760405162461bcd60e51b815260206004820152604560248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206f7220726563697069656e74416464726573736573206c656e677468206973606482015264207a65726f60d81b608482015260a40161039f565b8051825114611c9a5760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56343a2073657269657349647360448201527f206c656e67746820697320646966666572656e742066726f6d2072656369706960648201526b656e7441646472657373657360a01b608482015260a40161039f565b611ca2611a8b565b30600081815260126020908152604080832080548251818502810185019093528083529192909190830182828015611cf957602002820191906000526020600020905b815481526020019060010190808311611ce5575b5050505050905060005b8151811015611df5576000828281518110611d2057611d206141f3565b602090810291909101810151600081815260118352604080822081518083019092528054825260010154938101939093529092505b87518161ffff161015611ddf57878161ffff1681518110611d7857611d786141f3565b6020026020010151826000015103611dcd576000878261ffff1681518110611da257611da26141f3565b60200260200101519050611dc787828660405180602001604052806000815250612cc6565b50611ddf565b80611dd7816146e2565b915050611d55565b5050508080611ded9061426c565b915050611d03565b50611dff82611f93565b15610e7c5760405162461bcd60e51b815260206004820152603c60248201527f466572616c66696c6545786869626974696f6e56343a20546f6b656e20666f7260448201527f2073616c652062616c616e63652068617320746f206265207a65726f00000000606482015260840161039f565b611e7a612696565b6001600160a01b038116611ee65760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56343a207661756c745f20697360448201526c207a65726f206164647265737360981b606482015260840161039f565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b611f10612696565b6001600160a01b038116611f715760405162461bcd60e51b815260206004820152602260248201527f45434453415369676e3a207369676e65725f206973207a65726f206164647265604482015261737360f01b606482015260840161039f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611ffd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161039f565b506001600160a01b031660009081526003602052604090205490565b612021612696565b61202b6000612d14565b565b6001600160a01b03811660009081526012602090815260409182902080548351818402810184019094528084526060939283018282801561208d57602002820191906000526020600020905b815481526020019060010190808311612079575b50505050509050919050565b3360009081526007602052604090205460ff16806120c157506006546001600160a01b031633145b6120ca57600080fd5b600d546301000000900460ff166121415760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a20636f6e747261637420604482015274191bd95cdb89dd08185b1b1bddc81d1bc81b5a5b9d605a1b606482015260840161039f565b60005b81811015610c0a576121b6838383818110612161576121616141f3565b9050606002016000013584848481811061217d5761217d6141f3565b90506060020160200135858585818110612199576121996141f3565b90506060020160400160208101906121b19190613b03565b612d66565b806121c08161426c565b915050612144565b6121d0612696565b600081511161222b5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a20626173655552495f20697320656d70746044820152607960f81b606482015260840161039f565b600a610e2b8282614751565b606060018054610b4c90614182565b8161225081612715565b610c0a8383612ee8565b612262612696565b600d805463ff0000001916905561202b611569565b836001600160a01b03811633146122915761229133612715565b306001600160a01b038516036122b95760405162461bcd60e51b815260040161039f90614285565b6117c585858585612ef3565b6122cd612696565b6122d5611a8b565b3060009081526012602090815260408083208054825181850281018501909352808352919290919083018282801561232c57602002820191906000526020600020905b815481526020019060010190808311612318575b5050505050905060005b8151811015610e2b57612354828281518110610e0c57610e0c6141f3565b8061235e8161426c565b915050612336565b60028110156123885760405163251f56a160e21b815260040160405180910390fd5b60005b818110156124605760008383838181106123a7576123a76141f3565b6020908102929092013560008181526011845260409081902081518083019092528054808352600190910154948201949094526015549194509214801591506123f35750601654815114155b15612411576040516324c940df60e01b815260040160405180910390fd5b3361241b83611b3f565b6001600160a01b031614612442576040516349e27cff60e01b815260040160405180910390fd5b61244b82612993565b505080806124589061426c565b91505061238b565b50601754601654612472908233612d66565b601780549060006124828361426c565b91905055508061248f3390565b6001600160a01b03167f01cb282a137c69adfa541f949214e683b63d21e063da2750ccd324692dca838285856040516124c9929190614810565b60405180910390a3505050565b60606000600a80546124e790614182565b9050116125455760405162461bcd60e51b815260206004820152602660248201527f4552433732314d657461646174613a205f746f6b656e4261736555524920697360448201526520656d70747960d01b606482015260840161039f565b61254e826128f7565b6125b25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161039f565b600a6125bd83612f25565b6040516020016125ce929190614824565b6040516020818303038152906040529050919050565b6125ec612696565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b600b8054611a0a90614182565b612625612696565b6001600160a01b03811661268a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161039f565b61269381612d14565b50565b6006546001600160a01b0316331461202b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161039f565b6126f9816128f7565b6126935760405162461bcd60e51b815260040161039f906141bc565b6008546001600160a01b03163b1561269357600854604051633185c44d60e21b81523060048201526001600160a01b0383811660248301529091169063c617113490604401602060405180830381865afa158015612777573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279b91906148b8565b6126935760405162461bcd60e51b815260206004820152601760248201527f6f70657261746f72206973206e6f7420616c6c6f776564000000000000000000604482015260640161039f565b60006127f282611b3f565b9050806001600160a01b0316836001600160a01b03160361285f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161039f565b336001600160a01b038216148061287b575061287b81336109af565b6128ed5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161039f565b610c0a8383612fb7565b6000908152600260205260409020546001600160a01b0316151590565b60008061292083611b3f565b9050806001600160a01b0316846001600160a01b0316148061296757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061298b5750836001600160a01b031661298084610bcf565b6001600160a01b0316145b949350505050565b61299c816128f7565b6129b85760405162461bcd60e51b815260040161039f906141bc565b600081815260116020908152604080832081518083018352815480825260019283015482860152855260109093529083208054929391929091906129fd908490614590565b925050819055506001600c6000828254612a179190614590565b9091555050600082815260116020526040812081815560010155612a3a82613025565b60405182907fbde7938970372996ff103863625e348ef2bf8f38a5b02181be75aafef17c23d590600090a25050565b612a733382612914565b612a8f5760405162461bcd60e51b815260040161039f90614209565b610c0a8383836130c8565b6000612aa530611f93565b9050600081116126935760405162461bcd60e51b815260206004820152603560248201527f466572616c66696c6545786869626974696f6e56343a204e6f20746f6b656e206044820152741bdddb995908189e481d1a194818dbdb9d1c9858dd605a1b606482015260840161039f565b6000612b246080830183614547565b905011612b7f5760405162461bcd60e51b8152602060048201526024808201527f466572616c66696c6553616c65446174613a20746f6b656e49647320697320656044820152636d70747960e01b606482015260840161039f565b612b8c60a0820182614547565b9050612b9b6080830183614547565b905014612c105760405162461bcd60e51b815260206004820152603d60248201527f466572616c66696c6553616c65446174613a20746f6b656e49647320616e642060448201527f726576656e7565536861726573206c656e677468206d69736d61746368000000606482015260840161039f565b428160400135116126935760405162461bcd60e51b815260206004820152602260248201527f466572616c66696c6553616c65446174613a2073616c65206973206578706972604482015261195960f21b606482015260840161039f565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000908152601c859052603c81208190612cab90848787613239565b6009546001600160a01b039081169116149695505050505050565b612cd18484846130c8565b612cdd84848484613261565b610e7c5760405162461bcd60e51b815260040161039f906148d5565b610c0a83838360405180602001604052806000815250612277565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000838152600f60205260409020541515612d8084612f25565b604051602001612d909190614927565b60405160208183030381529060405290612dbd5760405162461bcd60e51b815260040161039f9190613b6e565b506000838152600f602090815260408083205460109092529091205410612e385760405162461bcd60e51b815260206004820152602960248201527f466572616c66696c6545786869626974696f6e56343a206e6f20736c6f747320604482015268617661696c61626c6560b81b606482015260840161039f565b6001600c6000828254612e4b9190614664565b90915550506000838152601060205260408120805460019290612e6f908490614664565b9091555050604080518082018252848152602080820185815260008681526011909252929020905181559051600190910155612eab818361335f565b8183826001600160a01b03167f407d7da1d3b2b1871fbfa2b5b1c4657a3cc5711d3023c552798551c7ee301eea60405160405180910390a4505050565b610e2b3383836134da565b612efd3383612914565b612f195760405162461bcd60e51b815260040161039f90614209565b610e7c84848484612cc6565b60606000612f32836135a0565b60010190506000816001600160401b03811115612f5157612f51613bc4565b6040519080825280601f01601f191660200182016040528015612f7b576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084612f8557509392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612fec82611b3f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061303082611b3f565b9050613040816000846001613678565b61304982611b3f565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b826001600160a01b03166130db82611b3f565b6001600160a01b0316146131015760405162461bcd60e51b815260040161039f90614984565b6001600160a01b0382166131635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161039f565b6131708383836001613678565b826001600160a01b031661318382611b3f565b6001600160a01b0316146131a95760405162461bcd60e51b815260040161039f90614984565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080600061324a8787878761378f565b9150915061325781613853565b5095945050505050565b60006001600160a01b0384163b1561335757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906132a59033908990889088906004016149c9565b6020604051808303816000875af19250505080156132e0575060408051601f3d908101601f191682019092526132dd918101906149fc565b60015b61333d573d80801561330e576040519150601f19603f3d011682016040523d82523d6000602084013e613313565b606091505b5080516000036133355760405162461bcd60e51b815260040161039f906148d5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061298b565b50600161298b565b6001600160a01b0382166133b55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161039f565b6133be816128f7565b1561340b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161039f565b613419600083836001613678565b613422816128f7565b1561346f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161039f565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b03160361353b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161039f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3191016124c9565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106135df5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061360b576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061362957662386f26fc10000830492506010015b6305f5e1008310613641576305f5e100830492506008015b612710831061365557612710830492506004015b60648310613667576064830492506002015b600a8310610b0e5760010192915050565b60018111156136e75760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161039f565b816001600160a01b038516158015906137125750836001600160a01b0316856001600160a01b031614155b1561372157613721858261399d565b6001600160a01b0384161580159061374b5750846001600160a01b0316846001600160a01b031614155b156117c5576001600160a01b0384166000908152601260209081526040808320805460018101825590845282842081018590558484526013909252909120556117c5565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156137c6575060009050600361384a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561381a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166138435760006001925092505061384a565b9150600090505b94509492505050565b600081600481111561386757613867614a19565b0361386f5750565b600181600481111561388357613883614a19565b036138d05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161039f565b60028160048111156138e4576138e4614a19565b036139315760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161039f565b600381600481111561394557613945614a19565b036126935760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161039f565b600060016139aa84611f93565b6139b49190614590565b600083815260136020526040902054909150808214613a5b576001600160a01b03841660009081526012602052604081208054849081106139f7576139f76141f3565b906000526020600020015490508060126000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110613a3b57613a3b6141f3565b600091825260208083209091019290925591825260139052604090208190555b60008381526013602090815260408083208390556001600160a01b038716835260129091529020805480613a9157613a91614a2f565b6001900381819060005260206000200160009055905550505050565b6001600160e01b03198116811461269357600080fd5b600060208284031215613ad557600080fd5b8135613ae081613aad565b9392505050565b80356001600160a01b0381168114613afe57600080fd5b919050565b600060208284031215613b1557600080fd5b613ae082613ae7565b60005b83811015613b39578181015183820152602001613b21565b50506000910152565b60008151808452613b5a816020860160208601613b1e565b601f01601f19169290920160200192915050565b602081526000613ae06020830184613b42565b600060208284031215613b9357600080fd5b5035919050565b60008060408385031215613bad57600080fd5b613bb683613ae7565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715613c0257613c02613bc4565b604052919050565b60006001600160401b03821115613c2357613c23613bc4565b5060051b60200190565b600082601f830112613c3e57600080fd5b81356020613c53613c4e83613c0a565b613bda565b82815260059290921b84018101918181019086841115613c7257600080fd5b8286015b84811015613c8d5780358352918301918301613c76565b509695505050505050565b600060208284031215613caa57600080fd5b81356001600160401b03811115613cc057600080fd5b61298b84828501613c2d565b600080600060608486031215613ce157600080fd5b613cea84613ae7565b9250613cf860208501613ae7565b9150604084013590509250925092565b60008060008060808587031215613d1e57600080fd5b8435935060208501359250604085013560ff81168114613d3d57600080fd5b915060608501356001600160401b03811115613d5857600080fd5b850160e08188031215613d6a57600080fd5b939692955090935050565b60008083601f840112613d8757600080fd5b5081356001600160401b03811115613d9e57600080fd5b6020830191508360208260051b8501011115613db957600080fd5b9250929050565b60008060008060408587031215613dd657600080fd5b84356001600160401b0380821115613ded57600080fd5b613df988838901613d75565b90965094506020870135915080821115613e1257600080fd5b50613e1f87828801613d75565b95989497509550505050565b60008060408385031215613e3e57600080fd5b82356001600160401b0380821115613e5557600080fd5b613e6186838701613c2d565b9350602091508185013581811115613e7857600080fd5b85019050601f81018613613e8b57600080fd5b8035613e99613c4e82613c0a565b81815260059190911b82018301908381019088831115613eb857600080fd5b928401925b82841015613edd57613ece84613ae7565b82529284019290840190613ebd565b80955050505050509250929050565b6020808252825182820181905260009190848201906040850190845b81811015613f2457835183529284019291840191600101613f08565b50909695505050505050565b60008060208385031215613f4357600080fd5b82356001600160401b0380821115613f5a57600080fd5b818501915085601f830112613f6e57600080fd5b813581811115613f7d57600080fd5b866020606083028501011115613f9257600080fd5b60209290920196919550909350505050565b60006001600160401b03831115613fbd57613fbd613bc4565b613fd0601f8401601f1916602001613bda565b9050828152838383011115613fe457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561400d57600080fd5b81356001600160401b0381111561402357600080fd5b8201601f8101841361403457600080fd5b61298b84823560208401613fa4565b801515811461269357600080fd5b8035613afe81614043565b6000806040838503121561406f57600080fd5b61407883613ae7565b9150602083013561408881614043565b809150509250929050565b600080600080608085870312156140a957600080fd5b6140b285613ae7565b93506140c060208601613ae7565b92506040850135915060608501356001600160401b038111156140e257600080fd5b8501601f810187136140f357600080fd5b61410287823560208401613fa4565b91505092959194509250565b6000806020838503121561412157600080fd5b82356001600160401b0381111561413757600080fd5b61414385828601613d75565b90969095509350505050565b6000806040838503121561416257600080fd5b61416b83613ae7565b915061417960208401613ae7565b90509250929050565b600181811c9082168061419657607f821691505b6020821081036141b657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60006001820161427e5761427e614256565b5060010190565b6020808252603e908201527f466572616c66696c6545786869626974696f6e56343a20436f6e74726163742060408201527f69736e277420616c6c6f77656420746f207265636569766520746f6b656e0000606082015260800190565b6000602082840312156142f457600080fd5b8135613ae081614043565b6000808335601e1984360301811261431657600080fd5b83016020810192503590506001600160401b0381111561433557600080fd5b8060051b3603821315613db957600080fd5b81835260006001600160fb1b0383111561436057600080fd5b8260051b80836020870137939093016020019392505050565b8183526000602080850194508260005b858110156143bf576001600160a01b036143a283613ae7565b168752818301358388015260409687019690910190600101614389565b509495945050505050565b8035825260208082013581840152604080830135908401526000906001600160a01b036143f960608501613ae7565b16606085015261440c60808401846142ff565b60e0608087015261442160e087018284614347565b91505061443160a08501856142ff565b86830360a0880152808352838301600582901b840185018360005b848110156144be57868303601f19018452813536879003601e1901811261447257600080fd5b860188810190356001600160401b0381111561448d57600080fd5b8060061b360382131561449f57600080fd5b6144aa858284614379565b958a0195945050509087019060010161444c565b50506144cc60c08901614051565b80151560c08b0152955098975050505050505050565b84815283602082015260ff8316604082015260806060820152600061450a60808301846143ca565b9695505050505050565b8381526001600160a01b038316602082015260606040820181905260009061453e908301846143ca565b95945050505050565b6000808335601e1984360301811261455e57600080fd5b8301803591506001600160401b0382111561457857600080fd5b6020019150600581901b3603821315613db957600080fd5b81810381811115610b0e57610b0e614256565b6000826145c057634e487b7160e01b600052601260045260246000fd5b500490565b6000808335601e198436030181126145dc57600080fd5b8301803591506001600160401b038211156145f657600080fd5b6020019150600681901b3603821315613db957600080fd5b60006040828403121561462057600080fd5b604051604081018181106001600160401b038211171561464257614642613bc4565b60405261464e83613ae7565b8152602083013560208201528091505092915050565b80820180821115610b0e57610b0e614256565b8082028115828204841417610b0e57610b0e614256565b60208082526034908201527f466572616c66696c6545786869626974696f6e56343a206d696e7461626c6520604082015273726571756972656420746f2062652066616c736560601b606082015260800190565b600061ffff8083168181036146f9576146f9614256565b6001019392505050565b601f821115610c0a57600081815260208120601f850160051c8101602086101561472a5750805b601f850160051c820191505b8181101561474957828155600101614736565b505050505050565b81516001600160401b0381111561476a5761476a613bc4565b61477e816147788454614182565b84614703565b602080601f8311600181146147b3576000841561479b5750858301515b600019600386901b1c1916600185901b178555614749565b600085815260208120601f198616915b828110156147e2578886015182559484019460019091019084016147c3565b50858210156148005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208152600061298b602083018486614347565b600080845461483281614182565b6001828116801561484a576001811461485f5761488e565b60ff198416875282151583028701945061488e565b8860005260208060002060005b858110156148855781548a82015290840190820161486c565b50505082870194505b50602f60f81b8452865192506148aa8382860160208a01613b1e565b919092010195945050505050565b6000602082840312156148ca57600080fd5b8151613ae081614043565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f466572616c66696c6545786869626974696f6e56343a2073657269657349642081526e03237b2b9b713ba1032bc34b9ba1d1608d1b60208201526000825161497781602f850160208701613b1e565b91909101602f0192915050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061450a90830184613b42565b600060208284031215614a0e57600080fd5b8151613ae081613aad565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fdfea26469706673582212200f9af8766cfbd73bcde68788a1424cd908635bd6c9c66cce1df35f75ea013a5464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f000000000000000000000000455464f0d369dac13002e81e9fab857f6ad21795000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000023c4b0a8b6d3e4c32aaaec701bb9deca9000000000000000000000000001e84800000000000000000000000000000000000000000000000000000000000000005435241574c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009464552414c46494c4500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5557423352426834327174543461525247695a4372767839384c507138476d446d696f453845516935566d360000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : name_ (string): CRAWL
Arg [1] : symbol_ (string): FERALFILE
Arg [2] : burnable_ (bool): True
Arg [3] : bridgeable_ (bool): True
Arg [4] : signer_ (address): 0xBEb9F810862c40A144925f568b1853d72Acc492F
Arg [5] : vault_ (address): 0x455464F0d369dAC13002e81e9fAB857f6aD21795
Arg [6] : costReceiver_ (address): 0x080FEB125bA730D6D12789B6AAAB01f4E31D8Bd1
Arg [7] : contractURI_ (string): ipfs://QmUWB3RBh42qtT4aRRGiZCrvx98LPq8GmDmioE8EQi5Vm6
Arg [8] : seriesIds_ (uint256[]): 1,2,3,4,5,6,7,8,9,10,11,12
Arg [9] : seriesMaxSupplies_ (uint256[]): 512,256,1,1,1,1,1,1,1,1,1,1
Arg [10] : mergeArtworkInfo_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
-----Encoded View---------------
46 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000beb9f810862c40a144925f568b1853d72acc492f
Arg [5] : 000000000000000000000000455464f0d369dac13002e81e9fab857f6ad21795
Arg [6] : 000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000420
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 3c4b0a8b6d3e4c32aaaec701bb9deca9000000000000000000000000001e8480
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [14] : 435241574c000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [16] : 464552414c46494c450000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [18] : 697066733a2f2f516d5557423352426834327174543461525247695a43727678
Arg [19] : 39384c507138476d446d696f453845516935566d360000000000000000000000
Arg [20] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [30] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [31] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [32] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [33] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [38] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [39] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [40] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [41] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [42] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [43] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [44] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [45] : 0000000000000000000000000000000000000000000000000000000000000001
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.