ERC-721
Overview
Max Total Supply
0 BXB
Holders
344
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BXBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BrownXBeanz
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.22;import "@chiru-labs/pbt/PBTSimple.sol";import "@openzeppelin/contracts/access/Ownable.sol";error MaxSupplyReached();error MintNotOpen();error CannotMakeChanges();error CannotUpdateDeadline();contract BrownXBeanz is PBTSimple, Ownable {uint256 public constant TOTAL_SUPPLY = 1000;uint128 public changeDeadline;uint16 public supply;bool public canMint;string private _baseTokenURI;constructor(string memory name_, string memory symbol_) PBTSimple(name_, symbol_) {}function mint(bytes calldata signatureFromChip, uint256 blockNumberUsedInSig) external {if (!canMint) {revert MintNotOpen();}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.13;import "./IPBT.sol";import "./ERC721ReadOnly.sol";import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";error InvalidSignature();error NoMintedTokenForChip();error NoMappedTokenForChip();error ArrayLengthMismatch();error SeedingChipDataForExistingToken();error UpdatingChipForUnsetChipMapping();error InvalidBlockNumber();error BlockNumberTooOld();/*** Implementation of PBT where all chipAddress->tokenIds are preset in the contract by the contract owner.*/contract PBTSimple is ERC721ReadOnly, IPBT {using ECDSA for bytes32;struct TokenData {uint256 tokenId;address chipAddress;bool set;
1234567891011121314151617181920212223242526// 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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.13;import "@openzeppelin/contracts/token/ERC721/IERC721.sol";import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";import "@openzeppelin/contracts/utils/Address.sol";import "@openzeppelin/contracts/utils/Context.sol";import "@openzeppelin/contracts/utils/Strings.sol";/*** @dev Contract for PBTs (Physical Backed Tokens).* NFTs that are backed by a physical asset, through a chip embedded in the physical asset.*/interface IPBT {/// @notice Returns the token id for a given chip address./// @dev Throws if there is no existing token for the chip in the collection./// @param chipAddress The address for the chip embedded in the physical item (computed from the chip's public key)./// @return The token id for the passed in chip address.function tokenIdFor(address chipAddress) external view returns (uint256);/// @notice Returns true if the chip for the specified token id is the signer of the signature of the payload./// @dev Throws if tokenId does not exist in the collection./// @param tokenId The token id./// @param payload Arbitrary data that is signed by the chip to produce the signature param.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.13;import "@openzeppelin/contracts/token/ERC721/ERC721.sol";/*** An implementation of 721 that's publicly readonly (no approvals or transfers exposed).*/contract ERC721ReadOnly is ERC721 {constructor(string memory name_, string memory symbol_) ERC721(name_, symbol_) {}function approve(address to, uint256 tokenId) public virtual override {revert("ERC721 public approve not allowed");}function getApproved(uint256 tokenId) public view virtual override returns (address) {require(_exists(tokenId), "ERC721: invalid token ID");return address(0);}function setApprovalForAll(address operator, bool approved) public virtual override {revert("ERC721 public setApprovalForAll not allowed");}function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.0;import "../Strings.sol";/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSA {enum RecoverError {NoError,InvalidSignature,InvalidSignatureLength,InvalidSignatureS,InvalidSignatureV // Deprecated in v4.8}function _throwError(RecoverError error) private pure {if (error == RecoverError.NoError) {return; // no error: do nothing} else if (error == RecoverError.InvalidSignature) {
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)pragma solidity ^0.8.0;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.** The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
1234567891011121314151617181920212223242526// 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* ====*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";/*** @dev String operations.*/library Strings {bytes16 private constant _SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;string memory buffer = new string(length);uint256 ptr;/// @solidity memory-safe-assemblyassembly {ptr := add(buffer, add(32, length))}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.0;import "./IERC721.sol";import "./IERC721Receiver.sol";import "./extensions/IERC721Metadata.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/Strings.sol";import "../../utils/introspection/ERC165.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension, but not including the Enumerable extension, which is available separately as* {ERC721Enumerable}.*/contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {using Address for address;using Strings for uint256;// Token namestring private _name;// Token symbol
12345678910111213141516171819202122232425// 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);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a > b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {
1234567891011121314151617181920212223242526// 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) {
1234567891011121314151617181920212223242526{"remappings": ["ds-test/=lib/forge-std/lib/ds-test/src/","forge-std/=lib/forge-std/src/","@chiru-labs/pbt/=lib/PBT/src/","@openzeppelin/=lib/PBT/lib/openzeppelin-contracts/","@openzeppelin/=lib/PBT/lib/openzeppelin-contracts/","PBT/=lib/PBT/","openzeppelin-contracts/=lib/openzeppelin-contracts/"],"optimizer": {"enabled": true,"runs": 200},"metadata": {"useLiteralContent": false,"bytecodeHash": "ipfs","appendCBOR": true},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc",
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ArrayLengthMismatch","type":"error"},{"inputs":[],"name":"BlockNumberTooOld","type":"error"},{"inputs":[],"name":"CannotMakeChanges","type":"error"},{"inputs":[],"name":"CannotUpdateDeadline","type":"error"},{"inputs":[],"name":"InvalidBlockNumber","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintNotOpen","type":"error"},{"inputs":[],"name":"NoMappedTokenForChip","type":"error"},{"inputs":[],"name":"NoMintedTokenForChip","type":"error"},{"inputs":[],"name":"SeedingChipDataForExistingToken","type":"error"},{"inputs":[],"name":"UpdatingChipForUnsetChipMapping","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"oldChipAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newChipAddress","type":"address"}],"name":"PBTChipRemapping","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"chipAddress","type":"address"}],"name":"PBTMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeDeadline","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxBlockhashValidWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"tokenId","type":"uint256"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isChipSignatureForToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signatureFromChip","type":"bytes"},{"internalType":"uint256","name":"blockNumberUsedInSig","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"chipAddresses","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bool","name":"throwIfTokenAlreadyMinted","type":"bool"}],"name":"seedChipToTokenMapping","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"timestamp","type":"uint128"}],"name":"setChangeDeadline","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"chipAddress","type":"address"}],"name":"tokenIdFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"chipAddress","type":"address"}],"name":"tokenIdMappedFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signatureFromChip","type":"bytes"},{"internalType":"uint256","name":"blockNumberUsedInSig","type":"uint256"}],"name":"transferTokenWithChip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signatureFromChip","type":"bytes"},{"internalType":"uint256","name":"blockNumberUsedInSig","type":"uint256"},{"internalType":"bool","name":"useSafeTransferFrom","type":"bool"}],"name":"transferTokenWithChip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"chipAddressesOld","type":"address[]"},{"internalType":"address[]","name":"chipAddressesNew","type":"address[]"}],"name":"updateChips","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200268f3803806200268f83398101604081905262000034916200019e565b818181818181600062000048838262000299565b50600162000057828262000299565b5050505050505062000078620000726200008060201b60201c565b62000084565b505062000365565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620000fe57600080fd5b81516001600160401b03808211156200011b576200011b620000d6565b604051601f8301601f19908116603f01168101908282118183101715620001465762000146620000d6565b81604052838152602092508660208588010111156200016457600080fd5b600091505b8382101562000188578582018301518183018401529082019062000169565b6000602085830101528094505050505092915050565b60008060408385031215620001b257600080fd5b82516001600160401b0380821115620001ca57600080fd5b620001d886838701620000ec565b93506020850151915080821115620001ef57600080fd5b50620001fe85828601620000ec565b9150509250929050565b600181811c908216806200021d57607f821691505b6020821081036200023e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000294576000816000526020600020601f850160051c810160208610156200026f5750805b601f850160051c820191505b8181101562000290578281556001016200027b565b5050505b505050565b81516001600160401b03811115620002b557620002b5620000d6565b620002cd81620002c6845462000208565b8462000244565b602080601f831160018114620003055760008415620002ec5750858301515b600019600386901b1c1916600185901b17855562000290565b600085815260208120601f198616915b82811015620003365788860151825594840194600190910190840162000315565b5085821015620003555787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61231a80620003756000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c80638da5cb5b1161010f578063beb9716d116100a2578063d67d13ad11610071578063d67d13ad14610437578063dcf960ee1461044a578063e985e9c51461045d578063f2fde38b1461047357600080fd5b8063beb9716d146103ea578063c7e460ba146103fe578063c87b56dd14610411578063d30d520c1461042457600080fd5b8063a22cb465116100de578063a22cb465146103ba578063b88d4fde146103cd578063ba70316f146103db578063bce6d672146103e257600080fd5b80638da5cb5b14610385578063902d55a51461039657806392d53cb41461039f57806395d89b41146103b257600080fd5b806342842e0e116101875780636b953dd8116101565780636b953dd81461032c57806370a082311461033f578063715018a6146103525780637fd5e8311461035a57600080fd5b806342842e0e146102e05780634b5f42ea146102f357806355f804b3146103065780636352211e1461031957600080fd5b8063081812fc116101c3578063081812fc1461026e57806308daee3614610299578063095ea7b3146102ba57806323b872dd146102cd57600080fd5b8062257612146101f457806301ffc9a714610209578063047fc9aa1461023157806306fdde0314610259575b600080fd5b610207610202366004611aa0565b610486565b005b61021c610217366004611b02565b610517565b60405190151581526020015b60405180910390f35b60085461024690600160801b900461ffff1681565b60405161ffff9091168152602001610228565b610261610542565b6040516102289190611b6f565b61028161027c366004611b82565b6105d4565b6040516001600160a01b039091168152602001610228565b6102ac6102a7366004611bb7565b61060c565b604051908152602001610228565b6102076102c8366004611bd2565b610640565b6102076102db366004611bfc565b610692565b6102076102ee366004611bfc565b6106e9565b61021c610301366004611cdb565b610744565b610207610314366004611d48565b6107e4565b610281610327366004611b82565b6107fe565b6102ac61033a366004611bb7565b610833565b6102ac61034d366004611bb7565b610892565b610207610918565b60085461036d906001600160801b031681565b6040516001600160801b039091168152602001610228565b6007546001600160a01b0316610281565b6102ac6103e881565b6102076103ad366004611d8a565b61092c565b610261610989565b6102076103c8366004611dc3565b610998565b6102076102ee366004611df6565b60646102ac565b6102076109f4565b60085461021c90600160901b900460ff1681565b61020761040c366004611ea3565b610a11565b61026161041f366004611b82565b610a8f565b610207610432366004611f24565b610af5565b610207610445366004611aa0565b610b4b565b610207610458366004611f90565b610b54565b61021c61046b366004611fed565b600092915050565b610207610481366004611bb7565b610b60565b600854600160901b900460ff166104b05760405163951b974f60e01b815260040160405180910390fd5b600854600160801b900461ffff166103e719016104e05760405163d05cb60960e01b815260040160405180910390fd5b60088054600161ffff600160801b808404821692909201160261ffff60801b19909116179055610511838383610bd9565b50505050565b60006001600160e01b03198216634901df9f60e01b148061053c575061053c82610c3a565b92915050565b60606000805461055190612017565b80601f016020809104026020016040519081016040528092919081815260200182805461057d90612017565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b60006105df82610c8a565b6106045760405162461bcd60e51b81526004016105fb90612051565b60405180910390fd5b506000919050565b60008061061883610833565b905061062381610c8a565b61053c57604051631d240ff960e21b815260040160405180910390fd5b60405162461bcd60e51b815260206004820152602160248201527f455243373231207075626c696320617070726f7665206e6f7420616c6c6f77656044820152601960fa1b60648201526084016105fb565b60405162461bcd60e51b815260206004820152602660248201527f455243373231207075626c6963207472616e7366657246726f6d206e6f7420616044820152651b1b1bddd95960d21b60648201526084016105fb565b60405162461bcd60e51b815260206004820152602a60248201527f455243373231207075626c696320736166655472616e7366657246726f6d206e6044820152691bdd08185b1b1bddd95960b21b60648201526084016105fb565b600061074f84610c8a565b61076c57604051631d240ff960e21b815260040160405180910390fd5b600061077e8480519060200120610ca7565b9050600061078c8285610cfa565b6001600160a01b038116600090815260066020526040902060010154909150600160a01b900460ff1680156107d857506001600160a01b03811660009081526006602052604090205486145b925050505b9392505050565b6107ec610d1e565b60096107f98284836120d8565b505050565b6000818152600260205260408120546001600160a01b03168061053c5760405162461bcd60e51b81526004016105fb90612051565b6001600160a01b038116600090815260066020526040812060010154600160a01b900460ff1661087657604051630239974760e01b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205490565b60006001600160a01b0382166108fc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105fb565b506001600160a01b031660009081526003602052604090205490565b610920610d1e565b61092a6000610d78565b565b610934610d1e565b6008546001600160801b03161561095e57604051636eade3f360e11b815260040160405180910390fd5b600880546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b60606001805461055190612017565b60405162461bcd60e51b815260206004820152602b60248201527f455243373231207075626c696320736574417070726f76616c466f72416c6c2060448201526a1b9bdd08185b1b1bddd95960aa1b60648201526084016105fb565b6109fc610d1e565b6008805460ff60901b1916600160901b179055565b610a19610d1e565b610a8885858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808902828101820190935288825290935088925087918291850190849080828437600092019190915250869250610dca915050565b5050505050565b6060610a9a82610ecf565b6000610aa4610ef4565b90506000815111610ac457604051806020016040528060008152506107dd565b80610ace84610f03565b604051602001610adf929190612198565b6040516020818303038152906040529392505050565b610afd610d1e565b6008546001600160801b031615801590610b2157506008546001600160801b031642115b15610b3f5760405163624b779560e01b815260040160405180910390fd5b61051184848484610f96565b6107f983838360005b61051184848484611171565b610b68610d1e565b6001600160a01b038116610bcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fb565b610bd681610d78565b50565b600080610be78585856111c2565b8051909150610bf6338261132d565b81602001516001600160a01b0316817f1e98ed4919fa421d4b871082794f2c63228dd0b5efb584e1a6131de3a7d26cb260405160405180910390a395945050505050565b60006001600160e01b031982166380ac58cd60e01b1480610c6b57506001600160e01b03198216635b5e139f60e01b145b8061053c57506301ffc9a760e01b6001600160e01b031983161461053c565b6000908152600260205260409020546001600160a01b0316151590565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6000806000610d09858561149a565b91509150610d16816114df565b509392505050565b6007546001600160a01b0316331461092a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fb565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b815183518114610ded5760405163512509d360e11b815260040160405180910390fd5b60005b81811015610a88576000858281518110610e0c57610e0c6121c7565b602002602001015190506000858381518110610e2a57610e2a6121c7565b60200260200101519050848015610e455750610e4581610c8a565b15610e6357604051633fc613e760e01b815260040160405180910390fd5b604080516060810182529182526001600160a01b03928316602080840182815260018585018181526000948552600690935293909220935184559051928201805491511515600160a01b026001600160a81b031990921693909416929092179190911790915501610df0565b610ed881610c8a565b610bd65760405162461bcd60e51b81526004016105fb90612051565b60606009805461055190612017565b60606000610f1083611629565b600101905060008167ffffffffffffffff811115610f3057610f30611c38565b6040519080825280601f01601f191660200182016040528015610f5a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610f6457509392505050565b828114610fb65760405163512509d360e11b815260040160405180910390fd5b60005b83811015610a88576000858583818110610fd557610fd56121c7565b9050602002016020810190610fea9190611bb7565b6001600160a01b0381811660009081526006602090815260409182902082516060810184528154815260019091015493841691810191909152600160a01b90920460ff161515908201819052919250906110575760405163794ea60960e01b815260040160405180910390fd5b600085858581811061106b5761106b6121c7565b90506020020160208101906110809190611bb7565b8251604080516060810182528281526001600160a01b0380851660208084018281526001858701818152600094855260069093529590922093518455905192909301805493511515600160a01b026001600160a81b031990941692909116919091179190911790559091506110f481610c8a565b1561113b57816001600160a01b0316846001600160a01b0316827fcd66beec785ca42d0623b531cba30cb24eacae50d76d9301b6945341cbd5856560405160405180910390a45b5050506001600160a01b03166000908152600660205260408120908155600190810180546001600160a81b031916905501610fb9565b600061117e8585856111c2565b51905081156111af576111aa611193826107fe565b338360405180602001604052806000815250611701565b610a88565b610a886111bb826107fe565b3383611734565b60408051606081018252600080825260208201819052918101919091528143116111ff57604051631391e11b60e21b815260040160405180910390fd5b60648243031115611223576040516351cc51c760e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201528240603482018190529060009061126d9060540160405160208183030381529060405280519060200120610ca7565b905060006112b387878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050610cfa9050565b6001600160a01b0381811660009081526006602090815260409182902082516060810184528154815260019091015493841691810191909152600160a01b90920460ff1615801591830191909152919250906113145793506107dd92505050565b604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b0382166113835760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fb565b61138c81610c8a565b156113d95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fb565b6113e281610c8a565b1561142f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fb565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008082516041036114d05760208301516040840151606085015160001a6114c487828585611898565b945094505050506114d8565b506000905060025b9250929050565b60008160048111156114f3576114f36121dd565b036114fb5750565b600181600481111561150f5761150f6121dd565b0361155c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105fb565b6002816004811115611570576115706121dd565b036115bd5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105fb565b60038160048111156115d1576115d16121dd565b03610bd65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105fb565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106116685772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611694576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106116b257662386f26fc10000830492506010015b6305f5e10083106116ca576305f5e100830492506008015b61271083106116de57612710830492506004015b606483106116f0576064830492506002015b600a831061053c5760010192915050565b61170c848484611734565b6117188484848461195c565b6105115760405162461bcd60e51b81526004016105fb906121f3565b826001600160a01b0316611747826107fe565b6001600160a01b03161461176d5760405162461bcd60e51b81526004016105fb90612245565b6001600160a01b0382166117cf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fb565b826001600160a01b03166117e2826107fe565b6001600160a01b0316146118085760405162461bcd60e51b81526004016105fb90612245565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156118cf5750600090506003611953565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611923573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661194c57600060019250925050611953565b9150600090505b94509492505050565b60006001600160a01b0384163b15611a5257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119a090339089908890889060040161228a565b6020604051808303816000875af19250505080156119db575060408051601f3d908101601f191682019092526119d8918101906122c7565b60015b611a38573d808015611a09576040519150601f19603f3d011682016040523d82523d6000602084013e611a0e565b606091505b508051600003611a305760405162461bcd60e51b81526004016105fb906121f3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a56565b5060015b949350505050565b60008083601f840112611a7057600080fd5b50813567ffffffffffffffff811115611a8857600080fd5b6020830191508360208285010111156114d857600080fd5b600080600060408486031215611ab557600080fd5b833567ffffffffffffffff811115611acc57600080fd5b611ad886828701611a5e565b909790965060209590950135949350505050565b6001600160e01b031981168114610bd657600080fd5b600060208284031215611b1457600080fd5b81356107dd81611aec565b60005b83811015611b3a578181015183820152602001611b22565b50506000910152565b60008151808452611b5b816020860160208601611b1f565b601f01601f19169290920160200192915050565b6020815260006107dd6020830184611b43565b600060208284031215611b9457600080fd5b5035919050565b80356001600160a01b0381168114611bb257600080fd5b919050565b600060208284031215611bc957600080fd5b6107dd82611b9b565b60008060408385031215611be557600080fd5b611bee83611b9b565b946020939093013593505050565b600080600060608486031215611c1157600080fd5b611c1a84611b9b565b9250611c2860208501611b9b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611c5f57600080fd5b813567ffffffffffffffff80821115611c7a57611c7a611c38565b604051601f8301601f19908116603f01168101908282118183101715611ca257611ca2611c38565b81604052838152866020858801011115611cbb57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215611cf057600080fd5b83359250602084013567ffffffffffffffff80821115611d0f57600080fd5b611d1b87838801611c4e565b93506040860135915080821115611d3157600080fd5b50611d3e86828701611c4e565b9150509250925092565b60008060208385031215611d5b57600080fd5b823567ffffffffffffffff811115611d7257600080fd5b611d7e85828601611a5e565b90969095509350505050565b600060208284031215611d9c57600080fd5b81356001600160801b03811681146107dd57600080fd5b80358015158114611bb257600080fd5b60008060408385031215611dd657600080fd5b611ddf83611b9b565b9150611ded60208401611db3565b90509250929050565b60008060008060808587031215611e0c57600080fd5b611e1585611b9b565b9350611e2360208601611b9b565b925060408501359150606085013567ffffffffffffffff811115611e4657600080fd5b611e5287828801611c4e565b91505092959194509250565b60008083601f840112611e7057600080fd5b50813567ffffffffffffffff811115611e8857600080fd5b6020830191508360208260051b85010111156114d857600080fd5b600080600080600060608688031215611ebb57600080fd5b853567ffffffffffffffff80821115611ed357600080fd5b611edf89838a01611e5e565b90975095506020880135915080821115611ef857600080fd5b50611f0588828901611e5e565b9094509250611f18905060408701611db3565b90509295509295909350565b60008060008060408587031215611f3a57600080fd5b843567ffffffffffffffff80821115611f5257600080fd5b611f5e88838901611e5e565b90965094506020870135915080821115611f7757600080fd5b50611f8487828801611e5e565b95989497509550505050565b60008060008060608587031215611fa657600080fd5b843567ffffffffffffffff811115611fbd57600080fd5b611fc987828801611a5e565b90955093505060208501359150611fe260408601611db3565b905092959194509250565b6000806040838503121561200057600080fd5b61200983611b9b565b9150611ded60208401611b9b565b600181811c9082168061202b57607f821691505b60208210810361204b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b601f8211156107f9576000816000526020600020601f850160051c810160208610156120b15750805b601f850160051c820191505b818110156120d0578281556001016120bd565b505050505050565b67ffffffffffffffff8311156120f0576120f0611c38565b612104836120fe8354612017565b83612088565b6000601f84116001811461213857600085156121205750838201355b600019600387901b1c1916600186901b178355610a88565b600083815260209020601f19861690835b828110156121695786850135825560209485019460019092019101612149565b50868210156121865760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600083516121aa818460208801611b1f565b8351908301906121be818360208801611b1f565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122bd90830184611b43565b9695505050505050565b6000602082840312156122d957600080fd5b81516107dd81611aec56fea26469706673582212201da94f815e6f668631b179261b3ea525debd4e732a7ce27a1a2e489562b7069864736f6c6343000818003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d42524f574e2058204245414e5a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034258420000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c80638da5cb5b1161010f578063beb9716d116100a2578063d67d13ad11610071578063d67d13ad14610437578063dcf960ee1461044a578063e985e9c51461045d578063f2fde38b1461047357600080fd5b8063beb9716d146103ea578063c7e460ba146103fe578063c87b56dd14610411578063d30d520c1461042457600080fd5b8063a22cb465116100de578063a22cb465146103ba578063b88d4fde146103cd578063ba70316f146103db578063bce6d672146103e257600080fd5b80638da5cb5b14610385578063902d55a51461039657806392d53cb41461039f57806395d89b41146103b257600080fd5b806342842e0e116101875780636b953dd8116101565780636b953dd81461032c57806370a082311461033f578063715018a6146103525780637fd5e8311461035a57600080fd5b806342842e0e146102e05780634b5f42ea146102f357806355f804b3146103065780636352211e1461031957600080fd5b8063081812fc116101c3578063081812fc1461026e57806308daee3614610299578063095ea7b3146102ba57806323b872dd146102cd57600080fd5b8062257612146101f457806301ffc9a714610209578063047fc9aa1461023157806306fdde0314610259575b600080fd5b610207610202366004611aa0565b610486565b005b61021c610217366004611b02565b610517565b60405190151581526020015b60405180910390f35b60085461024690600160801b900461ffff1681565b60405161ffff9091168152602001610228565b610261610542565b6040516102289190611b6f565b61028161027c366004611b82565b6105d4565b6040516001600160a01b039091168152602001610228565b6102ac6102a7366004611bb7565b61060c565b604051908152602001610228565b6102076102c8366004611bd2565b610640565b6102076102db366004611bfc565b610692565b6102076102ee366004611bfc565b6106e9565b61021c610301366004611cdb565b610744565b610207610314366004611d48565b6107e4565b610281610327366004611b82565b6107fe565b6102ac61033a366004611bb7565b610833565b6102ac61034d366004611bb7565b610892565b610207610918565b60085461036d906001600160801b031681565b6040516001600160801b039091168152602001610228565b6007546001600160a01b0316610281565b6102ac6103e881565b6102076103ad366004611d8a565b61092c565b610261610989565b6102076103c8366004611dc3565b610998565b6102076102ee366004611df6565b60646102ac565b6102076109f4565b60085461021c90600160901b900460ff1681565b61020761040c366004611ea3565b610a11565b61026161041f366004611b82565b610a8f565b610207610432366004611f24565b610af5565b610207610445366004611aa0565b610b4b565b610207610458366004611f90565b610b54565b61021c61046b366004611fed565b600092915050565b610207610481366004611bb7565b610b60565b600854600160901b900460ff166104b05760405163951b974f60e01b815260040160405180910390fd5b600854600160801b900461ffff166103e719016104e05760405163d05cb60960e01b815260040160405180910390fd5b60088054600161ffff600160801b808404821692909201160261ffff60801b19909116179055610511838383610bd9565b50505050565b60006001600160e01b03198216634901df9f60e01b148061053c575061053c82610c3a565b92915050565b60606000805461055190612017565b80601f016020809104026020016040519081016040528092919081815260200182805461057d90612017565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b60006105df82610c8a565b6106045760405162461bcd60e51b81526004016105fb90612051565b60405180910390fd5b506000919050565b60008061061883610833565b905061062381610c8a565b61053c57604051631d240ff960e21b815260040160405180910390fd5b60405162461bcd60e51b815260206004820152602160248201527f455243373231207075626c696320617070726f7665206e6f7420616c6c6f77656044820152601960fa1b60648201526084016105fb565b60405162461bcd60e51b815260206004820152602660248201527f455243373231207075626c6963207472616e7366657246726f6d206e6f7420616044820152651b1b1bddd95960d21b60648201526084016105fb565b60405162461bcd60e51b815260206004820152602a60248201527f455243373231207075626c696320736166655472616e7366657246726f6d206e6044820152691bdd08185b1b1bddd95960b21b60648201526084016105fb565b600061074f84610c8a565b61076c57604051631d240ff960e21b815260040160405180910390fd5b600061077e8480519060200120610ca7565b9050600061078c8285610cfa565b6001600160a01b038116600090815260066020526040902060010154909150600160a01b900460ff1680156107d857506001600160a01b03811660009081526006602052604090205486145b925050505b9392505050565b6107ec610d1e565b60096107f98284836120d8565b505050565b6000818152600260205260408120546001600160a01b03168061053c5760405162461bcd60e51b81526004016105fb90612051565b6001600160a01b038116600090815260066020526040812060010154600160a01b900460ff1661087657604051630239974760e01b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205490565b60006001600160a01b0382166108fc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105fb565b506001600160a01b031660009081526003602052604090205490565b610920610d1e565b61092a6000610d78565b565b610934610d1e565b6008546001600160801b03161561095e57604051636eade3f360e11b815260040160405180910390fd5b600880546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b60606001805461055190612017565b60405162461bcd60e51b815260206004820152602b60248201527f455243373231207075626c696320736574417070726f76616c466f72416c6c2060448201526a1b9bdd08185b1b1bddd95960aa1b60648201526084016105fb565b6109fc610d1e565b6008805460ff60901b1916600160901b179055565b610a19610d1e565b610a8885858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808902828101820190935288825290935088925087918291850190849080828437600092019190915250869250610dca915050565b5050505050565b6060610a9a82610ecf565b6000610aa4610ef4565b90506000815111610ac457604051806020016040528060008152506107dd565b80610ace84610f03565b604051602001610adf929190612198565b6040516020818303038152906040529392505050565b610afd610d1e565b6008546001600160801b031615801590610b2157506008546001600160801b031642115b15610b3f5760405163624b779560e01b815260040160405180910390fd5b61051184848484610f96565b6107f983838360005b61051184848484611171565b610b68610d1e565b6001600160a01b038116610bcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fb565b610bd681610d78565b50565b600080610be78585856111c2565b8051909150610bf6338261132d565b81602001516001600160a01b0316817f1e98ed4919fa421d4b871082794f2c63228dd0b5efb584e1a6131de3a7d26cb260405160405180910390a395945050505050565b60006001600160e01b031982166380ac58cd60e01b1480610c6b57506001600160e01b03198216635b5e139f60e01b145b8061053c57506301ffc9a760e01b6001600160e01b031983161461053c565b6000908152600260205260409020546001600160a01b0316151590565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6000806000610d09858561149a565b91509150610d16816114df565b509392505050565b6007546001600160a01b0316331461092a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fb565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b815183518114610ded5760405163512509d360e11b815260040160405180910390fd5b60005b81811015610a88576000858281518110610e0c57610e0c6121c7565b602002602001015190506000858381518110610e2a57610e2a6121c7565b60200260200101519050848015610e455750610e4581610c8a565b15610e6357604051633fc613e760e01b815260040160405180910390fd5b604080516060810182529182526001600160a01b03928316602080840182815260018585018181526000948552600690935293909220935184559051928201805491511515600160a01b026001600160a81b031990921693909416929092179190911790915501610df0565b610ed881610c8a565b610bd65760405162461bcd60e51b81526004016105fb90612051565b60606009805461055190612017565b60606000610f1083611629565b600101905060008167ffffffffffffffff811115610f3057610f30611c38565b6040519080825280601f01601f191660200182016040528015610f5a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610f6457509392505050565b828114610fb65760405163512509d360e11b815260040160405180910390fd5b60005b83811015610a88576000858583818110610fd557610fd56121c7565b9050602002016020810190610fea9190611bb7565b6001600160a01b0381811660009081526006602090815260409182902082516060810184528154815260019091015493841691810191909152600160a01b90920460ff161515908201819052919250906110575760405163794ea60960e01b815260040160405180910390fd5b600085858581811061106b5761106b6121c7565b90506020020160208101906110809190611bb7565b8251604080516060810182528281526001600160a01b0380851660208084018281526001858701818152600094855260069093529590922093518455905192909301805493511515600160a01b026001600160a81b031990941692909116919091179190911790559091506110f481610c8a565b1561113b57816001600160a01b0316846001600160a01b0316827fcd66beec785ca42d0623b531cba30cb24eacae50d76d9301b6945341cbd5856560405160405180910390a45b5050506001600160a01b03166000908152600660205260408120908155600190810180546001600160a81b031916905501610fb9565b600061117e8585856111c2565b51905081156111af576111aa611193826107fe565b338360405180602001604052806000815250611701565b610a88565b610a886111bb826107fe565b3383611734565b60408051606081018252600080825260208201819052918101919091528143116111ff57604051631391e11b60e21b815260040160405180910390fd5b60648243031115611223576040516351cc51c760e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201528240603482018190529060009061126d9060540160405160208183030381529060405280519060200120610ca7565b905060006112b387878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508693925050610cfa9050565b6001600160a01b0381811660009081526006602090815260409182902082516060810184528154815260019091015493841691810191909152600160a01b90920460ff1615801591830191909152919250906113145793506107dd92505050565b604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b0382166113835760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fb565b61138c81610c8a565b156113d95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fb565b6113e281610c8a565b1561142f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fb565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008082516041036114d05760208301516040840151606085015160001a6114c487828585611898565b945094505050506114d8565b506000905060025b9250929050565b60008160048111156114f3576114f36121dd565b036114fb5750565b600181600481111561150f5761150f6121dd565b0361155c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105fb565b6002816004811115611570576115706121dd565b036115bd5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105fb565b60038160048111156115d1576115d16121dd565b03610bd65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105fb565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106116685772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611694576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106116b257662386f26fc10000830492506010015b6305f5e10083106116ca576305f5e100830492506008015b61271083106116de57612710830492506004015b606483106116f0576064830492506002015b600a831061053c5760010192915050565b61170c848484611734565b6117188484848461195c565b6105115760405162461bcd60e51b81526004016105fb906121f3565b826001600160a01b0316611747826107fe565b6001600160a01b03161461176d5760405162461bcd60e51b81526004016105fb90612245565b6001600160a01b0382166117cf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fb565b826001600160a01b03166117e2826107fe565b6001600160a01b0316146118085760405162461bcd60e51b81526004016105fb90612245565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156118cf5750600090506003611953565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611923573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661194c57600060019250925050611953565b9150600090505b94509492505050565b60006001600160a01b0384163b15611a5257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119a090339089908890889060040161228a565b6020604051808303816000875af19250505080156119db575060408051601f3d908101601f191682019092526119d8918101906122c7565b60015b611a38573d808015611a09576040519150601f19603f3d011682016040523d82523d6000602084013e611a0e565b606091505b508051600003611a305760405162461bcd60e51b81526004016105fb906121f3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a56565b5060015b949350505050565b60008083601f840112611a7057600080fd5b50813567ffffffffffffffff811115611a8857600080fd5b6020830191508360208285010111156114d857600080fd5b600080600060408486031215611ab557600080fd5b833567ffffffffffffffff811115611acc57600080fd5b611ad886828701611a5e565b909790965060209590950135949350505050565b6001600160e01b031981168114610bd657600080fd5b600060208284031215611b1457600080fd5b81356107dd81611aec565b60005b83811015611b3a578181015183820152602001611b22565b50506000910152565b60008151808452611b5b816020860160208601611b1f565b601f01601f19169290920160200192915050565b6020815260006107dd6020830184611b43565b600060208284031215611b9457600080fd5b5035919050565b80356001600160a01b0381168114611bb257600080fd5b919050565b600060208284031215611bc957600080fd5b6107dd82611b9b565b60008060408385031215611be557600080fd5b611bee83611b9b565b946020939093013593505050565b600080600060608486031215611c1157600080fd5b611c1a84611b9b565b9250611c2860208501611b9b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611c5f57600080fd5b813567ffffffffffffffff80821115611c7a57611c7a611c38565b604051601f8301601f19908116603f01168101908282118183101715611ca257611ca2611c38565b81604052838152866020858801011115611cbb57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215611cf057600080fd5b83359250602084013567ffffffffffffffff80821115611d0f57600080fd5b611d1b87838801611c4e565b93506040860135915080821115611d3157600080fd5b50611d3e86828701611c4e565b9150509250925092565b60008060208385031215611d5b57600080fd5b823567ffffffffffffffff811115611d7257600080fd5b611d7e85828601611a5e565b90969095509350505050565b600060208284031215611d9c57600080fd5b81356001600160801b03811681146107dd57600080fd5b80358015158114611bb257600080fd5b60008060408385031215611dd657600080fd5b611ddf83611b9b565b9150611ded60208401611db3565b90509250929050565b60008060008060808587031215611e0c57600080fd5b611e1585611b9b565b9350611e2360208601611b9b565b925060408501359150606085013567ffffffffffffffff811115611e4657600080fd5b611e5287828801611c4e565b91505092959194509250565b60008083601f840112611e7057600080fd5b50813567ffffffffffffffff811115611e8857600080fd5b6020830191508360208260051b85010111156114d857600080fd5b600080600080600060608688031215611ebb57600080fd5b853567ffffffffffffffff80821115611ed357600080fd5b611edf89838a01611e5e565b90975095506020880135915080821115611ef857600080fd5b50611f0588828901611e5e565b9094509250611f18905060408701611db3565b90509295509295909350565b60008060008060408587031215611f3a57600080fd5b843567ffffffffffffffff80821115611f5257600080fd5b611f5e88838901611e5e565b90965094506020870135915080821115611f7757600080fd5b50611f8487828801611e5e565b95989497509550505050565b60008060008060608587031215611fa657600080fd5b843567ffffffffffffffff811115611fbd57600080fd5b611fc987828801611a5e565b90955093505060208501359150611fe260408601611db3565b905092959194509250565b6000806040838503121561200057600080fd5b61200983611b9b565b9150611ded60208401611b9b565b600181811c9082168061202b57607f821691505b60208210810361204b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b601f8211156107f9576000816000526020600020601f850160051c810160208610156120b15750805b601f850160051c820191505b818110156120d0578281556001016120bd565b505050505050565b67ffffffffffffffff8311156120f0576120f0611c38565b612104836120fe8354612017565b83612088565b6000601f84116001811461213857600085156121205750838201355b600019600387901b1c1916600186901b178355610a88565b600083815260209020601f19861690835b828110156121695786850135825560209485019460019092019101612149565b50868210156121865760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b600083516121aa818460208801611b1f565b8351908301906121be818360208801611b1f565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122bd90830184611b43565b9695505050505050565b6000602082840312156122d957600080fd5b81516107dd81611aec56fea26469706673582212201da94f815e6f668631b179261b3ea525debd4e732a7ce27a1a2e489562b7069864736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d42524f574e2058204245414e5a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034258420000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): BROWN X BEANZ
Arg [1] : symbol_ (string): BXB
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 42524f574e2058204245414e5a00000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4258420000000000000000000000000000000000000000000000000000000000
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.