Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
18
Holders
5
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
EggShop
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* &_--~- ,_ /""\ , { ", THE <>^ L____/| ( )_ ,{ ,_@ FARM `) /` , / |/ {|\{ GAME \ `---' / "" " " `'";\)` W: https://thefarm.game _/_Y T: @The_Farm_Game * Howdy folks! Thanks for glancing over our contracts * If you're interested in working with us, you can email us at [email protected] * Found a broken egg in our contracts? We have a bug bounty program [email protected] * Y'all have a nice day */ pragma solidity ^0.8.17; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC1155/ERC1155.sol'; import './interfaces/IEggShop.sol'; import './interfaces/IEGGToken.sol'; import './libs/ERC2981ContractWideRoyalties.sol'; import { NFTDescriptor } from './libs/NFTDescriptor.sol'; import { DefaultOperatorFilterer } from './external/OpenSea/DefaultOperatorFilterer.sol'; contract EggShop is IEggShop, ERC1155, Ownable, ERC2981ContractWideRoyalties, DefaultOperatorFilterer { // Events event EggShopMint(uint256 indexed typeId, address indexed owner, uint256 quantity); event EggShopBurn(uint256 indexed typeId, address indexed owner, uint256 quantity); event UpdateTypeSupplyExchange(uint256 indexed typeId, uint256 maxSupply, uint256 eggMintAmt, uint256 eggBurnAmt); event TypeNameUpdated(uint256 indexed typeId, string name); event InitializedContract(address thisContract); // EggShop Color Palettes (Index => Hex Colors) mapping(uint8 => string[]) private palettes; // EggShop Accessories (Custom RLE) // Storage of each image data struct EggShopImage { string name; bytes rlePNG; } mapping(uint256 => EggShopImage) private traitRLEData; // Common description that shows in all tokenUri string private metadataDescription = 'Specialty Eggs & items can be bought from the Egg Shop. Fabled to hold special properties, only Season 1 Farm Game holders will know what they hold.' ' All images and metadata is generated and stored 100% on-chain. No IPFS, No API. Just the blockchain. https://thefarm.game'; mapping(uint256 => TypeInfo) private typeInfo; // Reference to the $EGG contract for minting $EGG earnings IEGGToken public eggToken; // address => allowedToCallFunctions mapping(address => bool) private controllers; /** MODIFIERS */ /** * @dev Modifer to require msg.sender to be a controller */ modifier onlyController() { _isController(); _; } // Optimize for bytecode size function _isController() internal view { require(controllers[msg.sender], 'Only controllers'); } constructor(IEGGToken _eggToken) ERC1155('') { eggToken = _eggToken; controllers[msg.sender] = true; emit InitializedContract(address(this)); } /** * ███ ███ ██ ███ ██ ████████ * ████ ████ ██ ████ ██ ██ * ██ ████ ██ ██ ██ ██ ██ ██ * ██ ██ ██ ██ ██ ██ ██ ██ * ██ ██ ██ ██ ████ ██ */ /** * @notice Mint a token - game logic should be handled in the game contract * @dev Only callable by a controller * @param typeId the TypeID of the NFT to mint * @param quantity the number of NFTs to mint * @param recipient the address to recieve the minted NFTs * @param eggAmt this is the quantity of EGG to purchase. If 0, then use typeInfo.eggMintAmt. * This allows for dynamic pricing as needed for Apple Pie and must be calculated in calling contract */ function mint( uint256 typeId, uint16 quantity, address recipient, uint256 eggAmt ) external override onlyController { require(typeInfo[typeId].maxSupply > 0, 'Invalid type'); require( typeInfo[typeId].mints - typeInfo[typeId].burns + quantity <= typeInfo[typeId].maxSupply, 'All tokens minted' ); // If the ERC1155 is swapped for $EGG, transfer the EGG to this contract in case the swap back is desired. if (eggAmt > 0) { eggToken.transferFrom(tx.origin, address(this), eggAmt); } else if (typeInfo[typeId].eggMintAmt > 0) { eggToken.transferFrom(tx.origin, address(this), typeInfo[typeId].eggMintAmt * quantity); } typeInfo[typeId].mints += quantity; _mint(recipient, typeId, quantity, ''); emit EggShopMint(typeId, recipient, quantity); } /** * @notice Mint a free token * @dev Only callable by a controller * @param typeId the TypeID of the NFT to mint * @param quantity the number of NFTs to mint * @param recipient the address to recieve the minted NFTs */ function mintFree( uint256 typeId, uint16 quantity, address recipient ) external onlyController { require(typeInfo[typeId].maxSupply > 0, 'Invalid type'); require( typeInfo[typeId].mints - typeInfo[typeId].burns + quantity <= typeInfo[typeId].maxSupply, 'All tokens minted' ); typeInfo[typeId].mints += quantity; _mint(recipient, typeId, quantity, ''); emit EggShopMint(typeId, recipient, quantity); } /** * @notice Burn a token - any payment / game logic should be handled in the game contract * @dev Only callable by a controller * @param typeId the TypeID of the NFT to burn * @param quantity the number of NFTs to burn * @param burnFrom the address to burn the NFTs from * * @param eggAmt this is the quantity of EGG to refund. If 0, then use typeInfo.eggBurnAmt. * This allows for dynamic refund as needed for Apple Pie and must be calculated in calling contract */ function burn( uint256 typeId, uint16 quantity, address burnFrom, uint256 eggAmt ) external override onlyController { require(typeInfo[typeId].mints > 0, 'None minted'); // If the ERC1155 was swapped from $EGG, transfer the EGG from this contract back to whoever owns this token now. if (eggAmt > 0) { eggToken.transferFrom(address(this), tx.origin, eggAmt); } else if (typeInfo[typeId].eggBurnAmt > 0) { eggToken.transferFrom(address(this), tx.origin, typeInfo[typeId].eggBurnAmt * quantity); } typeInfo[typeId].burns += quantity; _burn(burnFrom, typeId, quantity); emit EggShopBurn(typeId, msg.sender, quantity); } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override(ERC1155, IEggShop) onlyAllowedOperator { // allow controller contracts to be send without approval if (!controllers[msg.sender]) { require((from == msg.sender) || isApprovedForAll(from, msg.sender), 'Caller is not owner nor approved'); } super.safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override(ERC1155, IERC1155) onlyAllowedOperator { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), 'ERC1155: caller is not token owner nor approved' ); super.safeBatchTransferFrom(from, to, ids, amounts, data); } /** * ██ ███ ██ ████████ * ██ ████ ██ ██ * ██ ██ ██ ██ ██ * ██ ██ ██ ██ ██ * ██ ██ ████ ██ * This section has internal only functions */ /** * @notice Add a single color to a color palette * @param _paletteIndex index for current color * @param _color 6 character hex code for color */ function _addColorToPalette(uint8 _paletteIndex, string calldata _color) internal { require(bytes(_color).length == 6 || bytes(_color).length == 0, 'Wrong length'); palettes[_paletteIndex].push(_color); } /** * @notice Internal call to enable an address to call controller only functions * @param _address the address to enable */ function _addController(address _address) internal { controllers[_address] = true; } /** * @notice Transfer ETH and return the success status. * @dev This function only forwards 30,000 gas to the callee. * @param to Address for ETH to be send to * @param value Amount of ETH to send */ function _safeTransferETH(address to, uint256 value) internal returns (bool) { (bool success, ) = to.call{ value: value, gas: 30_000 }(new bytes(0)); return success; } /** * @notice Set Type exchange amount for EggShop types * @dev Only callable by an existing controller * @param typeId the typeID of the NFT * @param maxSupply max supply for type * @param eggMintAmt egg mint amount for type * @param eggBurnAmt egg burn amount for type */ function _setSupplyExchangeAmt( uint256 typeId, uint16 maxSupply, uint256 eggMintAmt, uint256 eggBurnAmt ) internal { typeInfo[typeId].maxSupply = maxSupply; typeInfo[typeId].eggMintAmt = eggMintAmt * 10**18; typeInfo[typeId].eggBurnAmt = eggBurnAmt * 10**18; emit UpdateTypeSupplyExchange(typeId, maxSupply, eggMintAmt * 10**18, eggBurnAmt * 10**18); } /** * @notice Upload a single image * @dev Only callable internally * @param typeId the typeID of the NFT * @param image calldata for image {name / RLE image rlePNG} */ function _uploadRLEImage(uint256 typeId, EggShopImage calldata image) internal { traitRLEData[typeId] = EggShopImage(image.name, image.rlePNG); emit TypeNameUpdated(typeId, image.name); } /** * ███████ ██ ██ ████████ * ██ ██ ██ ██ * █████ ███ ██ * ██ ██ ██ ██ * ███████ ██ ██ ██ * This section has external functions */ /** * @notice returns info about a Type * @param typeId the typeId to return info for */ function getInfoForType(uint256 typeId) public view returns (TypeInfo memory) { require(typeInfo[typeId].maxSupply > 0, 'Invalid type'); return typeInfo[typeId]; } /** * @notice returns info about a Type with Name * @param typeId the typeId to return info for */ function getInfoForTypeName(uint256 typeId) public view returns (DetailedTypeInfo memory) { require(typeInfo[typeId].maxSupply > 0, 'Invalid type'); DetailedTypeInfo memory detailedTypeInfo = DetailedTypeInfo({ name: traitRLEData[typeId].name, mints: typeInfo[typeId].mints, burns: typeInfo[typeId].burns, maxSupply: typeInfo[typeId].maxSupply, eggMintAmt: typeInfo[typeId].eggMintAmt, eggBurnAmt: typeInfo[typeId].eggBurnAmt }); return detailedTypeInfo; } function isApprovedForAll(address owner, address operator) public view virtual override(ERC1155, IERC1155) returns (bool) { if (controllers[owner] || controllers[operator]) { return true; } return super.isApprovedForAll(owner, operator); } /** * @notice A distinct Uniform Resource Identifier (URI) for a given asset. * @dev See {IERC721Metadata-tokenURI}. */ function uri(uint256 typeId) public view override returns (string memory) { require(typeInfo[typeId].maxSupply > 0, 'Invalid type or Max Supply not set'); return _dataURI(typeId); } /** * @notice Given a typeId, construct a base64 encoded data URI for an EggShop NFT. */ function _dataURI(uint256 typeId) internal view returns (string memory) { string memory name = string(abi.encodePacked(traitRLEData[typeId].name)); return _genericDataURI(name, metadataDescription, typeId); } /** * @notice Given a name, description, and typeId, construct a base64 encoded data URI */ function _genericDataURI( string memory name, string memory description, uint256 typeId ) internal view returns (string memory) { NFTDescriptor.TokenURIParams memory params = NFTDescriptor.TokenURIParams({ name: name, description: description, background: '------', elements: _getElementsForTypeId(typeId), attributes: '', advantage: 0, width: uint8(32), height: uint8(32) }); return NFTDescriptor.constructTokenURI(params, palettes); } /** * @notice Get all TheFarm elements for the passed `seed`. * @param typeId Seed string */ function _getElementsForTypeId(uint256 typeId) internal view returns (bytes[] memory) { bytes[] memory _elements = new bytes[](1); _elements[0] = traitRLEData[typeId].rlePNG; return _elements; } /** * ██████ ██████ ███ ██ ████████ ██████ ██████ ██ ██ ███████ ██████ * ██ ██ ██ ████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ * ██ ██ ██ ██ ██ ██ ██ ██████ ██ ██ ██ ██ █████ ██████ * ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ * ██████ ██████ ██ ████ ██ ██ ██ ██████ ███████ ███████ ███████ ██ ██ * This section if for controllers (possibly Owner) only functions */ /** * @notice enables multiple addresses to call controller only functions * @dev Only callable by an existing controller * @param _addresses array of the address to enable */ function addManyControllers(address[] memory _addresses) external onlyController { for (uint256 i = 0; i < _addresses.length; i++) { _addController(_addresses[i]); } } /** * @notice removes an address from controller list and ability to call controller only functions * @dev Only callable by an existing controller * @param _address the address to disable */ function removeController(address _address) external onlyController { controllers[_address] = false; } // Royalty settings /** * @notice Set the _collectionName * @dev Only callable by an existing controller * @param _newName the NFT collection name * @param _newDesc the NFT collection description * @param _newImageUri the NFT collection impage URL (ipfs://folder/to/cid) * @param _newFee set the NFT royalty fee 10% max percentage (using 2 decimals - 10000 = 100, 0 = 0) * @param _newRecipient set the address of the royalty fee recipient */ function setCollectionInfo( string memory _newName, string memory _newDesc, string memory _newImageUri, string memory _newExtLink, uint16 _newFee, address _newRecipient ) external onlyOwner { _collectionName = _newName; _collectionDescription = _newDesc; _imageUri = _newImageUri; _externalLink = _newExtLink; _sellerRoyaltyFee = _newFee; _recipient = _newRecipient; _setRoyalties(_newRecipient, _newFee); } /** * @notice Add a single color to a color palette * @dev Only callable by an existing controller * @param _paletteIndex index for current color * @param _color 6 character hex code for color */ function addColorToPalette(uint8 _paletteIndex, string calldata _color) external onlyController { require(palettes[_paletteIndex].length < 256, 'Palettes can only hold 256 colors'); _addColorToPalette(_paletteIndex, _color); } /** * @notice Add colors to a color palette * @dev Only callable by an existing controller * @param _paletteIndex index for colors * @param _colors Array of 6 character hex code for colors */ function addManyColorsToPalette(uint8 _paletteIndex, string[] calldata _colors) external onlyController { require(palettes[_paletteIndex].length + _colors.length <= 256, 'Palettes can only hold 256 colors'); for (uint256 i = 0; i < _colors.length; i++) { _addColorToPalette(_paletteIndex, _colors[i]); } } /** * @notice Set contract address * @dev Only callable by an existing controller * @param _address Address of eggToken contract */ function setEggToken(address _address) external onlyController { eggToken = IEGGToken(_address); } /** * @notice Set Type maxSupply for EggShop types * @dev Only callable by an existing controller * @param typeId the typeID of the NFT * @param maxSupply max supply for type */ function setType(uint256 typeId, uint16 maxSupply) external onlyController { require(typeInfo[typeId].mints <= maxSupply, 'Max supply too low'); typeInfo[typeId].maxSupply = maxSupply; } /** * @notice Set Type supply and mint/burn amounts for EggShop types * @dev Only callable by an existing controller * @param typeId the typeID of the NFT * @param maxSupply max supply for type * @param eggMintAmt egg mint amount for type * @param eggBurnAmt egg burn amount for type */ function setSupplyExchangeAmt( uint256 typeId, uint16 maxSupply, uint256 eggMintAmt, uint256 eggBurnAmt ) external onlyController { require(typeInfo[typeId].mints <= maxSupply, 'Max supply too low'); _setSupplyExchangeAmt(typeId, maxSupply, eggMintAmt, eggBurnAmt); } /** * @notice Set Type exchange amount for EggShop types * @dev Only callable by an existing controller * @param startTypeId the starting typeID of the NFT + 1 will be added for each array element * @param typeData max supply for type */ struct TypeInfoTemp { uint16 maxSupply; uint256 eggMintAmt; uint256 eggBurnAmt; } /** * @notice Set Many Type exchange amount for EggShop types * @dev Only callable by an existing controller * @param startTypeId the start typeID of the NFT * @param typeInfoTemp Type Info Temp datas to set EggShop Type */ function setManySupplyExchangeAmt(uint256 startTypeId, TypeInfoTemp[] calldata typeInfoTemp) external onlyController { for (uint256 i = 0; i < typeInfoTemp.length; i++) { require(typeInfo[i].mints <= typeInfoTemp[i].maxSupply, 'Max supply too low'); _setSupplyExchangeAmt( startTypeId + i, typeInfoTemp[i].maxSupply, typeInfoTemp[i].eggMintAmt, typeInfoTemp[i].eggBurnAmt ); } } /** * @notice Update the metadata description * @dev Only callable by the controller * @param _desc New description */ function updateMetaDesc(string memory _desc) external onlyController { metadataDescription = _desc; } /** * @notice Upload a single EggShop type * @dev Only callable by an existing controller * @param typeId the typeID of the NFT * @param image calldata for image {name / base64 base64PNG} */ function uploadRLEImage(uint256 typeId, EggShopImage calldata image) external onlyController { _uploadRLEImage(typeId, image); } /** * @notice Upload multiple EggShop types * @dev Only callable by an existing controller * @param startTypeId the starting typeID of the NFT + 1 will be added for each array element * @param _images calldata for image {name / base64 base64PNG} */ function uploadManyRLEImages(uint256 startTypeId, EggShopImage[] calldata _images) external onlyController { for (uint256 i = 0; i < _images.length; i++) { _uploadRLEImage(startTypeId + i, _images[i]); } } /// @inheritdoc ERC165 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, IERC165, ERC2981Base) returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165 interfaceId == 0x0e89341c || // ERC165 interface ID for ERC1155 interfaceId == type(IERC1155MetadataURI).interfaceId || interfaceId == 0x2a55205a || // ERC165 interface ID for ERC2981 super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT /* &_--~- ,_ /""\ , { ", THE <>^ L____/| ( )_ ,{ ,_@ FARM `) /` , / |/ {|\{ GAME \ `---' / "" " " `'";\)` W: https://thefarm.game _/_Y T: @The_Farm_Game * Howdy folks! Thanks for glancing over our contracts * If you're interested in working with us, you can email us at [email protected] * Found a broken egg in our contracts? We have a bug bounty program [email protected] * Y'all have a nice day */ import '@openzeppelin/contracts/token/ERC1155/IERC1155.sol'; pragma solidity ^0.8.17; interface IEggShop is IERC1155 { struct TypeInfo { uint16 mints; uint16 burns; uint256 maxSupply; uint256 eggMintAmt; uint256 eggBurnAmt; } struct DetailedTypeInfo { uint16 mints; uint16 burns; uint256 maxSupply; uint256 eggMintAmt; uint256 eggBurnAmt; string name; } function mint( uint256 typeId, uint16 qty, address recipient, uint256 eggAmt ) external; function mintFree( uint256 typeId, uint16 quantity, address recipient ) external; function burn( uint256 typeId, uint16 qty, address burnFrom, uint256 eggAmt ) external; // function balanceOf(address account, uint256 id) external returns (uint256); function getInfoForType(uint256 typeId) external view returns (TypeInfo memory); function getInfoForTypeName(uint256 typeId) external view returns (DetailedTypeInfo memory); function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) external; }
// SPDX-License-Identifier: MIT /* &_--~- ,_ /""\ , { ", THE <>^ L____/| ( )_ ,{ ,_@ FARM `) /` , / |/ {|\{ GAME \ `---' / "" " " `'";\)` W: https://thefarm.game _/_Y T: @The_Farm_Game * Howdy folks! Thanks for glancing over our contracts * If you're interested in working with us, you can email us at [email protected] * Found a broken egg in our contracts? We have a bug bounty program [email protected] * Y'all have a nice day */ pragma solidity ^0.8.17; interface IEGGToken { function balanceOf(address account) external view returns (uint256); function mint(address to, uint256 amount) external; function burn(address from, uint256 amount) external; function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); function addLiquidityETH(uint256 tokenAmount, uint256 ethAmount) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; import './ContractURI.sol'; import './ERC2981Base.sol'; /** * @dev This is a contract used to add ERC2981 support to ERC721 and 1155 * @dev This implementation has the same royalties for each and every tokens */ abstract contract ERC2981ContractWideRoyalties is ERC2981Base, ContractURI { RoyaltyInfo private _royalties; /** * @dev Sets token royalties * @param recipient recipient of the royalties * @param value percentage (using 2 decimals - 10000 = 100, 0 = 0) */ function _setRoyalties(address recipient, uint256 value) internal { require(value <= 10000, 'ERC2981Royalties: Too high'); _royalties = RoyaltyInfo(recipient, uint24(value)); } /** * @inheritdoc IERC2981Royalties */ function royaltyInfo(uint256, uint256 value) external view override returns (address receiver, uint256 royaltyAmount) { RoyaltyInfo memory royalties = _royalties; receiver = royalties.recipient; royaltyAmount = (value * royalties.amount) / 10000; } }
// SPDX-License-Identifier: MIT /// @title A library used to construct ERC721 token URIs and SVG images /* &_--~- ,_ /""\ , { ", THE <>^ L____/| ( )_ ,{ ,_@ FARM `) /` , / |/ {|\{ GAME \ `---' / "" " " `'";\)` W: https://thefarm.game _/_Y T: @The_Farm_Game * Howdy folks! Thanks for glancing over our contracts * If you're interested in working with us, you can email us at [email protected] * Found a broken egg in our contracts? We have a bug bounty program [email protected] * Y'all have a nice day */ pragma solidity ^0.8.17; import { Base64 } from 'base64-sol/base64.sol'; import { MultiPartRLEToSVG } from './MultiPartRLEToSVG.sol'; library NFTDescriptor { struct TokenURIParams { string name; string description; string background; bytes[] elements; string attributes; uint256 advantage; uint8 width; uint8 height; } /** * @notice Construct an ERC721 token URI. */ function constructTokenURI(TokenURIParams memory params, mapping(uint8 => string[]) storage palettes) public view returns (string memory) { string memory image = generateSVGImage( MultiPartRLEToSVG.SVGParams({ background: params.background, elements: params.elements, advantage: params.advantage, width: uint256(params.width), height: uint256(params.height) }), palettes ); string memory attributesJson; if (bytes(params.attributes).length > 0) { attributesJson = string.concat(' "attributes":', params.attributes, ','); } else { attributesJson = string.concat(''); } // prettier-ignore return string.concat( 'data:application/json;base64,', Base64.encode( bytes( string.concat('{"name":"', params.name, '",', ' "description":"', params.description, '",', attributesJson, ' "image": "', 'data:image/svg+xml;base64,', image, '"}') ) ) ); } /** * @notice Generate an SVG image for use in the ERC721 token URI. */ function generateSVGImage(MultiPartRLEToSVG.SVGParams memory params, mapping(uint8 => string[]) storage palettes) public view returns (string memory svg) { return Base64.encode(bytes(MultiPartRLEToSVG.generateSVG(params, palettes))); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import { OperatorFilterer } from './OperatorFilterer.sol'; contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 /* &_--~- ,_ /""\ , { ", THE <>^ L____/| ( )_ ,{ ,_@ FARM `) /` , / |/ {|\{ GAME \ `---' / "" " " `'";\)` W: https://thefarm.game _/_Y T: @The_Farm_Game * Howdy folks! Thanks for glancing over our contracts * If you're interested in working with us, you can email us at [email protected] * Found a broken egg in our contracts? We have a bug bounty program [email protected] * Y'all have a nice day */ pragma solidity ^0.8.17; import './Base64.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; abstract contract ContractURI is Base64 { using Strings for uint256; string _collectionName; string _collectionDescription; string _imageUri; string _externalLink; uint256 _sellerRoyaltyFee; address _recipient; /** * @notice Returns OpenSea contract URI interface. Generates a JSON metadata response * without referencing off-chain content (owner, royalties etc...) * @return a encoded base64 JSON contract level metadata */ function contractURI() public view returns (string memory) { return string.concat( 'data:application/json;base64,', Base64.base64( bytes( string.concat( '{"name": "', _collectionName, '", "description": "', _collectionDescription, '", "image": "', _imageUri, '", "external_link": "', _externalLink, '", "seller_fee_basis_points": ', _sellerRoyaltyFee.toString(), '", "fee_recipient": "', Strings.toHexString(_recipient), '"}' ) ) ) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; import '../interfaces/IERC2981Royalties.sol'; /// @dev This is a contract used to add ERC2981 support to ERC721 and 1155 abstract contract ERC2981Base is ERC165, IERC2981Royalties { struct RoyaltyInfo { address recipient; uint24 amount; } /// @inheritdoc ERC165 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC2981Royalties).interfaceId || super.supportsInterface(interfaceId); } }
// 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 pragma solidity >=0.8.0 <0.9.0; abstract contract Base64 { /** BASE 64 - Written by Brech Devos */ string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; function base64(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for { } lt(dataPtr, endPtr) { } { dataPtr := add(dataPtr, 3) // read 3 bytes let input := mload(dataPtr) // write 4 characters mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(6, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and(input, 0x3F))))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT /* &_--~- ,_ /""\ , { ", THE <>^ L____/| ( )_ ,{ ,_@ FARM `) /` , / |/ {|\{ GAME \ `---' / "" " " `'";\)` W: https://thefarm.game _/_Y T: @The_Farm_Game * Howdy folks! Thanks for glancing over our contracts * If you're interested in working with us, you can email us at [email protected] * Found a broken egg in our contracts? We have a bug bounty program [email protected] * Y'all have a nice day */ pragma solidity ^0.8.0; /// @title IERC2981Royalties /// @dev Interface for the ERC2981 - Token Royalty standard interface IERC2981Royalties { /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param _tokenId - the NFT asset queried for royalty information /// @param _value - the sale price of the NFT asset specified by _tokenId /// @return _receiver - address of who should be sent the royalty payment /// @return _royaltyAmount - the royalty payment amount for value sale price function royaltyInfo(uint256 _tokenId, uint256 _value) external view returns (address _receiver, uint256 _royaltyAmount); }
// SPDX-License-Identifier: MIT /// @title A library used to convert multi-part RLE compressed images to SVG /* &_--~- ,_ /""\ , { ", THE <>^ L____/| ( )_ ,{ ,_@ FARM `) /` , / |/ {|\{ GAME \ `---' / "" " " `'";\)` W: https://thefarm.game _/_Y T: @The_Farm_Game * Howdy folks! Thanks for glancing over our contracts * If you're interested in working with us, you can email us at [email protected] * Found a broken egg in our contracts? We have a bug bounty program [email protected] * Y'all have a nice day */ /* Adopted from Nouns.wtf source code Modification allow for 48x48 pixel & 32x32 RLE images & using string.concat */ pragma solidity ^0.8.17; import { Strings } from '@openzeppelin/contracts/utils/Strings.sol'; library MultiPartRLEToSVG { using Strings for uint256; struct SVGParams { string background; bytes[] elements; uint256 advantage; uint256 width; uint256 height; } struct ContentBounds { uint8 top; uint8 right; uint8 bottom; uint8 left; } struct Rect { uint8 length; uint8 colorIndex; } struct DecodedImage { uint8 paletteIndex; ContentBounds bounds; Rect[] rects; } /** * @notice Given RLE image elements and color palettes, merge to generate a single SVG image. */ function generateSVG(SVGParams memory params, mapping(uint8 => string[]) storage palettes) internal view returns (string memory svg) { string memory width = (params.width * 10).toString(); string memory height = (params.width * 10).toString(); string memory _background = ''; if (keccak256(abi.encodePacked(params.background)) != keccak256(abi.encodePacked('------'))) { _background = string.concat('<rect width="100%" height="100%" fill="#', params.background, '" />'); } return string.concat( '<svg width="', width, '" height="', height, '"', ' viewBox="0 0 ', width, ' ', height, '"', ' xmlns="http://www.w3.org/2000/svg" shape-rendering="crispEdges">', _background, _generateSVGRects(params, palettes), '</svg>' ); } /** * @notice Given RLE image elements and color palettes, generate SVG rects. */ // prettier-ignore function _generateSVGRects(SVGParams memory params, mapping(uint8 => string[]) storage palettes) private view returns (string memory svg) { string[49] memory lookup; // This is a lookup table that enables very cheap int to string // conversions when operating on a set of predefined integers. // This is used below to convert the integer length of each rectangle // in a 32x32 pixel grid to the string representation of the length // in a 320x320 pixel grid. // For example: A length of 3 gets mapped to '30'. // This lookup can be used for up to a 48x48 pixel grid lookup = [ '0', '10', '20', '30', '40', '50', '60', '70', '80', '90', '100', '110', '120', '130', '140', '150', '160', '170', '180', '190', '200', '210', '220', '230', '240', '250', '260', '270', '280', '290', '300', '310', '320', '330', '340', '350', '360', '370', '380', '390', '400', '410', '420', '430', '440', '450', '460', '470', '480' ]; // The string of SVG rectangles string memory rects; // Loop through all element create svg rects uint256 elementSize = 0; for (uint8 p = 0; p < params.elements.length; p++) { elementSize = elementSize + params.elements[p].length; // Convert the element data into a format that's easier to consume // than a byte array. DecodedImage memory image = _decodeRLEImage(params.elements[p]); // Get the color palette used by the current element (`params.elements[p]`) string[] storage palette = palettes[image.paletteIndex]; // These are the x and y coordinates of the rect that's currently being drawn. // We start at the top-left of the pixel grid when drawing a new element. uint256 currentX = image.bounds.left; uint256 currentY = image.bounds.top; // The `cursor` and `buffer` are used here as a gas-saving technique. // We load enough data into a string array to draw four rectangles. // Once the string array is full, we call `_getChunk`, which writes the // four rectangles to a `chunk` variable before concatenating them with the // existing element string. If there is remaining, unwritten data inside the // `buffer` after we exit the rect loop, it will be written before the // element rectangles are merged with the existing element data. // This saves gas by reducing the size of the strings we're concatenating // during most loops. uint256 cursor; string[16] memory buffer; // The element rectangles string memory element; for (uint256 i = 0; i < image.rects.length; i++) { Rect memory rect = image.rects[i]; // Skip fully transparent rectangles. Transparent rectangles // always have a color index of 0. if (rect.colorIndex != 0) { // Load the rectangle data into the buffer buffer[cursor] = lookup[rect.length]; // width buffer[cursor + 1] = lookup[currentX]; // x buffer[cursor + 2] = lookup[currentY]; // y buffer[cursor + 3] = palette[rect.colorIndex]; // color cursor += 4; if (cursor >= 16) { // Write the rectangles from the buffer to a string // and concatenate with the existing element string. element = string.concat(element, _getChunk(cursor, buffer)); cursor = 0; } } // Move the x coordinate `rect.length` pixels to the right currentX += rect.length; // If the right bound has been reached, reset the x coordinate // to the left bound and shift the y coordinate down one row. if (currentX == image.bounds.right) { currentX = image.bounds.left; currentY++; } } // If there are unwritten rectangles in the buffer, write them to a // `chunk` and concatenate with the existing element data. if (cursor != 0) { element = string.concat(element, _getChunk(cursor, buffer)); } // Concatenate the element with all previous elements rects = string.concat(rects, element); } return rects; } /** * @notice Return a string that consists of all rects in the provided `buffer`. */ // prettier-ignore function _getChunk(uint256 cursor, string[16] memory buffer) private pure returns (string memory) { string memory chunk; for (uint256 i = 0; i < cursor; i += 4) { chunk = string.concat( chunk, '<rect width="', buffer[i], '" height="10" x="', buffer[i + 1], '" y="', buffer[i + 2], '" fill="#', buffer[i + 3], '" />' ); } return chunk; } /** * @notice Decode a single RLE compressed image into a `DecodedImage`. */ function _decodeRLEImage(bytes memory image) private pure returns (DecodedImage memory) { uint8 paletteIndex = uint8(image[0]); ContentBounds memory bounds = ContentBounds({ top: uint8(image[1]), right: uint8(image[2]), bottom: uint8(image[3]), left: uint8(image[4]) }); uint256 cursor; // why is it length - 5? and why divide by 2? Rect[] memory rects = new Rect[]((image.length - 5) / 2); for (uint256 i = 5; i < image.length; i += 2) { rects[cursor] = Rect({ length: uint8(image[i]), colorIndex: uint8(image[i + 1]) }); cursor++; } return DecodedImage({ paletteIndex: paletteIndex, bounds: bounds, rects: rects }); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import { IOperatorFilterRegistry } from './IOperatorFilterRegistry.sol'; contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator() virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { if (!operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import { EnumerableSet } from '@openzeppelin/contracts/utils/structs/EnumerableSet.sol'; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) 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 // OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// 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.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library 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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": { "contracts/libs/NFTDescriptor.sol": { "NFTDescriptor": "0xdad897418f0f007c994c76c276b48a5fd371465d" } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IEGGToken","name":"_eggToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"typeId","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"EggShopBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"typeId","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"EggShopMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"thisContract","type":"address"}],"name":"InitializedContract","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"typeId","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"TypeNameUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"typeId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eggMintAmt","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eggBurnAmt","type":"uint256"}],"name":"UpdateTypeSupplyExchange","type":"event"},{"inputs":[{"internalType":"uint8","name":"_paletteIndex","type":"uint8"},{"internalType":"string","name":"_color","type":"string"}],"name":"addColorToPalette","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_paletteIndex","type":"uint8"},{"internalType":"string[]","name":"_colors","type":"string[]"}],"name":"addManyColorsToPalette","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addManyControllers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"address","name":"burnFrom","type":"address"},{"internalType":"uint256","name":"eggAmt","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eggToken","outputs":[{"internalType":"contract IEGGToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"getInfoForType","outputs":[{"components":[{"internalType":"uint16","name":"mints","type":"uint16"},{"internalType":"uint16","name":"burns","type":"uint16"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"eggMintAmt","type":"uint256"},{"internalType":"uint256","name":"eggBurnAmt","type":"uint256"}],"internalType":"struct IEggShop.TypeInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"getInfoForTypeName","outputs":[{"components":[{"internalType":"uint16","name":"mints","type":"uint16"},{"internalType":"uint16","name":"burns","type":"uint16"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"eggMintAmt","type":"uint256"},{"internalType":"uint256","name":"eggBurnAmt","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"internalType":"struct IEggShop.DetailedTypeInfo","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":"typeId","type":"uint256"},{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"eggAmt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"uint16","name":"quantity","type":"uint16"},{"internalType":"address","name":"recipient","type":"address"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newName","type":"string"},{"internalType":"string","name":"_newDesc","type":"string"},{"internalType":"string","name":"_newImageUri","type":"string"},{"internalType":"string","name":"_newExtLink","type":"string"},{"internalType":"uint16","name":"_newFee","type":"uint16"},{"internalType":"address","name":"_newRecipient","type":"address"}],"name":"setCollectionInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setEggToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTypeId","type":"uint256"},{"components":[{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint256","name":"eggMintAmt","type":"uint256"},{"internalType":"uint256","name":"eggBurnAmt","type":"uint256"}],"internalType":"struct EggShop.TypeInfoTemp[]","name":"typeInfoTemp","type":"tuple[]"}],"name":"setManySupplyExchangeAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint256","name":"eggMintAmt","type":"uint256"},{"internalType":"uint256","name":"eggBurnAmt","type":"uint256"}],"name":"setSupplyExchangeAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"internalType":"uint16","name":"maxSupply","type":"uint16"}],"name":"setType","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_desc","type":"string"}],"name":"updateMetaDesc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTypeId","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"rlePNG","type":"bytes"}],"internalType":"struct EggShop.EggShopImage[]","name":"_images","type":"tuple[]"}],"name":"uploadManyRLEImages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"rlePNG","type":"bytes"}],"internalType":"struct EggShop.EggShopImage","name":"image","type":"tuple"}],"name":"uploadRLEImage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"typeId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101c060405261010e608081815290620045c560a039600d9062000024908262000359565b503480156200003257600080fd5b50604051620046d3380380620046d3833981016040819052620000559162000425565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806020016040528060008152506200008d816200025060201b60201c565b50620000993362000262565b6daaeb6d7670e522a718067333cd4e3b15620001de5780156200012c57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200010d57600080fd5b505af115801562000122573d6000803e3d6000fd5b50505050620001de565b6001600160a01b038216156200017d5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000f2565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001c457600080fd5b505af1158015620001d9573d6000803e3d6000fd5b505050505b5050600f80546001600160a01b0319166001600160a01b03831617905533600090815260106020908152604091829020805460ff1916600117905590513081527faf827135deb94e19593430f16f577c1d98befd728375ca86115192ab05848fcb910160405180910390a15062000457565b60026200025e828262000359565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002df57607f821691505b6020821081036200030057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035457600081815260208120601f850160051c810160208610156200032f5750805b601f850160051c820191505b8181101562000350578281556001016200033b565b5050505b505050565b81516001600160401b03811115620003755762000375620002b4565b6200038d81620003868454620002ca565b8462000306565b602080601f831160018114620003c55760008415620003ac5750858301515b600019600386901b1c1916600185901b17855562000350565b600085815260208120601f198616915b82811015620003f657888601518255948401946001909101908401620003d5565b5085821015620004155787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200043857600080fd5b81516001600160a01b03811681146200045057600080fd5b9392505050565b61415e80620004676000396000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c806392d182741161010f578063e8a3d485116100a2578063f43300d011610071578063f43300d01461049b578063f6a74ed7146104ae578063f9da8863146104c1578063fb2e5710146104d457600080fd5b8063e8a3d4851461045a578063e985e9c514610462578063f242432a14610475578063f2fde38b1461048857600080fd5b8063a22cb465116100de578063a22cb4651461040e578063b091aa7c14610421578063bdfa6e6214610434578063c81227291461044757600080fd5b806392d182741461036b578063957e8ce81461038b57806399119d221461039e5780639ca0f29b146103b157600080fd5b806359ba89931161018757806376b028551161015657806376b028551461030d578063839644da146103205780638da5cb5b146103335780638ec0a1981461035857600080fd5b806359ba8993146102cc578063715018a6146102df57806373031855146102e757806374a187a1146102fa57600080fd5b80632a55205a116101c35780632a55205a146102525780632eb2c2d61461028457806333c79848146102995780634e1273f4146102ac57600080fd5b8062fdd58e146101e957806301ffc9a71461020f5780630e89341c14610232575b600080fd5b6101fc6101f7366004612c8b565b6104e7565b6040519081526020015b60405180910390f35b61022261021d366004612ccb565b610580565b6040519015158152602001610206565b610245610240366004612ce8565b6105f6565b6040516102069190612d51565b610265610260366004612d64565b61066b565b604080516001600160a01b039093168352602083019190915201610206565b610297610292366004612edf565b6106c0565b005b6102976102a7366004612ff5565b6107b5565b6102bf6102ba366004613029565b610820565b60405161020691906130bd565b6102976102da3660046130e2565b610949565b610297610b6b565b6102976102f5366004613126565b610b7f565b6102976103083660046130e2565b610cd7565b61029761031b3660046131ad565b610f5d565b61029761032e366004613209565b610fbe565b6003546001600160a01b03165b6040516001600160a01b039091168152602001610206565b610297610366366004613242565b611050565b61037e610379366004612ce8565b611064565b6040516102069190613276565b6102976103993660046132cb565b6111c3565b600f54610340906001600160a01b031681565b6103c46103bf366004612ce8565b6111ed565b6040516102069190600060a08201905061ffff8084511683528060208501511660208401525060408301516040830152606083015160608301526080830151608083015292915050565b61029761041c3660046132f4565b6112ad565b61029761042f36600461332b565b6112b8565b61029761044236600461336d565b6112ca565b6102976104553660046133eb565b6113be565b610245611418565b610222610470366004613417565b611492565b610297610483366004613441565b61150f565b6102976104963660046132cb565b611644565b6102976104a93660046134a5565b6116bd565b6102976104bc3660046132cb565b611731565b6102976104cf366004613571565b61175a565b6102976104e23660046135e0565b6117a5565b60006001600160a01b0383166105575760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006301ffc9a760e01b6001600160e01b0319831614806105b157506303a24d0760e21b6001600160e01b03198316145b806105cc57506001600160e01b031982166303a24d0760e21b145b806105e7575063152a902d60e11b6001600160e01b03198316145b8061057a575061057a826117ee565b6000818152600e60205260409020600101546060906106625760405162461bcd60e51b815260206004820152602260248201527f496e76616c69642074797065206f72204d617820537570706c79206e6f742073604482015261195d60f21b606482015260840161054e565b61057a82611813565b60408051808201909152600a546001600160a01b038116808352600160a01b90910462ffffff16602083018190529091600091612710906106ac9086613631565b6106b6919061365e565b9150509250929050565b6daaeb6d7670e522a718067333cd4e3b1561076957604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074a9190613672565b61076957604051633b79c77360e21b815233600482015260240161054e565b6001600160a01b03851633148061078557506107858533611492565b6107a15760405162461bcd60e51b815260040161054e9061368f565b6107ae85858585856118db565b5050505050565b6107bd611920565b60005b815181101561081c5761080a8282815181106107de576107de6136de565b60200260200101516001600160a01b03166000908152601060205260409020805460ff19166001179055565b80610814816136f4565b9150506107c0565b5050565b606081518351146108855760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161054e565b600083516001600160401b038111156108a0576108a0612d86565b6040519080825280602002602001820160405280156108c9578160200160208202803683370190505b50905060005b8451811015610941576109148582815181106108ed576108ed6136de565b6020026020010151858381518110610907576109076136de565b60200260200101516104e7565b828281518110610926576109266136de565b602090810291909101015261093a816136f4565b90506108cf565b509392505050565b610951611920565b6000848152600e602052604090205461ffff1661099e5760405162461bcd60e51b815260206004820152600b60248201526a139bdb99481b5a5b9d195960aa1b604482015260640161054e565b8015610a2157600f546040516323b872dd60e01b81526001600160a01b03909116906323b872dd906109d89030903290869060040161370d565b6020604051808303816000875af11580156109f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1b9190613672565b50610ad5565b6000848152600e602052604090206003015415610ad557600f546000858152600e60205260409020600301546001600160a01b03909116906323b872dd9030903290610a729061ffff891690613631565b6040518463ffffffff1660e01b8152600401610a909392919061370d565b6020604051808303816000875af1158015610aaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad39190613672565b505b6000848152600e602052604090208054849190600290610b0090849062010000900461ffff16613731565b92506101000a81548161ffff021916908361ffff160217905550610b2982858561ffff16611972565b60405161ffff84168152339085907f561d066534b98b841d21922d0e3c525d229726b99c5c82129d280adca3da966d906020015b60405180910390a350505050565b610b73611af3565b610b7d6000611b4d565b565b610b87611920565b6000838152600e6020526040902060010154610bb55760405162461bcd60e51b815260040161054e90613753565b6000838152600e60205260409020600181015490548390610be29061ffff62010000820481169116613779565b610bec9190613731565b61ffff161115610c325760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604482015260640161054e565b6000838152600e602052604081208054849290610c5490849061ffff16613731565b92506101000a81548161ffff021916908361ffff160217905550610c8d81848461ffff1660405180602001604052806000815250611b9f565b60405161ffff831681526001600160a01b0382169084907f338a2c2f35c2595e3cfe1f70acc0db9768a7f639e72497d627444b03ff22f07e906020015b60405180910390a3505050565b610cdf611920565b6000848152600e6020526040902060010154610d0d5760405162461bcd60e51b815260040161054e90613753565b6000848152600e60205260409020600181015490548490610d3a9061ffff62010000820481169116613779565b610d449190613731565b61ffff161115610d8a5760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604482015260640161054e565b8015610e0d57600f546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90610dc49032903090869060040161370d565b6020604051808303816000875af1158015610de3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e079190613672565b50610ec1565b6000848152600e602052604090206002015415610ec157600f546000858152600e60205260409020600201546001600160a01b03909116906323b872dd9032903090610e5e9061ffff891690613631565b6040518463ffffffff1660e01b8152600401610e7c9392919061370d565b6020604051808303816000875af1158015610e9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebf9190613672565b505b6000848152600e602052604081208054859290610ee390849061ffff16613731565b92506101000a81548161ffff021916908361ffff160217905550610f1c82858561ffff1660405180602001604052806000815250611b9f565b60405161ffff841681526001600160a01b0383169085907f338a2c2f35c2595e3cfe1f70acc0db9768a7f639e72497d627444b03ff22f07e90602001610b5d565b610f65611920565b60005b81811015610fb857610fa6610f7d8286613794565b848484818110610f8f57610f8f6136de565b9050602002810190610fa191906137a7565b611caa565b80610fb0816136f4565b915050610f68565b50505050565b610fc6611920565b60ff83166000908152600b602052604090205461010090610fe8908390613794565b11156110065760405162461bcd60e51b815260040161054e906137c7565b60005b81811015610fb85761103e84848484818110611027576110276136de565b90506020028101906110399190613808565b611dbb565b80611048816136f4565b915050611009565b611058611920565b600d61081c82826138ce565b6110a56040518060c00160405280600061ffff168152602001600061ffff168152602001600081526020016000815260200160008152602001606081525090565b6000828152600e60205260409020600101546110d35760405162461bcd60e51b815260040161054e90613753565b6040805160c0810182526000848152600e6020908152838220805461ffff808216865262010000909104168285015260018101548486015260028101546060850152600301546080840152858252600c9052918220805460a0830191906111399061384e565b80601f01602080910402602001604051908101604052809291908181526020018280546111659061384e565b80156111b25780601f10611187576101008083540402835291602001916111b2565b820191906000526020600020905b81548152906001019060200180831161119557829003601f168201915b505050919092525090949350505050565b6111cb611920565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6112276040518060a00160405280600061ffff168152602001600061ffff1681526020016000815260200160008152602001600081525090565b6000828152600e60205260409020600101546112555760405162461bcd60e51b815260040161054e90613753565b506000908152600e6020908152604091829020825160a081018452815461ffff808216835262010000909104169281019290925260018101549282019290925260028201546060820152600390910154608082015290565b61081c338383611e30565b6112c0611920565b61081c8282611caa565b6112d2611920565b60005b81811015610fb8578282828181106112ef576112ef6136de565b611305926020606090920201908101915061398d565b6000828152600e602052604090205461ffff9182169116111561133a5760405162461bcd60e51b815260040161054e906139a8565b6113ac6113478286613794565b848484818110611359576113596136de565b61136f926020606090920201908101915061398d565b858585818110611381576113816136de565b9050606002016020013586868681811061139d5761139d6136de565b90506060020160400135611f08565b806113b6816136f4565b9150506112d5565b6113c6611920565b6000828152600e602052604090205461ffff808316911611156113fb5760405162461bcd60e51b815260040161054e906139a8565b6000918252600e602052604090912061ffff909116600190910155565b606061146e6004600560066007611430600854611fd9565b600954611445906001600160a01b03166120e1565b60405160200161145a96959493929190613a47565b6040516020818303038152906040526120f7565b60405160200161147e9190613b65565b604051602081830303815290604052905090565b6001600160a01b03821660009081526010602052604081205460ff16806114d157506001600160a01b03821660009081526010602052604090205460ff165b156114de5750600161057a565b6001600160a01b0380841660009081526001602090815260408083209386168352929052205460ff165b9392505050565b6daaeb6d7670e522a718067333cd4e3b156115b857604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015611575573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115999190613672565b6115b857604051633b79c77360e21b815233600482015260240161054e565b3360009081526010602052604090205460ff16611637576001600160a01b0385163314806115eb57506115eb8533611492565b6116375760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564604482015260640161054e565b6107ae858585858561225d565b61164c611af3565b6001600160a01b0381166116b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161054e565b6116ba81611b4d565b50565b6116c5611af3565b60046116d187826138ce565b5060056116de86826138ce565b5060066116eb85826138ce565b5060076116f884826138ce565b5061ffff82166008819055600980546001600160a01b0319166001600160a01b0384161790556117299082906122a2565b505050505050565b611739611920565b6001600160a01b03166000908152601060205260409020805460ff19169055565b611762611920565b60ff83166000908152600b6020526040902054610100116117955760405162461bcd60e51b815260040161054e906137c7565b6117a0838383611dbb565b505050565b6117ad611920565b6000848152600e602052604090205461ffff808516911611156117e25760405162461bcd60e51b815260040161054e906139a8565b610fb884848484611f08565b60006001600160e01b0319821663152a902d60e11b148061057a575061057a8261233e565b6000818152600c60209081526040808320905160609392611835929101613baa565b604051602081830303815290604052905061150881600d80546118579061384e565b80601f01602080910402602001604051908101604052809291908181526020018280546118839061384e565b80156118d05780601f106118a5576101008083540402835291602001916118d0565b820191906000526020600020905b8154815290600101906020018083116118b357829003601f168201915b50505050508561238e565b6001600160a01b0385163314806118f757506118f78533611492565b6119135760405162461bcd60e51b815260040161054e9061368f565b6107ae8585858585612494565b3360009081526010602052604090205460ff16610b7d5760405162461bcd60e51b815260206004820152601060248201526f4f6e6c7920636f6e74726f6c6c65727360801b604482015260640161054e565b6001600160a01b0383166119d45760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161054e565b3360006119e084612669565b905060006119ed84612669565b60408051602080820183526000918290528882528181528282206001600160a01b038b1683529052205490915084811015611a765760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161054e565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090525b50505050505050565b6003546001600160a01b03163314610b7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161054e565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611bff5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161054e565b336000611c0b85612669565b90506000611c1885612669565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611c4a908490613794565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611aea836000898989896126b4565b6040805180820190915280611cbf8380613808565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505090825250602090810190611d0890840184613808565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050848152600c6020526040902082519091508190611d5b90826138ce565b5060208201516001820190611d7090826138ce565b508391507f42569a9bc9de2dae82d28e75c32f180e92c94270873d17338f1e77a7bef3f60c9050611da18380613808565b604051611daf929190613bb6565b60405180910390a25050565b6006811480611dc8575080155b611e035760405162461bcd60e51b815260206004820152600c60248201526b0aee4dedcce40d8cadccee8d60a31b604482015260640161054e565b60ff83166000908152600b6020908152604082208054600181018255908352912001610fb8828483613be5565b816001600160a01b0316836001600160a01b031603611ea35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161054e565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101610cca565b6000848152600e6020526040902061ffff8416600190910155611f3382670de0b6b3a7640000613631565b6000858152600e6020526040902060020155611f5781670de0b6b3a7640000613631565b6000858152600e6020526040902060030155837f075c2e35095a140d7aa6aa2edc743706de8eb250c5f748857b2dbd96c0395d7f84611f9e85670de0b6b3a7640000613631565b611fb085670de0b6b3a7640000613631565b6040805161ffff909416845260208401929092529082015260600160405180910390a250505050565b6060816000036120005750506040805180820190915260018152600360fc1b602082015290565b8160005b811561202a5780612014816136f4565b91506120239050600a8361365e565b9150612004565b6000816001600160401b0381111561204457612044612d86565b6040519080825280601f01601f19166020018201604052801561206e576020820181803683370190505b5090505b84156120d957612083600183613ca4565b9150612090600a86613cb7565b61209b906030613794565b60f81b8183815181106120b0576120b06136de565b60200101906001600160f81b031916908160001a9053506120d2600a8661365e565b9450612072565b949350505050565b606061057a6001600160a01b038316601461280f565b6060815160000361211657505060408051602081019091526000815290565b60006040518060600160405280604081526020016140e960409139905060006003845160026121459190613794565b61214f919061365e565b61215a906004613631565b90506000612169826020613794565b6001600160401b0381111561218057612180612d86565b6040519080825280601f01601f1916602001820160405280156121aa576020820181803683370190505b509050818152600183018586518101602084015b818310156122185760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b938201939093526004016121be565b60038951066001811461223257600281146122435761224f565b613d3d60f01b60011983015261224f565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b03851633148061227957506122798533611492565b6122955760405162461bcd60e51b815260040161054e9061368f565b6107ae85858585856129aa565b6127108111156122f45760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604482015260640161054e565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600a8054600160a01b9093026001600160b81b0319909316909117919091179055565b60006001600160e01b03198216636cdb3d1360e11b148061236f57506001600160e01b031982166303a24d0760e21b145b8061057a57506301ffc9a760e01b6001600160e01b031983161461057a565b60606000604051806101000160405280868152602001858152602001604051806040016040528060068152602001652d2d2d2d2d2d60d01b81525081526020016123d785612ad4565b815260200160405180602001604052806000815250815260200160008152602001602060ff168152602001602060ff16815250905073dad897418f0f007c994c76c276b48a5fd371465d63bf1deae282600b6040518363ffffffff1660e01b8152600401612446929190613d20565b600060405180830381865af4158015612463573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261248b9190810190613def565b95945050505050565b81518351146124f65760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161054e565b6001600160a01b03841661251c5760405162461bcd60e51b815260040161054e90613e70565b3360005b845181101561260357600085828151811061253d5761253d6136de565b60200260200101519050600085838151811061255b5761255b6136de565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156125ab5760405162461bcd60e51b815260040161054e90613eb5565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906125e8908490613794565b92505081905550505050806125fc906136f4565b9050612520565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612653929190613eff565b60405180910390a4611729818787878787612bb4565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106126a3576126a36136de565b602090810291909101015292915050565b6001600160a01b0384163b156117295760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906126f89089908990889088908890600401613f24565b6020604051808303816000875af1925050508015612733575060408051601f3d908101601f1916820190925261273091810190613f69565b60015b6127df5761273f613f86565b806308c379a0036127785750612753613fa2565b8061275e575061277a565b8060405162461bcd60e51b815260040161054e9190612d51565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161054e565b6001600160e01b0319811663f23a6e6160e01b14611aea5760405162461bcd60e51b815260040161054e9061402b565b6060600061281e836002613631565b612829906002613794565b6001600160401b0381111561284057612840612d86565b6040519080825280601f01601f19166020018201604052801561286a576020820181803683370190505b509050600360fc1b81600081518110612885576128856136de565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106128b4576128b46136de565b60200101906001600160f81b031916908160001a90535060006128d8846002613631565b6128e3906001613794565b90505b600181111561295b576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612917576129176136de565b1a60f81b82828151811061292d5761292d6136de565b60200101906001600160f81b031916908160001a90535060049490941c9361295481614073565b90506128e6565b5083156115085760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161054e565b6001600160a01b0384166129d05760405162461bcd60e51b815260040161054e90613e70565b3360006129dc85612669565b905060006129e985612669565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015612a2c5760405162461bcd60e51b815260040161054e90613eb5565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612a69908490613794565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612ac9848a8a8a8a8a6126b4565b505050505050505050565b60408051600180825281830190925260609160009190816020015b6060815260200190600190039081612aef5750506000848152600c60205260409020600101805491925090612b239061384e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b4f9061384e565b8015612b9c5780601f10612b7157610100808354040283529160200191612b9c565b820191906000526020600020905b815481529060010190602001808311612b7f57829003601f168201915b5050505050816000815181106126a3576126a36136de565b6001600160a01b0384163b156117295760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612bf8908990899088908890889060040161408a565b6020604051808303816000875af1925050508015612c33575060408051601f3d908101601f19168201909252612c3091810190613f69565b60015b612c3f5761273f613f86565b6001600160e01b0319811663bc197c8160e01b14611aea5760405162461bcd60e51b815260040161054e9061402b565b80356001600160a01b0381168114612c8657600080fd5b919050565b60008060408385031215612c9e57600080fd5b612ca783612c6f565b946020939093013593505050565b6001600160e01b0319811681146116ba57600080fd5b600060208284031215612cdd57600080fd5b813561150881612cb5565b600060208284031215612cfa57600080fd5b5035919050565b60005b83811015612d1c578181015183820152602001612d04565b50506000910152565b60008151808452612d3d816020860160208601612d01565b601f01601f19169290920160200192915050565b6020815260006115086020830184612d25565b60008060408385031215612d7757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612dc157612dc1612d86565b6040525050565b60006001600160401b03821115612de157612de1612d86565b5060051b60200190565b600082601f830112612dfc57600080fd5b81356020612e0982612dc8565b604051612e168282612d9c565b83815260059390931b8501820192828101915086841115612e3657600080fd5b8286015b84811015612e515780358352918301918301612e3a565b509695505050505050565b60006001600160401b03821115612e7557612e75612d86565b50601f01601f191660200190565b600082601f830112612e9457600080fd5b8135612e9f81612e5c565b604051612eac8282612d9c565b828152856020848701011115612ec157600080fd5b82602086016020830137600092810160200192909252509392505050565b600080600080600060a08688031215612ef757600080fd5b612f0086612c6f565b9450612f0e60208701612c6f565b935060408601356001600160401b0380821115612f2a57600080fd5b612f3689838a01612deb565b94506060880135915080821115612f4c57600080fd5b612f5889838a01612deb565b93506080880135915080821115612f6e57600080fd5b50612f7b88828901612e83565b9150509295509295909350565b600082601f830112612f9957600080fd5b81356020612fa682612dc8565b604051612fb38282612d9c565b83815260059390931b8501820192828101915086841115612fd357600080fd5b8286015b84811015612e5157612fe881612c6f565b8352918301918301612fd7565b60006020828403121561300757600080fd5b81356001600160401b0381111561301d57600080fd5b6120d984828501612f88565b6000806040838503121561303c57600080fd5b82356001600160401b038082111561305357600080fd5b61305f86838701612f88565b9350602085013591508082111561307557600080fd5b506106b685828601612deb565b600081518084526020808501945080840160005b838110156130b257815187529582019590820190600101613096565b509495945050505050565b6020815260006115086020830184613082565b803561ffff81168114612c8657600080fd5b600080600080608085870312156130f857600080fd5b84359350613108602086016130d0565b925061311660408601612c6f565b9396929550929360600135925050565b60008060006060848603121561313b57600080fd5b8335925061314b602085016130d0565b915061315960408501612c6f565b90509250925092565b60008083601f84011261317457600080fd5b5081356001600160401b0381111561318b57600080fd5b6020830191508360208260051b85010111156131a657600080fd5b9250929050565b6000806000604084860312156131c257600080fd5b8335925060208401356001600160401b038111156131df57600080fd5b6131eb86828701613162565b9497909650939450505050565b803560ff81168114612c8657600080fd5b60008060006040848603121561321e57600080fd5b613227846131f8565b925060208401356001600160401b038111156131df57600080fd5b60006020828403121561325457600080fd5b81356001600160401b0381111561326a57600080fd5b6120d984828501612e83565b60208152600061ffff808451166020840152806020850151166040840152506040830151606083015260608301516080830152608083015160a083015260a083015160c0808401526120d960e0840182612d25565b6000602082840312156132dd57600080fd5b61150882612c6f565b80151581146116ba57600080fd5b6000806040838503121561330757600080fd5b61331083612c6f565b91506020830135613320816132e6565b809150509250929050565b6000806040838503121561333e57600080fd5b8235915060208301356001600160401b0381111561335b57600080fd5b83016040818603121561332057600080fd5b60008060006040848603121561338257600080fd5b8335925060208401356001600160401b03808211156133a057600080fd5b818601915086601f8301126133b457600080fd5b8135818111156133c357600080fd5b8760206060830285010111156133d857600080fd5b6020830194508093505050509250925092565b600080604083850312156133fe57600080fd5b8235915061340e602084016130d0565b90509250929050565b6000806040838503121561342a57600080fd5b61343383612c6f565b915061340e60208401612c6f565b600080600080600060a0868803121561345957600080fd5b61346286612c6f565b945061347060208701612c6f565b9350604086013592506060860135915060808601356001600160401b0381111561349957600080fd5b612f7b88828901612e83565b60008060008060008060c087890312156134be57600080fd5b86356001600160401b03808211156134d557600080fd5b6134e18a838b01612e83565b975060208901359150808211156134f757600080fd5b6135038a838b01612e83565b9650604089013591508082111561351957600080fd5b6135258a838b01612e83565b9550606089013591508082111561353b57600080fd5b5061354889828a01612e83565b935050613557608088016130d0565b915061356560a08801612c6f565b90509295509295509295565b60008060006040848603121561358657600080fd5b61358f846131f8565b925060208401356001600160401b03808211156135ab57600080fd5b818601915086601f8301126135bf57600080fd5b8135818111156135ce57600080fd5b8760208285010111156133d857600080fd5b600080600080608085870312156135f657600080fd5b84359350613606602086016130d0565b93969395505050506040820135916060013590565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761057a5761057a61361b565b634e487b7160e01b600052601260045260246000fd5b60008261366d5761366d613648565b500490565b60006020828403121561368457600080fd5b8151611508816132e6565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016137065761370661361b565b5060010190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b61ffff81811683821601908082111561374c5761374c61361b565b5092915050565b6020808252600c908201526b496e76616c6964207479706560a01b604082015260600190565b61ffff82811682821603908082111561374c5761374c61361b565b8082018082111561057a5761057a61361b565b60008235603e198336030181126137bd57600080fd5b9190910192915050565b60208082526021908201527f50616c65747465732063616e206f6e6c7920686f6c642032353620636f6c6f726040820152607360f81b606082015260800190565b6000808335601e1984360301811261381f57600080fd5b8301803591506001600160401b0382111561383957600080fd5b6020019150368190038213156131a657600080fd5b600181811c9082168061386257607f821691505b60208210810361388257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156117a057600081815260208120601f850160051c810160208610156138af5750805b601f850160051c820191505b81811015611729578281556001016138bb565b81516001600160401b038111156138e7576138e7612d86565b6138fb816138f5845461384e565b84613888565b602080601f83116001811461393057600084156139185750858301515b600019600386901b1c1916600185901b178555611729565b600085815260208120601f198616915b8281101561395f57888601518255948401946001909101908401613940565b508582101561397d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561399f57600080fd5b611508826130d0565b6020808252601290820152714d617820737570706c7920746f6f206c6f7760701b604082015260600190565b600081546139e18161384e565b600182811680156139f95760018114613a0e57613a3d565b60ff1984168752821515830287019450613a3d565b8560005260208060002060005b85811015613a345781548a820152908401908201613a1b565b50505082870194505b5050505092915050565b693d913730b6b2911d101160b11b81526000613a66600a8301896139d4565b72111610113232b9b1b934b83a34b7b7111d101160691b8152613a8c60138201896139d4565b6c1116101134b6b0b3b2911d101160991b81529050613aae600d8201886139d4565b741116101132bc3a32b93730b62fb634b735911d101160591b81529050613ad860158201876139d4565b90507f222c202273656c6c65725f6665655f62617369735f706f696e7473223a20000081528451613b1081601e840160208901612d01565b74111610113332b2afb932b1b4b834b2b73a111d101160591b601e92909101918201528351613b46816033840160208801612d01565b61227d60f01b6033929091019182015260350198975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613b9d81601d850160208701612d01565b91909101601d0192915050565b600061150882846139d4565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6001600160401b03831115613bfc57613bfc612d86565b613c1083613c0a835461384e565b83613888565b6000601f841160018114613c445760008515613c2c5750838201355b600019600387901b1c1916600186901b1783556107ae565b600083815260209020601f19861690835b82811015613c755786850135825560209485019460019092019101613c55565b5086821015613c925760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8181038181111561057a5761057a61361b565b600082613cc657613cc6613648565b500690565b600081518084526020808501808196508360051b8101915082860160005b85811015613d13578284038952613d01848351612d25565b98850198935090840190600101613ce9565b5091979650505050505050565b6040815260008351610100806040850152613d3f610140850183612d25565b91506020860151603f1980868503016060870152613d5d8483612d25565b93506040880151915080868503016080870152613d7a8483612d25565b935060608801519150808685030160a0870152613d978483613ccb565b935060808801519150808685030160c087015250613db58382612d25565b92505060a086015160e085015260c0860151613dd58286018260ff169052565b505060e0949094015160ff16610120830152506020015290565b600060208284031215613e0157600080fd5b81516001600160401b03811115613e1757600080fd5b8201601f81018413613e2857600080fd5b8051613e3381612e5c565b604051613e408282612d9c565b828152866020848601011115613e5557600080fd5b613e66836020830160208701612d01565b9695505050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000613f126040830185613082565b828103602084015261248b8185613082565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613f5e90830184612d25565b979650505050505050565b600060208284031215613f7b57600080fd5b815161150881612cb5565b600060033d1115613f9f5760046000803e5060005160e01c5b90565b600060443d1015613fb05790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613fdf57505050505090565b8285019150815181811115613ff75750505050505090565b843d87010160208285010111156140115750505050505090565b61402060208286010187612d9c565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6000816140825761408261361b565b506000190190565b6001600160a01b0386811682528516602082015260a0604082018190526000906140b690830186613082565b82810360608401526140c88186613082565b905082810360808401526140dc8185612d25565b9897505050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220c375114b4fde89b0d4bfe0f7926a6f3d27c04f355cca832b7e7f2c73053a46c364736f6c634300081100335370656369616c747920456767732026206974656d732063616e20626520626f756768742066726f6d20746865204567672053686f702e204661626c656420746f20686f6c64207370656369616c2070726f706572746965732c206f6e6c7920536561736f6e2031204661726d2047616d6520686f6c646572732077696c6c206b6e6f772077686174207468657920686f6c642e20416c6c20696d6167657320616e64206d657461646174612069732067656e65726174656420616e642073746f7265642031303025206f6e2d636861696e2e204e6f20495046532c204e6f204150492e204a7573742074686520626c6f636b636861696e2e2068747470733a2f2f7468656661726d2e67616d65000000000000000000000000d09c6e9ba169c25d655b7c25454402eef6b86a6a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e45760003560e01c806392d182741161010f578063e8a3d485116100a2578063f43300d011610071578063f43300d01461049b578063f6a74ed7146104ae578063f9da8863146104c1578063fb2e5710146104d457600080fd5b8063e8a3d4851461045a578063e985e9c514610462578063f242432a14610475578063f2fde38b1461048857600080fd5b8063a22cb465116100de578063a22cb4651461040e578063b091aa7c14610421578063bdfa6e6214610434578063c81227291461044757600080fd5b806392d182741461036b578063957e8ce81461038b57806399119d221461039e5780639ca0f29b146103b157600080fd5b806359ba89931161018757806376b028551161015657806376b028551461030d578063839644da146103205780638da5cb5b146103335780638ec0a1981461035857600080fd5b806359ba8993146102cc578063715018a6146102df57806373031855146102e757806374a187a1146102fa57600080fd5b80632a55205a116101c35780632a55205a146102525780632eb2c2d61461028457806333c79848146102995780634e1273f4146102ac57600080fd5b8062fdd58e146101e957806301ffc9a71461020f5780630e89341c14610232575b600080fd5b6101fc6101f7366004612c8b565b6104e7565b6040519081526020015b60405180910390f35b61022261021d366004612ccb565b610580565b6040519015158152602001610206565b610245610240366004612ce8565b6105f6565b6040516102069190612d51565b610265610260366004612d64565b61066b565b604080516001600160a01b039093168352602083019190915201610206565b610297610292366004612edf565b6106c0565b005b6102976102a7366004612ff5565b6107b5565b6102bf6102ba366004613029565b610820565b60405161020691906130bd565b6102976102da3660046130e2565b610949565b610297610b6b565b6102976102f5366004613126565b610b7f565b6102976103083660046130e2565b610cd7565b61029761031b3660046131ad565b610f5d565b61029761032e366004613209565b610fbe565b6003546001600160a01b03165b6040516001600160a01b039091168152602001610206565b610297610366366004613242565b611050565b61037e610379366004612ce8565b611064565b6040516102069190613276565b6102976103993660046132cb565b6111c3565b600f54610340906001600160a01b031681565b6103c46103bf366004612ce8565b6111ed565b6040516102069190600060a08201905061ffff8084511683528060208501511660208401525060408301516040830152606083015160608301526080830151608083015292915050565b61029761041c3660046132f4565b6112ad565b61029761042f36600461332b565b6112b8565b61029761044236600461336d565b6112ca565b6102976104553660046133eb565b6113be565b610245611418565b610222610470366004613417565b611492565b610297610483366004613441565b61150f565b6102976104963660046132cb565b611644565b6102976104a93660046134a5565b6116bd565b6102976104bc3660046132cb565b611731565b6102976104cf366004613571565b61175a565b6102976104e23660046135e0565b6117a5565b60006001600160a01b0383166105575760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006301ffc9a760e01b6001600160e01b0319831614806105b157506303a24d0760e21b6001600160e01b03198316145b806105cc57506001600160e01b031982166303a24d0760e21b145b806105e7575063152a902d60e11b6001600160e01b03198316145b8061057a575061057a826117ee565b6000818152600e60205260409020600101546060906106625760405162461bcd60e51b815260206004820152602260248201527f496e76616c69642074797065206f72204d617820537570706c79206e6f742073604482015261195d60f21b606482015260840161054e565b61057a82611813565b60408051808201909152600a546001600160a01b038116808352600160a01b90910462ffffff16602083018190529091600091612710906106ac9086613631565b6106b6919061365e565b9150509250929050565b6daaeb6d7670e522a718067333cd4e3b1561076957604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074a9190613672565b61076957604051633b79c77360e21b815233600482015260240161054e565b6001600160a01b03851633148061078557506107858533611492565b6107a15760405162461bcd60e51b815260040161054e9061368f565b6107ae85858585856118db565b5050505050565b6107bd611920565b60005b815181101561081c5761080a8282815181106107de576107de6136de565b60200260200101516001600160a01b03166000908152601060205260409020805460ff19166001179055565b80610814816136f4565b9150506107c0565b5050565b606081518351146108855760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161054e565b600083516001600160401b038111156108a0576108a0612d86565b6040519080825280602002602001820160405280156108c9578160200160208202803683370190505b50905060005b8451811015610941576109148582815181106108ed576108ed6136de565b6020026020010151858381518110610907576109076136de565b60200260200101516104e7565b828281518110610926576109266136de565b602090810291909101015261093a816136f4565b90506108cf565b509392505050565b610951611920565b6000848152600e602052604090205461ffff1661099e5760405162461bcd60e51b815260206004820152600b60248201526a139bdb99481b5a5b9d195960aa1b604482015260640161054e565b8015610a2157600f546040516323b872dd60e01b81526001600160a01b03909116906323b872dd906109d89030903290869060040161370d565b6020604051808303816000875af11580156109f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1b9190613672565b50610ad5565b6000848152600e602052604090206003015415610ad557600f546000858152600e60205260409020600301546001600160a01b03909116906323b872dd9030903290610a729061ffff891690613631565b6040518463ffffffff1660e01b8152600401610a909392919061370d565b6020604051808303816000875af1158015610aaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad39190613672565b505b6000848152600e602052604090208054849190600290610b0090849062010000900461ffff16613731565b92506101000a81548161ffff021916908361ffff160217905550610b2982858561ffff16611972565b60405161ffff84168152339085907f561d066534b98b841d21922d0e3c525d229726b99c5c82129d280adca3da966d906020015b60405180910390a350505050565b610b73611af3565b610b7d6000611b4d565b565b610b87611920565b6000838152600e6020526040902060010154610bb55760405162461bcd60e51b815260040161054e90613753565b6000838152600e60205260409020600181015490548390610be29061ffff62010000820481169116613779565b610bec9190613731565b61ffff161115610c325760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604482015260640161054e565b6000838152600e602052604081208054849290610c5490849061ffff16613731565b92506101000a81548161ffff021916908361ffff160217905550610c8d81848461ffff1660405180602001604052806000815250611b9f565b60405161ffff831681526001600160a01b0382169084907f338a2c2f35c2595e3cfe1f70acc0db9768a7f639e72497d627444b03ff22f07e906020015b60405180910390a3505050565b610cdf611920565b6000848152600e6020526040902060010154610d0d5760405162461bcd60e51b815260040161054e90613753565b6000848152600e60205260409020600181015490548490610d3a9061ffff62010000820481169116613779565b610d449190613731565b61ffff161115610d8a5760405162461bcd60e51b8152602060048201526011602482015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604482015260640161054e565b8015610e0d57600f546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90610dc49032903090869060040161370d565b6020604051808303816000875af1158015610de3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e079190613672565b50610ec1565b6000848152600e602052604090206002015415610ec157600f546000858152600e60205260409020600201546001600160a01b03909116906323b872dd9032903090610e5e9061ffff891690613631565b6040518463ffffffff1660e01b8152600401610e7c9392919061370d565b6020604051808303816000875af1158015610e9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebf9190613672565b505b6000848152600e602052604081208054859290610ee390849061ffff16613731565b92506101000a81548161ffff021916908361ffff160217905550610f1c82858561ffff1660405180602001604052806000815250611b9f565b60405161ffff841681526001600160a01b0383169085907f338a2c2f35c2595e3cfe1f70acc0db9768a7f639e72497d627444b03ff22f07e90602001610b5d565b610f65611920565b60005b81811015610fb857610fa6610f7d8286613794565b848484818110610f8f57610f8f6136de565b9050602002810190610fa191906137a7565b611caa565b80610fb0816136f4565b915050610f68565b50505050565b610fc6611920565b60ff83166000908152600b602052604090205461010090610fe8908390613794565b11156110065760405162461bcd60e51b815260040161054e906137c7565b60005b81811015610fb85761103e84848484818110611027576110276136de565b90506020028101906110399190613808565b611dbb565b80611048816136f4565b915050611009565b611058611920565b600d61081c82826138ce565b6110a56040518060c00160405280600061ffff168152602001600061ffff168152602001600081526020016000815260200160008152602001606081525090565b6000828152600e60205260409020600101546110d35760405162461bcd60e51b815260040161054e90613753565b6040805160c0810182526000848152600e6020908152838220805461ffff808216865262010000909104168285015260018101548486015260028101546060850152600301546080840152858252600c9052918220805460a0830191906111399061384e565b80601f01602080910402602001604051908101604052809291908181526020018280546111659061384e565b80156111b25780601f10611187576101008083540402835291602001916111b2565b820191906000526020600020905b81548152906001019060200180831161119557829003601f168201915b505050919092525090949350505050565b6111cb611920565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6112276040518060a00160405280600061ffff168152602001600061ffff1681526020016000815260200160008152602001600081525090565b6000828152600e60205260409020600101546112555760405162461bcd60e51b815260040161054e90613753565b506000908152600e6020908152604091829020825160a081018452815461ffff808216835262010000909104169281019290925260018101549282019290925260028201546060820152600390910154608082015290565b61081c338383611e30565b6112c0611920565b61081c8282611caa565b6112d2611920565b60005b81811015610fb8578282828181106112ef576112ef6136de565b611305926020606090920201908101915061398d565b6000828152600e602052604090205461ffff9182169116111561133a5760405162461bcd60e51b815260040161054e906139a8565b6113ac6113478286613794565b848484818110611359576113596136de565b61136f926020606090920201908101915061398d565b858585818110611381576113816136de565b9050606002016020013586868681811061139d5761139d6136de565b90506060020160400135611f08565b806113b6816136f4565b9150506112d5565b6113c6611920565b6000828152600e602052604090205461ffff808316911611156113fb5760405162461bcd60e51b815260040161054e906139a8565b6000918252600e602052604090912061ffff909116600190910155565b606061146e6004600560066007611430600854611fd9565b600954611445906001600160a01b03166120e1565b60405160200161145a96959493929190613a47565b6040516020818303038152906040526120f7565b60405160200161147e9190613b65565b604051602081830303815290604052905090565b6001600160a01b03821660009081526010602052604081205460ff16806114d157506001600160a01b03821660009081526010602052604090205460ff165b156114de5750600161057a565b6001600160a01b0380841660009081526001602090815260408083209386168352929052205460ff165b9392505050565b6daaeb6d7670e522a718067333cd4e3b156115b857604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015611575573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115999190613672565b6115b857604051633b79c77360e21b815233600482015260240161054e565b3360009081526010602052604090205460ff16611637576001600160a01b0385163314806115eb57506115eb8533611492565b6116375760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564604482015260640161054e565b6107ae858585858561225d565b61164c611af3565b6001600160a01b0381166116b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161054e565b6116ba81611b4d565b50565b6116c5611af3565b60046116d187826138ce565b5060056116de86826138ce565b5060066116eb85826138ce565b5060076116f884826138ce565b5061ffff82166008819055600980546001600160a01b0319166001600160a01b0384161790556117299082906122a2565b505050505050565b611739611920565b6001600160a01b03166000908152601060205260409020805460ff19169055565b611762611920565b60ff83166000908152600b6020526040902054610100116117955760405162461bcd60e51b815260040161054e906137c7565b6117a0838383611dbb565b505050565b6117ad611920565b6000848152600e602052604090205461ffff808516911611156117e25760405162461bcd60e51b815260040161054e906139a8565b610fb884848484611f08565b60006001600160e01b0319821663152a902d60e11b148061057a575061057a8261233e565b6000818152600c60209081526040808320905160609392611835929101613baa565b604051602081830303815290604052905061150881600d80546118579061384e565b80601f01602080910402602001604051908101604052809291908181526020018280546118839061384e565b80156118d05780601f106118a5576101008083540402835291602001916118d0565b820191906000526020600020905b8154815290600101906020018083116118b357829003601f168201915b50505050508561238e565b6001600160a01b0385163314806118f757506118f78533611492565b6119135760405162461bcd60e51b815260040161054e9061368f565b6107ae8585858585612494565b3360009081526010602052604090205460ff16610b7d5760405162461bcd60e51b815260206004820152601060248201526f4f6e6c7920636f6e74726f6c6c65727360801b604482015260640161054e565b6001600160a01b0383166119d45760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b606482015260840161054e565b3360006119e084612669565b905060006119ed84612669565b60408051602080820183526000918290528882528181528282206001600160a01b038b1683529052205490915084811015611a765760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b606482015260840161054e565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090525b50505050505050565b6003546001600160a01b03163314610b7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161054e565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611bff5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161054e565b336000611c0b85612669565b90506000611c1885612669565b90506000868152602081815260408083206001600160a01b038b16845290915281208054879290611c4a908490613794565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611aea836000898989896126b4565b6040805180820190915280611cbf8380613808565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250505090825250602090810190611d0890840184613808565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050848152600c6020526040902082519091508190611d5b90826138ce565b5060208201516001820190611d7090826138ce565b508391507f42569a9bc9de2dae82d28e75c32f180e92c94270873d17338f1e77a7bef3f60c9050611da18380613808565b604051611daf929190613bb6565b60405180910390a25050565b6006811480611dc8575080155b611e035760405162461bcd60e51b815260206004820152600c60248201526b0aee4dedcce40d8cadccee8d60a31b604482015260640161054e565b60ff83166000908152600b6020908152604082208054600181018255908352912001610fb8828483613be5565b816001600160a01b0316836001600160a01b031603611ea35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161054e565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101610cca565b6000848152600e6020526040902061ffff8416600190910155611f3382670de0b6b3a7640000613631565b6000858152600e6020526040902060020155611f5781670de0b6b3a7640000613631565b6000858152600e6020526040902060030155837f075c2e35095a140d7aa6aa2edc743706de8eb250c5f748857b2dbd96c0395d7f84611f9e85670de0b6b3a7640000613631565b611fb085670de0b6b3a7640000613631565b6040805161ffff909416845260208401929092529082015260600160405180910390a250505050565b6060816000036120005750506040805180820190915260018152600360fc1b602082015290565b8160005b811561202a5780612014816136f4565b91506120239050600a8361365e565b9150612004565b6000816001600160401b0381111561204457612044612d86565b6040519080825280601f01601f19166020018201604052801561206e576020820181803683370190505b5090505b84156120d957612083600183613ca4565b9150612090600a86613cb7565b61209b906030613794565b60f81b8183815181106120b0576120b06136de565b60200101906001600160f81b031916908160001a9053506120d2600a8661365e565b9450612072565b949350505050565b606061057a6001600160a01b038316601461280f565b6060815160000361211657505060408051602081019091526000815290565b60006040518060600160405280604081526020016140e960409139905060006003845160026121459190613794565b61214f919061365e565b61215a906004613631565b90506000612169826020613794565b6001600160401b0381111561218057612180612d86565b6040519080825280601f01601f1916602001820160405280156121aa576020820181803683370190505b509050818152600183018586518101602084015b818310156122185760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b938201939093526004016121be565b60038951066001811461223257600281146122435761224f565b613d3d60f01b60011983015261224f565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b03851633148061227957506122798533611492565b6122955760405162461bcd60e51b815260040161054e9061368f565b6107ae85858585856129aa565b6127108111156122f45760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f2068696768000000000000604482015260640161054e565b604080518082019091526001600160a01b0390921680835262ffffff9091166020909201829052600a8054600160a01b9093026001600160b81b0319909316909117919091179055565b60006001600160e01b03198216636cdb3d1360e11b148061236f57506001600160e01b031982166303a24d0760e21b145b8061057a57506301ffc9a760e01b6001600160e01b031983161461057a565b60606000604051806101000160405280868152602001858152602001604051806040016040528060068152602001652d2d2d2d2d2d60d01b81525081526020016123d785612ad4565b815260200160405180602001604052806000815250815260200160008152602001602060ff168152602001602060ff16815250905073dad897418f0f007c994c76c276b48a5fd371465d63bf1deae282600b6040518363ffffffff1660e01b8152600401612446929190613d20565b600060405180830381865af4158015612463573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261248b9190810190613def565b95945050505050565b81518351146124f65760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161054e565b6001600160a01b03841661251c5760405162461bcd60e51b815260040161054e90613e70565b3360005b845181101561260357600085828151811061253d5761253d6136de565b60200260200101519050600085838151811061255b5761255b6136de565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156125ab5760405162461bcd60e51b815260040161054e90613eb5565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906125e8908490613794565b92505081905550505050806125fc906136f4565b9050612520565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612653929190613eff565b60405180910390a4611729818787878787612bb4565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106126a3576126a36136de565b602090810291909101015292915050565b6001600160a01b0384163b156117295760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906126f89089908990889088908890600401613f24565b6020604051808303816000875af1925050508015612733575060408051601f3d908101601f1916820190925261273091810190613f69565b60015b6127df5761273f613f86565b806308c379a0036127785750612753613fa2565b8061275e575061277a565b8060405162461bcd60e51b815260040161054e9190612d51565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161054e565b6001600160e01b0319811663f23a6e6160e01b14611aea5760405162461bcd60e51b815260040161054e9061402b565b6060600061281e836002613631565b612829906002613794565b6001600160401b0381111561284057612840612d86565b6040519080825280601f01601f19166020018201604052801561286a576020820181803683370190505b509050600360fc1b81600081518110612885576128856136de565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106128b4576128b46136de565b60200101906001600160f81b031916908160001a90535060006128d8846002613631565b6128e3906001613794565b90505b600181111561295b576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612917576129176136de565b1a60f81b82828151811061292d5761292d6136de565b60200101906001600160f81b031916908160001a90535060049490941c9361295481614073565b90506128e6565b5083156115085760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161054e565b6001600160a01b0384166129d05760405162461bcd60e51b815260040161054e90613e70565b3360006129dc85612669565b905060006129e985612669565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015612a2c5760405162461bcd60e51b815260040161054e90613eb5565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612a69908490613794565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612ac9848a8a8a8a8a6126b4565b505050505050505050565b60408051600180825281830190925260609160009190816020015b6060815260200190600190039081612aef5750506000848152600c60205260409020600101805491925090612b239061384e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b4f9061384e565b8015612b9c5780601f10612b7157610100808354040283529160200191612b9c565b820191906000526020600020905b815481529060010190602001808311612b7f57829003601f168201915b5050505050816000815181106126a3576126a36136de565b6001600160a01b0384163b156117295760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612bf8908990899088908890889060040161408a565b6020604051808303816000875af1925050508015612c33575060408051601f3d908101601f19168201909252612c3091810190613f69565b60015b612c3f5761273f613f86565b6001600160e01b0319811663bc197c8160e01b14611aea5760405162461bcd60e51b815260040161054e9061402b565b80356001600160a01b0381168114612c8657600080fd5b919050565b60008060408385031215612c9e57600080fd5b612ca783612c6f565b946020939093013593505050565b6001600160e01b0319811681146116ba57600080fd5b600060208284031215612cdd57600080fd5b813561150881612cb5565b600060208284031215612cfa57600080fd5b5035919050565b60005b83811015612d1c578181015183820152602001612d04565b50506000910152565b60008151808452612d3d816020860160208601612d01565b601f01601f19169290920160200192915050565b6020815260006115086020830184612d25565b60008060408385031215612d7757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612dc157612dc1612d86565b6040525050565b60006001600160401b03821115612de157612de1612d86565b5060051b60200190565b600082601f830112612dfc57600080fd5b81356020612e0982612dc8565b604051612e168282612d9c565b83815260059390931b8501820192828101915086841115612e3657600080fd5b8286015b84811015612e515780358352918301918301612e3a565b509695505050505050565b60006001600160401b03821115612e7557612e75612d86565b50601f01601f191660200190565b600082601f830112612e9457600080fd5b8135612e9f81612e5c565b604051612eac8282612d9c565b828152856020848701011115612ec157600080fd5b82602086016020830137600092810160200192909252509392505050565b600080600080600060a08688031215612ef757600080fd5b612f0086612c6f565b9450612f0e60208701612c6f565b935060408601356001600160401b0380821115612f2a57600080fd5b612f3689838a01612deb565b94506060880135915080821115612f4c57600080fd5b612f5889838a01612deb565b93506080880135915080821115612f6e57600080fd5b50612f7b88828901612e83565b9150509295509295909350565b600082601f830112612f9957600080fd5b81356020612fa682612dc8565b604051612fb38282612d9c565b83815260059390931b8501820192828101915086841115612fd357600080fd5b8286015b84811015612e5157612fe881612c6f565b8352918301918301612fd7565b60006020828403121561300757600080fd5b81356001600160401b0381111561301d57600080fd5b6120d984828501612f88565b6000806040838503121561303c57600080fd5b82356001600160401b038082111561305357600080fd5b61305f86838701612f88565b9350602085013591508082111561307557600080fd5b506106b685828601612deb565b600081518084526020808501945080840160005b838110156130b257815187529582019590820190600101613096565b509495945050505050565b6020815260006115086020830184613082565b803561ffff81168114612c8657600080fd5b600080600080608085870312156130f857600080fd5b84359350613108602086016130d0565b925061311660408601612c6f565b9396929550929360600135925050565b60008060006060848603121561313b57600080fd5b8335925061314b602085016130d0565b915061315960408501612c6f565b90509250925092565b60008083601f84011261317457600080fd5b5081356001600160401b0381111561318b57600080fd5b6020830191508360208260051b85010111156131a657600080fd5b9250929050565b6000806000604084860312156131c257600080fd5b8335925060208401356001600160401b038111156131df57600080fd5b6131eb86828701613162565b9497909650939450505050565b803560ff81168114612c8657600080fd5b60008060006040848603121561321e57600080fd5b613227846131f8565b925060208401356001600160401b038111156131df57600080fd5b60006020828403121561325457600080fd5b81356001600160401b0381111561326a57600080fd5b6120d984828501612e83565b60208152600061ffff808451166020840152806020850151166040840152506040830151606083015260608301516080830152608083015160a083015260a083015160c0808401526120d960e0840182612d25565b6000602082840312156132dd57600080fd5b61150882612c6f565b80151581146116ba57600080fd5b6000806040838503121561330757600080fd5b61331083612c6f565b91506020830135613320816132e6565b809150509250929050565b6000806040838503121561333e57600080fd5b8235915060208301356001600160401b0381111561335b57600080fd5b83016040818603121561332057600080fd5b60008060006040848603121561338257600080fd5b8335925060208401356001600160401b03808211156133a057600080fd5b818601915086601f8301126133b457600080fd5b8135818111156133c357600080fd5b8760206060830285010111156133d857600080fd5b6020830194508093505050509250925092565b600080604083850312156133fe57600080fd5b8235915061340e602084016130d0565b90509250929050565b6000806040838503121561342a57600080fd5b61343383612c6f565b915061340e60208401612c6f565b600080600080600060a0868803121561345957600080fd5b61346286612c6f565b945061347060208701612c6f565b9350604086013592506060860135915060808601356001600160401b0381111561349957600080fd5b612f7b88828901612e83565b60008060008060008060c087890312156134be57600080fd5b86356001600160401b03808211156134d557600080fd5b6134e18a838b01612e83565b975060208901359150808211156134f757600080fd5b6135038a838b01612e83565b9650604089013591508082111561351957600080fd5b6135258a838b01612e83565b9550606089013591508082111561353b57600080fd5b5061354889828a01612e83565b935050613557608088016130d0565b915061356560a08801612c6f565b90509295509295509295565b60008060006040848603121561358657600080fd5b61358f846131f8565b925060208401356001600160401b03808211156135ab57600080fd5b818601915086601f8301126135bf57600080fd5b8135818111156135ce57600080fd5b8760208285010111156133d857600080fd5b600080600080608085870312156135f657600080fd5b84359350613606602086016130d0565b93969395505050506040820135916060013590565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761057a5761057a61361b565b634e487b7160e01b600052601260045260246000fd5b60008261366d5761366d613648565b500490565b60006020828403121561368457600080fd5b8151611508816132e6565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016137065761370661361b565b5060010190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b61ffff81811683821601908082111561374c5761374c61361b565b5092915050565b6020808252600c908201526b496e76616c6964207479706560a01b604082015260600190565b61ffff82811682821603908082111561374c5761374c61361b565b8082018082111561057a5761057a61361b565b60008235603e198336030181126137bd57600080fd5b9190910192915050565b60208082526021908201527f50616c65747465732063616e206f6e6c7920686f6c642032353620636f6c6f726040820152607360f81b606082015260800190565b6000808335601e1984360301811261381f57600080fd5b8301803591506001600160401b0382111561383957600080fd5b6020019150368190038213156131a657600080fd5b600181811c9082168061386257607f821691505b60208210810361388257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156117a057600081815260208120601f850160051c810160208610156138af5750805b601f850160051c820191505b81811015611729578281556001016138bb565b81516001600160401b038111156138e7576138e7612d86565b6138fb816138f5845461384e565b84613888565b602080601f83116001811461393057600084156139185750858301515b600019600386901b1c1916600185901b178555611729565b600085815260208120601f198616915b8281101561395f57888601518255948401946001909101908401613940565b508582101561397d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561399f57600080fd5b611508826130d0565b6020808252601290820152714d617820737570706c7920746f6f206c6f7760701b604082015260600190565b600081546139e18161384e565b600182811680156139f95760018114613a0e57613a3d565b60ff1984168752821515830287019450613a3d565b8560005260208060002060005b85811015613a345781548a820152908401908201613a1b565b50505082870194505b5050505092915050565b693d913730b6b2911d101160b11b81526000613a66600a8301896139d4565b72111610113232b9b1b934b83a34b7b7111d101160691b8152613a8c60138201896139d4565b6c1116101134b6b0b3b2911d101160991b81529050613aae600d8201886139d4565b741116101132bc3a32b93730b62fb634b735911d101160591b81529050613ad860158201876139d4565b90507f222c202273656c6c65725f6665655f62617369735f706f696e7473223a20000081528451613b1081601e840160208901612d01565b74111610113332b2afb932b1b4b834b2b73a111d101160591b601e92909101918201528351613b46816033840160208801612d01565b61227d60f01b6033929091019182015260350198975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613b9d81601d850160208701612d01565b91909101601d0192915050565b600061150882846139d4565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b6001600160401b03831115613bfc57613bfc612d86565b613c1083613c0a835461384e565b83613888565b6000601f841160018114613c445760008515613c2c5750838201355b600019600387901b1c1916600186901b1783556107ae565b600083815260209020601f19861690835b82811015613c755786850135825560209485019460019092019101613c55565b5086821015613c925760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8181038181111561057a5761057a61361b565b600082613cc657613cc6613648565b500690565b600081518084526020808501808196508360051b8101915082860160005b85811015613d13578284038952613d01848351612d25565b98850198935090840190600101613ce9565b5091979650505050505050565b6040815260008351610100806040850152613d3f610140850183612d25565b91506020860151603f1980868503016060870152613d5d8483612d25565b93506040880151915080868503016080870152613d7a8483612d25565b935060608801519150808685030160a0870152613d978483613ccb565b935060808801519150808685030160c087015250613db58382612d25565b92505060a086015160e085015260c0860151613dd58286018260ff169052565b505060e0949094015160ff16610120830152506020015290565b600060208284031215613e0157600080fd5b81516001600160401b03811115613e1757600080fd5b8201601f81018413613e2857600080fd5b8051613e3381612e5c565b604051613e408282612d9c565b828152866020848601011115613e5557600080fd5b613e66836020830160208701612d01565b9695505050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081526000613f126040830185613082565b828103602084015261248b8185613082565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090613f5e90830184612d25565b979650505050505050565b600060208284031215613f7b57600080fd5b815161150881612cb5565b600060033d1115613f9f5760046000803e5060005160e01c5b90565b600060443d1015613fb05790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613fdf57505050505090565b8285019150815181811115613ff75750505050505090565b843d87010160208285010111156140115750505050505090565b61402060208286010187612d9c565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6000816140825761408261361b565b506000190190565b6001600160a01b0386811682528516602082015260a0604082018190526000906140b690830186613082565b82810360608401526140c88186613082565b905082810360808401526140dc8185612d25565b9897505050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220c375114b4fde89b0d4bfe0f7926a6f3d27c04f355cca832b7e7f2c73053a46c364736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d09c6e9ba169c25d655b7c25454402eef6b86a6a
-----Decoded View---------------
Arg [0] : _eggToken (address): 0xD09C6e9Ba169C25D655B7C25454402EEF6b86a6a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d09c6e9ba169c25d655b7c25454402eef6b86a6a
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.