ERC-721
Overview
Max Total Supply
444 HHS
Holders
188
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HHSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HirokaHighSchool
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-13 */ // SPDX-License-Identifier: MIT // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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` // - [232..255] `extraData` 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken(); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; return packed; } } // Otherwise, the data exists and is not burned. We can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. return packed; } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck) if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.8.0/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: HHS.sol pragma solidity ^0.8.13; contract HirokaHighSchool is ERC721A, Ownable, DefaultOperatorFilterer { error MintInactive(); error ContractCaller(); error InvalidAmount(); error ExceedsSupply(); error InvalidValue(); error LengthsDoNotMatch(); error InvalidToken(); error NotTokenOwner(); error TokenHasMinted(uint256 tokenId); using Strings for uint256; IERC721A public AnEnd; string public baseURI; uint256 public price = 0.005 ether; uint256 public constant MAX_SUPPLY = 444; uint256 public constant MAX_PER_TX = 5; bool public holderSaleActive = false; bool public saleActive = false; mapping(uint256 => bool) anEndTokenHasMinted; constructor(address anEndAddress) ERC721A("Hiroko High School", "HHS") { _mint(msg.sender, 1); AnEnd = IERC721A(anEndAddress); } function holderMint(uint256[] calldata anEndTokenIdsHeld) public payable { if (!holderSaleActive) revert MintInactive(); if (msg.sender != tx.origin) revert ContractCaller(); uint256 length = anEndTokenIdsHeld.length; unchecked { if (length + totalSupply() > MAX_SUPPLY) revert ExceedsSupply(); for (uint256 i = 0; i < length; i++) { if (anEndTokenHasMinted[anEndTokenIdsHeld[i]]) revert TokenHasMinted(anEndTokenIdsHeld[i]); if (AnEnd.ownerOf(anEndTokenIdsHeld[i]) != msg.sender) revert NotTokenOwner(); anEndTokenHasMinted[anEndTokenIdsHeld[i]] = true; } } _mint(msg.sender, length); } function mint(uint256 mintAmount_) public payable { if (!saleActive) revert MintInactive(); if (msg.sender != tx.origin) revert ContractCaller(); if (mintAmount_ > MAX_PER_TX) revert InvalidAmount(); unchecked { if (mintAmount_ + totalSupply() > MAX_SUPPLY) revert ExceedsSupply(); if (msg.value != mintAmount_ * price) revert InvalidValue(); } _mint(msg.sender, mintAmount_); } function mintForAddress(uint256 mintAmount_, address to_) external onlyOwner { _mint(to_, mintAmount_); } function batchMintForAddresses(address[] calldata addresses_, uint256[] calldata amounts_) external onlyOwner { if (addresses_.length != amounts_.length) revert LengthsDoNotMatch(); unchecked { for (uint32 i = 0; i < addresses_.length; i++) { _mint(addresses_[i], amounts_[i]); } } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function flipSaleActive() external onlyOwner { saleActive = !saleActive; } function flipHolderSale() external onlyOwner { holderSaleActive = !holderSaleActive; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } function setBaseURI(string memory newBaseURI_) external onlyOwner { baseURI = newBaseURI_; } function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) { if (!_exists(tokenId_)) revert InvalidToken(); return string(abi.encodePacked(baseURI, tokenId_.toString(), ".json")); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from){ super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"anEndAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractCaller","type":"error"},{"inputs":[],"name":"ExceedsSupply","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"InvalidValue","type":"error"},{"inputs":[],"name":"LengthsDoNotMatch","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintInactive","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotTokenOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenHasMinted","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"AnEnd","outputs":[{"internalType":"contract IERC721A","name":"","type":"address"}],"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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"batchMintForAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipHolderSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","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":[{"internalType":"uint256[]","name":"anEndTokenIdsHeld","type":"uint256[]"}],"name":"holderMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"holderSaleActive","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":"mintAmount_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"}],"name":"mintForAddress","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","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":"payable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","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":"payable","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
60806040526611c37937e08000600b55600c805461ffff191690553480156200002757600080fd5b5060405162002291380380620022918339810160408190526200004a916200038d565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600160405180604001604052806012815260200171121a5c9bdadbc8121a59da0814d8da1bdbdb60721b8152506040518060400160405280600381526020016248485360e81b8152508160029081620000b9919062000463565b506003620000c8828262000463565b5050600160005550620000db3362000256565b6daaeb6d7670e522a718067333cd4e3b15620002205780156200016e57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200014f57600080fd5b505af115801562000164573d6000803e3d6000fd5b5050505062000220565b6001600160a01b03821615620001bf5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000134565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200020657600080fd5b505af11580156200021b573d6000803e3d6000fd5b505050505b50620002309050336001620002a8565b600980546001600160a01b0319166001600160a01b03929092169190911790556200052f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805490829003620002ce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020620022718339815191528180a4600183015b8181146200035d578083600060008051602062002271833981519152600080a460010162000334565b50816000036200037f57604051622e076360e81b815260040160405180910390fd5b60005550505050565b505050565b600060208284031215620003a057600080fd5b81516001600160a01b0381168114620003b857600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003ea57607f821691505b6020821081036200040b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200038857600081815260208120601f850160051c810160208610156200043a5750805b601f850160051c820191505b818110156200045b5782815560010162000446565b505050505050565b81516001600160401b038111156200047f576200047f620003bf565b6200049781620004908454620003d5565b8462000411565b602080601f831160018114620004cf5760008415620004b65750858301515b600019600386901b1c1916600185901b1785556200045b565b600085815260208120601f198616915b828110156200050057888601518255948401946001909101908401620004df565b50858210156200051f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611d32806200053f6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610531578063efbd73f41461057a578063f2fde38b1461059a578063f43a22dc146105ba578063fd8b262d146105cf57600080fd5b8063b88d4fde146104c9578063c87b56dd146104dc578063de53f38a146104fc578063de8b51e11461051c57600080fd5b806395d89b41116100dc57806395d89b411461046b578063a035b1fe14610480578063a0712d6814610496578063a22cb465146104a957600080fd5b806370a08231146103f8578063715018a6146104185780638da5cb5b1461042d57806391b7f5ed1461044b57600080fd5b806332cb6b0c1161019057806355f804b31161015f57806355f804b31461036f5780636352211e1461038f57806368428a1b146103af5780636ba351ef146103ce5780636c0360eb146103e357600080fd5b806332cb6b0c1461030f5780633ccfd60b1461032557806341f434341461033a57806342842e0e1461035c57600080fd5b8063148b5589116101cc578063148b5589146102a257806318160ddd146102c257806318ff321b146102e957806323b872dd146102fc57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611653565b6105e9565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861063b565b60405161022a91906116c7565b34801561026157600080fd5b506102756102703660046116da565b6106cd565b6040516001600160a01b03909116815260200161022a565b6102a061029b366004611708565b610711565b005b3480156102ae57600080fd5b50600954610275906001600160a01b031681565b3480156102ce57600080fd5b5060015460005403600019015b60405190815260200161022a565b6102a06102f7366004611780565b61072a565b6102a061030a3660046117c2565b610925565b34801561031b57600080fd5b506102db6101bc81565b34801561033157600080fd5b506102a0610950565b34801561034657600080fd5b506102756daaeb6d7670e522a718067333cd4e81565b6102a061036a3660046117c2565b610994565b34801561037b57600080fd5b506102a061038a36600461188f565b6109b9565b34801561039b57600080fd5b506102756103aa3660046116da565b6109d1565b3480156103bb57600080fd5b50600c5461021e90610100900460ff1681565b3480156103da57600080fd5b506102a06109dc565b3480156103ef57600080fd5b506102486109f8565b34801561040457600080fd5b506102db6104133660046118d8565b610a86565b34801561042457600080fd5b506102a0610ad5565b34801561043957600080fd5b506008546001600160a01b0316610275565b34801561045757600080fd5b506102a06104663660046116da565b610ae9565b34801561047757600080fd5b50610248610af6565b34801561048c57600080fd5b506102db600b5481565b6102a06104a43660046116da565b610b05565b3480156104b557600080fd5b506102a06104c4366004611903565b610bce565b6102a06104d736600461193c565b610be2565b3480156104e857600080fd5b506102486104f73660046116da565b610c0f565b34801561050857600080fd5b506102a06105173660046119bc565b610c69565b34801561052857600080fd5b506102a0610cfe565b34801561053d57600080fd5b5061021e61054c366004611a28565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506102a0610595366004611a56565b610d23565b3480156105a657600080fd5b506102a06105b53660046118d8565b610d35565b3480156105c657600080fd5b506102db600581565b3480156105db57600080fd5b50600c5461021e9060ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061061a57506380ac58cd60e01b6001600160e01b03198316145b806106355750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461064a90611a7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067690611a7b565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106d882610dab565b6106f5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b8161071b81610de0565b6107258383610e99565b505050565b600c5460ff1661074d57604051630d0ca57160e21b815260040160405180910390fd5b33321461076d57604051636844047f60e01b815260040160405180910390fd5b60015460005482916101bc9103600019018201111561079f57604051632d573a5560e01b815260040160405180910390fd5b60005b8181101561091a57600d60008585848181106107c0576107c0611ab5565b602090810292909201358352508101919091526040016000205460ff1615610820578383828181106107f4576107f4611ab5565b90506020020135604051634d709fb760e11b815260040161081791815260200190565b60405180910390fd5b60095433906001600160a01b0316636352211e86868581811061084557610845611ab5565b905060200201356040518263ffffffff1660e01b815260040161086a91815260200190565b602060405180830381865afa158015610887573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ab9190611acb565b6001600160a01b0316146108d2576040516359dc379f60e01b815260040160405180910390fd5b6001600d60008686858181106108ea576108ea611ab5565b60209081029290920135835250810191909152604001600020805460ff19169115159190911790556001016107a2565b506107253382610ea5565b826001600160a01b038116331461093f5761093f33610de0565b61094a848484610fa3565b50505050565b61095861113c565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610991573d6000803e3d6000fd5b50565b826001600160a01b03811633146109ae576109ae33610de0565b61094a848484611196565b6109c161113c565b600a6109cd8282611b2e565b5050565b6000610635826111b1565b6109e461113c565b600c805460ff19811660ff90911615179055565b600a8054610a0590611a7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3190611a7b565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b505050505081565b60006001600160a01b038216610aaf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610add61113c565b610ae7600061123d565b565b610af161113c565b600b55565b60606003805461064a90611a7b565b600c54610100900460ff16610b2d57604051630d0ca57160e21b815260040160405180910390fd5b333214610b4d57604051636844047f60e01b815260040160405180910390fd5b6005811115610b6f5760405163162908e360e11b815260040160405180910390fd5b6001546000546101bc9190036000190182011115610ba057604051632d573a5560e01b815260040160405180910390fd5b600b5481023414610bc457604051632a9ffab760e21b815260040160405180910390fd5b6109913382610ea5565b81610bd881610de0565b610725838361128f565b836001600160a01b0381163314610bfc57610bfc33610de0565b610c08858585856112fb565b5050505050565b6060610c1a82610dab565b610c375760405163c1ab6dc160e01b815260040160405180910390fd5b600a610c428361133f565b604051602001610c53929190611bee565b6040516020818303038152906040529050919050565b610c7161113c565b828114610c915760405163aa81c86160e01b815260040160405180910390fd5b60005b63ffffffff8116841115610c0857610cf685858363ffffffff16818110610cbd57610cbd611ab5565b9050602002016020810190610cd291906118d8565b84848463ffffffff16818110610cea57610cea611ab5565b90506020020135610ea5565b600101610c94565b610d0661113c565b600c805461ff001981166101009182900460ff1615909102179055565b610d2b61113c565b6109cd8183610ea5565b610d3d61113c565b6001600160a01b038116610da25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b6109918161123d565b600081600111158015610dbf575060005482105b8015610635575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561099157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e719190611c85565b61099157604051633b79c77360e21b81526001600160a01b0382166004820152602401610817565b6109cd828260016113d2565b6000805490829003610eca5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f7957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f41565b5081600003610f9a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000610fae826111b1565b9050836001600160a01b0316816001600160a01b031614610fe15760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761102e57611011863361054c565b61102e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661105557604051633a954ecd60e21b815260040160405180910390fd5b801561106057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036110f2576001840160008181526004602052604081205490036110f05760005481146110f05760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610ae75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610817565b61072583838360405180602001604052806000815250610be2565b600081600111611224575060008181526004602052604081205490600160e01b82169003611224578060000361121f57600054821061120357604051636f96cda160e11b815260040160405180910390fd5b5b50600019016000818152600460205260409020548015611204575b919050565b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611306848484610925565b6001600160a01b0383163b1561094a5761132284848484611479565b61094a576040516368d2bf6b60e11b815260040160405180910390fd5b6060600061134c83611565565b600101905060008167ffffffffffffffff81111561136c5761136c611803565b6040519080825280601f01601f191660200182016040528015611396576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846113a057509392505050565b60006113dd836109d1565b9050811561141c57336001600160a01b0382161461141c576113ff813361054c565b61141c576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114ae903390899088908890600401611ca2565b6020604051808303816000875af19250505080156114e9575060408051601f3d908101601f191682019092526114e691810190611cdf565b60015b611547573d808015611517576040519150601f19603f3d011682016040523d82523d6000602084013e61151c565b606091505b50805160000361153f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106115a45772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106115d0576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106115ee57662386f26fc10000830492506010015b6305f5e1008310611606576305f5e100830492506008015b612710831061161a57612710830492506004015b6064831061162c576064830492506002015b600a83106106355760010192915050565b6001600160e01b03198116811461099157600080fd5b60006020828403121561166557600080fd5b81356116708161163d565b9392505050565b60005b8381101561169257818101518382015260200161167a565b50506000910152565b600081518084526116b3816020860160208601611677565b601f01601f19169290920160200192915050565b602081526000611670602083018461169b565b6000602082840312156116ec57600080fd5b5035919050565b6001600160a01b038116811461099157600080fd5b6000806040838503121561171b57600080fd5b8235611726816116f3565b946020939093013593505050565b60008083601f84011261174657600080fd5b50813567ffffffffffffffff81111561175e57600080fd5b6020830191508360208260051b850101111561177957600080fd5b9250929050565b6000806020838503121561179357600080fd5b823567ffffffffffffffff8111156117aa57600080fd5b6117b685828601611734565b90969095509350505050565b6000806000606084860312156117d757600080fd5b83356117e2816116f3565b925060208401356117f2816116f3565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561183457611834611803565b604051601f8501601f19908116603f0116810190828211818310171561185c5761185c611803565b8160405280935085815286868601111561187557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118a157600080fd5b813567ffffffffffffffff8111156118b857600080fd5b8201601f810184136118c957600080fd5b61155d84823560208401611819565b6000602082840312156118ea57600080fd5b8135611670816116f3565b801515811461099157600080fd5b6000806040838503121561191657600080fd5b8235611921816116f3565b91506020830135611931816118f5565b809150509250929050565b6000806000806080858703121561195257600080fd5b843561195d816116f3565b9350602085013561196d816116f3565b925060408501359150606085013567ffffffffffffffff81111561199057600080fd5b8501601f810187136119a157600080fd5b6119b087823560208401611819565b91505092959194509250565b600080600080604085870312156119d257600080fd5b843567ffffffffffffffff808211156119ea57600080fd5b6119f688838901611734565b90965094506020870135915080821115611a0f57600080fd5b50611a1c87828801611734565b95989497509550505050565b60008060408385031215611a3b57600080fd5b8235611a46816116f3565b91506020830135611931816116f3565b60008060408385031215611a6957600080fd5b823591506020830135611931816116f3565b600181811c90821680611a8f57607f821691505b602082108103611aaf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611add57600080fd5b8151611670816116f3565b601f82111561072557600081815260208120601f850160051c81016020861015611b0f5750805b601f850160051c820191505b8181101561113457828155600101611b1b565b815167ffffffffffffffff811115611b4857611b48611803565b611b5c81611b568454611a7b565b84611ae8565b602080601f831160018114611b915760008415611b795750858301515b600019600386901b1c1916600185901b178555611134565b600085815260208120601f198616915b82811015611bc057888601518255948401946001909101908401611ba1565b5085821015611bde5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808454611bfc81611a7b565b60018281168015611c145760018114611c2957611c58565b60ff1984168752821515830287019450611c58565b8860005260208060002060005b85811015611c4f5781548a820152908401908201611c36565b50505082870194505b505050508351611c6c818360208801611677565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215611c9757600080fd5b8151611670816118f5565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cd59083018461169b565b9695505050505050565b600060208284031215611cf157600080fd5b81516116708161163d56fea264697066735822122010d4270e2ad5808ed0c185710f8b3d46264b5b2ae7d17e783fdc543966a877d564736f6c63430008110033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000e5b83eff7ee203134302163ea302a5e8fd12da60
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806370a082311161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610531578063efbd73f41461057a578063f2fde38b1461059a578063f43a22dc146105ba578063fd8b262d146105cf57600080fd5b8063b88d4fde146104c9578063c87b56dd146104dc578063de53f38a146104fc578063de8b51e11461051c57600080fd5b806395d89b41116100dc57806395d89b411461046b578063a035b1fe14610480578063a0712d6814610496578063a22cb465146104a957600080fd5b806370a08231146103f8578063715018a6146104185780638da5cb5b1461042d57806391b7f5ed1461044b57600080fd5b806332cb6b0c1161019057806355f804b31161015f57806355f804b31461036f5780636352211e1461038f57806368428a1b146103af5780636ba351ef146103ce5780636c0360eb146103e357600080fd5b806332cb6b0c1461030f5780633ccfd60b1461032557806341f434341461033a57806342842e0e1461035c57600080fd5b8063148b5589116101cc578063148b5589146102a257806318160ddd146102c257806318ff321b146102e957806323b872dd146102fc57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611653565b6105e9565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861063b565b60405161022a91906116c7565b34801561026157600080fd5b506102756102703660046116da565b6106cd565b6040516001600160a01b03909116815260200161022a565b6102a061029b366004611708565b610711565b005b3480156102ae57600080fd5b50600954610275906001600160a01b031681565b3480156102ce57600080fd5b5060015460005403600019015b60405190815260200161022a565b6102a06102f7366004611780565b61072a565b6102a061030a3660046117c2565b610925565b34801561031b57600080fd5b506102db6101bc81565b34801561033157600080fd5b506102a0610950565b34801561034657600080fd5b506102756daaeb6d7670e522a718067333cd4e81565b6102a061036a3660046117c2565b610994565b34801561037b57600080fd5b506102a061038a36600461188f565b6109b9565b34801561039b57600080fd5b506102756103aa3660046116da565b6109d1565b3480156103bb57600080fd5b50600c5461021e90610100900460ff1681565b3480156103da57600080fd5b506102a06109dc565b3480156103ef57600080fd5b506102486109f8565b34801561040457600080fd5b506102db6104133660046118d8565b610a86565b34801561042457600080fd5b506102a0610ad5565b34801561043957600080fd5b506008546001600160a01b0316610275565b34801561045757600080fd5b506102a06104663660046116da565b610ae9565b34801561047757600080fd5b50610248610af6565b34801561048c57600080fd5b506102db600b5481565b6102a06104a43660046116da565b610b05565b3480156104b557600080fd5b506102a06104c4366004611903565b610bce565b6102a06104d736600461193c565b610be2565b3480156104e857600080fd5b506102486104f73660046116da565b610c0f565b34801561050857600080fd5b506102a06105173660046119bc565b610c69565b34801561052857600080fd5b506102a0610cfe565b34801561053d57600080fd5b5061021e61054c366004611a28565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058657600080fd5b506102a0610595366004611a56565b610d23565b3480156105a657600080fd5b506102a06105b53660046118d8565b610d35565b3480156105c657600080fd5b506102db600581565b3480156105db57600080fd5b50600c5461021e9060ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061061a57506380ac58cd60e01b6001600160e01b03198316145b806106355750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461064a90611a7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067690611a7b565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106d882610dab565b6106f5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b8161071b81610de0565b6107258383610e99565b505050565b600c5460ff1661074d57604051630d0ca57160e21b815260040160405180910390fd5b33321461076d57604051636844047f60e01b815260040160405180910390fd5b60015460005482916101bc9103600019018201111561079f57604051632d573a5560e01b815260040160405180910390fd5b60005b8181101561091a57600d60008585848181106107c0576107c0611ab5565b602090810292909201358352508101919091526040016000205460ff1615610820578383828181106107f4576107f4611ab5565b90506020020135604051634d709fb760e11b815260040161081791815260200190565b60405180910390fd5b60095433906001600160a01b0316636352211e86868581811061084557610845611ab5565b905060200201356040518263ffffffff1660e01b815260040161086a91815260200190565b602060405180830381865afa158015610887573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ab9190611acb565b6001600160a01b0316146108d2576040516359dc379f60e01b815260040160405180910390fd5b6001600d60008686858181106108ea576108ea611ab5565b60209081029290920135835250810191909152604001600020805460ff19169115159190911790556001016107a2565b506107253382610ea5565b826001600160a01b038116331461093f5761093f33610de0565b61094a848484610fa3565b50505050565b61095861113c565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610991573d6000803e3d6000fd5b50565b826001600160a01b03811633146109ae576109ae33610de0565b61094a848484611196565b6109c161113c565b600a6109cd8282611b2e565b5050565b6000610635826111b1565b6109e461113c565b600c805460ff19811660ff90911615179055565b600a8054610a0590611a7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3190611a7b565b8015610a7e5780601f10610a5357610100808354040283529160200191610a7e565b820191906000526020600020905b815481529060010190602001808311610a6157829003601f168201915b505050505081565b60006001600160a01b038216610aaf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610add61113c565b610ae7600061123d565b565b610af161113c565b600b55565b60606003805461064a90611a7b565b600c54610100900460ff16610b2d57604051630d0ca57160e21b815260040160405180910390fd5b333214610b4d57604051636844047f60e01b815260040160405180910390fd5b6005811115610b6f5760405163162908e360e11b815260040160405180910390fd5b6001546000546101bc9190036000190182011115610ba057604051632d573a5560e01b815260040160405180910390fd5b600b5481023414610bc457604051632a9ffab760e21b815260040160405180910390fd5b6109913382610ea5565b81610bd881610de0565b610725838361128f565b836001600160a01b0381163314610bfc57610bfc33610de0565b610c08858585856112fb565b5050505050565b6060610c1a82610dab565b610c375760405163c1ab6dc160e01b815260040160405180910390fd5b600a610c428361133f565b604051602001610c53929190611bee565b6040516020818303038152906040529050919050565b610c7161113c565b828114610c915760405163aa81c86160e01b815260040160405180910390fd5b60005b63ffffffff8116841115610c0857610cf685858363ffffffff16818110610cbd57610cbd611ab5565b9050602002016020810190610cd291906118d8565b84848463ffffffff16818110610cea57610cea611ab5565b90506020020135610ea5565b600101610c94565b610d0661113c565b600c805461ff001981166101009182900460ff1615909102179055565b610d2b61113c565b6109cd8183610ea5565b610d3d61113c565b6001600160a01b038116610da25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b6109918161123d565b600081600111158015610dbf575060005482105b8015610635575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561099157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e719190611c85565b61099157604051633b79c77360e21b81526001600160a01b0382166004820152602401610817565b6109cd828260016113d2565b6000805490829003610eca5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f7957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f41565b5081600003610f9a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000610fae826111b1565b9050836001600160a01b0316816001600160a01b031614610fe15760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761102e57611011863361054c565b61102e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661105557604051633a954ecd60e21b815260040160405180910390fd5b801561106057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036110f2576001840160008181526004602052604081205490036110f05760005481146110f05760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610ae75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610817565b61072583838360405180602001604052806000815250610be2565b600081600111611224575060008181526004602052604081205490600160e01b82169003611224578060000361121f57600054821061120357604051636f96cda160e11b815260040160405180910390fd5b5b50600019016000818152600460205260409020548015611204575b919050565b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611306848484610925565b6001600160a01b0383163b1561094a5761132284848484611479565b61094a576040516368d2bf6b60e11b815260040160405180910390fd5b6060600061134c83611565565b600101905060008167ffffffffffffffff81111561136c5761136c611803565b6040519080825280601f01601f191660200182016040528015611396576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846113a057509392505050565b60006113dd836109d1565b9050811561141c57336001600160a01b0382161461141c576113ff813361054c565b61141c576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114ae903390899088908890600401611ca2565b6020604051808303816000875af19250505080156114e9575060408051601f3d908101601f191682019092526114e691810190611cdf565b60015b611547573d808015611517576040519150601f19603f3d011682016040523d82523d6000602084013e61151c565b606091505b50805160000361153f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106115a45772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106115d0576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106115ee57662386f26fc10000830492506010015b6305f5e1008310611606576305f5e100830492506008015b612710831061161a57612710830492506004015b6064831061162c576064830492506002015b600a83106106355760010192915050565b6001600160e01b03198116811461099157600080fd5b60006020828403121561166557600080fd5b81356116708161163d565b9392505050565b60005b8381101561169257818101518382015260200161167a565b50506000910152565b600081518084526116b3816020860160208601611677565b601f01601f19169290920160200192915050565b602081526000611670602083018461169b565b6000602082840312156116ec57600080fd5b5035919050565b6001600160a01b038116811461099157600080fd5b6000806040838503121561171b57600080fd5b8235611726816116f3565b946020939093013593505050565b60008083601f84011261174657600080fd5b50813567ffffffffffffffff81111561175e57600080fd5b6020830191508360208260051b850101111561177957600080fd5b9250929050565b6000806020838503121561179357600080fd5b823567ffffffffffffffff8111156117aa57600080fd5b6117b685828601611734565b90969095509350505050565b6000806000606084860312156117d757600080fd5b83356117e2816116f3565b925060208401356117f2816116f3565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561183457611834611803565b604051601f8501601f19908116603f0116810190828211818310171561185c5761185c611803565b8160405280935085815286868601111561187557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118a157600080fd5b813567ffffffffffffffff8111156118b857600080fd5b8201601f810184136118c957600080fd5b61155d84823560208401611819565b6000602082840312156118ea57600080fd5b8135611670816116f3565b801515811461099157600080fd5b6000806040838503121561191657600080fd5b8235611921816116f3565b91506020830135611931816118f5565b809150509250929050565b6000806000806080858703121561195257600080fd5b843561195d816116f3565b9350602085013561196d816116f3565b925060408501359150606085013567ffffffffffffffff81111561199057600080fd5b8501601f810187136119a157600080fd5b6119b087823560208401611819565b91505092959194509250565b600080600080604085870312156119d257600080fd5b843567ffffffffffffffff808211156119ea57600080fd5b6119f688838901611734565b90965094506020870135915080821115611a0f57600080fd5b50611a1c87828801611734565b95989497509550505050565b60008060408385031215611a3b57600080fd5b8235611a46816116f3565b91506020830135611931816116f3565b60008060408385031215611a6957600080fd5b823591506020830135611931816116f3565b600181811c90821680611a8f57607f821691505b602082108103611aaf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611add57600080fd5b8151611670816116f3565b601f82111561072557600081815260208120601f850160051c81016020861015611b0f5750805b601f850160051c820191505b8181101561113457828155600101611b1b565b815167ffffffffffffffff811115611b4857611b48611803565b611b5c81611b568454611a7b565b84611ae8565b602080601f831160018114611b915760008415611b795750858301515b600019600386901b1c1916600185901b178555611134565b600085815260208120601f198616915b82811015611bc057888601518255948401946001909101908401611ba1565b5085821015611bde5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808454611bfc81611a7b565b60018281168015611c145760018114611c2957611c58565b60ff1984168752821515830287019450611c58565b8860005260208060002060005b85811015611c4f5781548a820152908401908201611c36565b50505082870194505b505050508351611c6c818360208801611677565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215611c9757600080fd5b8151611670816118f5565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cd59083018461169b565b9695505050505050565b600060208284031215611cf157600080fd5b81516116708161163d56fea264697066735822122010d4270e2ad5808ed0c185710f8b3d46264b5b2ae7d17e783fdc543966a877d564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e5b83eff7ee203134302163ea302a5e8fd12da60
-----Decoded View---------------
Arg [0] : anEndAddress (address): 0xe5B83eff7EE203134302163EA302A5e8fD12Da60
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e5b83eff7ee203134302163ea302a5e8fd12da60
Deployed Bytecode Sourcemap
77378:4093:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24074:639;;;;;;;;;;-1:-1:-1;24074:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24074:639:0;;;;;;;;24976:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31376:218::-;;;;;;;;;;-1:-1:-1;31376:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;31376:218:0;1533:203:1;80754:159:0;;;;;;:::i;:::-;;:::i;:::-;;77744:21;;;;;;;;;;-1:-1:-1;77744:21:0;;;;-1:-1:-1;;;;;77744:21:0;;;20727:323;;;;;;;;;;-1:-1:-1;79849:1:0;21001:12;20788:7;20985:13;:28;-1:-1:-1;;20985:46:0;20727:323;;;2567:25:1;;;2555:2;2540:18;20727:323:0;2421:177:1;78207:668:0;;;;;;:::i;:::-;;:::i;80919:165::-;;;;;;:::i;:::-;;:::i;77839:40::-;;;;;;;;;;;;77876:3;77839:40;;80136:100;;;;;;;;;;;;;:::i;3048:143::-;;;;;;;;;;;;3148:42;3048:143;;81090:173;;;;;;:::i;:::-;;:::i;80242:100::-;;;;;;;;;;-1:-1:-1;80242:100:0;;;;;:::i;:::-;;:::i;26369:152::-;;;;;;;;;;-1:-1:-1;26369:152:0;;;;;:::i;:::-;;:::i;77970:30::-;;;;;;;;;;-1:-1:-1;77970:30:0;;;;;;;;;;;79950:94;;;;;;;;;;;;;:::i;77772:21::-;;;;;;;;;;;;;:::i;21911:233::-;;;;;;;;;;-1:-1:-1;21911:233:0;;;;;:::i;:::-;;:::i;61194:103::-;;;;;;;;;;;;;:::i;60546:87::-;;;;;;;;;;-1:-1:-1;60619:6:0;;-1:-1:-1;;;;;60619:6:0;60546:87;;80050:80;;;;;;;;;;-1:-1:-1;80050:80:0;;;;;:::i;:::-;;:::i;25152:104::-;;;;;;;;;;;;;:::i;77800:34::-;;;;;;;;;;;;;;;;78881:425;;;;;;:::i;:::-;;:::i;80578:170::-;;;;;;;;;;-1:-1:-1;80578:170:0;;;;;:::i;:::-;;:::i;81269:197::-;;;;;;:::i;:::-;;:::i;80348:224::-;;;;;;;;;;-1:-1:-1;80348:224:0;;;;;:::i;:::-;;:::i;79431:324::-;;;;;;;;;;-1:-1:-1;79431:324:0;;;;;:::i;:::-;;:::i;79862:82::-;;;;;;;;;;;;;:::i;32325:164::-;;;;;;;;;;-1:-1:-1;32325:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32446:25:0;;;32422:4;32446:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32325:164;79312:113;;;;;;;;;;-1:-1:-1;79312:113:0;;;;;:::i;:::-;;:::i;61452:201::-;;;;;;;;;;-1:-1:-1;61452:201:0;;;;;:::i;:::-;;:::i;77884:38::-;;;;;;;;;;;;77921:1;77884:38;;77929:36;;;;;;;;;;-1:-1:-1;77929:36:0;;;;;;;;24074:639;24159:4;-1:-1:-1;;;;;;;;;24483:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;24560:25:0;;;24483:102;:179;;;-1:-1:-1;;;;;;;;;;24637:25:0;;;24483:179;24463:199;24074:639;-1:-1:-1;;24074:639:0:o;24976:100::-;25030:13;25063:5;25056:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24976:100;:::o;31376:218::-;31452:7;31477:16;31485:7;31477;:16::i;:::-;31472:64;;31502:34;;-1:-1:-1;;;31502:34:0;;;;;;;;;;;31472:64;-1:-1:-1;31556:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;31556:30:0;;31376:218::o;80754:159::-;80858:8;4569:30;4590:8;4569:20;:30::i;:::-;80875:32:::1;80889:8;80899:7;80875:13;:32::i;:::-;80754:159:::0;;;:::o;78207:668::-;78292:16;;;;78287:44;;78317:14;;-1:-1:-1;;;78317:14:0;;;;;;;;;;;78287:44;78342:10;78356:9;78342:23;78338:52;;78374:16;;-1:-1:-1;;;78374:16:0;;;;;;;;;;;78338:52;79849:1;21001:12;20788:7;20985:13;78414:17;;77876:3;;20985:28;-1:-1:-1;;20985:46:0;78468:6;:22;:35;78464:63;;;78512:15;;-1:-1:-1;;;78512:15:0;;;;;;;;;;;78464:63;78541:9;78536:295;78560:6;78556:1;:10;78536:295;;;78588:19;:41;78608:17;;78626:1;78608:20;;;;;;;:::i;:::-;;;;;;;;;;78588:41;;-1:-1:-1;78588:41:0;;;;;;;;-1:-1:-1;78588:41:0;;;;78584:90;;;78653:17;;78671:1;78653:20;;;;;;;:::i;:::-;;;;;;;78638:36;;-1:-1:-1;;;78638:36:0;;;;;;2567:25:1;;2555:2;2540:18;;2421:177;78638:36:0;;;;;;;;78584:90;78689:5;;78728:10;;-1:-1:-1;;;;;78689:5:0;:13;78703:17;;78721:1;78703:20;;;;;;;:::i;:::-;;;;;;;78689:35;;;;;;;;;;;;;2567:25:1;;2555:2;2540:18;;2421:177;78689:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;78689:49:0;;78685:77;;78747:15;;-1:-1:-1;;;78747:15:0;;;;;;;;;;;78685:77;78817:4;78773:19;:41;78793:17;;78811:1;78793:20;;;;;;;:::i;:::-;;;;;;;;;;78773:41;;-1:-1:-1;78773:41:0;;;;;;;;-1:-1:-1;78773:41:0;:48;;-1:-1:-1;;78773:48:0;;;;;;;;;;-1:-1:-1;78568:3:0;78536:295;;;;78844:25;78850:10;78862:6;78844:5;:25::i;80919:165::-;81028:4;-1:-1:-1;;;;;4389:18:0;;4397:10;4389:18;4385:83;;4424:32;4445:10;4424:20;:32::i;:::-;81041:37:::1;81060:4;81066:2;81070:7;81041:18;:37::i;:::-;80919:165:::0;;;;:::o;80136:100::-;60432:13;:11;:13::i;:::-;60619:6;;80182:48:::1;::::0;-1:-1:-1;;;;;60619:6:0;;;;80208:21:::1;80182:48:::0;::::1;;;::::0;::::1;::::0;;;80208:21;60619:6;80182:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;80136:100::o:0;81090:173::-;81203:4;-1:-1:-1;;;;;4389:18:0;;4397:10;4389:18;4385:83;;4424:32;4445:10;4424:20;:32::i;:::-;81216:41:::1;81239:4;81245:2;81249:7;81216:22;:41::i;80242:100::-:0;60432:13;:11;:13::i;:::-;80315:7:::1;:21;80325:11:::0;80315:7;:21:::1;:::i;:::-;;80242:100:::0;:::o;26369:152::-;26441:7;26484:27;26503:7;26484:18;:27::i;79950:94::-;60432:13;:11;:13::i;:::-;80022:16:::1;::::0;;-1:-1:-1;;80002:36:0;::::1;80022:16;::::0;;::::1;80021:17;80002:36;::::0;;79950:94::o;77772:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21911:233::-;21983:7;-1:-1:-1;;;;;22007:19:0;;22003:60;;22035:28;;-1:-1:-1;;;22035:28:0;;;;;;;;;;;22003:60;-1:-1:-1;;;;;;22081:25:0;;;;;:18;:25;;;;;;16070:13;22081:55;;21911:233::o;61194:103::-;60432:13;:11;:13::i;:::-;61259:30:::1;61286:1;61259:18;:30::i;:::-;61194:103::o:0;80050:80::-;60432:13;:11;:13::i;:::-;80110:5:::1;:14:::0;80050:80::o;25152:104::-;25208:13;25241:7;25234:14;;;;;:::i;78881:425::-;78943:10;;;;;;;78938:38;;78962:14;;-1:-1:-1;;;78962:14:0;;;;;;;;;;;78938:38;78987:10;79001:9;78987:23;78983:52;;79019:16;;-1:-1:-1;;;79019:16:0;;;;;;;;;;;78983:52;77921:1;79046:11;:24;79042:52;;;79079:15;;-1:-1:-1;;;79079:15:0;;;;;;;;;;;79042:52;79849:1;21001:12;20788:7;20985:13;77876:3;;20985:28;;-1:-1:-1;;20985:46:0;79124:11;:27;:40;79120:68;;;79173:15;;-1:-1:-1;;;79173:15:0;;;;;;;;;;;79120:68;79228:5;;79214:11;:19;79201:9;:32;79197:59;;79242:14;;-1:-1:-1;;;79242:14:0;;;;;;;;;;;79197:59;79270:30;79276:10;79288:11;79270:5;:30::i;80578:170::-;80682:8;4569:30;4590:8;4569:20;:30::i;:::-;80699:43:::1;80723:8;80733;80699:23;:43::i;81269:197::-:0;81401:4;-1:-1:-1;;;;;4389:18:0;;4397:10;4389:18;4385:83;;4424:32;4445:10;4424:20;:32::i;:::-;81413:47:::1;81436:4;81442:2;81446:7;81455:4;81413:22;:47::i;:::-;81269:197:::0;;;;;:::o;80348:224::-;80422:13;80449:17;80457:8;80449:7;:17::i;:::-;80444:45;;80475:14;;-1:-1:-1;;;80475:14:0;;;;;;;;;;;80444:45;80527:7;80536:19;:8;:17;:19::i;:::-;80510:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80496:70;;80348:224;;;:::o;79431:324::-;60432:13;:11;:13::i;:::-;79552:36;;::::1;79548:68;;79597:19;;-1:-1:-1::0;;;79597:19:0::1;;;;;;;;;;;79548:68;79647:8;79642:101;79661:21;::::0;::::1;::::0;-1:-1:-1;79642:101:0::1;;;79700:33;79706:10;;79717:1;79706:13;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;79721:8;;79730:1;79721:11;;;;;;;;;:::i;:::-;;;;;;;79700:5;:33::i;:::-;79684:3;;79642:101;;79862:82:::0;60432:13;:11;:13::i;:::-;79928:10:::1;::::0;;-1:-1:-1;;79914:24:0;::::1;79928:10;::::0;;;::::1;;;79927:11;79914:24:::0;;::::1;;::::0;;79862:82::o;79312:113::-;60432:13;:11;:13::i;:::-;79396:23:::1;79402:3;79407:11;79396:5;:23::i;61452:201::-:0;60432:13;:11;:13::i;:::-;-1:-1:-1;;;;;61541:22:0;::::1;61533:73;;;::::0;-1:-1:-1;;;61533:73:0;;12766:2:1;61533:73:0::1;::::0;::::1;12748:21:1::0;12805:2;12785:18;;;12778:30;12844:34;12824:18;;;12817:62;-1:-1:-1;;;12895:18:1;;;12888:36;12941:19;;61533:73:0::1;12564:402:1::0;61533:73:0::1;61617:28;61636:8;61617:18;:28::i;32747:282::-:0;32812:4;32868:7;79849:1;32849:26;;:66;;;;;32902:13;;32892:7;:23;32849:66;:153;;;;-1:-1:-1;;32953:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;32953:44:0;:49;;32747:282::o;4627:419::-;3148:42;4818:45;:49;4814:225;;4889:67;;-1:-1:-1;;;4889:67:0;;4940:4;4889:67;;;13183:34:1;-1:-1:-1;;;;;13253:15:1;;13233:18;;;13226:43;3148:42:0;;4889;;13118:18:1;;4889:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4884:144;;4984:28;;-1:-1:-1;;;4984:28:0;;-1:-1:-1;;;;;1697:32:1;;4984:28:0;;;1679:51:1;1652:18;;4984:28:0;1533:203:1;31093:124:0;31182:27;31191:2;31195:7;31204:4;31182:8;:27::i;42396:2966::-;42469:20;42492:13;;;42520;;;42516:44;;42542:18;;-1:-1:-1;;;42542:18:0;;;;;;;;;;;42516:44;-1:-1:-1;;;;;43048:22:0;;;;;;:18;:22;;;;16208:2;43048:22;;;:71;;43086:32;43074:45;;43048:71;;;43362:31;;;:17;:31;;;;;-1:-1:-1;30626:15:0;;30600:24;30596:46;30195:11;30170:23;30166:41;30163:52;30153:63;;43362:173;;43597:23;;;;43362:31;;43048:22;;44362:25;43048:22;;44215:335;44876:1;44862:12;44858:20;44816:346;44917:3;44908:7;44905:16;44816:346;;45135:7;45125:8;45122:1;45095:25;45092:1;45089;45084:59;44970:1;44957:15;44816:346;;;44820:77;45195:8;45207:1;45195:13;45191:45;;45217:19;;-1:-1:-1;;;45217:19:0;;;;;;;;;;;45191:45;45253:13;:19;-1:-1:-1;80754:159:0;;;:::o;35015:2825::-;35157:27;35187;35206:7;35187:18;:27::i;:::-;35157:57;;35272:4;-1:-1:-1;;;;;35231:45:0;35247:19;-1:-1:-1;;;;;35231:45:0;;35227:86;;35285:28;;-1:-1:-1;;;35285:28:0;;;;;;;;;;;35227:86;35327:27;34123:24;;;:15;:24;;;;;34351:26;;56440:10;33748:30;;;-1:-1:-1;;;;;33441:28:0;;33726:20;;;33723:56;35513:180;;35606:43;35623:4;56440:10;32325:164;:::i;35606:43::-;35601:92;;35658:35;;-1:-1:-1;;;35658:35:0;;;;;;;;;;;35601:92;-1:-1:-1;;;;;35710:16:0;;35706:52;;35735:23;;-1:-1:-1;;;35735:23:0;;;;;;;;;;;35706:52;35907:15;35904:160;;;36047:1;36026:19;36019:30;35904:160;-1:-1:-1;;;;;36444:24:0;;;;;;;:18;:24;;;;;;36442:26;;-1:-1:-1;;36442:26:0;;;36513:22;;;;;;;;;36511:24;;-1:-1:-1;36511:24:0;;;30195:11;30170:23;30166:41;30153:63;-1:-1:-1;;;30153:63:0;36806:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;37101:47:0;;:52;;37097:627;;37206:1;37196:11;;37174:19;37329:30;;;:17;:30;;;;;;:35;;37325:384;;37467:13;;37452:11;:28;37448:242;;37614:30;;;;:17;:30;;;;;:52;;;37448:242;37155:569;37097:627;37771:7;37767:2;-1:-1:-1;;;;;37752:27:0;37761:4;-1:-1:-1;;;;;37752:27:0;;;;;;;;;;;37790:42;35146:2694;;;35015:2825;;;:::o;60711:132::-;60619:6;;-1:-1:-1;;;;;60619:6:0;56440:10;60775:23;60767:68;;;;-1:-1:-1;;;60767:68:0;;13732:2:1;60767:68:0;;;13714:21:1;;;13751:18;;;13744:30;13810:34;13790:18;;;13783:62;13862:18;;60767:68:0;13530:356:1;37936:193:0;38082:39;38099:4;38105:2;38109:7;38082:39;;;;;;;;;;;;:16;:39::i;27524:1712::-;27591:14;27641:7;79849:1;27622:26;27618:1562;;-1:-1:-1;27674:26:0;;;;:17;:26;;;;;;;-1:-1:-1;;;27750:24:0;;:29;;27746:1423;;27889:6;27899:1;27889:11;27885:981;;27940:13;;27929:7;:24;27925:68;;27962:31;;-1:-1:-1;;;27962:31:0;;;;;;;;;;;27925:68;28590:257;-1:-1:-1;;;28694:9:0;28676:28;;;;:17;:28;;;;;;28758:25;;28590:257;28758:25;;27524:1712;;;:::o;27746:1423::-;29197:31;;-1:-1:-1;;;29197:31:0;;;;;;;;;;;61813:191;61906:6;;;-1:-1:-1;;;;;61923:17:0;;;-1:-1:-1;;;;;;61923:17:0;;;;;;;61956:40;;61906:6;;;61923:17;61906:6;;61956:40;;61887:16;;61956:40;61876:128;61813:191;:::o;31934:234::-;56440:10;32029:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32029:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32029:60:0;;;;;;;;;;32105:55;;540:41:1;;;32029:49:0;;56440:10;32105:55;;513:18:1;32105:55:0;;;;;;;31934:234;;:::o;38727:407::-;38902:31;38915:4;38921:2;38925:7;38902:12;:31::i;:::-;-1:-1:-1;;;;;38948:14:0;;;:19;38944:183;;38987:56;39018:4;39024:2;39028:7;39037:5;38987:30;:56::i;:::-;38982:145;;39071:40;;-1:-1:-1;;;39071:40:0;;;;;;;;;;;75422:716;75478:13;75529:14;75546:17;75557:5;75546:10;:17::i;:::-;75566:1;75546:21;75529:38;;75582:20;75616:6;75605:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75605:18:0;-1:-1:-1;75582:41:0;-1:-1:-1;75747:28:0;;;75763:2;75747:28;75804:288;-1:-1:-1;;75836:5:0;-1:-1:-1;;;75973:2:0;75962:14;;75957:30;75836:5;75944:44;76034:2;76025:11;;;-1:-1:-1;76055:21:0;75804:288;76055:21;-1:-1:-1;76113:6:0;75422:716;-1:-1:-1;;;75422:716:0:o;49805:492::-;49934:13;49950:16;49958:7;49950;:16::i;:::-;49934:32;;49983:13;49979:219;;;56440:10;-1:-1:-1;;;;;50015:28:0;;;50011:187;;50067:44;50084:5;56440:10;32325:164;:::i;50067:44::-;50062:136;;50143:35;;-1:-1:-1;;;50143:35:0;;;;;;;;;;;50062:136;50210:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;50210:35:0;-1:-1:-1;;;;;50210:35:0;;;;;;;;;50261:28;;50210:24;;50261:28;;;;;;;49923:374;49805:492;;;:::o;41218:716::-;41402:88;;-1:-1:-1;;;41402:88:0;;41381:4;;-1:-1:-1;;;;;41402:45:0;;;;;:88;;56440:10;;41469:4;;41475:7;;41484:5;;41402:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41402:88:0;;;;;;;;-1:-1:-1;;41402:88:0;;;;;;;;;;;;:::i;:::-;;;41398:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41685:6;:13;41702:1;41685:18;41681:235;;41731:40;;-1:-1:-1;;;41731:40:0;;;;;;;;;;;41681:235;41874:6;41868:13;41859:6;41855:2;41851:15;41844:38;41398:529;-1:-1:-1;;;;;;41561:64:0;-1:-1:-1;;;41561:64:0;;-1:-1:-1;41398:529:0;41218:716;;;;;;:::o;72235:922::-;72288:7;;-1:-1:-1;;;72366:15:0;;72362:102;;-1:-1:-1;;;72402:15:0;;;-1:-1:-1;72446:2:0;72436:12;72362:102;72491:6;72482:5;:15;72478:102;;72527:6;72518:15;;;-1:-1:-1;72562:2:0;72552:12;72478:102;72607:6;72598:5;:15;72594:102;;72643:6;72634:15;;;-1:-1:-1;72678:2:0;72668:12;72594:102;72723:5;72714;:14;72710:99;;72758:5;72749:14;;;-1:-1:-1;72792:1:0;72782:11;72710:99;72836:5;72827;:14;72823:99;;72871:5;72862:14;;;-1:-1:-1;72905:1:0;72895:11;72823:99;72949:5;72940;:14;72936:99;;72984:5;72975:14;;;-1:-1:-1;73018:1:0;73008:11;72936:99;73062:5;73053;:14;73049:66;;73098:1;73088:11;73143:6;72235:922;-1:-1:-1;;72235:922:0: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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:131::-;-1:-1:-1;;;;;1816:31:1;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:1:o;2603:367::-;2666:8;2676:6;2730:3;2723:4;2715:6;2711:17;2707:27;2697:55;;2748:1;2745;2738:12;2697:55;-1:-1:-1;2771:20:1;;2814:18;2803:30;;2800:50;;;2846:1;2843;2836:12;2800:50;2883:4;2875:6;2871:17;2859:29;;2943:3;2936:4;2926:6;2923:1;2919:14;2911:6;2907:27;2903:38;2900:47;2897:67;;;2960:1;2957;2950:12;2897:67;2603:367;;;;;:::o;2975:437::-;3061:6;3069;3122:2;3110:9;3101:7;3097:23;3093:32;3090:52;;;3138:1;3135;3128:12;3090:52;3178:9;3165:23;3211:18;3203:6;3200:30;3197:50;;;3243:1;3240;3233:12;3197:50;3282:70;3344:7;3335:6;3324:9;3320:22;3282:70;:::i;:::-;3371:8;;3256:96;;-1:-1:-1;2975:437:1;-1:-1:-1;;;;2975:437:1:o;3417:456::-;3494:6;3502;3510;3563:2;3551:9;3542:7;3538:23;3534:32;3531:52;;;3579:1;3576;3569:12;3531:52;3618:9;3605:23;3637:31;3662:5;3637:31;:::i;:::-;3687:5;-1:-1:-1;3744:2:1;3729:18;;3716:32;3757:33;3716:32;3757:33;:::i;:::-;3417:456;;3809:7;;-1:-1:-1;;;3863:2:1;3848:18;;;;3835:32;;3417:456::o;4117:127::-;4178:10;4173:3;4169:20;4166:1;4159:31;4209:4;4206:1;4199:15;4233:4;4230:1;4223:15;4249:632;4314:5;4344:18;4385:2;4377:6;4374:14;4371:40;;;4391:18;;:::i;:::-;4466:2;4460:9;4434:2;4520:15;;-1:-1:-1;;4516:24:1;;;4542:2;4512:33;4508:42;4496:55;;;4566:18;;;4586:22;;;4563:46;4560:72;;;4612:18;;:::i;:::-;4652:10;4648:2;4641:22;4681:6;4672:15;;4711:6;4703;4696:22;4751:3;4742:6;4737:3;4733:16;4730:25;4727:45;;;4768:1;4765;4758:12;4727:45;4818:6;4813:3;4806:4;4798:6;4794:17;4781:44;4873:1;4866:4;4857:6;4849;4845:19;4841:30;4834:41;;;;4249:632;;;;;:::o;4886:451::-;4955:6;5008:2;4996:9;4987:7;4983:23;4979:32;4976:52;;;5024:1;5021;5014:12;4976:52;5064:9;5051:23;5097:18;5089:6;5086:30;5083:50;;;5129:1;5126;5119:12;5083:50;5152:22;;5205:4;5197:13;;5193:27;-1:-1:-1;5183:55:1;;5234:1;5231;5224:12;5183:55;5257:74;5323:7;5318:2;5305:16;5300:2;5296;5292:11;5257:74;:::i;5342:247::-;5401:6;5454:2;5442:9;5433:7;5429:23;5425:32;5422:52;;;5470:1;5467;5460:12;5422:52;5509:9;5496:23;5528:31;5553:5;5528:31;:::i;5594:118::-;5680:5;5673:13;5666:21;5659:5;5656:32;5646:60;;5702:1;5699;5692:12;5717:382;5782:6;5790;5843:2;5831:9;5822:7;5818:23;5814:32;5811:52;;;5859:1;5856;5849:12;5811:52;5898:9;5885:23;5917:31;5942:5;5917:31;:::i;:::-;5967:5;-1:-1:-1;6024:2:1;6009:18;;5996:32;6037:30;5996:32;6037:30;:::i;:::-;6086:7;6076:17;;;5717:382;;;;;:::o;6104:795::-;6199:6;6207;6215;6223;6276:3;6264:9;6255:7;6251:23;6247:33;6244:53;;;6293:1;6290;6283:12;6244:53;6332:9;6319:23;6351:31;6376:5;6351:31;:::i;:::-;6401:5;-1:-1:-1;6458:2:1;6443:18;;6430:32;6471:33;6430:32;6471:33;:::i;:::-;6523:7;-1:-1:-1;6577:2:1;6562:18;;6549:32;;-1:-1:-1;6632:2:1;6617:18;;6604:32;6659:18;6648:30;;6645:50;;;6691:1;6688;6681:12;6645:50;6714:22;;6767:4;6759:13;;6755:27;-1:-1:-1;6745:55:1;;6796:1;6793;6786:12;6745:55;6819:74;6885:7;6880:2;6867:16;6862:2;6858;6854:11;6819:74;:::i;:::-;6809:84;;;6104:795;;;;;;;:::o;6904:773::-;7026:6;7034;7042;7050;7103:2;7091:9;7082:7;7078:23;7074:32;7071:52;;;7119:1;7116;7109:12;7071:52;7159:9;7146:23;7188:18;7229:2;7221:6;7218:14;7215:34;;;7245:1;7242;7235:12;7215:34;7284:70;7346:7;7337:6;7326:9;7322:22;7284:70;:::i;:::-;7373:8;;-1:-1:-1;7258:96:1;-1:-1:-1;7461:2:1;7446:18;;7433:32;;-1:-1:-1;7477:16:1;;;7474:36;;;7506:1;7503;7496:12;7474:36;;7545:72;7609:7;7598:8;7587:9;7583:24;7545:72;:::i;:::-;6904:773;;;;-1:-1:-1;7636:8:1;-1:-1:-1;;;;6904:773:1:o;7682:388::-;7750:6;7758;7811:2;7799:9;7790:7;7786:23;7782:32;7779:52;;;7827:1;7824;7817:12;7779:52;7866:9;7853:23;7885:31;7910:5;7885:31;:::i;:::-;7935:5;-1:-1:-1;7992:2:1;7977:18;;7964:32;8005:33;7964:32;8005:33;:::i;8075:315::-;8143:6;8151;8204:2;8192:9;8183:7;8179:23;8175:32;8172:52;;;8220:1;8217;8210:12;8172:52;8256:9;8243:23;8233:33;;8316:2;8305:9;8301:18;8288:32;8329:31;8354:5;8329:31;:::i;8395:380::-;8474:1;8470:12;;;;8517;;;8538:61;;8592:4;8584:6;8580:17;8570:27;;8538:61;8645:2;8637:6;8634:14;8614:18;8611:38;8608:161;;8691:10;8686:3;8682:20;8679:1;8672:31;8726:4;8723:1;8716:15;8754:4;8751:1;8744:15;8608:161;;8395:380;;;:::o;8780:127::-;8841:10;8836:3;8832:20;8829:1;8822:31;8872:4;8869:1;8862:15;8896:4;8893:1;8886:15;8912:251;8982:6;9035:2;9023:9;9014:7;9010:23;9006:32;9003:52;;;9051:1;9048;9041:12;9003:52;9083:9;9077:16;9102:31;9127:5;9102:31;:::i;9294:545::-;9396:2;9391:3;9388:11;9385:448;;;9432:1;9457:5;9453:2;9446:17;9502:4;9498:2;9488:19;9572:2;9560:10;9556:19;9553:1;9549:27;9543:4;9539:38;9608:4;9596:10;9593:20;9590:47;;;-1:-1:-1;9631:4:1;9590:47;9686:2;9681:3;9677:12;9674:1;9670:20;9664:4;9660:31;9650:41;;9741:82;9759:2;9752:5;9749:13;9741:82;;;9804:17;;;9785:1;9774:13;9741:82;;10015:1352;10141:3;10135:10;10168:18;10160:6;10157:30;10154:56;;;10190:18;;:::i;:::-;10219:97;10309:6;10269:38;10301:4;10295:11;10269:38;:::i;:::-;10263:4;10219:97;:::i;:::-;10371:4;;10435:2;10424:14;;10452:1;10447:663;;;;11154:1;11171:6;11168:89;;;-1:-1:-1;11223:19:1;;;11217:26;11168:89;-1:-1:-1;;9972:1:1;9968:11;;;9964:24;9960:29;9950:40;9996:1;9992:11;;;9947:57;11270:81;;10417:944;;10447:663;9241:1;9234:14;;;9278:4;9265:18;;-1:-1:-1;;10483:20:1;;;10601:236;10615:7;10612:1;10609:14;10601:236;;;10704:19;;;10698:26;10683:42;;10796:27;;;;10764:1;10752:14;;;;10631:19;;10601:236;;;10605:3;10865:6;10856:7;10853:19;10850:201;;;10926:19;;;10920:26;-1:-1:-1;;11009:1:1;11005:14;;;11021:3;11001:24;10997:37;10993:42;10978:58;10963:74;;10850:201;-1:-1:-1;;;;;11097:1:1;11081:14;;;11077:22;11064:36;;-1:-1:-1;10015:1352:1:o;11372:1187::-;11649:3;11678:1;11711:6;11705:13;11741:36;11767:9;11741:36;:::i;:::-;11796:1;11813:18;;;11840:133;;;;11987:1;11982:356;;;;11806:532;;11840:133;-1:-1:-1;;11873:24:1;;11861:37;;11946:14;;11939:22;11927:35;;11918:45;;;-1:-1:-1;11840:133:1;;11982:356;12013:6;12010:1;12003:17;12043:4;12088:2;12085:1;12075:16;12113:1;12127:165;12141:6;12138:1;12135:13;12127:165;;;12219:14;;12206:11;;;12199:35;12262:16;;;;12156:10;;12127:165;;;12131:3;;;12321:6;12316:3;12312:16;12305:23;;11806:532;;;;;12369:6;12363:13;12385:68;12444:8;12439:3;12432:4;12424:6;12420:17;12385:68;:::i;:::-;-1:-1:-1;;;12475:18:1;;12502:22;;;12551:1;12540:13;;11372:1187;-1:-1:-1;;;;11372:1187:1:o;13280:245::-;13347:6;13400:2;13388:9;13379:7;13375:23;13371:32;13368:52;;;13416:1;13413;13406:12;13368:52;13448:9;13442:16;13467:28;13489:5;13467:28;:::i;14023:489::-;-1:-1:-1;;;;;14292:15:1;;;14274:34;;14344:15;;14339:2;14324:18;;14317:43;14391:2;14376:18;;14369:34;;;14439:3;14434:2;14419:18;;14412:31;;;14217:4;;14460:46;;14486:19;;14478:6;14460:46;:::i;:::-;14452:54;14023:489;-1:-1:-1;;;;;;14023:489:1:o;14517:249::-;14586:6;14639:2;14627:9;14618:7;14614:23;14610:32;14607:52;;;14655:1;14652;14645:12;14607:52;14687:9;14681:16;14706:30;14730:5;14706:30;:::i
Swarm Source
ipfs://10d4270e2ad5808ed0c185710f8b3d46264b5b2ae7d17e783fdc543966a877d5
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.