ERC-721
Overview
Max Total Supply
8,008 OTHRF
Holders
194
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 OTHRFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
otherfield
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-10 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (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: erc721a/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: erc721a/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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an 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, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } 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. * 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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @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, ''); } // ============================================================= // 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: Otherfield.sol pragma solidity ^0.8.4; contract otherfield is ERC721A, Ownable { uint256 MAX_MINTS = 100; uint256 MAX_SUPPLY = 8008; bool MintingActive = false; string public baseURI = ""; constructor() ERC721A("otherfield", "OTHRF") {} function mint(uint256 quantity) external payable { // _safeMint's second argument now takes in a quantity, not a tokenId. require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); require(MintingActive == true, "Minting Not Active"); _safeMint(msg.sender, quantity); } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMintingActive(bool MintingAct) public onlyOwner { MintingActive = MintingAct; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":[{"internalType":"address","name":"to","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[{"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":"bool","name":"MintingAct","type":"bool"}],"name":"setMintingActive","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":"payable","type":"function"}]
Contract Creation Code
6064600955611f48600a55600b805460ff1916905560a060405260006080908152600c906200002f9082620001ae565b503480156200003d57600080fd5b506040518060400160405280600a8152602001691bdd1a195c999a595b1960b21b8152506040518060400160405280600581526020016427aa24292360d91b8152508160029081620000909190620001ae565b5060036200009f8282620001ae565b50506000805550620000b133620000b7565b6200027a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013457607f821691505b6020821081036200015557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a957600081815260208120601f850160051c81016020861015620001845750805b601f850160051c820191505b81811015620001a55782815560010162000190565b5050505b505050565b81516001600160401b03811115620001ca57620001ca62000109565b620001e281620001db84546200011f565b846200015b565b602080601f8311600181146200021a5760008415620002015750858301515b600019600386901b1c1916600185901b178555620001a5565b600085815260208120601f198616915b828110156200024b578886015182559484019460019091019084016200022a565b50858210156200026a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611500806200028a6000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb465146102ff578063b88d4fde1461031f578063c87b56dd14610332578063d04ef28514610352578063e985e9c514610372578063f2fde38b1461039257600080fd5b806370a0823114610284578063715018a6146102a45780638da5cb5b146102b957806395d89b41146102d7578063a0712d68146102ec57600080fd5b806323b872dd116100fd57806323b872dd146102015780633ccfd60b1461021457806342842e0e1461021c57806355f804b31461022f5780636352211e1461024f5780636c0360eb1461026f57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101de575b600080fd5b34801561014657600080fd5b5061015a610155366004610fd1565b6103b2565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50610184610404565b604051610166919061103e565b34801561019d57600080fd5b506101b16101ac366004611051565b610496565b6040516001600160a01b039091168152602001610166565b6101dc6101d7366004611086565b6104da565b005b3480156101ea57600080fd5b50600154600054035b604051908152602001610166565b6101dc61020f3660046110b0565b61057a565b6101dc610713565b6101dc61022a3660046110b0565b610757565b34801561023b57600080fd5b506101dc61024a366004611178565b610777565b34801561025b57600080fd5b506101b161026a366004611051565b61078f565b34801561027b57600080fd5b5061018461079a565b34801561029057600080fd5b506101f361029f3660046111c1565b610828565b3480156102b057600080fd5b506101dc610877565b3480156102c557600080fd5b506008546001600160a01b03166101b1565b3480156102e357600080fd5b5061018461088b565b6101dc6102fa366004611051565b61089a565b34801561030b57600080fd5b506101dc61031a3660046111ec565b6109c4565b6101dc61032d36600461121f565b610a30565b34801561033e57600080fd5b5061018461034d366004611051565b610a7a565b34801561035e57600080fd5b506101dc61036d36600461129b565b610afe565b34801561037e57600080fd5b5061015a61038d3660046112b6565b610b19565b34801561039e57600080fd5b506101dc6103ad3660046111c1565b610b47565b60006301ffc9a760e01b6001600160e01b0319831614806103e357506380ac58cd60e01b6001600160e01b03198316145b806103fe5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610413906112e0565b80601f016020809104026020016040519081016040528092919081815260200182805461043f906112e0565b801561048c5780601f106104615761010080835404028352916020019161048c565b820191906000526020600020905b81548152906001019060200180831161046f57829003601f168201915b5050505050905090565b60006104a182610bbd565b6104be576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104e58261078f565b9050336001600160a01b0382161461051e576105018133610b19565b61051e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061058582610be4565b9050836001600160a01b0316816001600160a01b0316146105b85760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610605576105e88633610b19565b61060557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661062c57604051633a954ecd60e21b815260040160405180910390fd5b801561063757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036106c9576001840160008181526004602052604081205490036106c75760005481146106c75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61071b610c4b565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610754573d6000803e3d6000fd5b50565b61077283838360405180602001604052806000815250610a30565b505050565b61077f610c4b565b600c61078b8282611360565b5050565b60006103fe82610be4565b600c80546107a7906112e0565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906112e0565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b505050505081565b60006001600160a01b038216610851576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61087f610c4b565b6108896000610ca5565b565b606060038054610413906112e0565b6009543360009081526005602052604090819020546108c4911c67ffffffffffffffff1683611420565b111561090c5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064015b60405180910390fd5b600a548161091d6001546000540390565b6109279190611420565b111561096e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610903565b600b5460ff1615156001146109ba5760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67204e6f742041637469766560701b6044820152606401610903565b6107543382610cf7565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a3b84848461057a565b6001600160a01b0383163b15610a7457610a5784848484610d11565b610a74576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a8582610bbd565b610aa257604051630a14c4b560e41b815260040160405180910390fd5b6000610aac610dfd565b90508051600003610acc5760405180602001604052806000815250610af7565b80610ad684610e0c565b604051602001610ae7929190611441565b6040516020818303038152906040525b9392505050565b610b06610c4b565b600b805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610b4f610c4b565b6001600160a01b038116610bb45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610903565b61075481610ca5565b60008054821080156103fe575050600090815260046020526040902054600160e01b161590565b600081600054811015610c325760008181526004602052604081205490600160e01b82169003610c30575b80600003610af7575060001901600081815260046020526040902054610c0f565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610903565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61078b828260405180602001604052806000815250610e50565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d46903390899088908890600401611470565b6020604051808303816000875af1925050508015610d81575060408051601f3d908101601f19168201909252610d7e918101906114ad565b60015b610ddf573d808015610daf576040519150601f19603f3d011682016040523d82523d6000602084013e610db4565b606091505b508051600003610dd7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610413906112e0565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610e265750819003601f19909101908152919050565b610e5a8383610ebd565b6001600160a01b0383163b15610772576000548281035b610e846000868380600101945086610d11565b610ea1576040516368d2bf6b60e11b815260040160405180910390fd5b818110610e71578160005414610eb657600080fd5b5050505050565b6000805490829003610ee25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f9157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f59565b5081600003610fb257604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461075457600080fd5b600060208284031215610fe357600080fd5b8135610af781610fbb565b60005b83811015611009578181015183820152602001610ff1565b50506000910152565b6000815180845261102a816020860160208601610fee565b601f01601f19169290920160200192915050565b602081526000610af76020830184611012565b60006020828403121561106357600080fd5b5035919050565b80356001600160a01b038116811461108157600080fd5b919050565b6000806040838503121561109957600080fd5b6110a28361106a565b946020939093013593505050565b6000806000606084860312156110c557600080fd5b6110ce8461106a565b92506110dc6020850161106a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561111d5761111d6110ec565b604051601f8501601f19908116603f01168101908282118183101715611145576111456110ec565b8160405280935085815286868601111561115e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561118a57600080fd5b813567ffffffffffffffff8111156111a157600080fd5b8201601f810184136111b257600080fd5b610df584823560208401611102565b6000602082840312156111d357600080fd5b610af78261106a565b8035801515811461108157600080fd5b600080604083850312156111ff57600080fd5b6112088361106a565b9150611216602084016111dc565b90509250929050565b6000806000806080858703121561123557600080fd5b61123e8561106a565b935061124c6020860161106a565b925060408501359150606085013567ffffffffffffffff81111561126f57600080fd5b8501601f8101871361128057600080fd5b61128f87823560208401611102565b91505092959194509250565b6000602082840312156112ad57600080fd5b610af7826111dc565b600080604083850312156112c957600080fd5b6112d28361106a565b91506112166020840161106a565b600181811c908216806112f457607f821691505b60208210810361131457634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561077257600081815260208120601f850160051c810160208610156113415750805b601f850160051c820191505b8181101561070b5782815560010161134d565b815167ffffffffffffffff81111561137a5761137a6110ec565b61138e8161138884546112e0565b8461131a565b602080601f8311600181146113c357600084156113ab5750858301515b600019600386901b1c1916600185901b17855561070b565b600085815260208120601f198616915b828110156113f2578886015182559484019460019091019084016113d3565b50858210156114105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156103fe57634e487b7160e01b600052601160045260246000fd5b60008351611453818460208801610fee565b835190830190611467818360208801610fee565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114a390830184611012565b9695505050505050565b6000602082840312156114bf57600080fd5b8151610af781610fbb56fea264697066735822122091394db7736f760f79d11e9ec44197f85b3b8c151864cd352a79dbda186246b864736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb465146102ff578063b88d4fde1461031f578063c87b56dd14610332578063d04ef28514610352578063e985e9c514610372578063f2fde38b1461039257600080fd5b806370a0823114610284578063715018a6146102a45780638da5cb5b146102b957806395d89b41146102d7578063a0712d68146102ec57600080fd5b806323b872dd116100fd57806323b872dd146102015780633ccfd60b1461021457806342842e0e1461021c57806355f804b31461022f5780636352211e1461024f5780636c0360eb1461026f57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101de575b600080fd5b34801561014657600080fd5b5061015a610155366004610fd1565b6103b2565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50610184610404565b604051610166919061103e565b34801561019d57600080fd5b506101b16101ac366004611051565b610496565b6040516001600160a01b039091168152602001610166565b6101dc6101d7366004611086565b6104da565b005b3480156101ea57600080fd5b50600154600054035b604051908152602001610166565b6101dc61020f3660046110b0565b61057a565b6101dc610713565b6101dc61022a3660046110b0565b610757565b34801561023b57600080fd5b506101dc61024a366004611178565b610777565b34801561025b57600080fd5b506101b161026a366004611051565b61078f565b34801561027b57600080fd5b5061018461079a565b34801561029057600080fd5b506101f361029f3660046111c1565b610828565b3480156102b057600080fd5b506101dc610877565b3480156102c557600080fd5b506008546001600160a01b03166101b1565b3480156102e357600080fd5b5061018461088b565b6101dc6102fa366004611051565b61089a565b34801561030b57600080fd5b506101dc61031a3660046111ec565b6109c4565b6101dc61032d36600461121f565b610a30565b34801561033e57600080fd5b5061018461034d366004611051565b610a7a565b34801561035e57600080fd5b506101dc61036d36600461129b565b610afe565b34801561037e57600080fd5b5061015a61038d3660046112b6565b610b19565b34801561039e57600080fd5b506101dc6103ad3660046111c1565b610b47565b60006301ffc9a760e01b6001600160e01b0319831614806103e357506380ac58cd60e01b6001600160e01b03198316145b806103fe5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610413906112e0565b80601f016020809104026020016040519081016040528092919081815260200182805461043f906112e0565b801561048c5780601f106104615761010080835404028352916020019161048c565b820191906000526020600020905b81548152906001019060200180831161046f57829003601f168201915b5050505050905090565b60006104a182610bbd565b6104be576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104e58261078f565b9050336001600160a01b0382161461051e576105018133610b19565b61051e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061058582610be4565b9050836001600160a01b0316816001600160a01b0316146105b85760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610605576105e88633610b19565b61060557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661062c57604051633a954ecd60e21b815260040160405180910390fd5b801561063757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036106c9576001840160008181526004602052604081205490036106c75760005481146106c75760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61071b610c4b565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610754573d6000803e3d6000fd5b50565b61077283838360405180602001604052806000815250610a30565b505050565b61077f610c4b565b600c61078b8282611360565b5050565b60006103fe82610be4565b600c80546107a7906112e0565b80601f01602080910402602001604051908101604052809291908181526020018280546107d3906112e0565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b505050505081565b60006001600160a01b038216610851576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61087f610c4b565b6108896000610ca5565b565b606060038054610413906112e0565b6009543360009081526005602052604090819020546108c4911c67ffffffffffffffff1683611420565b111561090c5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064015b60405180910390fd5b600a548161091d6001546000540390565b6109279190611420565b111561096e5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610903565b600b5460ff1615156001146109ba5760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67204e6f742041637469766560701b6044820152606401610903565b6107543382610cf7565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a3b84848461057a565b6001600160a01b0383163b15610a7457610a5784848484610d11565b610a74576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a8582610bbd565b610aa257604051630a14c4b560e41b815260040160405180910390fd5b6000610aac610dfd565b90508051600003610acc5760405180602001604052806000815250610af7565b80610ad684610e0c565b604051602001610ae7929190611441565b6040516020818303038152906040525b9392505050565b610b06610c4b565b600b805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610b4f610c4b565b6001600160a01b038116610bb45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610903565b61075481610ca5565b60008054821080156103fe575050600090815260046020526040902054600160e01b161590565b600081600054811015610c325760008181526004602052604081205490600160e01b82169003610c30575b80600003610af7575060001901600081815260046020526040902054610c0f565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610903565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61078b828260405180602001604052806000815250610e50565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d46903390899088908890600401611470565b6020604051808303816000875af1925050508015610d81575060408051601f3d908101601f19168201909252610d7e918101906114ad565b60015b610ddf573d808015610daf576040519150601f19603f3d011682016040523d82523d6000602084013e610db4565b606091505b508051600003610dd7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610413906112e0565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480610e265750819003601f19909101908152919050565b610e5a8383610ebd565b6001600160a01b0383163b15610772576000548281035b610e846000868380600101945086610d11565b610ea1576040516368d2bf6b60e11b815260040160405180910390fd5b818110610e71578160005414610eb657600080fd5b5050505050565b6000805490829003610ee25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f9157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f59565b5081600003610fb257604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461075457600080fd5b600060208284031215610fe357600080fd5b8135610af781610fbb565b60005b83811015611009578181015183820152602001610ff1565b50506000910152565b6000815180845261102a816020860160208601610fee565b601f01601f19169290920160200192915050565b602081526000610af76020830184611012565b60006020828403121561106357600080fd5b5035919050565b80356001600160a01b038116811461108157600080fd5b919050565b6000806040838503121561109957600080fd5b6110a28361106a565b946020939093013593505050565b6000806000606084860312156110c557600080fd5b6110ce8461106a565b92506110dc6020850161106a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561111d5761111d6110ec565b604051601f8501601f19908116603f01168101908282118183101715611145576111456110ec565b8160405280935085815286868601111561115e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561118a57600080fd5b813567ffffffffffffffff8111156111a157600080fd5b8201601f810184136111b257600080fd5b610df584823560208401611102565b6000602082840312156111d357600080fd5b610af78261106a565b8035801515811461108157600080fd5b600080604083850312156111ff57600080fd5b6112088361106a565b9150611216602084016111dc565b90509250929050565b6000806000806080858703121561123557600080fd5b61123e8561106a565b935061124c6020860161106a565b925060408501359150606085013567ffffffffffffffff81111561126f57600080fd5b8501601f8101871361128057600080fd5b61128f87823560208401611102565b91505092959194509250565b6000602082840312156112ad57600080fd5b610af7826111dc565b600080604083850312156112c957600080fd5b6112d28361106a565b91506112166020840161106a565b600181811c908216806112f457607f821691505b60208210810361131457634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561077257600081815260208120601f850160051c810160208610156113415750805b601f850160051c820191505b8181101561070b5782815560010161134d565b815167ffffffffffffffff81111561137a5761137a6110ec565b61138e8161138884546112e0565b8461131a565b602080601f8311600181146113c357600084156113ab5750858301515b600019600386901b1c1916600185901b17855561070b565b600085815260208120601f198616915b828110156113f2578886015182559484019460019091019084016113d3565b50858210156114105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156103fe57634e487b7160e01b600052601160045260246000fd5b60008351611453818460208801610fee565b835190830190611467818360208801610fee565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114a390830184611012565b9695505050505050565b6000602082840312156114bf57600080fd5b8151610af781610fbb56fea264697066735822122091394db7736f760f79d11e9ec44197f85b3b8c151864cd352a79dbda186246b864736f6c63430008110033
Deployed Bytecode Sourcemap
55121:1117:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22030:639;;;;;;;;;;-1:-1:-1;22030:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;22030:639:0;;;;;;;;22932:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29423:218::-;;;;;;;;;;-1:-1:-1;29423:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;29423:218:0;1533:203:1;28856:408:0;;;;;;:::i;:::-;;:::i;:::-;;18683:323;;;;;;;;;;-1:-1:-1;18957:12:0;;18744:7;18941:13;:28;18683:323;;;2324:25:1;;;2312:2;2297:18;18683:323:0;2178:177:1;33062:2825:0;;;;;;:::i;:::-;;:::i;55778:114::-;;;:::i;35983:193::-;;;;;;:::i;:::-;;:::i;56010:105::-;;;;;;;;;;-1:-1:-1;56010:105:0;;;;;:::i;:::-;;:::i;24325:152::-;;;;;;;;;;-1:-1:-1;24325:152:0;;;;;:::i;:::-;;:::i;55263:26::-;;;;;;;;;;;;;:::i;19867:233::-;;;;;;;;;;-1:-1:-1;19867:233:0;;;;;:::i;:::-;;:::i;2809:103::-;;;;;;;;;;;;;:::i;2161:87::-;;;;;;;;;;-1:-1:-1;2234:6:0;;-1:-1:-1;;;;;2234:6:0;2161:87;;23108:104;;;;;;;;;;;;;:::i;55353:417::-;;;;;;:::i;:::-;;:::i;29981:234::-;;;;;;;;;;-1:-1:-1;29981:234:0;;;;;:::i;:::-;;:::i;36774:407::-;;;;;;:::i;:::-;;:::i;23318:318::-;;;;;;;;;;-1:-1:-1;23318:318:0;;;;;:::i;:::-;;:::i;56124:107::-;;;;;;;;;;-1:-1:-1;56124:107:0;;;;;:::i;:::-;;:::i;30372:164::-;;;;;;;;;;-1:-1:-1;30372:164:0;;;;;:::i;:::-;;:::i;3067:201::-;;;;;;;;;;-1:-1:-1;3067:201:0;;;;;:::i;:::-;;:::i;22030:639::-;22115:4;-1:-1:-1;;;;;;;;;22439:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22516:25:0;;;22439:102;:179;;;-1:-1:-1;;;;;;;;;;22593:25:0;;;22439:179;22419:199;22030:639;-1:-1:-1;;22030:639:0:o;22932:100::-;22986:13;23019:5;23012:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22932:100;:::o;29423:218::-;29499:7;29524:16;29532:7;29524;:16::i;:::-;29519:64;;29549:34;;-1:-1:-1;;;29549:34:0;;;;;;;;;;;29519:64;-1:-1:-1;29603:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29603:30:0;;29423:218::o;28856:408::-;28945:13;28961:16;28969:7;28961;:16::i;:::-;28945:32;-1:-1:-1;53189:10:0;-1:-1:-1;;;;;28994:28:0;;;28990:175;;29042:44;29059:5;53189:10;30372:164;:::i;29042:44::-;29037:128;;29114:35;;-1:-1:-1;;;29114:35:0;;;;;;;;;;;29037:128;29177:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29177:35:0;-1:-1:-1;;;;;29177:35:0;;;;;;;;;29228:28;;29177:24;;29228:28;;;;;;;28934:330;28856:408;;:::o;33062:2825::-;33204:27;33234;33253:7;33234:18;:27::i;:::-;33204:57;;33319:4;-1:-1:-1;;;;;33278:45:0;33294:19;-1:-1:-1;;;;;33278:45:0;;33274:86;;33332:28;;-1:-1:-1;;;33332:28:0;;;;;;;;;;;33274:86;33374:27;32170:24;;;:15;:24;;;;;32398:26;;53189:10;31795:30;;;-1:-1:-1;;;;;31488:28:0;;31773:20;;;31770:56;33560:180;;33653:43;33670:4;53189:10;30372:164;:::i;33653:43::-;33648:92;;33705:35;;-1:-1:-1;;;33705:35:0;;;;;;;;;;;33648:92;-1:-1:-1;;;;;33757:16:0;;33753:52;;33782:23;;-1:-1:-1;;;33782:23:0;;;;;;;;;;;33753:52;33954:15;33951:160;;;34094:1;34073:19;34066:30;33951:160;-1:-1:-1;;;;;34491:24:0;;;;;;;:18;:24;;;;;;34489:26;;-1:-1:-1;;34489:26:0;;;34560:22;;;;;;;;;34558:24;;-1:-1:-1;34558:24:0;;;27714:11;27689:23;27685:41;27672:63;-1:-1:-1;;;27672:63:0;34853:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;35148:47:0;;:52;;35144:627;;35253:1;35243:11;;35221:19;35376:30;;;:17;:30;;;;;;:35;;35372:384;;35514:13;;35499:11;:28;35495:242;;35661:30;;;;:17;:30;;;;;:52;;;35495:242;35202:569;35144:627;35818:7;35814:2;-1:-1:-1;;;;;35799:27:0;35808:4;-1:-1:-1;;;;;35799:27:0;;;;;;;;;;;35837:42;33193:2694;;;33062:2825;;;:::o;55778:114::-;2047:13;:11;:13::i;:::-;2234:6;;55836:48:::1;::::0;-1:-1:-1;;;;;2234:6:0;;;;55862:21:::1;55836:48:::0;::::1;;;::::0;::::1;::::0;;;55862:21;2234:6;55836:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;55778:114::o:0;35983:193::-;36129:39;36146:4;36152:2;36156:7;36129:39;;;;;;;;;;;;:16;:39::i;:::-;35983:193;;;:::o;56010:105::-;2047:13;:11;:13::i;:::-;56085:7:::1;:21;56095:11:::0;56085:7;:21:::1;:::i;:::-;;56010:105:::0;:::o;24325:152::-;24397:7;24440:27;24459:7;24440:18;:27::i;55263:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19867:233::-;19939:7;-1:-1:-1;;;;;19963:19:0;;19959:60;;19991:28;;-1:-1:-1;;;19991:28:0;;;;;;;;;;;19959:60;-1:-1:-1;;;;;;20037:25:0;;;;;:18;:25;;;;;;14026:13;20037:55;;19867:233::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;23108:104::-;23164:13;23197:7;23190:14;;;;;:::i;55353:417::-;55541:9;;55526:10;20243:7;20271:25;;;:18;:25;;14164:2;20271:25;;;;;55501:36;;20271:50;14026:13;20270:82;55501:8;:36;:::i;:::-;:49;;55493:80;;;;-1:-1:-1;;;55493:80:0;;8673:2:1;55493:80:0;;;8655:21:1;8712:2;8692:18;;;8685:30;-1:-1:-1;;;8731:18:1;;;8724:48;8789:18;;55493:80:0;;;;;;;;;55620:10;;55608:8;55592:13;18957:12;;18744:7;18941:13;:28;;18683:323;55592:13;:24;;;;:::i;:::-;:38;;55584:73;;;;-1:-1:-1;;;55584:73:0;;9020:2:1;55584:73:0;;;9002:21:1;9059:2;9039:18;;;9032:30;-1:-1:-1;;;9078:18:1;;;9071:52;9140:18;;55584:73:0;8818:346:1;55584:73:0;55676:13;;;;:21;;:13;:21;55668:52;;;;-1:-1:-1;;;55668:52:0;;9371:2:1;55668:52:0;;;9353:21:1;9410:2;9390:18;;;9383:30;-1:-1:-1;;;9429:18:1;;;9422:48;9487:18;;55668:52:0;9169:342:1;55668:52:0;55731:31;55741:10;55753:8;55731:9;:31::i;29981:234::-;53189:10;30076:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30076:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30076:60:0;;;;;;;;;;30152:55;;540:41:1;;;30076:49:0;;53189:10;30152:55;;513:18:1;30152:55:0;;;;;;;29981:234;;:::o;36774:407::-;36949:31;36962:4;36968:2;36972:7;36949:12;:31::i;:::-;-1:-1:-1;;;;;36995:14:0;;;:19;36991:183;;37034:56;37065:4;37071:2;37075:7;37084:5;37034:30;:56::i;:::-;37029:145;;37118:40;;-1:-1:-1;;;37118:40:0;;;;;;;;;;;37029:145;36774:407;;;;:::o;23318:318::-;23391:13;23422:16;23430:7;23422;:16::i;:::-;23417:59;;23447:29;;-1:-1:-1;;;23447:29:0;;;;;;;;;;;23417:59;23489:21;23513:10;:8;:10::i;:::-;23489:34;;23547:7;23541:21;23566:1;23541:26;:87;;;;;;;;;;;;;;;;;23594:7;23603:18;23613:7;23603:9;:18::i;:::-;23577:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23541:87;23534:94;23318:318;-1:-1:-1;;;23318:318:0:o;56124:107::-;2047:13;:11;:13::i;:::-;56196::::1;:26:::0;;-1:-1:-1;;56196:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56124:107::o;30372:164::-;-1:-1:-1;;;;;30493:25:0;;;30469:4;30493:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30372:164::o;3067:201::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3156:22:0;::::1;3148:73;;;::::0;-1:-1:-1;;;3148:73:0;;10219:2:1;3148:73:0::1;::::0;::::1;10201:21:1::0;10258:2;10238:18;;;10231:30;10297:34;10277:18;;;10270:62;-1:-1:-1;;;10348:18:1;;;10341:36;10394:19;;3148:73:0::1;10017:402:1::0;3148:73:0::1;3232:28;3251:8;3232:18;:28::i;30794:282::-:0;30859:4;30949:13;;30939:7;:23;30896:153;;;;-1:-1:-1;;31000:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31000:44:0;:49;;30794:282::o;25480:1275::-;25547:7;25582;25684:13;;25677:4;:20;25673:1015;;;25722:14;25739:23;;;:17;:23;;;;;;;-1:-1:-1;;;25828:24:0;;:29;;25824:845;;26493:113;26500:6;26510:1;26500:11;26493:113;;-1:-1:-1;;;26571:6:0;26553:25;;;;:17;:25;;;;;;26493:113;;25824:845;25699:989;25673:1015;26716:31;;-1:-1:-1;;;26716:31:0;;;;;;;;;;;2326:132;2234:6;;-1:-1:-1;;;;;2234:6:0;53189:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;10626:2:1;2382:68:0;;;10608:21:1;;;10645:18;;;10638:30;10704:34;10684:18;;;10677:62;10756:18;;2382:68:0;10424:356:1;3428:191:0;3521:6;;;-1:-1:-1;;;;;3538:17:0;;;-1:-1:-1;;;;;;3538:17:0;;;;;;;3571:40;;3521:6;;;3538:17;3521:6;;3571:40;;3502:16;;3571:40;3491:128;3428:191;:::o;46934:112::-;47011:27;47021:2;47025:8;47011:27;;;;;;;;;;;;:9;:27::i;39265:716::-;39449:88;;-1:-1:-1;;;39449:88:0;;39428:4;;-1:-1:-1;;;;;39449:45:0;;;;;:88;;53189:10;;39516:4;;39522:7;;39531:5;;39449:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39449:88:0;;;;;;;;-1:-1:-1;;39449:88:0;;;;;;;;;;;;:::i;:::-;;;39445:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39732:6;:13;39749:1;39732:18;39728:235;;39778:40;;-1:-1:-1;;;39778:40:0;;;;;;;;;;;39728:235;39921:6;39915:13;39906:6;39902:2;39898:15;39891:38;39445:529;-1:-1:-1;;;;;;39608:64:0;-1:-1:-1;;;39608:64:0;;-1:-1:-1;39445:529:0;39265:716;;;;;;:::o;55900:100::-;55952:13;55985:7;55978:14;;;;;:::i;53309:1745::-;53374:17;53808:4;53801;53795:11;53791:22;53900:1;53894:4;53887:15;53975:4;53972:1;53968:12;53961:19;;;54057:1;54052:3;54045:14;54161:3;54400:5;54382:428;54448:1;54443:3;54439:11;54432:18;;54619:2;54613:4;54609:13;54605:2;54601:22;54596:3;54588:36;54713:2;54703:13;;54770:25;54382:428;54770:25;-1:-1:-1;54840:13:0;;;-1:-1:-1;;54955:14:0;;;55017:19;;;54955:14;53309:1745;-1:-1:-1;53309:1745:0:o;46161:689::-;46292:19;46298:2;46302:8;46292:5;:19::i;:::-;-1:-1:-1;;;;;46353:14:0;;;:19;46349:483;;46393:11;46407:13;46455:14;;;46488:233;46519:62;46558:1;46562:2;46566:7;;;;;;46575:5;46519:30;:62::i;:::-;46514:167;;46617:40;;-1:-1:-1;;;46617:40:0;;;;;;;;;;;46514:167;46716:3;46708:5;:11;46488:233;;46803:3;46786:13;;:20;46782:34;;46808:8;;;46782:34;46374:458;;46161:689;;;:::o;40443:2966::-;40516:20;40539:13;;;40567;;;40563:44;;40589:18;;-1:-1:-1;;;40589:18:0;;;;;;;;;;;40563:44;-1:-1:-1;;;;;41095:22:0;;;;;;:18;:22;;;;14164:2;41095:22;;;:71;;41133:32;41121:45;;41095:71;;;41409:31;;;:17;:31;;;;;-1:-1:-1;28145:15:0;;28119:24;28115:46;27714:11;27689:23;27685:41;27682:52;27672:63;;41409:173;;41644:23;;;;41409:31;;41095:22;;42409:25;41095:22;;42262:335;42923:1;42909:12;42905:20;42863:346;42964:3;42955:7;42952:16;42863:346;;43182:7;43172:8;43169:1;43142:25;43139:1;43136;43131:59;43017:1;43004:15;42863:346;;;42867:77;43242:8;43254:1;43242:13;43238:45;;43264:19;;-1:-1:-1;;;43264:19:0;;;;;;;;;;;43238:45;43300:13;:19;-1:-1:-1;35983:193: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;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:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:160::-;4174:20;;4230:13;;4223:21;4213:32;;4203:60;;4259:1;4256;4249:12;4274:254;4339:6;4347;4400:2;4388:9;4379:7;4375:23;4371:32;4368:52;;;4416:1;4413;4406:12;4368:52;4439:29;4458:9;4439:29;:::i;:::-;4429:39;;4487:35;4518:2;4507:9;4503:18;4487:35;:::i;:::-;4477:45;;4274:254;;;;;:::o;4533:667::-;4628:6;4636;4644;4652;4705:3;4693:9;4684:7;4680:23;4676:33;4673:53;;;4722:1;4719;4712:12;4673:53;4745:29;4764:9;4745:29;:::i;:::-;4735:39;;4793:38;4827:2;4816:9;4812:18;4793:38;:::i;:::-;4783:48;;4878:2;4867:9;4863:18;4850:32;4840:42;;4933:2;4922:9;4918:18;4905:32;4960:18;4952:6;4949:30;4946:50;;;4992:1;4989;4982:12;4946:50;5015:22;;5068:4;5060:13;;5056:27;-1:-1:-1;5046:55:1;;5097:1;5094;5087:12;5046:55;5120:74;5186:7;5181:2;5168:16;5163:2;5159;5155:11;5120:74;:::i;:::-;5110:84;;;4533:667;;;;;;;:::o;5205:180::-;5261:6;5314:2;5302:9;5293:7;5289:23;5285:32;5282:52;;;5330:1;5327;5320:12;5282:52;5353:26;5369:9;5353:26;:::i;5390:260::-;5458:6;5466;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;5655:380::-;5734:1;5730:12;;;;5777;;;5798:61;;5852:4;5844:6;5840:17;5830:27;;5798:61;5905:2;5897:6;5894:14;5874:18;5871:38;5868:161;;5951:10;5946:3;5942:20;5939:1;5932:31;5986:4;5983:1;5976:15;6014:4;6011:1;6004:15;5868:161;;5655:380;;;:::o;6166:545::-;6268:2;6263:3;6260:11;6257:448;;;6304:1;6329:5;6325:2;6318:17;6374:4;6370:2;6360:19;6444:2;6432:10;6428:19;6425:1;6421:27;6415:4;6411:38;6480:4;6468:10;6465:20;6462:47;;;-1:-1:-1;6503:4:1;6462:47;6558:2;6553:3;6549:12;6546:1;6542:20;6536:4;6532:31;6522:41;;6613:82;6631:2;6624:5;6621:13;6613:82;;;6676:17;;;6657:1;6646:13;6613:82;;6887:1352;7013:3;7007:10;7040:18;7032:6;7029:30;7026:56;;;7062:18;;:::i;:::-;7091:97;7181:6;7141:38;7173:4;7167:11;7141:38;:::i;:::-;7135:4;7091:97;:::i;:::-;7243:4;;7307:2;7296:14;;7324:1;7319:663;;;;8026:1;8043:6;8040:89;;;-1:-1:-1;8095:19:1;;;8089:26;8040:89;-1:-1:-1;;6844:1:1;6840:11;;;6836:24;6832:29;6822:40;6868:1;6864:11;;;6819:57;8142:81;;7289:944;;7319:663;6113:1;6106:14;;;6150:4;6137:18;;-1:-1:-1;;7355:20:1;;;7473:236;7487:7;7484:1;7481:14;7473:236;;;7576:19;;;7570:26;7555:42;;7668:27;;;;7636:1;7624:14;;;;7503:19;;7473:236;;;7477:3;7737:6;7728:7;7725:19;7722:201;;;7798:19;;;7792:26;-1:-1:-1;;7881:1:1;7877:14;;;7893:3;7873:24;7869:37;7865:42;7850:58;7835:74;;7722:201;-1:-1:-1;;;;;7969:1:1;7953:14;;;7949:22;7936:36;;-1:-1:-1;6887:1352:1:o;8244:222::-;8309:9;;;8330:10;;;8327:133;;;8382:10;8377:3;8373:20;8370:1;8363:31;8417:4;8414:1;8407:15;8445:4;8442:1;8435:15;9516:496;9695:3;9733:6;9727:13;9749:66;9808:6;9803:3;9796:4;9788:6;9784:17;9749:66;:::i;:::-;9878:13;;9837:16;;;;9900:70;9878:13;9837:16;9947:4;9935:17;;9900:70;:::i;:::-;9986:20;;9516:496;-1:-1:-1;;;;9516:496:1:o;10785:489::-;-1:-1:-1;;;;;11054:15:1;;;11036:34;;11106:15;;11101:2;11086:18;;11079:43;11153:2;11138:18;;11131:34;;;11201:3;11196:2;11181:18;;11174:31;;;10979:4;;11222:46;;11248:19;;11240:6;11222:46;:::i;:::-;11214:54;10785:489;-1:-1:-1;;;;;;10785:489:1:o;11279:249::-;11348:6;11401:2;11389:9;11380:7;11376:23;11372:32;11369:52;;;11417:1;11414;11407:12;11369:52;11449:9;11443:16;11468:30;11492:5;11468:30;:::i
Swarm Source
ipfs://91394db7736f760f79d11e9ec44197f85b3b8c151864cd352a79dbda186246b8
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.