ERC-721
Overview
Max Total Supply
1,383 BUR
Holders
1,365
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BURLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
buroth
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-16 */ // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/buroth.sol pragma solidity ^0.8.4; abstract contract _portal { function ownerOf(uint256 tokenId) public virtual view returns (address); function balanceOf(address owner) external virtual view returns (uint256 balance); } contract buroth is ERC721A, Ownable { string public here; bool public paused = true; _portal private portal; address reincarnate = 0x52887060b33c8527721F74E9Cd531CF350b0AB2F; mapping(uint256 => bool) public brokenportal; constructor(string memory _here) ERC721A("re incarnate as a buroth", "BUR") { whereto(_here); portal = _portal(reincarnate); } function _baseURI() internal view virtual override returns (string memory) { return here; } function claim(uint256 portalid) external { require(!paused); require(portal.ownerOf(portalid) == msg.sender); require(brokenportal[portalid] == false); brokenportal[portalid] = true; _mint(msg.sender, 1); } function mint() external { uint256 TOTAL_BUROTH = totalSupply(); require(paused); require(TOTAL_BUROTH >= 1); require(balanceOf(msg.sender) < 1); _mint(msg.sender, 1); } function pause(bool _state) public onlyOwner { paused = _state; } function whereto(string memory _here) public onlyOwner { here = _here; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_here","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"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":[{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"brokenportal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"portalid","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"here","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_here","type":"string"}],"name":"whereto","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600a60006101000a81548160ff0219169083151502179055507352887060b33c8527721f74e9cd531cf350b0ab2f600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b5060405162002d6638038062002d668339818101604052810190620000a79190620004ce565b6040518060400160405280601881526020017f726520696e6361726e6174652061732061206275726f746800000000000000008152506040518060400160405280600381526020017f425552000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012b929190620003a0565b50806003908051906020019062000144929190620003a0565b5062000155620001f860201b60201c565b60008190555050506200017d62000171620001fd60201b60201c565b6200020560201b60201c565b6200018e81620002cb60201b60201c565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000726565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002db620001fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003016200037660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200035a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003519062000546565b60405180910390fd5b806009908051906020019062000372929190620003a0565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ae906200060e565b90600052602060002090601f016020900481019282620003d257600085556200041e565b82601f10620003ed57805160ff19168380011785556200041e565b828001600101855582156200041e579182015b828111156200041d57825182559160200191906001019062000400565b5b5090506200042d919062000431565b5090565b5b808211156200044c57600081600090555060010162000432565b5090565b600062000467620004618462000591565b62000568565b905082815260208101848484011115620004865762000485620006dd565b5b62000493848285620005d8565b509392505050565b600082601f830112620004b357620004b2620006d8565b5b8151620004c584826020860162000450565b91505092915050565b600060208284031215620004e757620004e6620006e7565b5b600082015167ffffffffffffffff811115620005085762000507620006e2565b5b62000516848285016200049b565b91505092915050565b60006200052e602083620005c7565b91506200053b82620006fd565b602082019050919050565b6000602082019050818103600083015262000561816200051f565b9050919050565b60006200057462000587565b905062000582828262000644565b919050565b6000604051905090565b600067ffffffffffffffff821115620005af57620005ae620006a9565b5b620005ba82620006ec565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005f8578082015181840152602081019050620005db565b8381111562000608576000848401525b50505050565b600060028204905060018216806200062757607f821691505b602082108114156200063e576200063d6200067a565b5b50919050565b6200064f82620006ec565b810181811067ffffffffffffffff82111715620006715762000670620006a9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61263080620007366000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c3578063b88d4fde1161007c578063b88d4fde1461038b578063c87b56dd146103a7578063cc5ea9c3146103d7578063e3c0b78d146103f5578063e985e9c514610425578063f2fde38b1461045557610158565b80636352211e146102c957806370a08231146102f9578063715018a6146103295780638da5cb5b1461033357806395d89b4114610351578063a22cb4651461036f57610158565b806318160ddd1161011557806318160ddd1461021d57806323b872dd1461023b578063314331a014610257578063379607f51461027357806342842e0e1461028f5780635c975abb146102ab57610158565b806301ffc9a71461015d57806302329a291461018d57806306fdde03146101a9578063081812fc146101c7578063095ea7b3146101f75780631249c58b14610213575b600080fd5b61017760048036038101906101729190611fb7565b610471565b6040516101849190612228565b60405180910390f35b6101a760048036038101906101a29190611f8a565b610503565b005b6101b161059c565b6040516101be9190612243565b60405180910390f35b6101e160048036038101906101dc919061205a565b61062e565b6040516101ee91906121c1565b60405180910390f35b610211600480360381019061020c9190611f4a565b6106aa565b005b61021b610851565b005b6102256108a7565b60405161023291906122a5565b60405180910390f35b61025560048036038101906102509190611e34565b6108be565b005b610271600480360381019061026c9190612011565b6108ce565b005b61028d6004803603810190610288919061205a565b610964565b005b6102a960048036038101906102a49190611e34565b610acb565b005b6102b3610aeb565b6040516102c09190612228565b60405180910390f35b6102e360048036038101906102de919061205a565b610afe565b6040516102f091906121c1565b60405180910390f35b610313600480360381019061030e9190611d9a565b610b10565b60405161032091906122a5565b60405180910390f35b610331610ba5565b005b61033b610c2d565b60405161034891906121c1565b60405180910390f35b610359610c57565b6040516103669190612243565b60405180910390f35b61038960048036038101906103849190611f0a565b610ce9565b005b6103a560048036038101906103a09190611e87565b610e61565b005b6103c160048036038101906103bc919061205a565b610ed4565b6040516103ce9190612243565b60405180910390f35b6103df610f73565b6040516103ec9190612243565b60405180910390f35b61040f600480360381019061040a919061205a565b611001565b60405161041c9190612228565b60405180910390f35b61043f600480360381019061043a9190611df4565b611021565b60405161044c9190612228565b60405180910390f35b61046f600480360381019061046a9190611d9a565b6110b5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61050b6111ad565b73ffffffffffffffffffffffffffffffffffffffff16610529610c2d565b73ffffffffffffffffffffffffffffffffffffffff161461057f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057690612285565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6060600280546105ab90612440565b80601f01602080910402602001604051908101604052809291908181526020018280546105d790612440565b80156106245780601f106105f957610100808354040283529160200191610624565b820191906000526020600020905b81548152906001019060200180831161060757829003601f168201915b5050505050905090565b6000610639826111b5565b61066f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106b582611214565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561071d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661073c6112e2565b73ffffffffffffffffffffffffffffffffffffffff161461079f57610768816107636112e2565b611021565b61079e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061085b6108a7565b9050600a60009054906101000a900460ff1661087657600080fd5b600181101561088457600080fd5b600161088f33610b10565b1061089957600080fd5b6108a43360016112ea565b50565b60006108b161149a565b6001546000540303905090565b6108c983838361149f565b505050565b6108d66111ad565b73ffffffffffffffffffffffffffffffffffffffff166108f4610c2d565b73ffffffffffffffffffffffffffffffffffffffff161461094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190612285565b60405180910390fd5b8060099080519060200190610960929190611b99565b5050565b600a60009054906101000a900460ff161561097e57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016109f091906122a5565b60206040518083038186803b158015610a0857600080fd5b505afa158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a409190611dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610a6057600080fd5b60001515600c600083815260200190815260200160002060009054906101000a900460ff16151514610a9157600080fd5b6001600c600083815260200190815260200160002060006101000a81548160ff021916908315150217905550610ac83360016112ea565b50565b610ae683838360405180602001604052806000815250610e61565b505050565b600a60009054906101000a900460ff1681565b6000610b0982611214565b9050919050565b600080610b1c83611867565b1415610b54576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bad6111ad565b73ffffffffffffffffffffffffffffffffffffffff16610bcb610c2d565b73ffffffffffffffffffffffffffffffffffffffff1614610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890612285565b60405180910390fd5b610c2b6000611871565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c6690612440565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290612440565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b610cf16112e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d56576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d636112e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e106112e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e559190612228565b60405180910390a35050565b610e6c84848461149f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610ece57610e9784848484611937565b610ecd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610edf826111b5565b610f15576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f1f611a97565b9050600081511415610f405760405180602001604052806000815250610f6b565b80610f4a84611b29565b604051602001610f5b92919061219d565b6040516020818303038152906040525b915050919050565b60098054610f8090612440565b80601f0160208091040260200160405190810160405280929190818152602001828054610fac90612440565b8015610ff95780601f10610fce57610100808354040283529160200191610ff9565b820191906000526020600020905b815481529060010190602001808311610fdc57829003601f168201915b505050505081565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110bd6111ad565b73ffffffffffffffffffffffffffffffffffffffff166110db610c2d565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890612285565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612265565b60405180910390fd5b6111aa81611871565b50565b600033905090565b6000816111c061149a565b111580156111cf575060005482105b801561120d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061122361149a565b116112ab576000548110156112aa5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156112a8575b600081141561129e576004600083600190039350838152602001908152602001600020549050611273565b80925050506112dd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60008054905060006112fb84611867565b1415611333576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561136e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61137b6000848385611b83565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16113e060018414611b89565b901b60a042901b6113f085611867565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611416578160008190555050506114956000848385611b93565b505050565b600090565b60006114aa82611214565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611511576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661156a6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614806115995750611598866115936112e2565b611021565b5b806115d657506115a76112e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061160f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061161a86611867565b1415611652576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61165f8686866001611b83565b600061166a83611867565b146116a6576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61176d87611867565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156117f75760006001850190506000600460008381526020019081526020016000205414156117f55760005481146117f4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461185f8686866001611b93565b505050505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261195d6112e2565b8786866040518563ffffffff1660e01b815260040161197f94939291906121dc565b602060405180830381600087803b15801561199957600080fd5b505af19250505080156119ca57506040513d601f19601f820116820180604052508101906119c79190611fe4565b60015b611a44573d80600081146119fa576040519150601f19603f3d011682016040523d82523d6000602084013e6119ff565b606091505b50600081511415611a3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611aa690612440565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad290612440565b8015611b1f5780601f10611af457610100808354040283529160200191611b1f565b820191906000526020600020905b815481529060010190602001808311611b0257829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b6f57600183039250600a81066030018353600a81049050611b4f565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b828054611ba590612440565b90600052602060002090601f016020900481019282611bc75760008555611c0e565b82601f10611be057805160ff1916838001178555611c0e565b82800160010185558215611c0e579182015b82811115611c0d578251825591602001919060010190611bf2565b5b509050611c1b9190611c1f565b5090565b5b80821115611c38576000816000905550600101611c20565b5090565b6000611c4f611c4a846122e5565b6122c0565b905082815260208101848484011115611c6b57611c6a612506565b5b611c768482856123fe565b509392505050565b6000611c91611c8c84612316565b6122c0565b905082815260208101848484011115611cad57611cac612506565b5b611cb88482856123fe565b509392505050565b600081359050611ccf8161259e565b92915050565b600081519050611ce48161259e565b92915050565b600081359050611cf9816125b5565b92915050565b600081359050611d0e816125cc565b92915050565b600081519050611d23816125cc565b92915050565b600082601f830112611d3e57611d3d612501565b5b8135611d4e848260208601611c3c565b91505092915050565b600082601f830112611d6c57611d6b612501565b5b8135611d7c848260208601611c7e565b91505092915050565b600081359050611d94816125e3565b92915050565b600060208284031215611db057611daf612510565b5b6000611dbe84828501611cc0565b91505092915050565b600060208284031215611ddd57611ddc612510565b5b6000611deb84828501611cd5565b91505092915050565b60008060408385031215611e0b57611e0a612510565b5b6000611e1985828601611cc0565b9250506020611e2a85828601611cc0565b9150509250929050565b600080600060608486031215611e4d57611e4c612510565b5b6000611e5b86828701611cc0565b9350506020611e6c86828701611cc0565b9250506040611e7d86828701611d85565b9150509250925092565b60008060008060808587031215611ea157611ea0612510565b5b6000611eaf87828801611cc0565b9450506020611ec087828801611cc0565b9350506040611ed187828801611d85565b925050606085013567ffffffffffffffff811115611ef257611ef161250b565b5b611efe87828801611d29565b91505092959194509250565b60008060408385031215611f2157611f20612510565b5b6000611f2f85828601611cc0565b9250506020611f4085828601611cea565b9150509250929050565b60008060408385031215611f6157611f60612510565b5b6000611f6f85828601611cc0565b9250506020611f8085828601611d85565b9150509250929050565b600060208284031215611fa057611f9f612510565b5b6000611fae84828501611cea565b91505092915050565b600060208284031215611fcd57611fcc612510565b5b6000611fdb84828501611cff565b91505092915050565b600060208284031215611ffa57611ff9612510565b5b600061200884828501611d14565b91505092915050565b60006020828403121561202757612026612510565b5b600082013567ffffffffffffffff8111156120455761204461250b565b5b61205184828501611d57565b91505092915050565b6000602082840312156120705761206f612510565b5b600061207e84828501611d85565b91505092915050565b6120908161238a565b82525050565b61209f8161239c565b82525050565b60006120b082612347565b6120ba818561235d565b93506120ca81856020860161240d565b6120d381612515565b840191505092915050565b60006120e982612352565b6120f3818561236e565b935061210381856020860161240d565b61210c81612515565b840191505092915050565b600061212282612352565b61212c818561237f565b935061213c81856020860161240d565b80840191505092915050565b600061215560268361236e565b915061216082612526565b604082019050919050565b600061217860208361236e565b915061218382612575565b602082019050919050565b612197816123f4565b82525050565b60006121a98285612117565b91506121b58284612117565b91508190509392505050565b60006020820190506121d66000830184612087565b92915050565b60006080820190506121f16000830187612087565b6121fe6020830186612087565b61220b604083018561218e565b818103606083015261221d81846120a5565b905095945050505050565b600060208201905061223d6000830184612096565b92915050565b6000602082019050818103600083015261225d81846120de565b905092915050565b6000602082019050818103600083015261227e81612148565b9050919050565b6000602082019050818103600083015261229e8161216b565b9050919050565b60006020820190506122ba600083018461218e565b92915050565b60006122ca6122db565b90506122d68282612472565b919050565b6000604051905090565b600067ffffffffffffffff821115612300576122ff6124d2565b5b61230982612515565b9050602081019050919050565b600067ffffffffffffffff821115612331576123306124d2565b5b61233a82612515565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612395826123d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561242b578082015181840152602081019050612410565b8381111561243a576000848401525b50505050565b6000600282049050600182168061245857607f821691505b6020821081141561246c5761246b6124a3565b5b50919050565b61247b82612515565b810181811067ffffffffffffffff8211171561249a576124996124d2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6125a78161238a565b81146125b257600080fd5b50565b6125be8161239c565b81146125c957600080fd5b50565b6125d5816123a8565b81146125e057600080fd5b50565b6125ec816123f4565b81146125f757600080fd5b5056fea2646970667358221220c07caba8b5d01f70fbb26031b4afb6485ee0f0d9a2bb8b70915e74c2984c5ebf64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f626166796265696368616736756f336c617a323374666c656b3471763263736b6962686f6b72367034687471763364696f766b7a736e63366961792f000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c3578063b88d4fde1161007c578063b88d4fde1461038b578063c87b56dd146103a7578063cc5ea9c3146103d7578063e3c0b78d146103f5578063e985e9c514610425578063f2fde38b1461045557610158565b80636352211e146102c957806370a08231146102f9578063715018a6146103295780638da5cb5b1461033357806395d89b4114610351578063a22cb4651461036f57610158565b806318160ddd1161011557806318160ddd1461021d57806323b872dd1461023b578063314331a014610257578063379607f51461027357806342842e0e1461028f5780635c975abb146102ab57610158565b806301ffc9a71461015d57806302329a291461018d57806306fdde03146101a9578063081812fc146101c7578063095ea7b3146101f75780631249c58b14610213575b600080fd5b61017760048036038101906101729190611fb7565b610471565b6040516101849190612228565b60405180910390f35b6101a760048036038101906101a29190611f8a565b610503565b005b6101b161059c565b6040516101be9190612243565b60405180910390f35b6101e160048036038101906101dc919061205a565b61062e565b6040516101ee91906121c1565b60405180910390f35b610211600480360381019061020c9190611f4a565b6106aa565b005b61021b610851565b005b6102256108a7565b60405161023291906122a5565b60405180910390f35b61025560048036038101906102509190611e34565b6108be565b005b610271600480360381019061026c9190612011565b6108ce565b005b61028d6004803603810190610288919061205a565b610964565b005b6102a960048036038101906102a49190611e34565b610acb565b005b6102b3610aeb565b6040516102c09190612228565b60405180910390f35b6102e360048036038101906102de919061205a565b610afe565b6040516102f091906121c1565b60405180910390f35b610313600480360381019061030e9190611d9a565b610b10565b60405161032091906122a5565b60405180910390f35b610331610ba5565b005b61033b610c2d565b60405161034891906121c1565b60405180910390f35b610359610c57565b6040516103669190612243565b60405180910390f35b61038960048036038101906103849190611f0a565b610ce9565b005b6103a560048036038101906103a09190611e87565b610e61565b005b6103c160048036038101906103bc919061205a565b610ed4565b6040516103ce9190612243565b60405180910390f35b6103df610f73565b6040516103ec9190612243565b60405180910390f35b61040f600480360381019061040a919061205a565b611001565b60405161041c9190612228565b60405180910390f35b61043f600480360381019061043a9190611df4565b611021565b60405161044c9190612228565b60405180910390f35b61046f600480360381019061046a9190611d9a565b6110b5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61050b6111ad565b73ffffffffffffffffffffffffffffffffffffffff16610529610c2d565b73ffffffffffffffffffffffffffffffffffffffff161461057f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057690612285565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6060600280546105ab90612440565b80601f01602080910402602001604051908101604052809291908181526020018280546105d790612440565b80156106245780601f106105f957610100808354040283529160200191610624565b820191906000526020600020905b81548152906001019060200180831161060757829003601f168201915b5050505050905090565b6000610639826111b5565b61066f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106b582611214565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561071d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661073c6112e2565b73ffffffffffffffffffffffffffffffffffffffff161461079f57610768816107636112e2565b611021565b61079e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061085b6108a7565b9050600a60009054906101000a900460ff1661087657600080fd5b600181101561088457600080fd5b600161088f33610b10565b1061089957600080fd5b6108a43360016112ea565b50565b60006108b161149a565b6001546000540303905090565b6108c983838361149f565b505050565b6108d66111ad565b73ffffffffffffffffffffffffffffffffffffffff166108f4610c2d565b73ffffffffffffffffffffffffffffffffffffffff161461094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190612285565b60405180910390fd5b8060099080519060200190610960929190611b99565b5050565b600a60009054906101000a900460ff161561097e57600080fd5b3373ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016109f091906122a5565b60206040518083038186803b158015610a0857600080fd5b505afa158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a409190611dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610a6057600080fd5b60001515600c600083815260200190815260200160002060009054906101000a900460ff16151514610a9157600080fd5b6001600c600083815260200190815260200160002060006101000a81548160ff021916908315150217905550610ac83360016112ea565b50565b610ae683838360405180602001604052806000815250610e61565b505050565b600a60009054906101000a900460ff1681565b6000610b0982611214565b9050919050565b600080610b1c83611867565b1415610b54576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bad6111ad565b73ffffffffffffffffffffffffffffffffffffffff16610bcb610c2d565b73ffffffffffffffffffffffffffffffffffffffff1614610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1890612285565b60405180910390fd5b610c2b6000611871565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c6690612440565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290612440565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b610cf16112e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d56576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d636112e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e106112e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e559190612228565b60405180910390a35050565b610e6c84848461149f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610ece57610e9784848484611937565b610ecd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610edf826111b5565b610f15576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f1f611a97565b9050600081511415610f405760405180602001604052806000815250610f6b565b80610f4a84611b29565b604051602001610f5b92919061219d565b6040516020818303038152906040525b915050919050565b60098054610f8090612440565b80601f0160208091040260200160405190810160405280929190818152602001828054610fac90612440565b8015610ff95780601f10610fce57610100808354040283529160200191610ff9565b820191906000526020600020905b815481529060010190602001808311610fdc57829003601f168201915b505050505081565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110bd6111ad565b73ffffffffffffffffffffffffffffffffffffffff166110db610c2d565b73ffffffffffffffffffffffffffffffffffffffff1614611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890612285565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612265565b60405180910390fd5b6111aa81611871565b50565b600033905090565b6000816111c061149a565b111580156111cf575060005482105b801561120d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061122361149a565b116112ab576000548110156112aa5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156112a8575b600081141561129e576004600083600190039350838152602001908152602001600020549050611273565b80925050506112dd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60008054905060006112fb84611867565b1415611333576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561136e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61137b6000848385611b83565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16113e060018414611b89565b901b60a042901b6113f085611867565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611416578160008190555050506114956000848385611b93565b505050565b600090565b60006114aa82611214565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611511576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661156a6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614806115995750611598866115936112e2565b611021565b5b806115d657506115a76112e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061160f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061161a86611867565b1415611652576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61165f8686866001611b83565b600061166a83611867565b146116a6576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61176d87611867565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156117f75760006001850190506000600460008381526020019081526020016000205414156117f55760005481146117f4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461185f8686866001611b93565b505050505050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261195d6112e2565b8786866040518563ffffffff1660e01b815260040161197f94939291906121dc565b602060405180830381600087803b15801561199957600080fd5b505af19250505080156119ca57506040513d601f19601f820116820180604052508101906119c79190611fe4565b60015b611a44573d80600081146119fa576040519150601f19603f3d011682016040523d82523d6000602084013e6119ff565b606091505b50600081511415611a3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611aa690612440565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad290612440565b8015611b1f5780601f10611af457610100808354040283529160200191611b1f565b820191906000526020600020905b815481529060010190602001808311611b0257829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b6f57600183039250600a81066030018353600a81049050611b4f565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b828054611ba590612440565b90600052602060002090601f016020900481019282611bc75760008555611c0e565b82601f10611be057805160ff1916838001178555611c0e565b82800160010185558215611c0e579182015b82811115611c0d578251825591602001919060010190611bf2565b5b509050611c1b9190611c1f565b5090565b5b80821115611c38576000816000905550600101611c20565b5090565b6000611c4f611c4a846122e5565b6122c0565b905082815260208101848484011115611c6b57611c6a612506565b5b611c768482856123fe565b509392505050565b6000611c91611c8c84612316565b6122c0565b905082815260208101848484011115611cad57611cac612506565b5b611cb88482856123fe565b509392505050565b600081359050611ccf8161259e565b92915050565b600081519050611ce48161259e565b92915050565b600081359050611cf9816125b5565b92915050565b600081359050611d0e816125cc565b92915050565b600081519050611d23816125cc565b92915050565b600082601f830112611d3e57611d3d612501565b5b8135611d4e848260208601611c3c565b91505092915050565b600082601f830112611d6c57611d6b612501565b5b8135611d7c848260208601611c7e565b91505092915050565b600081359050611d94816125e3565b92915050565b600060208284031215611db057611daf612510565b5b6000611dbe84828501611cc0565b91505092915050565b600060208284031215611ddd57611ddc612510565b5b6000611deb84828501611cd5565b91505092915050565b60008060408385031215611e0b57611e0a612510565b5b6000611e1985828601611cc0565b9250506020611e2a85828601611cc0565b9150509250929050565b600080600060608486031215611e4d57611e4c612510565b5b6000611e5b86828701611cc0565b9350506020611e6c86828701611cc0565b9250506040611e7d86828701611d85565b9150509250925092565b60008060008060808587031215611ea157611ea0612510565b5b6000611eaf87828801611cc0565b9450506020611ec087828801611cc0565b9350506040611ed187828801611d85565b925050606085013567ffffffffffffffff811115611ef257611ef161250b565b5b611efe87828801611d29565b91505092959194509250565b60008060408385031215611f2157611f20612510565b5b6000611f2f85828601611cc0565b9250506020611f4085828601611cea565b9150509250929050565b60008060408385031215611f6157611f60612510565b5b6000611f6f85828601611cc0565b9250506020611f8085828601611d85565b9150509250929050565b600060208284031215611fa057611f9f612510565b5b6000611fae84828501611cea565b91505092915050565b600060208284031215611fcd57611fcc612510565b5b6000611fdb84828501611cff565b91505092915050565b600060208284031215611ffa57611ff9612510565b5b600061200884828501611d14565b91505092915050565b60006020828403121561202757612026612510565b5b600082013567ffffffffffffffff8111156120455761204461250b565b5b61205184828501611d57565b91505092915050565b6000602082840312156120705761206f612510565b5b600061207e84828501611d85565b91505092915050565b6120908161238a565b82525050565b61209f8161239c565b82525050565b60006120b082612347565b6120ba818561235d565b93506120ca81856020860161240d565b6120d381612515565b840191505092915050565b60006120e982612352565b6120f3818561236e565b935061210381856020860161240d565b61210c81612515565b840191505092915050565b600061212282612352565b61212c818561237f565b935061213c81856020860161240d565b80840191505092915050565b600061215560268361236e565b915061216082612526565b604082019050919050565b600061217860208361236e565b915061218382612575565b602082019050919050565b612197816123f4565b82525050565b60006121a98285612117565b91506121b58284612117565b91508190509392505050565b60006020820190506121d66000830184612087565b92915050565b60006080820190506121f16000830187612087565b6121fe6020830186612087565b61220b604083018561218e565b818103606083015261221d81846120a5565b905095945050505050565b600060208201905061223d6000830184612096565b92915050565b6000602082019050818103600083015261225d81846120de565b905092915050565b6000602082019050818103600083015261227e81612148565b9050919050565b6000602082019050818103600083015261229e8161216b565b9050919050565b60006020820190506122ba600083018461218e565b92915050565b60006122ca6122db565b90506122d68282612472565b919050565b6000604051905090565b600067ffffffffffffffff821115612300576122ff6124d2565b5b61230982612515565b9050602081019050919050565b600067ffffffffffffffff821115612331576123306124d2565b5b61233a82612515565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612395826123d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561242b578082015181840152602081019050612410565b8381111561243a576000848401525b50505050565b6000600282049050600182168061245857607f821691505b6020821081141561246c5761246b6124a3565b5b50919050565b61247b82612515565b810181811067ffffffffffffffff8211171561249a576124996124d2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6125a78161238a565b81146125b257600080fd5b50565b6125be8161239c565b81146125c957600080fd5b50565b6125d5816123a8565b81146125e057600080fd5b50565b6125ec816123f4565b81146125f757600080fd5b5056fea2646970667358221220c07caba8b5d01f70fbb26031b4afb6485ee0f0d9a2bb8b70915e74c2984c5ebf64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f697066732e696f2f697066732f626166796265696368616736756f336c617a323374666c656b3471763263736b6962686f6b72367034687471763364696f766b7a736e63366961792f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _here (string): https://ipfs.io/ipfs/bafybeichag6uo3laz23tflek4qv2cskibhokr6p4htqv3diovkzsnc6iay/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f6261667962656963686167
Arg [3] : 36756f336c617a323374666c656b3471763263736b6962686f6b723670346874
Arg [4] : 71763364696f766b7a736e63366961792f000000000000000000000000000000
Deployed Bytecode Sourcemap
42301:1258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16488:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43383:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21511:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23579:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23039:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43154:221;;;:::i;:::-;;15542:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24465:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43470:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42884:262;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24706:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42369:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21300:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17167:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;:::i;:::-;;1955:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21680:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23855:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24962:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21855:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42344:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42505:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24234:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16488:615;16573:4;16888:10;16873:25;;:11;:25;;;;:102;;;;16965:10;16950:25;;:11;:25;;;;16873:102;:179;;;;17042:10;17027:25;;:11;:25;;;;16873:179;16853:199;;16488:615;;;:::o;43383:79::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43448:6:::1;43439;;:15;;;;;;;;;;;;;;;;;;43383:79:::0;:::o;21511:100::-;21565:13;21598:5;21591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21511:100;:::o;23579:204::-;23647:7;23672:16;23680:7;23672;:16::i;:::-;23667:64;;23697:34;;;;;;;;;;;;;;23667:64;23751:15;:24;23767:7;23751:24;;;;;;;;;;;;;;;;;;;;;23744:31;;23579:204;;;:::o;23039:474::-;23112:13;23144:27;23163:7;23144:18;:27::i;:::-;23112:61;;23194:5;23188:11;;:2;:11;;;23184:48;;;23208:24;;;;;;;;;;;;;;23184:48;23272:5;23249:28;;:19;:17;:19::i;:::-;:28;;;23245:175;;23297:44;23314:5;23321:19;:17;:19::i;:::-;23297:16;:44::i;:::-;23292:128;;23369:35;;;;;;;;;;;;;;23292:128;23245:175;23459:2;23432:15;:24;23448:7;23432:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23497:7;23493:2;23477:28;;23486:5;23477:28;;;;;;;;;;;;23101:412;23039:474;;:::o;43154:221::-;43190:20;43213:13;:11;:13::i;:::-;43190:36;;43245:6;;;;;;;;;;;43237:15;;;;;;43287:1;43271:12;:17;;43263:26;;;;;;43332:1;43308:21;43318:10;43308:9;:21::i;:::-;:25;43300:34;;;;;;43347:20;43353:10;43365:1;43347:5;:20::i;:::-;43179:196;43154:221::o;15542:315::-;15595:7;15823:15;:13;:15::i;:::-;15808:12;;15792:13;;:28;:46;15785:53;;15542:315;:::o;24465:170::-;24599:28;24609:4;24615:2;24619:7;24599:9;:28::i;:::-;24465:170;;;:::o;43470:86::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43543:5:::1;43536:4;:12;;;;;;;;;;;;:::i;:::-;;43470:86:::0;:::o;42884:262::-;42946:6;;;;;;;;;;;42945:7;42937:16;;;;;;43000:10;42972:38;;:6;;;;;;;;;;;:14;;;42987:8;42972:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;;;42964:47;;;;;;43056:5;43030:31;;:12;:22;43043:8;43030:22;;;;;;;;;;;;;;;;;;;;;:31;;;43022:40;;;;;;43100:4;43075:12;:22;43088:8;43075:22;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43118:20;43124:10;43136:1;43118:5;:20::i;:::-;42884:262;:::o;24706:185::-;24844:39;24861:4;24867:2;24871:7;24844:39;;;;;;;;;;;;:16;:39::i;:::-;24706:185;;;:::o;42369:25::-;;;;;;;;;;;;;:::o;21300:144::-;21364:7;21407:27;21426:7;21407:18;:27::i;:::-;21384:52;;21300:144;;;:::o;17167:234::-;17231:7;17283:1;17255:24;17273:5;17255:17;:24::i;:::-;:29;17251:70;;;17293:28;;;;;;;;;;;;;;17251:70;12512:13;17339:18;:25;17358:5;17339:25;;;;;;;;;;;;;;;;:54;17332:61;;17167:234;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;21680:104::-;21736:13;21769:7;21762:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21680:104;:::o;23855:308::-;23966:19;:17;:19::i;:::-;23954:31;;:8;:31;;;23950:61;;;23994:17;;;;;;;;;;;;;;23950:61;24076:8;24024:18;:39;24043:19;:17;:19::i;:::-;24024:39;;;;;;;;;;;;;;;:49;24064:8;24024:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24136:8;24100:55;;24115:19;:17;:19::i;:::-;24100:55;;;24146:8;24100:55;;;;;;:::i;:::-;;;;;;;;23855:308;;:::o;24962:396::-;25129:28;25139:4;25145:2;25149:7;25129:9;:28::i;:::-;25190:1;25172:2;:14;;;:19;25168:183;;25211:56;25242:4;25248:2;25252:7;25261:5;25211:30;:56::i;:::-;25206:145;;25295:40;;;;;;;;;;;;;;25206:145;25168:183;24962:396;;;;:::o;21855:318::-;21928:13;21959:16;21967:7;21959;:16::i;:::-;21954:59;;21984:29;;;;;;;;;;;;;;21954:59;22026:21;22050:10;:8;:10::i;:::-;22026:34;;22103:1;22084:7;22078:21;:26;;:87;;;;;;;;;;;;;;;;;22131:7;22140:18;22150:7;22140:9;:18::i;:::-;22114:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22078:87;22071:94;;;21855:318;;;:::o;42344:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42505:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;24234:164::-;24331:4;24355:18;:25;24374:5;24355:25;;;;;;;;;;;;;;;:35;24381:8;24355:35;;;;;;;;;;;;;;;;;;;;;;;;;24348:42;;24234:164;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;25613:273::-;25670:4;25726:7;25707:15;:13;:15::i;:::-;:26;;:66;;;;;25760:13;;25750:7;:23;25707:66;:152;;;;;25858:1;13282:8;25811:17;:26;25829:7;25811:26;;;;;;;;;;;;:43;:48;25707:152;25687:172;;25613:273;;;:::o;18815:1129::-;18882:7;18902:12;18917:7;18902:22;;18985:4;18966:15;:13;:15::i;:::-;:23;18962:915;;19019:13;;19012:4;:20;19008:869;;;19057:14;19074:17;:23;19092:4;19074:23;;;;;;;;;;;;19057:40;;19190:1;13282:8;19163:6;:23;:28;19159:699;;;19682:113;19699:1;19689:6;:11;19682:113;;;19742:17;:25;19760:6;;;;;;;19742:25;;;;;;;;;;;;19733:34;;19682:113;;;19828:6;19821:13;;;;;;19159:699;19034:843;19008:869;18962:915;19905:31;;;;;;;;;;;;;;18815:1129;;;;:::o;39880:105::-;39940:7;39967:10;39960:17;;39880:105;:::o;28952:1666::-;29017:20;29040:13;;29017:36;;29093:1;29068:21;29086:2;29068:17;:21::i;:::-;:26;29064:58;;;29103:19;;;;;;;;;;;;;;29064:58;29149:1;29137:8;:13;29133:44;;;29159:18;;;;;;;;;;;;;;29133:44;29190:61;29220:1;29224:2;29228:12;29242:8;29190:21;:61::i;:::-;29794:1;12649:2;29765:1;:25;;29764:31;29752:8;:44;29726:18;:22;29745:2;29726:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13425:3;30195:29;30222:1;30210:8;:13;30195:14;:29::i;:::-;:56;;13166:3;30132:15;:41;;30090:21;30108:2;30090:17;:21::i;:::-;:84;:162;30039:17;:31;30057:12;30039:31;;;;;;;;;;;:213;;;;30269:20;30292:12;30269:35;;30319:11;30348:8;30333:12;:23;30319:37;;30373:111;30425:14;;;;;;30421:2;30400:40;;30417:1;30400:40;;;;;;;;;;;;30479:3;30464:12;:18;30373:111;;30516:12;30500:13;:28;;;;29503:1037;;30550:60;30579:1;30583:2;30587:12;30601:8;30550:20;:60::i;:::-;29006:1612;28952:1666;;:::o;15066:92::-;15122:7;15066:92;:::o;30872:2654::-;30987:27;31017;31036:7;31017:18;:27::i;:::-;30987:57;;31102:4;31061:45;;31077:19;31061:45;;;31057:86;;31115:28;;;;;;;;;;;;;;31057:86;31156:23;31182:15;:24;31198:7;31182:24;;;;;;;;;;;;;;;;;;;;;31156:50;;31219:22;31268:4;31245:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31289:43;31306:4;31312:19;:17;:19::i;:::-;31289:16;:43::i;:::-;31245:87;:142;;;;31368:19;:17;:19::i;:::-;31349:38;;:15;:38;;;31245:142;31219:169;;31406:17;31401:66;;31432:35;;;;;;;;;;;;;;31401:66;31507:1;31482:21;31500:2;31482:17;:21::i;:::-;:26;31478:62;;;31517:23;;;;;;;;;;;;;;31478:62;31553:43;31575:4;31581:2;31585:7;31594:1;31553:21;:43::i;:::-;31704:1;31666:34;31684:15;31666:17;:34::i;:::-;:39;31662:103;;31729:15;:24;31745:7;31729:24;;;;;;;;;;;;31722:31;;;;;;;;;;;31662:103;32132:18;:24;32151:4;32132:24;;;;;;;;;;;;;;;;32130:26;;;;;;;;;;;;32201:18;:22;32220:2;32201:22;;;;;;;;;;;;;;;;32199:24;;;;;;;;;;;13560:8;13166:3;32582:15;:41;;32540:21;32558:2;32540:17;:21::i;:::-;:84;:128;32494:17;:26;32512:7;32494:26;;;;;;;;;;;:174;;;;32838:1;13560:8;32788:19;:46;:51;32784:626;;;32860:19;32892:1;32882:7;:11;32860:33;;33049:1;33015:17;:30;33033:11;33015:30;;;;;;;;;;;;:35;33011:384;;;33153:13;;33138:11;:28;33134:242;;33333:19;33300:17;:30;33318:11;33300:30;;;;;;;;;;;:52;;;;33134:242;33011:384;32841:569;32784:626;33457:7;33453:2;33438:27;;33447:4;33438:27;;;;;;;;;;;;33476:42;33497:4;33503:2;33507:7;33516:1;33476:20;:42::i;:::-;30976:2550;;;30872:2654;;;:::o;22600:148::-;22664:14;22725:5;22715:15;;22600:148;;;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;37349:716::-;37512:4;37558:2;37533:45;;;37579:19;:17;:19::i;:::-;37600:4;37606:7;37615:5;37533:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37529:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37833:1;37816:6;:13;:18;37812:235;;;37862:40;;;;;;;;;;;;;;37812:235;38005:6;37999:13;37990:6;37986:2;37982:15;37975:38;37529:529;37702:54;;;37692:64;;;:6;:64;;;;37685:71;;;37349:716;;;;;;:::o;42715:161::-;42825:13;42864:4;42857:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42715:161;:::o;40091:1943::-;40148:17;40567:3;40560:4;40554:11;40550:21;40543:28;;40658:3;40652:4;40645:17;40764:3;41220:5;41350:1;41345:3;41341:11;41334:18;;41487:2;41481:4;41477:13;41473:2;41469:22;41464:3;41456:36;41528:2;41522:4;41518:13;41510:21;;41112:680;41547:4;41112:680;;;41721:1;41716:3;41712:11;41705:18;;41772:2;41766:4;41762:13;41758:2;41754:22;41749:3;41741:36;41642:2;41636:4;41632:13;41624:21;;41112:680;;;41116:430;41831:3;41826;41822:13;41946:2;41941:3;41937:12;41930:19;;42009:6;42004:3;41997:19;40187:1840;;40091:1943;;;:::o;38713:159::-;;;;;:::o;22835:142::-;22893:14;22954:5;22944:15;;22835:142;;;:::o;39531:158::-;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1274:137;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1417:141;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:122;;1689:79;;:::i;:::-;1648:122;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;1577:338;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:122;;2048:79;;:::i;:::-;2007:122;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;1935:340;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2281:139;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2761:351;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:119;;;3249:79;;:::i;:::-;3211:119;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3118:474;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:119;;;3746:79;;:::i;:::-;3708:119;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3598:619;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:120;;;4398:79;;:::i;:::-;4359:120;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:117;;;4982:79;;:::i;:::-;4946:117;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4223:943;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:119;;;5300:79;;:::i;:::-;5262:119;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5172:468;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:119;;;5777:79;;:::i;:::-;5739:119;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5646:474;;;;;:::o;6126:323::-;6182:6;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6357:1;6382:50;6424:7;6415:6;6404:9;6400:22;6382:50;:::i;:::-;6372:60;;6328:114;6126:323;;;;:::o;6455:327::-;6513:6;6562:2;6550:9;6541:7;6537:23;6533:32;6530:119;;;6568:79;;:::i;:::-;6530:119;6688:1;6713:52;6757:7;6748:6;6737:9;6733:22;6713:52;:::i;:::-;6703:62;;6659:116;6455:327;;;;:::o;6788:349::-;6857:6;6906:2;6894:9;6885:7;6881:23;6877:32;6874:119;;;6912:79;;:::i;:::-;6874:119;7032:1;7057:63;7112:7;7103:6;7092:9;7088:22;7057:63;:::i;:::-;7047:73;;7003:127;6788:349;;;;:::o;7143:509::-;7212:6;7261:2;7249:9;7240:7;7236:23;7232:32;7229:119;;;7267:79;;:::i;:::-;7229:119;7415:1;7404:9;7400:17;7387:31;7445:18;7437:6;7434:30;7431:117;;;7467:79;;:::i;:::-;7431:117;7572:63;7627:7;7618:6;7607:9;7603:22;7572:63;:::i;:::-;7562:73;;7358:287;7143:509;;;;:::o;7658:329::-;7717:6;7766:2;7754:9;7745:7;7741:23;7737:32;7734:119;;;7772:79;;:::i;:::-;7734:119;7892:1;7917:53;7962:7;7953:6;7942:9;7938:22;7917:53;:::i;:::-;7907:63;;7863:117;7658:329;;;;:::o;7993:118::-;8080:24;8098:5;8080:24;:::i;:::-;8075:3;8068:37;7993:118;;:::o;8117:109::-;8198:21;8213:5;8198:21;:::i;:::-;8193:3;8186:34;8117:109;;:::o;8232:360::-;8318:3;8346:38;8378:5;8346:38;:::i;:::-;8400:70;8463:6;8458:3;8400:70;:::i;:::-;8393:77;;8479:52;8524:6;8519:3;8512:4;8505:5;8501:16;8479:52;:::i;:::-;8556:29;8578:6;8556:29;:::i;:::-;8551:3;8547:39;8540:46;;8322:270;8232:360;;;;:::o;8598:364::-;8686:3;8714:39;8747:5;8714:39;:::i;:::-;8769:71;8833:6;8828:3;8769:71;:::i;:::-;8762:78;;8849:52;8894:6;8889:3;8882:4;8875:5;8871:16;8849:52;:::i;:::-;8926:29;8948:6;8926:29;:::i;:::-;8921:3;8917:39;8910:46;;8690:272;8598:364;;;;:::o;8968:377::-;9074:3;9102:39;9135:5;9102:39;:::i;:::-;9157:89;9239:6;9234:3;9157:89;:::i;:::-;9150:96;;9255:52;9300:6;9295:3;9288:4;9281:5;9277:16;9255:52;:::i;:::-;9332:6;9327:3;9323:16;9316:23;;9078:267;8968:377;;;;:::o;9351:366::-;9493:3;9514:67;9578:2;9573:3;9514:67;:::i;:::-;9507:74;;9590:93;9679:3;9590:93;:::i;:::-;9708:2;9703:3;9699:12;9692:19;;9351:366;;;:::o;9723:::-;9865:3;9886:67;9950:2;9945:3;9886:67;:::i;:::-;9879:74;;9962:93;10051:3;9962:93;:::i;:::-;10080:2;10075:3;10071:12;10064:19;;9723:366;;;:::o;10095:118::-;10182:24;10200:5;10182:24;:::i;:::-;10177:3;10170:37;10095:118;;:::o;10219:435::-;10399:3;10421:95;10512:3;10503:6;10421:95;:::i;:::-;10414:102;;10533:95;10624:3;10615:6;10533:95;:::i;:::-;10526:102;;10645:3;10638:10;;10219:435;;;;;:::o;10660:222::-;10753:4;10791:2;10780:9;10776:18;10768:26;;10804:71;10872:1;10861:9;10857:17;10848:6;10804:71;:::i;:::-;10660:222;;;;:::o;10888:640::-;11083:4;11121:3;11110:9;11106:19;11098:27;;11135:71;11203:1;11192:9;11188:17;11179:6;11135:71;:::i;:::-;11216:72;11284:2;11273:9;11269:18;11260:6;11216:72;:::i;:::-;11298;11366:2;11355:9;11351:18;11342:6;11298:72;:::i;:::-;11417:9;11411:4;11407:20;11402:2;11391:9;11387:18;11380:48;11445:76;11516:4;11507:6;11445:76;:::i;:::-;11437:84;;10888:640;;;;;;;:::o;11534:210::-;11621:4;11659:2;11648:9;11644:18;11636:26;;11672:65;11734:1;11723:9;11719:17;11710:6;11672:65;:::i;:::-;11534:210;;;;:::o;11750:313::-;11863:4;11901:2;11890:9;11886:18;11878:26;;11950:9;11944:4;11940:20;11936:1;11925:9;11921:17;11914:47;11978:78;12051:4;12042:6;11978:78;:::i;:::-;11970:86;;11750:313;;;;:::o;12069:419::-;12235:4;12273:2;12262:9;12258:18;12250:26;;12322:9;12316:4;12312:20;12308:1;12297:9;12293:17;12286:47;12350:131;12476:4;12350:131;:::i;:::-;12342:139;;12069:419;;;:::o;12494:::-;12660:4;12698:2;12687:9;12683:18;12675:26;;12747:9;12741:4;12737:20;12733:1;12722:9;12718:17;12711:47;12775:131;12901:4;12775:131;:::i;:::-;12767:139;;12494:419;;;:::o;12919:222::-;13012:4;13050:2;13039:9;13035:18;13027:26;;13063:71;13131:1;13120:9;13116:17;13107:6;13063:71;:::i;:::-;12919:222;;;;:::o;13147:129::-;13181:6;13208:20;;:::i;:::-;13198:30;;13237:33;13265:4;13257:6;13237:33;:::i;:::-;13147:129;;;:::o;13282:75::-;13315:6;13348:2;13342:9;13332:19;;13282:75;:::o;13363:307::-;13424:4;13514:18;13506:6;13503:30;13500:56;;;13536:18;;:::i;:::-;13500:56;13574:29;13596:6;13574:29;:::i;:::-;13566:37;;13658:4;13652;13648:15;13640:23;;13363:307;;;:::o;13676:308::-;13738:4;13828:18;13820:6;13817:30;13814:56;;;13850:18;;:::i;:::-;13814:56;13888:29;13910:6;13888:29;:::i;:::-;13880:37;;13972:4;13966;13962:15;13954:23;;13676:308;;;:::o;13990:98::-;14041:6;14075:5;14069:12;14059:22;;13990:98;;;:::o;14094:99::-;14146:6;14180:5;14174:12;14164:22;;14094:99;;;:::o;14199:168::-;14282:11;14316:6;14311:3;14304:19;14356:4;14351:3;14347:14;14332:29;;14199:168;;;;:::o;14373:169::-;14457:11;14491:6;14486:3;14479:19;14531:4;14526:3;14522:14;14507:29;;14373:169;;;;:::o;14548:148::-;14650:11;14687:3;14672:18;;14548:148;;;;:::o;14702:96::-;14739:7;14768:24;14786:5;14768:24;:::i;:::-;14757:35;;14702:96;;;:::o;14804:90::-;14838:7;14881:5;14874:13;14867:21;14856:32;;14804:90;;;:::o;14900:149::-;14936:7;14976:66;14969:5;14965:78;14954:89;;14900:149;;;:::o;15055:126::-;15092:7;15132:42;15125:5;15121:54;15110:65;;15055:126;;;:::o;15187:77::-;15224:7;15253:5;15242:16;;15187:77;;;:::o;15270:154::-;15354:6;15349:3;15344;15331:30;15416:1;15407:6;15402:3;15398:16;15391:27;15270:154;;;:::o;15430:307::-;15498:1;15508:113;15522:6;15519:1;15516:13;15508:113;;;15607:1;15602:3;15598:11;15592:18;15588:1;15583:3;15579:11;15572:39;15544:2;15541:1;15537:10;15532:15;;15508:113;;;15639:6;15636:1;15633:13;15630:101;;;15719:1;15710:6;15705:3;15701:16;15694:27;15630:101;15479:258;15430:307;;;:::o;15743:320::-;15787:6;15824:1;15818:4;15814:12;15804:22;;15871:1;15865:4;15861:12;15892:18;15882:81;;15948:4;15940:6;15936:17;15926:27;;15882:81;16010:2;16002:6;15999:14;15979:18;15976:38;15973:84;;;16029:18;;:::i;:::-;15973:84;15794:269;15743:320;;;:::o;16069:281::-;16152:27;16174:4;16152:27;:::i;:::-;16144:6;16140:40;16282:6;16270:10;16267:22;16246:18;16234:10;16231:34;16228:62;16225:88;;;16293:18;;:::i;:::-;16225:88;16333:10;16329:2;16322:22;16112:238;16069:281;;:::o;16356:180::-;16404:77;16401:1;16394:88;16501:4;16498:1;16491:15;16525:4;16522:1;16515:15;16542:180;16590:77;16587:1;16580:88;16687:4;16684:1;16677:15;16711:4;16708:1;16701:15;16728:117;16837:1;16834;16827:12;16851:117;16960:1;16957;16950:12;16974:117;17083:1;17080;17073:12;17097:117;17206:1;17203;17196:12;17220:102;17261:6;17312:2;17308:7;17303:2;17296:5;17292:14;17288:28;17278:38;;17220:102;;;:::o;17328:225::-;17468:34;17464:1;17456:6;17452:14;17445:58;17537:8;17532:2;17524:6;17520:15;17513:33;17328:225;:::o;17559:182::-;17699:34;17695:1;17687:6;17683:14;17676:58;17559:182;:::o;17747:122::-;17820:24;17838:5;17820:24;:::i;:::-;17813:5;17810:35;17800:63;;17859:1;17856;17849:12;17800:63;17747:122;:::o;17875:116::-;17945:21;17960:5;17945:21;:::i;:::-;17938:5;17935:32;17925:60;;17981:1;17978;17971:12;17925:60;17875:116;:::o;17997:120::-;18069:23;18086:5;18069:23;:::i;:::-;18062:5;18059:34;18049:62;;18107:1;18104;18097:12;18049:62;17997:120;:::o;18123:122::-;18196:24;18214:5;18196:24;:::i;:::-;18189:5;18186:35;18176:63;;18235:1;18232;18225:12;18176:63;18123:122;:::o
Swarm Source
ipfs://c07caba8b5d01f70fbb26031b4afb6485ee0f0d9a2bb8b70915e74c2984c5ebf
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.