Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 130 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15036277 | 949 days ago | IN | 0 ETH | 0.00136251 | ||||
Withdraw | 14972308 | 961 days ago | IN | 0 ETH | 0.00135833 | ||||
Set Approval For... | 14937560 | 967 days ago | IN | 0 ETH | 0.00197582 | ||||
Mint | 14937556 | 967 days ago | IN | 0.003 ETH | 0.00367049 | ||||
Set Approval For... | 14937507 | 967 days ago | IN | 0 ETH | 0.00146616 | ||||
Set Approval For... | 14937497 | 967 days ago | IN | 0 ETH | 0.00161311 | ||||
Set Approval For... | 14937494 | 967 days ago | IN | 0 ETH | 0.00157899 | ||||
Set Approval For... | 14937481 | 967 days ago | IN | 0 ETH | 0.00194922 | ||||
Set Approval For... | 14937478 | 967 days ago | IN | 0 ETH | 0.00204139 | ||||
Mint | 14937471 | 967 days ago | IN | 0.003 ETH | 0.00396848 | ||||
Approve | 14937470 | 967 days ago | IN | 0 ETH | 0.00259368 | ||||
Set Approval For... | 14937463 | 967 days ago | IN | 0 ETH | 0.00207717 | ||||
Set Approval For... | 14937456 | 967 days ago | IN | 0 ETH | 0.00242641 | ||||
Set Approval For... | 14937450 | 967 days ago | IN | 0 ETH | 0.00173319 | ||||
Set Approval For... | 14937438 | 967 days ago | IN | 0 ETH | 0.00212076 | ||||
Set Approval For... | 14937438 | 967 days ago | IN | 0 ETH | 0.00212021 | ||||
Approve | 14937430 | 967 days ago | IN | 0 ETH | 0.00263234 | ||||
Set Approval For... | 14937416 | 967 days ago | IN | 0 ETH | 0.00234229 | ||||
Set Approval For... | 14937414 | 967 days ago | IN | 0 ETH | 0.00218628 | ||||
Set Approval For... | 14937412 | 967 days ago | IN | 0 ETH | 0.00247177 | ||||
Mint | 14937411 | 967 days ago | IN | 0.03 ETH | 0.00444149 | ||||
Mint | 14937411 | 967 days ago | IN | 0.03 ETH | 0.00444149 | ||||
Mint | 14937410 | 967 days ago | IN | 0.03 ETH | 0.00395772 | ||||
Mint | 14937410 | 967 days ago | IN | 0.03 ETH | 0.00395772 | ||||
Set Approval For... | 14937404 | 967 days ago | IN | 0 ETH | 0.00163096 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14972308 | 961 days ago | 0.729 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
NotTrippykidz
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-10 */ // SPDX-License-Identifier: MIT /////////////////////////////////////////////////////////////////////////////////////////// // _______ __ ___________ .__ __ .__ .___ // // \ \ _____/ |\__ ___/______|__|_____ ______ ___.__.| | _|__| __| _/_______ // // / | \ / _ \ __\| | \_ __ \ \____ \\____ < | || |/ / |/ __ |\___ / // /// | ( <_> ) | | | | | \/ | |_> > |_> >___ || <| / /_/ | / / // //\____|__ /\____/|__| |____| |__| |__| __/| __// ____||__|_ \__\____ |/_____ \ // // \/ |__| |__| \/ \/ \/ \/ // /////////////////////////////////////////////////////////////////////////////////////////// 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 (owner == address(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 (to == address(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 (to == address(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(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. 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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. 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) } } } pragma solidity ^0.8.11; contract NotTrippykidz is ERC721A, Ownable { string _baseTokenURI; bool public isActive = false; uint256 public mintPrice = 0.003 ether; uint256 public MAX_PER_TX = 10; uint256 public MAX_SUPPLY = 2222; uint256 public constant FREE_MAX_SUPPLY = 500; constructor(string memory baseURI) ERC721A("NotTrippykidz", "NotTrippykidz") { setBaseURI(baseURI); } modifier saleIsOpen { require(totalSupply() <= MAX_SUPPLY, "Sale has ended."); _; } modifier onlyAuthorized() { require(owner() == msg.sender); _; } function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized { MAX_PER_TX = _count; } function setMaxMintSupply(uint256 maxMintSupply) external onlyAuthorized { MAX_SUPPLY = maxMintSupply; } function toggleSaleStatus() public onlyAuthorized { isActive = !isActive; } function setBaseURI(string memory baseURI) public onlyAuthorized { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function mint(uint256 _count) public payable saleIsOpen { uint256 mintIndex = totalSupply(); uint256 discountPrice = _count; if (msg.sender != owner()) { require(isActive, "Sale is not active currently."); } require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded."); require( _count <= MAX_PER_TX, "Exceeds maximum allowed tokens" ); if(mintIndex > FREE_MAX_SUPPLY) { require(msg.value >= mintPrice * discountPrice, "Insufficient ETH amount sent."); } _safeMint(msg.sender, _count); } function withdraw() external onlyAuthorized { uint balance = address(this).balance; payable(owner()).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","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":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600a805460ff19168155660aa87bee538000600b55600c556108ae600d553480156200002f57600080fd5b5060405162001b2138038062001b21833981016040819052620000529162000223565b604080518082018252600d8082526c2737ba2a3934b8383cb5b4b23d60991b6020808401828152855180870190965292855284015281519192916200009a9160029162000167565b508051620000b090600390602084019062000167565b50506000805550620000c233620000d4565b620000cd8162000126565b506200033b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336200013a6008546001600160a01b031690565b6001600160a01b0316146200014e57600080fd5b80516200016390600990602084019062000167565b5050565b8280546200017590620002ff565b90600052602060002090601f016020900481019282620001995760008555620001e4565b82601f10620001b457805160ff1916838001178555620001e4565b82800160010185558215620001e4579182015b82811115620001e4578251825591602001919060010190620001c7565b50620001f2929150620001f6565b5090565b5b80821115620001f25760008155600101620001f7565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200023757600080fd5b82516001600160401b03808211156200024f57600080fd5b818501915085601f8301126200026457600080fd5b8151818111156200027957620002796200020d565b604051601f8201601f19908116603f01168101908382118183101715620002a457620002a46200020d565b816040528281528886848701011115620002bd57600080fd5b600093505b82841015620002e15784840186015181850187015292850192620002c2565b82841115620002f35760008684830101525b98975050505050505050565b600181811c908216806200031457607f821691505b6020821081036200033557634e487b7160e01b600052602260045260246000fd5b50919050565b6117d6806200034b6000396000f3fe6080604052600436106101b75760003560e01c80636817c76c116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610491578063e985e9c5146104b1578063f2fde38b146104fa578063f43a22dc1461051a57600080fd5b8063a0712d681461043e578063a22cb46514610451578063b88d4fde1461047157600080fd5b80637389fbb7116100c65780637389fbb7146103d55780638069876d146103f55780638da5cb5b1461040b57806395d89b411461042957600080fd5b80636817c76c1461038a57806370a08231146103a0578063715018a6146103c057600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e1461030a5780634dfea6271461032a57806355f804b31461034a5780636352211e1461036a57600080fd5b806323b872dd146102bf57806332cb6b0c146102df5780633ccfd60b146102f557600080fd5b8063081812fc11610195578063081812fc1461022a578063095ea7b31461026257806318160ddd1461028257806322f3e2d4146102a557600080fd5b806301ffc9a7146101bc578063049c5c49146101f157806306fdde0314610208575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611392565b610530565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610582565b005b34801561021457600080fd5b5061021d6105bc565b6040516101e89190611407565b34801561023657600080fd5b5061024a61024536600461141a565b61064e565b6040516001600160a01b0390911681526020016101e8565b34801561026e57600080fd5b5061020661027d36600461144f565b610692565b34801561028e57600080fd5b50600154600054035b6040519081526020016101e8565b3480156102b157600080fd5b50600a546101dc9060ff1681565b3480156102cb57600080fd5b506102066102da366004611479565b610764565b3480156102eb57600080fd5b50610297600d5481565b34801561030157600080fd5b50610206610774565b34801561031657600080fd5b50610206610325366004611479565b6107e9565b34801561033657600080fd5b5061020661034536600461141a565b610804565b34801561035657600080fd5b50610206610365366004611541565b61082f565b34801561037657600080fd5b5061024a61038536600461141a565b610868565b34801561039657600080fd5b50610297600b5481565b3480156103ac57600080fd5b506102976103bb36600461158a565b610873565b3480156103cc57600080fd5b506102066108c2565b3480156103e157600080fd5b506102066103f036600461141a565b61092d565b34801561040157600080fd5b506102976101f481565b34801561041757600080fd5b506008546001600160a01b031661024a565b34801561043557600080fd5b5061021d610958565b61020661044c36600461141a565b610967565b34801561045d57600080fd5b5061020661046c3660046115a5565b610b56565b34801561047d57600080fd5b5061020661048c3660046115e1565b610beb565b34801561049d57600080fd5b5061021d6104ac36600461141a565b610c35565b3480156104bd57600080fd5b506101dc6104cc36600461165d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050657600080fd5b5061020661051536600461158a565b610cb9565b34801561052657600080fd5b50610297600c5481565b60006301ffc9a760e01b6001600160e01b03198316148061056157506380ac58cd60e01b6001600160e01b03198316145b8061057c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b336105956008546001600160a01b031690565b6001600160a01b0316146105a857600080fd5b600a805460ff19811660ff90911615179055565b6060600280546105cb90611690565b80601f01602080910402602001604051908101604052809291908181526020018280546105f790611690565b80156106445780601f1061061957610100808354040283529160200191610644565b820191906000526020600020905b81548152906001019060200180831161062757829003601f168201915b5050505050905090565b600061065982610d84565b610676576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069d82610dab565b9050806001600160a01b0316836001600160a01b0316036106d15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610708576106eb81336104cc565b610708576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61076f838383610e12565b505050565b336107876008546001600160a01b031690565b6001600160a01b03161461079a57600080fd5b476107ad6008546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156107e5573d6000803e3d6000fd5b5050565b61076f83838360405180602001604052806000815250610beb565b336108176008546001600160a01b031690565b6001600160a01b03161461082a57600080fd5b600c55565b336108426008546001600160a01b031690565b6001600160a01b03161461085557600080fd5b80516107e59060099060208401906112e3565b600061057c82610dab565b60006001600160a01b03821661089c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61092b6000610fb9565b565b336109406008546001600160a01b031690565b6001600160a01b03161461095357600080fd5b600d55565b6060600380546105cb90611690565b600d546001546000540311156109b15760405162461bcd60e51b815260206004820152600f60248201526e29b0b632903430b99032b73232b21760891b6044820152606401610918565b60006109c06001546000540390565b9050816109d56008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610a3f57600a5460ff16610a3f5760405162461bcd60e51b815260206004820152601d60248201527f53616c65206973206e6f74206163746976652063757272656e746c792e0000006044820152606401610918565b600d54610a4c84846116e0565b1115610a935760405162461bcd60e51b81526020600482015260166024820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b6044820152606401610918565b600c54831115610ae55760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006044820152606401610918565b6101f4821115610b4c5780600b54610afd91906116f8565b341015610b4c5760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e742045544820616d6f756e742073656e742e0000006044820152606401610918565b61076f338461100b565b336001600160a01b03831603610b7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bf6848484610e12565b6001600160a01b0383163b15610c2f57610c1284848484611025565b610c2f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c4082610d84565b610c5d57604051630a14c4b560e41b815260040160405180910390fd5b6000610c67611111565b90508051600003610c875760405180602001604052806000815250610cb2565b80610c9184611120565b604051602001610ca2929190611717565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610918565b6001600160a01b038116610d785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610918565b610d8181610fb9565b50565b600080548210801561057c575050600090815260046020526040902054600160e01b161590565b600081600054811015610df95760008181526004602052604081205490600160e01b82169003610df7575b80600003610cb2575060001901600081815260046020526040902054610dd6565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e1d82610dab565b9050836001600160a01b0316816001600160a01b031614610e505760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e6e5750610e6e85336104cc565b80610e89575033610e7e8461064e565b6001600160a01b0316145b905080610ea957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ed057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610f7157600183016000818152600460205260408120549003610f6f576000548114610f6f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107e582826040518060200160405280600081525061116f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061105a903390899088908890600401611746565b6020604051808303816000875af1925050508015611095575060408051601f3d908101601f1916820190925261109291810190611783565b60015b6110f3573d8080156110c3576040519150601f19603f3d011682016040523d82523d6000602084013e6110c8565b606091505b5080516000036110eb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105cb90611690565b604080516080810191829052607f0190826030600a8206018353600a90045b801561115d57600183039250600a81066030018353600a900461113f565b50819003601f19909101908152919050565b6000546001600160a01b03841661119857604051622e076360e81b815260040160405180910390fd5b826000036111b95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561128e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112576000878480600101955087611025565b611274576040516368d2bf6b60e11b815260040160405180910390fd5b80821061120c57826000541461128957600080fd5b6112d3565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061128f575b506000908155610c2f9085838684565b8280546112ef90611690565b90600052602060002090601f0160209004810192826113115760008555611357565b82601f1061132a57805160ff1916838001178555611357565b82800160010185558215611357579182015b8281111561135757825182559160200191906001019061133c565b50611363929150611367565b5090565b5b808211156113635760008155600101611368565b6001600160e01b031981168114610d8157600080fd5b6000602082840312156113a457600080fd5b8135610cb28161137c565b60005b838110156113ca5781810151838201526020016113b2565b83811115610c2f5750506000910152565b600081518084526113f38160208601602086016113af565b601f01601f19169290920160200192915050565b602081526000610cb260208301846113db565b60006020828403121561142c57600080fd5b5035919050565b80356001600160a01b038116811461144a57600080fd5b919050565b6000806040838503121561146257600080fd5b61146b83611433565b946020939093013593505050565b60008060006060848603121561148e57600080fd5b61149784611433565b92506114a560208501611433565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114e6576114e66114b5565b604051601f8501601f19908116603f0116810190828211818310171561150e5761150e6114b5565b8160405280935085815286868601111561152757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561155357600080fd5b813567ffffffffffffffff81111561156a57600080fd5b8201601f8101841361157b57600080fd5b611109848235602084016114cb565b60006020828403121561159c57600080fd5b610cb282611433565b600080604083850312156115b857600080fd5b6115c183611433565b9150602083013580151581146115d657600080fd5b809150509250929050565b600080600080608085870312156115f757600080fd5b61160085611433565b935061160e60208601611433565b925060408501359150606085013567ffffffffffffffff81111561163157600080fd5b8501601f8101871361164257600080fd5b611651878235602084016114cb565b91505092959194509250565b6000806040838503121561167057600080fd5b61167983611433565b915061168760208401611433565b90509250929050565b600181811c908216806116a457607f821691505b6020821081036116c457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156116f3576116f36116ca565b500190565b6000816000190483118215151615611712576117126116ca565b500290565b600083516117298184602088016113af565b83519083019061173d8183602088016113af565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611779908301846113db565b9695505050505050565b60006020828403121561179557600080fd5b8151610cb28161137c56fea26469706673582212200d13529d711ede3133ad2e901bae0100dd086aedd5405a48a48e3db19a1f49ac64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a56555a705a616445557667586551456e795271386e4c5a4e616a7a7a4c68443843316a514a7736563832322f00000000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636817c76c116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610491578063e985e9c5146104b1578063f2fde38b146104fa578063f43a22dc1461051a57600080fd5b8063a0712d681461043e578063a22cb46514610451578063b88d4fde1461047157600080fd5b80637389fbb7116100c65780637389fbb7146103d55780638069876d146103f55780638da5cb5b1461040b57806395d89b411461042957600080fd5b80636817c76c1461038a57806370a08231146103a0578063715018a6146103c057600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e1461030a5780634dfea6271461032a57806355f804b31461034a5780636352211e1461036a57600080fd5b806323b872dd146102bf57806332cb6b0c146102df5780633ccfd60b146102f557600080fd5b8063081812fc11610195578063081812fc1461022a578063095ea7b31461026257806318160ddd1461028257806322f3e2d4146102a557600080fd5b806301ffc9a7146101bc578063049c5c49146101f157806306fdde0314610208575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611392565b610530565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610582565b005b34801561021457600080fd5b5061021d6105bc565b6040516101e89190611407565b34801561023657600080fd5b5061024a61024536600461141a565b61064e565b6040516001600160a01b0390911681526020016101e8565b34801561026e57600080fd5b5061020661027d36600461144f565b610692565b34801561028e57600080fd5b50600154600054035b6040519081526020016101e8565b3480156102b157600080fd5b50600a546101dc9060ff1681565b3480156102cb57600080fd5b506102066102da366004611479565b610764565b3480156102eb57600080fd5b50610297600d5481565b34801561030157600080fd5b50610206610774565b34801561031657600080fd5b50610206610325366004611479565b6107e9565b34801561033657600080fd5b5061020661034536600461141a565b610804565b34801561035657600080fd5b50610206610365366004611541565b61082f565b34801561037657600080fd5b5061024a61038536600461141a565b610868565b34801561039657600080fd5b50610297600b5481565b3480156103ac57600080fd5b506102976103bb36600461158a565b610873565b3480156103cc57600080fd5b506102066108c2565b3480156103e157600080fd5b506102066103f036600461141a565b61092d565b34801561040157600080fd5b506102976101f481565b34801561041757600080fd5b506008546001600160a01b031661024a565b34801561043557600080fd5b5061021d610958565b61020661044c36600461141a565b610967565b34801561045d57600080fd5b5061020661046c3660046115a5565b610b56565b34801561047d57600080fd5b5061020661048c3660046115e1565b610beb565b34801561049d57600080fd5b5061021d6104ac36600461141a565b610c35565b3480156104bd57600080fd5b506101dc6104cc36600461165d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050657600080fd5b5061020661051536600461158a565b610cb9565b34801561052657600080fd5b50610297600c5481565b60006301ffc9a760e01b6001600160e01b03198316148061056157506380ac58cd60e01b6001600160e01b03198316145b8061057c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b336105956008546001600160a01b031690565b6001600160a01b0316146105a857600080fd5b600a805460ff19811660ff90911615179055565b6060600280546105cb90611690565b80601f01602080910402602001604051908101604052809291908181526020018280546105f790611690565b80156106445780601f1061061957610100808354040283529160200191610644565b820191906000526020600020905b81548152906001019060200180831161062757829003601f168201915b5050505050905090565b600061065982610d84565b610676576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069d82610dab565b9050806001600160a01b0316836001600160a01b0316036106d15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610708576106eb81336104cc565b610708576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61076f838383610e12565b505050565b336107876008546001600160a01b031690565b6001600160a01b03161461079a57600080fd5b476107ad6008546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156107e5573d6000803e3d6000fd5b5050565b61076f83838360405180602001604052806000815250610beb565b336108176008546001600160a01b031690565b6001600160a01b03161461082a57600080fd5b600c55565b336108426008546001600160a01b031690565b6001600160a01b03161461085557600080fd5b80516107e59060099060208401906112e3565b600061057c82610dab565b60006001600160a01b03821661089c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61092b6000610fb9565b565b336109406008546001600160a01b031690565b6001600160a01b03161461095357600080fd5b600d55565b6060600380546105cb90611690565b600d546001546000540311156109b15760405162461bcd60e51b815260206004820152600f60248201526e29b0b632903430b99032b73232b21760891b6044820152606401610918565b60006109c06001546000540390565b9050816109d56008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610a3f57600a5460ff16610a3f5760405162461bcd60e51b815260206004820152601d60248201527f53616c65206973206e6f74206163746976652063757272656e746c792e0000006044820152606401610918565b600d54610a4c84846116e0565b1115610a935760405162461bcd60e51b81526020600482015260166024820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b6044820152606401610918565b600c54831115610ae55760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006044820152606401610918565b6101f4821115610b4c5780600b54610afd91906116f8565b341015610b4c5760405162461bcd60e51b815260206004820152601d60248201527f496e73756666696369656e742045544820616d6f756e742073656e742e0000006044820152606401610918565b61076f338461100b565b336001600160a01b03831603610b7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bf6848484610e12565b6001600160a01b0383163b15610c2f57610c1284848484611025565b610c2f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c4082610d84565b610c5d57604051630a14c4b560e41b815260040160405180910390fd5b6000610c67611111565b90508051600003610c875760405180602001604052806000815250610cb2565b80610c9184611120565b604051602001610ca2929190611717565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610918565b6001600160a01b038116610d785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610918565b610d8181610fb9565b50565b600080548210801561057c575050600090815260046020526040902054600160e01b161590565b600081600054811015610df95760008181526004602052604081205490600160e01b82169003610df7575b80600003610cb2575060001901600081815260046020526040902054610dd6565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e1d82610dab565b9050836001600160a01b0316816001600160a01b031614610e505760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e6e5750610e6e85336104cc565b80610e89575033610e7e8461064e565b6001600160a01b0316145b905080610ea957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ed057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610f7157600183016000818152600460205260408120549003610f6f576000548114610f6f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107e582826040518060200160405280600081525061116f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061105a903390899088908890600401611746565b6020604051808303816000875af1925050508015611095575060408051601f3d908101601f1916820190925261109291810190611783565b60015b6110f3573d8080156110c3576040519150601f19603f3d011682016040523d82523d6000602084013e6110c8565b606091505b5080516000036110eb576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105cb90611690565b604080516080810191829052607f0190826030600a8206018353600a90045b801561115d57600183039250600a81066030018353600a900461113f565b50819003601f19909101908152919050565b6000546001600160a01b03841661119857604051622e076360e81b815260040160405180910390fd5b826000036111b95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561128e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112576000878480600101955087611025565b611274576040516368d2bf6b60e11b815260040160405180910390fd5b80821061120c57826000541461128957600080fd5b6112d3565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061128f575b506000908155610c2f9085838684565b8280546112ef90611690565b90600052602060002090601f0160209004810192826113115760008555611357565b82601f1061132a57805160ff1916838001178555611357565b82800160010185558215611357579182015b8281111561135757825182559160200191906001019061133c565b50611363929150611367565b5090565b5b808211156113635760008155600101611368565b6001600160e01b031981168114610d8157600080fd5b6000602082840312156113a457600080fd5b8135610cb28161137c565b60005b838110156113ca5781810151838201526020016113b2565b83811115610c2f5750506000910152565b600081518084526113f38160208601602086016113af565b601f01601f19169290920160200192915050565b602081526000610cb260208301846113db565b60006020828403121561142c57600080fd5b5035919050565b80356001600160a01b038116811461144a57600080fd5b919050565b6000806040838503121561146257600080fd5b61146b83611433565b946020939093013593505050565b60008060006060848603121561148e57600080fd5b61149784611433565b92506114a560208501611433565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114e6576114e66114b5565b604051601f8501601f19908116603f0116810190828211818310171561150e5761150e6114b5565b8160405280935085815286868601111561152757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561155357600080fd5b813567ffffffffffffffff81111561156a57600080fd5b8201601f8101841361157b57600080fd5b611109848235602084016114cb565b60006020828403121561159c57600080fd5b610cb282611433565b600080604083850312156115b857600080fd5b6115c183611433565b9150602083013580151581146115d657600080fd5b809150509250929050565b600080600080608085870312156115f757600080fd5b61160085611433565b935061160e60208601611433565b925060408501359150606085013567ffffffffffffffff81111561163157600080fd5b8501601f8101871361164257600080fd5b611651878235602084016114cb565b91505092959194509250565b6000806040838503121561167057600080fd5b61167983611433565b915061168760208401611433565b90509250929050565b600181811c908216806116a457607f821691505b6020821081036116c457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156116f3576116f36116ca565b500190565b6000816000190483118215151615611712576117126116ca565b500290565b600083516117298184602088016113af565b83519083019061173d8183602088016113af565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611779908301846113db565b9695505050505050565b60006020828403121561179557600080fd5b8151610cb28161137c56fea26469706673582212200d13529d711ede3133ad2e901bae0100dd086aedd5405a48a48e3db19a1f49ac64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a56555a705a616445557667586551456e795271386e4c5a4e616a7a7a4c68443843316a514a7736563832322f00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmZVUZpZadEUvgXeQEnyRq8nLZNajzzLhD8C1jQJw6V822/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5a56555a705a616445557667586551456e795271386e4c
Arg [3] : 5a4e616a7a7a4c68443843316a514a7736563832322f00000000000000000000
Deployed Bytecode Sourcemap
42471:1847:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17165:615;;;;;;;;;;-1:-1:-1;17165:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;17165:615:0;;;;;;;;43276:83;;;;;;;;;;;;;:::i;:::-;;22178:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24246:204::-;;;;;;;;;;-1:-1:-1;24246:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;24246:204:0;1528:203:1;23706:474:0;;;;;;;;;;-1:-1:-1;23706:474:0;;;;;:::i;:::-;;:::i;16219:315::-;;;;;;;;;;-1:-1:-1;16485:12:0;;16272:7;16469:13;:28;16219:315;;;2319:25:1;;;2307:2;2292:18;16219:315:0;2173:177:1;42548:28:0;;;;;;;;;;-1:-1:-1;42548:28:0;;;;;;;;25132:170;;;;;;;;;;-1:-1:-1;25132:170:0;;;;;:::i;:::-;;:::i;42659:32::-;;;;;;;;;;;;;;;;44181:134;;;;;;;;;;;;;:::i;25373:185::-;;;;;;;;;;-1:-1:-1;25373:185:0;;;;;:::i;:::-;;:::i;43048:103::-;;;;;;;;;;-1:-1:-1;43048:103:0;;;;;:::i;:::-;;:::i;43365:101::-;;;;;;;;;;-1:-1:-1;43365:101:0;;;;;:::i;:::-;;:::i;21967:144::-;;;;;;;;;;-1:-1:-1;21967:144:0;;;;;:::i;:::-;;:::i;42581:38::-;;;;;;;;;;;;;;;;17844:224;;;;;;;;;;-1:-1:-1;17844:224:0;;;;;:::i;:::-;;:::i;3275:103::-;;;;;;;;;;;;;:::i;43157:113::-;;;;;;;;;;-1:-1:-1;43157:113:0;;;;;:::i;:::-;;:::i;42696:45::-;;;;;;;;;;;;42738:3;42696:45;;2624:87;;;;;;;;;;-1:-1:-1;2697:6:0;;-1:-1:-1;;;;;2697:6:0;2624:87;;22347:104;;;;;;;;;;;;;:::i;43586:589::-;;;;;;:::i;:::-;;:::i;24522:308::-;;;;;;;;;;-1:-1:-1;24522:308:0;;;;;:::i;:::-;;:::i;25629:396::-;;;;;;;;;;-1:-1:-1;25629:396:0;;;;;:::i;:::-;;:::i;22522:318::-;;;;;;;;;;-1:-1:-1;22522:318:0;;;;;:::i;:::-;;:::i;24901:164::-;;;;;;;;;;-1:-1:-1;24901:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25022:25:0;;;24998:4;25022:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24901:164;3533:201;;;;;;;;;;-1:-1:-1;3533:201:0;;;;;:::i;:::-;;:::i;42624:30::-;;;;;;;;;;;;;;;;17165:615;17250:4;-1:-1:-1;;;;;;;;;17550:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;17627:25:0;;;17550:102;:179;;;-1:-1:-1;;;;;;;;;;17704:25:0;;;17550:179;17530:199;17165:615;-1:-1:-1;;17165:615:0:o;43276:83::-;43017:10;43006:7;2697:6;;-1:-1:-1;;;;;2697:6:0;;2624:87;43006:7;-1:-1:-1;;;;;43006:21:0;;42998:30;;;;;;43345:8:::1;::::0;;-1:-1:-1;;43333:20:0;::::1;43345:8;::::0;;::::1;43344:9;43333:20;::::0;;43276:83::o;22178:100::-;22232:13;22265:5;22258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22178:100;:::o;24246:204::-;24314:7;24339:16;24347:7;24339;:16::i;:::-;24334:64;;24364:34;;-1:-1:-1;;;24364:34:0;;;;;;;;;;;24334:64;-1:-1:-1;24418:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24418:24:0;;24246:204::o;23706:474::-;23779:13;23811:27;23830:7;23811:18;:27::i;:::-;23779:61;;23861:5;-1:-1:-1;;;;;23855:11:0;:2;-1:-1:-1;;;;;23855:11:0;;23851:48;;23875:24;;-1:-1:-1;;;23875:24:0;;;;;;;;;;;23851:48;40349:10;-1:-1:-1;;;;;23916:28:0;;;23912:175;;23964:44;23981:5;40349:10;24901:164;:::i;23964:44::-;23959:128;;24036:35;;-1:-1:-1;;;24036:35:0;;;;;;;;;;;23959:128;24099:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24099:29:0;-1:-1:-1;;;;;24099:29:0;;;;;;;;;24144:28;;24099:24;;24144:28;;;;;;;23768:412;23706:474;;:::o;25132:170::-;25266:28;25276:4;25282:2;25286:7;25266:9;:28::i;:::-;25132:170;;;:::o;44181:134::-;43017:10;43006:7;2697:6;;-1:-1:-1;;;;;2697:6:0;;2624:87;43006:7;-1:-1:-1;;;;;43006:21:0;;42998:30;;;;;;44247:21:::1;44283:7;2697:6:::0;;-1:-1:-1;;;;;2697:6:0;;2624:87;44283:7:::1;-1:-1:-1::0;;;;;44275:25:0::1;:34;44301:7;44275:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44225:90;44181:134::o:0;25373:185::-;25511:39;25528:4;25534:2;25538:7;25511:39;;;;;;;;;;;;:16;:39::i;43048:103::-;43017:10;43006:7;2697:6;;-1:-1:-1;;;;;2697:6:0;;2624:87;43006:7;-1:-1:-1;;;;;43006:21:0;;42998:30;;;;;;43126:10:::1;:19:::0;43048:103::o;43365:101::-;43017:10;43006:7;2697:6;;-1:-1:-1;;;;;2697:6:0;;2624:87;43006:7;-1:-1:-1;;;;;43006:21:0;;42998:30;;;;;;43437:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;21967:144::-:0;22031:7;22074:27;22093:7;22074:18;:27::i;17844:224::-;17908:7;-1:-1:-1;;;;;17932:19:0;;17928:60;;17960:28;;-1:-1:-1;;;17960:28:0;;;;;;;;;;;17928:60;-1:-1:-1;;;;;;18006:25:0;;;;;:18;:25;;;;;;13183:13;18006:54;;17844:224::o;3275:103::-;2697:6;;-1:-1:-1;;;;;2697:6:0;40349:10;2844:23;2836:68;;;;-1:-1:-1;;;2836:68:0;;5980:2:1;2836:68:0;;;5962:21:1;;;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;6110:18;;2836:68:0;;;;;;;;;3340:30:::1;3367:1;3340:18;:30::i;:::-;3275:103::o:0;43157:113::-;43017:10;43006:7;2697:6;;-1:-1:-1;;;;;2697:6:0;;2624:87;43006:7;-1:-1:-1;;;;;43006:21:0;;42998:30;;;;;;43238:10:::1;:26:::0;43157:113::o;22347:104::-;22403:13;22436:7;22429:14;;;;;:::i;43586:589::-;42915:10;;16485:12;;16272:7;16469:13;:28;42898:27;;42890:55;;;;-1:-1:-1;;;42890:55:0;;6341:2:1;42890:55:0;;;6323:21:1;6380:2;6360:18;;;6353:30;-1:-1:-1;;;6399:18:1;;;6392:45;6454:18;;42890:55:0;6139:339:1;42890:55:0;43649:17:::1;43669:13;16485:12:::0;;16272:7;16469:13;:28;;16219:315;43669:13:::1;43649:33:::0;-1:-1:-1;43713:6:0;43746:7:::1;2697:6:::0;;-1:-1:-1;;;;;2697:6:0;;2624:87;43746:7:::1;-1:-1:-1::0;;;;;43732:21:0::1;:10;-1:-1:-1::0;;;;;43732:21:0::1;;43728:94;;43772:8;::::0;::::1;;43764:50;;;::::0;-1:-1:-1;;;43764:50:0;;6685:2:1;43764:50:0::1;::::0;::::1;6667:21:1::0;6724:2;6704:18;;;6697:30;6763:31;6743:18;;;6736:59;6812:18;;43764:50:0::1;6483:353:1::0;43764:50:0::1;43860:10;::::0;43838:18:::1;43850:6:::0;43838:9;:18:::1;:::i;:::-;:32;;43830:67;;;::::0;-1:-1:-1;;;43830:67:0;;7308:2:1;43830:67:0::1;::::0;::::1;7290:21:1::0;7347:2;7327:18;;;7320:30;-1:-1:-1;;;7366:18:1;;;7359:52;7428:18;;43830:67:0::1;7106:346:1::0;43830:67:0::1;43930:10;;43920:6;:20;;43904:84;;;::::0;-1:-1:-1;;;43904:84:0;;7659:2:1;43904:84:0::1;::::0;::::1;7641:21:1::0;7698:2;7678:18;;;7671:30;7737:32;7717:18;;;7710:60;7787:18;;43904:84:0::1;7457:354:1::0;43904:84:0::1;42738:3;44001:9;:27;43998:131;;;44074:13;44062:9;;:25;;;;:::i;:::-;44049:9;:38;;44041:80;;;::::0;-1:-1:-1;;;44041:80:0;;8191:2:1;44041:80:0::1;::::0;::::1;8173:21:1::0;8230:2;8210:18;;;8203:30;8269:31;8249:18;;;8242:59;8318:18;;44041:80:0::1;7989:353:1::0;44041:80:0::1;44140:29;44150:10;44162:6;44140:9;:29::i;24522:308::-:0;40349:10;-1:-1:-1;;;;;24621:31:0;;;24617:61;;24661:17;;-1:-1:-1;;;24661:17:0;;;;;;;;;;;24617:61;40349:10;24691:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24691:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24691:60:0;;;;;;;;;;24767:55;;540:41:1;;;24691:49:0;;40349:10;24767:55;;513:18:1;24767:55:0;;;;;;;24522:308;;:::o;25629:396::-;25796:28;25806:4;25812:2;25816:7;25796:9;:28::i;:::-;-1:-1:-1;;;;;25839:14:0;;;:19;25835:183;;25878:56;25909:4;25915:2;25919:7;25928:5;25878:30;:56::i;:::-;25873:145;;25962:40;;-1:-1:-1;;;25962:40:0;;;;;;;;;;;25873:145;25629:396;;;;:::o;22522:318::-;22595:13;22626:16;22634:7;22626;:16::i;:::-;22621:59;;22651:29;;-1:-1:-1;;;22651:29:0;;;;;;;;;;;22621:59;22693:21;22717:10;:8;:10::i;:::-;22693:34;;22751:7;22745:21;22770:1;22745:26;:87;;;;;;;;;;;;;;;;;22798:7;22807:18;22817:7;22807:9;:18::i;:::-;22781:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22745:87;22738:94;22522:318;-1:-1:-1;;;22522:318:0:o;3533:201::-;2697:6;;-1:-1:-1;;;;;2697:6:0;40349:10;2844:23;2836:68;;;;-1:-1:-1;;;2836:68:0;;5980:2:1;2836:68:0;;;5962:21:1;;;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;6110:18;;2836:68:0;5778:356:1;2836:68:0;-1:-1:-1;;;;;3622:22:0;::::1;3614:73;;;::::0;-1:-1:-1;;;3614:73:0;;9024:2:1;3614:73:0::1;::::0;::::1;9006:21:1::0;9063:2;9043:18;;;9036:30;9102:34;9082:18;;;9075:62;-1:-1:-1;;;9153:18:1;;;9146:36;9199:19;;3614:73:0::1;8822:402:1::0;3614:73:0::1;3698:28;3717:8;3698:18;:28::i;:::-;3533:201:::0;:::o;26280:273::-;26337:4;26427:13;;26417:7;:23;26374:152;;;;-1:-1:-1;;26478:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;26478:43:0;:48;;26280:273::o;19482:1129::-;19549:7;19584;19686:13;;19679:4;:20;19675:869;;;19724:14;19741:23;;;:17;:23;;;;;;;-1:-1:-1;;;19830:23:0;;:28;;19826:699;;20349:113;20356:6;20366:1;20356:11;20349:113;;-1:-1:-1;;;20427:6:0;20409:25;;;;:17;:25;;;;;;20349:113;;19826:699;19701:843;19675:869;20572:31;;-1:-1:-1;;;20572:31:0;;;;;;;;;;;31519:2515;31634:27;31664;31683:7;31664:18;:27::i;:::-;31634:57;;31749:4;-1:-1:-1;;;;;31708:45:0;31724:19;-1:-1:-1;;;;;31708:45:0;;31704:86;;31762:28;;-1:-1:-1;;;31762:28:0;;;;;;;;;;;31704:86;31803:22;40349:10;-1:-1:-1;;;;;31829:27:0;;;;:87;;-1:-1:-1;31873:43:0;31890:4;40349:10;24901:164;:::i;31873:43::-;31829:147;;;-1:-1:-1;40349:10:0;31933:20;31945:7;31933:11;:20::i;:::-;-1:-1:-1;;;;;31933:43:0;;31829:147;31803:174;;31995:17;31990:66;;32021:35;;-1:-1:-1;;;32021:35:0;;;;;;;;;;;31990:66;-1:-1:-1;;;;;32071:16:0;;32067:52;;32096:23;;-1:-1:-1;;;32096:23:0;;;;;;;;;;;32067:52;32248:24;;;;:15;:24;;;;;;;;32241:31;;-1:-1:-1;;;;;;32241:31:0;;;-1:-1:-1;;;;;32640:24:0;;;;;:18;:24;;;;;32638:26;;-1:-1:-1;;32638:26:0;;;32709:22;;;;;;;32707:24;;-1:-1:-1;32707:24:0;;;33002:26;;;:17;:26;;;;;-1:-1:-1;;;33090:15:0;13837:3;33090:41;33048:84;;:128;;33002:174;;;33296:46;;:51;;33292:626;;33400:1;33390:11;;33368:19;33523:30;;;:17;:30;;;;;;:35;;33519:384;;33661:13;;33646:11;:28;33642:242;;33808:30;;;;:17;:30;;;;;:52;;;33642:242;33349:569;33292:626;33965:7;33961:2;-1:-1:-1;;;;;33946:27:0;33955:4;-1:-1:-1;;;;;33946:27:0;;;;;;;;;;;31623:2411;;31519:2515;;;:::o;3894:191::-;3987:6;;;-1:-1:-1;;;;;4004:17:0;;;-1:-1:-1;;;;;;4004:17:0;;;;;;;4037:40;;3987:6;;;4004:17;3987:6;;4037:40;;3968:16;;4037:40;3957:128;3894:191;:::o;26637:104::-;26706:27;26716:2;26720:8;26706:27;;;;;;;;;;;;:9;:27::i;37731:716::-;37915:88;;-1:-1:-1;;;37915:88:0;;37894:4;;-1:-1:-1;;;;;37915:45:0;;;;;:88;;40349:10;;37982:4;;37988:7;;37997:5;;37915:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37915:88:0;;;;;;;;-1:-1:-1;;37915:88:0;;;;;;;;;;;;:::i;:::-;;;37911:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38198:6;:13;38215:1;38198:18;38194:235;;38244:40;;-1:-1:-1;;;38244:40:0;;;;;;;;;;;38194:235;38387:6;38381:13;38372:6;38368:2;38364:15;38357:38;37911:529;-1:-1:-1;;;;;;38074:64:0;-1:-1:-1;;;38074:64:0;;-1:-1:-1;37911:529:0;37731:716;;;;;;:::o;43472:108::-;43532:13;43561;43554:20;;;;;:::i;40473:1959::-;40944:4;40938:11;;40951:3;40934:21;;41029:17;;;;41726:11;;;41605:5;41858:2;41872;41862:13;;41854:22;41726:11;41841:36;41913:2;41903:13;;41496:682;41932:4;41496:682;;;42107:1;42102:3;42098:11;42091:18;;42158:2;42152:4;42148:13;42144:2;42140:22;42135:3;42127:36;42028:2;42018:13;;41496:682;;;-1:-1:-1;42220:13:0;;;-1:-1:-1;;42335:12:0;;;42395:19;;;42335:12;40473:1959;-1:-1:-1;40473:1959:0:o;27114:2236::-;27237:20;27260:13;-1:-1:-1;;;;;27288:16:0;;27284:48;;27313:19;;-1:-1:-1;;;27313:19:0;;;;;;;;;;;27284:48;27347:8;27359:1;27347:13;27343:44;;27369:18;;-1:-1:-1;;;27369:18:0;;;;;;;;;;;27343:44;-1:-1:-1;;;;;27936:22:0;;;;;;:18;:22;;;;13320:2;27936:22;;;:70;;27974:31;27962:44;;27936:70;;;28249:31;;;:17;:31;;;;;28342:15;13837:3;28342:41;28300:84;;-1:-1:-1;28420:13:0;;14100:3;28405:56;28300:162;28249:213;;:31;;28543:23;;;;28587:14;:19;28583:635;;28627:313;28658:38;;28683:12;;-1:-1:-1;;;;;28658:38:0;;;28675:1;;28658:38;;28675:1;;28658:38;28724:69;28763:1;28767:2;28771:14;;;;;;28787:5;28724:30;:69::i;:::-;28719:174;;28829:40;;-1:-1:-1;;;28829:40:0;;;;;;;;;;;28719:174;28935:3;28920:12;:18;28627:313;;29021:12;29004:13;;:29;29000:43;;29035:8;;;29000:43;28583:635;;;29084:119;29115:40;;29140:14;;;;;-1:-1:-1;;;;;29115:40:0;;;29132:1;;29115:40;;29132:1;;29115:40;29198:3;29183:12;:18;29084:119;;28583:635;-1:-1:-1;29232:13:0;:28;;;29282:60;;29315:2;29319:12;29333:8;29282:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6841:127::-;6902:10;6897:3;6893:20;6890:1;6883:31;6933:4;6930:1;6923:15;6957:4;6954:1;6947:15;6973:128;7013:3;7044:1;7040:6;7037:1;7034:13;7031:39;;;7050:18;;:::i;:::-;-1:-1:-1;7086:9:1;;6973:128::o;7816:168::-;7856:7;7922:1;7918;7914:6;7910:14;7907:1;7904:21;7899:1;7892:9;7885:17;7881:45;7878:71;;;7929:18;;:::i;:::-;-1:-1:-1;7969:9:1;;7816:168::o;8347:470::-;8526:3;8564:6;8558:13;8580:53;8626:6;8621:3;8614:4;8606:6;8602:17;8580:53;:::i;:::-;8696:13;;8655:16;;;;8718:57;8696:13;8655:16;8752:4;8740:17;;8718:57;:::i;:::-;8791:20;;8347:470;-1:-1:-1;;;;8347:470:1:o;9229:489::-;-1:-1:-1;;;;;9498:15:1;;;9480:34;;9550:15;;9545:2;9530:18;;9523:43;9597:2;9582:18;;9575:34;;;9645:3;9640:2;9625:18;;9618:31;;;9423:4;;9666:46;;9692:19;;9684:6;9666:46;:::i;:::-;9658:54;9229:489;-1:-1:-1;;;;;;9229:489:1:o;9723:249::-;9792:6;9845:2;9833:9;9824:7;9820:23;9816:32;9813:52;;;9861:1;9858;9851:12;9813:52;9893:9;9887:16;9912:30;9936:5;9912:30;:::i
Swarm Source
ipfs://0d13529d711ede3133ad2e901bae0100dd086aedd5405a48a48e3db19a1f49ac
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.