ERC-721
Overview
Max Total Supply
100 DPASS
Holders
42
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DPASSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DPass
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-28 */ // 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: contracts/dpass.sol pragma solidity ^0.8.0; contract DPass is ERC721A, Ownable { /** * @notice Maximum number of Diamond Passes that can be minted */ uint256 public constant SUPPLY_MAX = 100; /** * @notice The price of a Diamond Pass in wei */ uint256 public constant PRICE = 0.1 ether; /** * @notice Boolean whether the sale is active or not */ bool public live; /** * @notice The base URI for all tokens */ string constant public baseURI = "ipfs://QmafWeRUFXChTSUHTNAVQW7W5FjV6ogmQKSKYBf8ck51Bh/"; constructor() ERC721A("DCD Pass", "DPASS") {} /** * @notice Function to reserve NFTs for the team * @param to address of the receiver * @param quantity number of NFTs to reserve */ function reserveTeamTokens(address to, uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= SUPPLY_MAX, "Exceeds max supply"); _safeMint(to, quantity); } /** * @notice Function to purchase a Diamond Pass, requires payment of 0.1 ETH */ function mint() external payable { require(live, "Sale is not live"); require(msg.sender == tx.origin, "Only EOA wallets"); require(_numberMinted(msg.sender) + 1 <= 1, "You can only mint one pass"); require(totalSupply() + 1 <= SUPPLY_MAX, "Exceeds max supply"); require(msg.value >= PRICE, "Insufficient funds"); _safeMint(msg.sender, 1); } /** * @notice Function to start the sale, only callable by the owner */ function toggleSaleState() external onlyOwner { live = !live; } /** * @notice Function to withdraw funds from the contract, only callable by the owner */ function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } /** * @notice Function to return the metadata URI for a given token ID * @param tokenId the token ID to return the URI for */ function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return baseURI; } }
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":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"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":[],"name":"live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTeamTokens","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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
60806040523480156200001157600080fd5b506040518060400160405280600881526020017f44434420506173730000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4450415353000000000000000000000000000000000000000000000000000000815250816002908051906020019062000096929190620001c1565b508060039080519060200190620000af929190620001c1565b50620000c0620000ee60201b60201c565b6000819055505050620000e8620000dc620000f360201b60201c565b620000fb60201b60201c565b620002d6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf9062000271565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b600060028204905060018216806200028a57607f821691505b60208210811415620002a157620002a0620002a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61267980620002e66000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d1578063a22cb4651161008a578063daaeec8611610064578063daaeec86146104c5578063e71433d6146104dc578063e985e9c514610505578063f2fde38b1461054257610166565b8063a22cb46514610443578063b88d4fde1461046c578063c87b56dd1461048857610166565b8063715018a6146103555780638d859f3e1461036c5780638da5cb5b14610397578063957aa58c146103c2578063958f6ed6146103ed57806395d89b411461041857610166565b806323b872dd1161012357806323b872dd146102615780633ccfd60b1461027d57806342842e0e146102945780636352211e146102b05780636c0360eb146102ed57806370a082311461031857610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780631249c58b1461022c57806318160ddd14610236575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190611d71565b61056b565b60405161019f9190612016565b60405180910390f35b3480156101b457600080fd5b506101bd6105fd565b6040516101ca9190612031565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190611dcb565b61068f565b6040516102079190611faf565b60405180910390f35b61022a60048036038101906102259190611d31565b61070e565b005b610234610852565b005b34801561024257600080fd5b5061024b610a15565b6040516102589190612153565b60405180910390f35b61027b60048036038101906102769190611c1b565b610a2c565b005b34801561028957600080fd5b50610292610d51565b005b6102ae60048036038101906102a99190611c1b565b610da2565b005b3480156102bc57600080fd5b506102d760048036038101906102d29190611dcb565b610dc2565b6040516102e49190611faf565b60405180910390f35b3480156102f957600080fd5b50610302610dd4565b60405161030f9190612031565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190611bae565b610df0565b60405161034c9190612153565b60405180910390f35b34801561036157600080fd5b5061036a610ea9565b005b34801561037857600080fd5b50610381610ebd565b60405161038e9190612153565b60405180910390f35b3480156103a357600080fd5b506103ac610ec9565b6040516103b99190611faf565b60405180910390f35b3480156103ce57600080fd5b506103d7610ef3565b6040516103e49190612016565b60405180910390f35b3480156103f957600080fd5b50610402610f06565b60405161040f9190612153565b60405180910390f35b34801561042457600080fd5b5061042d610f0b565b60405161043a9190612031565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190611cf1565b610f9d565b005b61048660048036038101906104819190611c6e565b6110a8565b005b34801561049457600080fd5b506104af60048036038101906104aa9190611dcb565b61111b565b6040516104bc9190612031565b60405180910390f35b3480156104d157600080fd5b506104da611185565b005b3480156104e857600080fd5b5061050360048036038101906104fe9190611d31565b6111b9565b005b34801561051157600080fd5b5061052c60048036038101906105279190611bdb565b611225565b6040516105399190612016565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190611bae565b6112b9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461060c90612308565b80601f016020809104026020016040519081016040528092919081815260200182805461063890612308565b80156106855780601f1061065a57610100808354040283529160200191610685565b820191906000526020600020905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b600061069a8261133d565b6106d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071982610dc2565b90508073ffffffffffffffffffffffffffffffffffffffff1661073a61139c565b73ffffffffffffffffffffffffffffffffffffffff161461079d576107668161076161139c565b611225565b61079c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860149054906101000a900460ff166108a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089890612133565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612073565b60405180910390fd5b60018061091b336113a4565b61092591906121fc565b1115610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90612113565b60405180910390fd5b60646001610972610a15565b61097c91906121fc565b11156109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b4906120b3565b60405180910390fd5b67016345785d8a0000341015610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff90612093565b60405180910390fd5b610a133360016113fb565b565b6000610a1f611419565b6001546000540303905090565b6000610a378261141e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aaa846114ec565b91509150610ac08187610abb61139c565b611513565b610b0c57610ad586610ad061139c565b611225565b610b0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b73576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b808686866001611557565b8015610b8b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5985610c3588888761155d565b7c020000000000000000000000000000000000000000000000000000000017611585565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ce1576000600185019050600060046000838152602001908152602001600020541415610cdf576000548114610cde578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4986868660016115b0565b505050505050565b610d596115b6565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d9f573d6000803e3d6000fd5b50565b610dbd838383604051806020016040528060008152506110a8565b505050565b6000610dcd8261141e565b9050919050565b60405180606001604052806036815260200161260e6036913981565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e58576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb16115b6565b610ebb6000611634565b565b67016345785d8a000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860149054906101000a900460ff1681565b606481565b606060038054610f1a90612308565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4690612308565b8015610f935780601f10610f6857610100808354040283529160200191610f93565b820191906000526020600020905b815481529060010190602001808311610f7657829003601f168201915b5050505050905090565b8060076000610faa61139c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661105761139c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161109c9190612016565b60405180910390a35050565b6110b3848484610a2c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611115576110de848484846116fa565b611114576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111268261133d565b611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906120f3565b60405180910390fd5b60405180606001604052806036815260200161260e603691399050919050565b61118d6115b6565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6111c16115b6565b6064816111cc610a15565b6111d691906121fc565b1115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906120b3565b60405180910390fd5b61122182826113fb565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112c16115b6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612053565b60405180910390fd5b61133a81611634565b50565b600081611348611419565b11158015611357575060005482105b8015611395575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61141582826040518060200160405280600081525061185a565b5050565b600090565b6000808290508061142d611419565b116114b5576000548110156114b45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156114b2575b60008114156114a857600460008360019003935083815260200190815260200160002054905061147d565b80925050506114e7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115748686846118f7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6115be611900565b73ffffffffffffffffffffffffffffffffffffffff166115dc610ec9565b73ffffffffffffffffffffffffffffffffffffffff1614611632576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611629906120d3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261172061139c565b8786866040518563ffffffff1660e01b81526004016117429493929190611fca565b602060405180830381600087803b15801561175c57600080fd5b505af192505050801561178d57506040513d601f19601f8201168201806040525081019061178a9190611d9e565b60015b611807573d80600081146117bd576040519150601f19603f3d011682016040523d82523d6000602084013e6117c2565b606091505b506000815114156117ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6118648383611908565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f257600080549050600083820390505b6118a460008683806001019450866116fa565b6118da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106118915781600054146118ef57600080fd5b50505b505050565b60009392505050565b600033905090565b6000805490506000821415611949576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119566000848385611557565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119cd836119be600086600061155d565b6119c785611ac5565b17611585565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a6e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a33565b506000821415611aaa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ac060008483856115b0565b505050565b60006001821460e11b9050919050565b6000611ae8611ae384612193565b61216e565b905082815260208101848484011115611b0457611b036123fd565b5b611b0f8482856122c6565b509392505050565b600081359050611b26816125b1565b92915050565b600081359050611b3b816125c8565b92915050565b600081359050611b50816125df565b92915050565b600081519050611b65816125df565b92915050565b600082601f830112611b8057611b7f6123f8565b5b8135611b90848260208601611ad5565b91505092915050565b600081359050611ba8816125f6565b92915050565b600060208284031215611bc457611bc3612407565b5b6000611bd284828501611b17565b91505092915050565b60008060408385031215611bf257611bf1612407565b5b6000611c0085828601611b17565b9250506020611c1185828601611b17565b9150509250929050565b600080600060608486031215611c3457611c33612407565b5b6000611c4286828701611b17565b9350506020611c5386828701611b17565b9250506040611c6486828701611b99565b9150509250925092565b60008060008060808587031215611c8857611c87612407565b5b6000611c9687828801611b17565b9450506020611ca787828801611b17565b9350506040611cb887828801611b99565b925050606085013567ffffffffffffffff811115611cd957611cd8612402565b5b611ce587828801611b6b565b91505092959194509250565b60008060408385031215611d0857611d07612407565b5b6000611d1685828601611b17565b9250506020611d2785828601611b2c565b9150509250929050565b60008060408385031215611d4857611d47612407565b5b6000611d5685828601611b17565b9250506020611d6785828601611b99565b9150509250929050565b600060208284031215611d8757611d86612407565b5b6000611d9584828501611b41565b91505092915050565b600060208284031215611db457611db3612407565b5b6000611dc284828501611b56565b91505092915050565b600060208284031215611de157611de0612407565b5b6000611def84828501611b99565b91505092915050565b611e0181612252565b82525050565b611e1081612264565b82525050565b6000611e21826121c4565b611e2b81856121da565b9350611e3b8185602086016122d5565b611e448161240c565b840191505092915050565b6000611e5a826121cf565b611e6481856121eb565b9350611e748185602086016122d5565b611e7d8161240c565b840191505092915050565b6000611e956026836121eb565b9150611ea08261241d565b604082019050919050565b6000611eb86010836121eb565b9150611ec38261246c565b602082019050919050565b6000611edb6012836121eb565b9150611ee682612495565b602082019050919050565b6000611efe6012836121eb565b9150611f09826124be565b602082019050919050565b6000611f216020836121eb565b9150611f2c826124e7565b602082019050919050565b6000611f44602f836121eb565b9150611f4f82612510565b604082019050919050565b6000611f67601a836121eb565b9150611f728261255f565b602082019050919050565b6000611f8a6010836121eb565b9150611f9582612588565b602082019050919050565b611fa9816122bc565b82525050565b6000602082019050611fc46000830184611df8565b92915050565b6000608082019050611fdf6000830187611df8565b611fec6020830186611df8565b611ff96040830185611fa0565b818103606083015261200b8184611e16565b905095945050505050565b600060208201905061202b6000830184611e07565b92915050565b6000602082019050818103600083015261204b8184611e4f565b905092915050565b6000602082019050818103600083015261206c81611e88565b9050919050565b6000602082019050818103600083015261208c81611eab565b9050919050565b600060208201905081810360008301526120ac81611ece565b9050919050565b600060208201905081810360008301526120cc81611ef1565b9050919050565b600060208201905081810360008301526120ec81611f14565b9050919050565b6000602082019050818103600083015261210c81611f37565b9050919050565b6000602082019050818103600083015261212c81611f5a565b9050919050565b6000602082019050818103600083015261214c81611f7d565b9050919050565b60006020820190506121686000830184611fa0565b92915050565b6000612178612189565b9050612184828261233a565b919050565b6000604051905090565b600067ffffffffffffffff8211156121ae576121ad6123c9565b5b6121b78261240c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612207826122bc565b9150612212836122bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122475761224661236b565b5b828201905092915050565b600061225d8261229c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156122f35780820151818401526020810190506122d8565b83811115612302576000848401525b50505050565b6000600282049050600182168061232057607f821691505b602082108114156123345761233361239a565b5b50919050565b6123438261240c565b810181811067ffffffffffffffff82111715612362576123616123c9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920454f412077616c6c65747300000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74206f6e652070617373000000000000600082015250565b7f53616c65206973206e6f74206c69766500000000000000000000000000000000600082015250565b6125ba81612252565b81146125c557600080fd5b50565b6125d181612264565b81146125dc57600080fd5b50565b6125e881612270565b81146125f357600080fd5b50565b6125ff816122bc565b811461260a57600080fd5b5056fe697066733a2f2f516d6166576552554658436854535548544e41565157375735466a56366f676d514b534b59426638636b353142682fa264697066735822122079d96badd80990b7655f36d5332828fb469e8bcdcea502f3e199e47c829ab29564736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101665760003560e01c8063715018a6116100d1578063a22cb4651161008a578063daaeec8611610064578063daaeec86146104c5578063e71433d6146104dc578063e985e9c514610505578063f2fde38b1461054257610166565b8063a22cb46514610443578063b88d4fde1461046c578063c87b56dd1461048857610166565b8063715018a6146103555780638d859f3e1461036c5780638da5cb5b14610397578063957aa58c146103c2578063958f6ed6146103ed57806395d89b411461041857610166565b806323b872dd1161012357806323b872dd146102615780633ccfd60b1461027d57806342842e0e146102945780636352211e146102b05780636c0360eb146102ed57806370a082311461031857610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780631249c58b1461022c57806318160ddd14610236575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190611d71565b61056b565b60405161019f9190612016565b60405180910390f35b3480156101b457600080fd5b506101bd6105fd565b6040516101ca9190612031565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190611dcb565b61068f565b6040516102079190611faf565b60405180910390f35b61022a60048036038101906102259190611d31565b61070e565b005b610234610852565b005b34801561024257600080fd5b5061024b610a15565b6040516102589190612153565b60405180910390f35b61027b60048036038101906102769190611c1b565b610a2c565b005b34801561028957600080fd5b50610292610d51565b005b6102ae60048036038101906102a99190611c1b565b610da2565b005b3480156102bc57600080fd5b506102d760048036038101906102d29190611dcb565b610dc2565b6040516102e49190611faf565b60405180910390f35b3480156102f957600080fd5b50610302610dd4565b60405161030f9190612031565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190611bae565b610df0565b60405161034c9190612153565b60405180910390f35b34801561036157600080fd5b5061036a610ea9565b005b34801561037857600080fd5b50610381610ebd565b60405161038e9190612153565b60405180910390f35b3480156103a357600080fd5b506103ac610ec9565b6040516103b99190611faf565b60405180910390f35b3480156103ce57600080fd5b506103d7610ef3565b6040516103e49190612016565b60405180910390f35b3480156103f957600080fd5b50610402610f06565b60405161040f9190612153565b60405180910390f35b34801561042457600080fd5b5061042d610f0b565b60405161043a9190612031565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190611cf1565b610f9d565b005b61048660048036038101906104819190611c6e565b6110a8565b005b34801561049457600080fd5b506104af60048036038101906104aa9190611dcb565b61111b565b6040516104bc9190612031565b60405180910390f35b3480156104d157600080fd5b506104da611185565b005b3480156104e857600080fd5b5061050360048036038101906104fe9190611d31565b6111b9565b005b34801561051157600080fd5b5061052c60048036038101906105279190611bdb565b611225565b6040516105399190612016565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190611bae565b6112b9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461060c90612308565b80601f016020809104026020016040519081016040528092919081815260200182805461063890612308565b80156106855780601f1061065a57610100808354040283529160200191610685565b820191906000526020600020905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b600061069a8261133d565b6106d0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071982610dc2565b90508073ffffffffffffffffffffffffffffffffffffffff1661073a61139c565b73ffffffffffffffffffffffffffffffffffffffff161461079d576107668161076161139c565b611225565b61079c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860149054906101000a900460ff166108a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089890612133565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461090f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090690612073565b60405180910390fd5b60018061091b336113a4565b61092591906121fc565b1115610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90612113565b60405180910390fd5b60646001610972610a15565b61097c91906121fc565b11156109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b4906120b3565b60405180910390fd5b67016345785d8a0000341015610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff90612093565b60405180910390fd5b610a133360016113fb565b565b6000610a1f611419565b6001546000540303905090565b6000610a378261141e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aaa846114ec565b91509150610ac08187610abb61139c565b611513565b610b0c57610ad586610ad061139c565b611225565b610b0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b73576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b808686866001611557565b8015610b8b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5985610c3588888761155d565b7c020000000000000000000000000000000000000000000000000000000017611585565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ce1576000600185019050600060046000838152602001908152602001600020541415610cdf576000548114610cde578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4986868660016115b0565b505050505050565b610d596115b6565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d9f573d6000803e3d6000fd5b50565b610dbd838383604051806020016040528060008152506110a8565b505050565b6000610dcd8261141e565b9050919050565b60405180606001604052806036815260200161260e6036913981565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e58576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb16115b6565b610ebb6000611634565b565b67016345785d8a000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860149054906101000a900460ff1681565b606481565b606060038054610f1a90612308565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4690612308565b8015610f935780601f10610f6857610100808354040283529160200191610f93565b820191906000526020600020905b815481529060010190602001808311610f7657829003601f168201915b5050505050905090565b8060076000610faa61139c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661105761139c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161109c9190612016565b60405180910390a35050565b6110b3848484610a2c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611115576110de848484846116fa565b611114576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111268261133d565b611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906120f3565b60405180910390fd5b60405180606001604052806036815260200161260e603691399050919050565b61118d6115b6565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6111c16115b6565b6064816111cc610a15565b6111d691906121fc565b1115611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906120b3565b60405180910390fd5b61122182826113fb565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112c16115b6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612053565b60405180910390fd5b61133a81611634565b50565b600081611348611419565b11158015611357575060005482105b8015611395575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61141582826040518060200160405280600081525061185a565b5050565b600090565b6000808290508061142d611419565b116114b5576000548110156114b45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156114b2575b60008114156114a857600460008360019003935083815260200190815260200160002054905061147d565b80925050506114e7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115748686846118f7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6115be611900565b73ffffffffffffffffffffffffffffffffffffffff166115dc610ec9565b73ffffffffffffffffffffffffffffffffffffffff1614611632576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611629906120d3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261172061139c565b8786866040518563ffffffff1660e01b81526004016117429493929190611fca565b602060405180830381600087803b15801561175c57600080fd5b505af192505050801561178d57506040513d601f19601f8201168201806040525081019061178a9190611d9e565b60015b611807573d80600081146117bd576040519150601f19603f3d011682016040523d82523d6000602084013e6117c2565b606091505b506000815114156117ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6118648383611908565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f257600080549050600083820390505b6118a460008683806001019450866116fa565b6118da576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106118915781600054146118ef57600080fd5b50505b505050565b60009392505050565b600033905090565b6000805490506000821415611949576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119566000848385611557565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119cd836119be600086600061155d565b6119c785611ac5565b17611585565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a6e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611a33565b506000821415611aaa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611ac060008483856115b0565b505050565b60006001821460e11b9050919050565b6000611ae8611ae384612193565b61216e565b905082815260208101848484011115611b0457611b036123fd565b5b611b0f8482856122c6565b509392505050565b600081359050611b26816125b1565b92915050565b600081359050611b3b816125c8565b92915050565b600081359050611b50816125df565b92915050565b600081519050611b65816125df565b92915050565b600082601f830112611b8057611b7f6123f8565b5b8135611b90848260208601611ad5565b91505092915050565b600081359050611ba8816125f6565b92915050565b600060208284031215611bc457611bc3612407565b5b6000611bd284828501611b17565b91505092915050565b60008060408385031215611bf257611bf1612407565b5b6000611c0085828601611b17565b9250506020611c1185828601611b17565b9150509250929050565b600080600060608486031215611c3457611c33612407565b5b6000611c4286828701611b17565b9350506020611c5386828701611b17565b9250506040611c6486828701611b99565b9150509250925092565b60008060008060808587031215611c8857611c87612407565b5b6000611c9687828801611b17565b9450506020611ca787828801611b17565b9350506040611cb887828801611b99565b925050606085013567ffffffffffffffff811115611cd957611cd8612402565b5b611ce587828801611b6b565b91505092959194509250565b60008060408385031215611d0857611d07612407565b5b6000611d1685828601611b17565b9250506020611d2785828601611b2c565b9150509250929050565b60008060408385031215611d4857611d47612407565b5b6000611d5685828601611b17565b9250506020611d6785828601611b99565b9150509250929050565b600060208284031215611d8757611d86612407565b5b6000611d9584828501611b41565b91505092915050565b600060208284031215611db457611db3612407565b5b6000611dc284828501611b56565b91505092915050565b600060208284031215611de157611de0612407565b5b6000611def84828501611b99565b91505092915050565b611e0181612252565b82525050565b611e1081612264565b82525050565b6000611e21826121c4565b611e2b81856121da565b9350611e3b8185602086016122d5565b611e448161240c565b840191505092915050565b6000611e5a826121cf565b611e6481856121eb565b9350611e748185602086016122d5565b611e7d8161240c565b840191505092915050565b6000611e956026836121eb565b9150611ea08261241d565b604082019050919050565b6000611eb86010836121eb565b9150611ec38261246c565b602082019050919050565b6000611edb6012836121eb565b9150611ee682612495565b602082019050919050565b6000611efe6012836121eb565b9150611f09826124be565b602082019050919050565b6000611f216020836121eb565b9150611f2c826124e7565b602082019050919050565b6000611f44602f836121eb565b9150611f4f82612510565b604082019050919050565b6000611f67601a836121eb565b9150611f728261255f565b602082019050919050565b6000611f8a6010836121eb565b9150611f9582612588565b602082019050919050565b611fa9816122bc565b82525050565b6000602082019050611fc46000830184611df8565b92915050565b6000608082019050611fdf6000830187611df8565b611fec6020830186611df8565b611ff96040830185611fa0565b818103606083015261200b8184611e16565b905095945050505050565b600060208201905061202b6000830184611e07565b92915050565b6000602082019050818103600083015261204b8184611e4f565b905092915050565b6000602082019050818103600083015261206c81611e88565b9050919050565b6000602082019050818103600083015261208c81611eab565b9050919050565b600060208201905081810360008301526120ac81611ece565b9050919050565b600060208201905081810360008301526120cc81611ef1565b9050919050565b600060208201905081810360008301526120ec81611f14565b9050919050565b6000602082019050818103600083015261210c81611f37565b9050919050565b6000602082019050818103600083015261212c81611f5a565b9050919050565b6000602082019050818103600083015261214c81611f7d565b9050919050565b60006020820190506121686000830184611fa0565b92915050565b6000612178612189565b9050612184828261233a565b919050565b6000604051905090565b600067ffffffffffffffff8211156121ae576121ad6123c9565b5b6121b78261240c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612207826122bc565b9150612212836122bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122475761224661236b565b5b828201905092915050565b600061225d8261229c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156122f35780820151818401526020810190506122d8565b83811115612302576000848401525b50505050565b6000600282049050600182168061232057607f821691505b602082108114156123345761233361239a565b5b50919050565b6123438261240c565b810181811067ffffffffffffffff82111715612362576123616123c9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920454f412077616c6c65747300000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e74206f6e652070617373000000000000600082015250565b7f53616c65206973206e6f74206c69766500000000000000000000000000000000600082015250565b6125ba81612252565b81146125c557600080fd5b50565b6125d181612264565b81146125dc57600080fd5b50565b6125e881612270565b81146125f357600080fd5b50565b6125ff816122bc565b811461260a57600080fd5b5056fe697066733a2f2f516d6166576552554658436854535548544e41565157375735466a56366f676d514b534b59426638636b353142682fa264697066735822122079d96badd80990b7655f36d5332828fb469e8bcdcea502f3e199e47c829ab29564736f6c63430008070033
Deployed Bytecode Sourcemap
55126:2274:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22030:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22932:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29423:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28856:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56224:410;;;:::i;:::-;;18683:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33062:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56925:109;;;;;;;;;;;;;:::i;:::-;;35983:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24325:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55601:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19867:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:103;;;;;;;;;;;;;:::i;:::-;;55378:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2161:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55511:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55257:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23108:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29981:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36774:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57192:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56732:77;;;;;;;;;;;;;:::i;:::-;;55918:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30372:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3067:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22030:639;22115:4;22454:10;22439:25;;:11;:25;;;;:102;;;;22531:10;22516:25;;:11;:25;;;;22439:102;:179;;;;22608:10;22593:25;;:11;:25;;;;22439:179;22419:199;;22030:639;;;:::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;;;;;;;;;;;;;;29519:64;29603:15;:24;29619:7;29603:24;;;;;;;;;;;:30;;;;;;;;;;;;29596:37;;29423:218;;;:::o;28856:408::-;28945:13;28961:16;28969:7;28961;:16::i;:::-;28945:32;;29017:5;28994:28;;:19;:17;:19::i;:::-;:28;;;28990:175;;29042:44;29059:5;29066:19;:17;:19::i;:::-;29042:16;:44::i;:::-;29037:128;;29114:35;;;;;;;;;;;;;;29037:128;28990:175;29210:2;29177:15;:24;29193:7;29177:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29248:7;29244:2;29228:28;;29237:5;29228:28;;;;;;;;;;;;28934:330;28856:408;;:::o;56224:410::-;56276:4;;;;;;;;;;;56268:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;56334:9;56320:23;;:10;:23;;;56312:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;56416:1;56411;56383:25;56397:10;56383:13;:25::i;:::-;:29;;;;:::i;:::-;:34;;56375:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55294:3;56483:1;56467:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;56459:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55410:9;56540;:18;;56532:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;56602:24;56612:10;56624:1;56602:9;:24::i;:::-;56224:410::o;18683:323::-;18744:7;18972:15;:13;:15::i;:::-;18957:12;;18941:13;;:28;:46;18934:53;;18683:323;:::o;33062:2825::-;33204:27;33234;33253:7;33234:18;:27::i;:::-;33204:57;;33319:4;33278:45;;33294:19;33278:45;;;33274:86;;33332:28;;;;;;;;;;;;;;33274:86;33374:27;33403:23;33430:35;33457:7;33430:26;:35::i;:::-;33373:92;;;;33565:68;33590:15;33607:4;33613:19;:17;:19::i;:::-;33565:24;:68::i;:::-;33560:180;;33653:43;33670:4;33676:19;:17;:19::i;:::-;33653:16;:43::i;:::-;33648:92;;33705:35;;;;;;;;;;;;;;33648:92;33560:180;33771:1;33757:16;;:2;:16;;;33753:52;;;33782:23;;;;;;;;;;;;;;33753:52;33818:43;33840:4;33846:2;33850:7;33859:1;33818:21;:43::i;:::-;33954:15;33951:160;;;34094:1;34073:19;34066:30;33951:160;34491:18;:24;34510:4;34491:24;;;;;;;;;;;;;;;;34489:26;;;;;;;;;;;;34560:18;:22;34579:2;34560:22;;;;;;;;;;;;;;;;34558:24;;;;;;;;;;;34882:146;34919:2;34968:45;34983:4;34989:2;34993:19;34968:14;:45::i;:::-;15082:8;34940:73;34882:18;:146::i;:::-;34853:17;:26;34871:7;34853:26;;;;;;;;;;;:175;;;;35199:1;15082:8;35148:19;:47;:52;35144:627;;;35221:19;35253:1;35243:7;:11;35221:33;;35410:1;35376:17;:30;35394:11;35376:30;;;;;;;;;;;;:35;35372:384;;;35514:13;;35499:11;:28;35495:242;;35694:19;35661:17;:30;35679:11;35661:30;;;;;;;;;;;:52;;;;35495:242;35372:384;35202:569;35144:627;35818:7;35814:2;35799:27;;35808:4;35799:27;;;;;;;;;;;;35837:42;35858:4;35864:2;35868:7;35877:1;35837:20;:42::i;:::-;33193:2694;;;33062:2825;;;:::o;56925:109::-;2047:13;:11;:13::i;:::-;56983:10:::1;56975:28;;:51;57004:21;56975:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;56925:109::o:0;35983:193::-;36129:39;36146:4;36152:2;36156:7;36129:39;;;;;;;;;;;;:16;:39::i;:::-;35983:193;;;:::o;24325:152::-;24397:7;24440:27;24459:7;24440:18;:27::i;:::-;24417:52;;24325:152;;;:::o;55601:89::-;;;;;;;;;;;;;;;;;;;:::o;19867:233::-;19939:7;19980:1;19963:19;;:5;:19;;;19959:60;;;19991:28;;;;;;;;;;;;;;19959:60;14026:13;20037:18;:25;20056:5;20037:25;;;;;;;;;;;;;;;;:55;20030:62;;19867:233;;;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;55378:41::-;55410:9;55378:41;:::o;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;55511:16::-;;;;;;;;;;;;;:::o;55257:40::-;55294:3;55257:40;:::o;23108:104::-;23164:13;23197:7;23190:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23108:104;:::o;29981:234::-;30128:8;30076:18;:39;30095:19;:17;:19::i;:::-;30076:39;;;;;;;;;;;;;;;:49;30116:8;30076:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30188:8;30152:55;;30167:19;:17;:19::i;:::-;30152:55;;;30198:8;30152:55;;;;;;:::i;:::-;;;;;;;;29981:234;;:::o;36774:407::-;36949:31;36962:4;36968:2;36972:7;36949:12;:31::i;:::-;37013:1;36995:2;:14;;;:19;36991:183;;37034:56;37065:4;37071:2;37075:7;37084:5;37034:30;:56::i;:::-;37029:145;;37118:40;;;;;;;;;;;;;;37029:145;36991:183;36774:407;;;;:::o;57192:205::-;57257:13;57296:16;57304:7;57296;:16::i;:::-;57288:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57382:7;;;;;;;;;;;;;;;;;57375:14;;57192:205;;;:::o;56732:77::-;2047:13;:11;:13::i;:::-;56797:4:::1;;;;;;;;;;;56796:5;56789:4;;:12;;;;;;;;;;;;;;;;;;56732:77::o:0;55918:198::-;2047:13;:11;:13::i;:::-;55294:3:::1;56029:8;56013:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;56005:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;56085:23;56095:2;56099:8;56085:9;:23::i;:::-;55918:198:::0;;:::o;30372:164::-;30469:4;30493:18;:25;30512:5;30493:25;;;;;;;;;;;;;;;:35;30519:8;30493:35;;;;;;;;;;;;;;;;;;;;;;;;;30486:42;;30372:164;;;;:::o;3067:201::-;2047:13;:11;:13::i;:::-;3176:1:::1;3156:22;;:8;:22;;;;3148:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;30794:282::-;30859:4;30915:7;30896:15;:13;:15::i;:::-;:26;;:66;;;;;30949:13;;30939:7;:23;30896:66;:153;;;;;31048:1;14802:8;31000:17;:26;31018:7;31000:26;;;;;;;;;;;;:44;:49;30896:153;30876:173;;30794:282;;;:::o;53102:105::-;53162:7;53189:10;53182:17;;53102:105;:::o;20182:178::-;20243:7;14026:13;14164:2;20271:18;:25;20290:5;20271:25;;;;;;;;;;;;;;;;:50;;20270:82;20263:89;;20182:178;;;:::o;46934:112::-;47011:27;47021:2;47025:8;47011:27;;;;;;;;;;;;:9;:27::i;:::-;46934:112;;:::o;18199:92::-;18255:7;18199:92;:::o;25480:1275::-;25547:7;25567:12;25582:7;25567:22;;25650:4;25631:15;:13;:15::i;:::-;:23;25627:1061;;25684:13;;25677:4;:20;25673:1015;;;25722:14;25739:17;:23;25757:4;25739:23;;;;;;;;;;;;25722:40;;25856:1;14802:8;25828:6;:24;:29;25824:845;;;26493:113;26510:1;26500:6;:11;26493:113;;;26553:17;:25;26571:6;;;;;;;26553:25;;;;;;;;;;;;26544:34;;26493:113;;;26639:6;26632:13;;;;;;25824:845;25699:989;25673:1015;25627:1061;26716:31;;;;;;;;;;;;;;25480:1275;;;;:::o;31957:485::-;32059:27;32088:23;32129:38;32170:15;:24;32186:7;32170:24;;;;;;;;;;;32129:65;;32347:18;32324:41;;32404:19;32398:26;32379:45;;32309:126;31957:485;;;:::o;31185:659::-;31334:11;31499:16;31492:5;31488:28;31479:37;;31659:16;31648:9;31644:32;31631:45;;31809:15;31798:9;31795:30;31787:5;31776:9;31773:20;31770:56;31760:66;;31185:659;;;;;:::o;37843:159::-;;;;;:::o;52411:311::-;52546:7;52566:16;15206:3;52592:19;:41;;52566:68;;15206:3;52660:31;52671:4;52677:2;52681:9;52660:10;:31::i;:::-;52652:40;;:62;;52645:69;;;52411:311;;;;;:::o;27303:450::-;27383:14;27551:16;27544:5;27540:28;27531:37;;27728:5;27714:11;27689:23;27685:41;27682:52;27675:5;27672:63;27662:73;;27303:450;;;;:::o;38667:158::-;;;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;3428:191::-;3502:16;3521:6;;;;;;;;;;;3502:25;;3547:8;3538:6;;:17;;;;;;;;;;;;;;;;;;3602:8;3571:40;;3592:8;3571:40;;;;;;;;;;;;3491:128;3428:191;:::o;39265:716::-;39428:4;39474:2;39449:45;;;39495:19;:17;:19::i;:::-;39516:4;39522:7;39531:5;39449:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39445:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39749:1;39732:6;:13;:18;39728:235;;;39778:40;;;;;;;;;;;;;;39728:235;39921:6;39915:13;39906:6;39902:2;39898:15;39891:38;39445:529;39618:54;;;39608:64;;;:6;:64;;;;39601:71;;;39265:716;;;;;;:::o;46161:689::-;46292:19;46298:2;46302:8;46292:5;:19::i;:::-;46371:1;46353:2;:14;;;:19;46349:483;;46393:11;46407:13;;46393:27;;46439:13;46461:8;46455:3;:14;46439:30;;46488:233;46519:62;46558:1;46562:2;46566:7;;;;;;46575:5;46519:30;:62::i;:::-;46514:167;;46617:40;;;;;;;;;;;;;;46514:167;46716:3;46708:5;:11;46488:233;;46803:3;46786:13;;:20;46782:34;;46808:8;;;46782:34;46374:458;;46349:483;46161:689;;;:::o;52112:147::-;52249:6;52112:147;;;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;40443:2966::-;40516:20;40539:13;;40516:36;;40579:1;40567:8;:13;40563:44;;;40589:18;;;;;;;;;;;;;;40563:44;40620:61;40650:1;40654:2;40658:12;40672:8;40620:21;:61::i;:::-;41164:1;14164:2;41134:1;:26;;41133:32;41121:8;:45;41095:18;:22;41114:2;41095:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41443:139;41480:2;41534:33;41557:1;41561:2;41565:1;41534:14;:33::i;:::-;41501:30;41522:8;41501:20;:30::i;:::-;:66;41443:18;:139::i;:::-;41409:17;:31;41427:12;41409:31;;;;;;;;;;;:173;;;;41599:16;41630:11;41659:8;41644:12;:23;41630:37;;42180:16;42176:2;42172:25;42160:37;;42552:12;42512:8;42471:1;42409:25;42350:1;42289;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;43008:7;43004:15;42993:26;;42863:346;;;42867:77;43254:1;43242:8;:13;43238:45;;;43264:19;;;;;;;;;;;;;;43238:45;43316:3;43300:13;:19;;;;40869:2462;;43341:60;43370:1;43374:2;43378:12;43392:8;43341:20;:60::i;:::-;40505:2904;40443:2966;;:::o;27855:324::-;27925:14;28158:1;28148:8;28145:15;28119:24;28115:46;28105:56;;27855:324;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:366::-;6982:3;7003:67;7067:2;7062:3;7003:67;:::i;:::-;6996:74;;7079:93;7168:3;7079:93;:::i;:::-;7197:2;7192:3;7188:12;7181:19;;6840:366;;;:::o;7212:::-;7354:3;7375:67;7439:2;7434:3;7375:67;:::i;:::-;7368:74;;7451:93;7540:3;7451:93;:::i;:::-;7569:2;7564:3;7560:12;7553:19;;7212:366;;;:::o;7584:::-;7726:3;7747:67;7811:2;7806:3;7747:67;:::i;:::-;7740:74;;7823:93;7912:3;7823:93;:::i;:::-;7941:2;7936:3;7932:12;7925:19;;7584:366;;;:::o;7956:::-;8098:3;8119:67;8183:2;8178:3;8119:67;:::i;:::-;8112:74;;8195:93;8284:3;8195:93;:::i;:::-;8313:2;8308:3;8304:12;8297:19;;7956:366;;;:::o;8328:::-;8470:3;8491:67;8555:2;8550:3;8491:67;:::i;:::-;8484:74;;8567:93;8656:3;8567:93;:::i;:::-;8685:2;8680:3;8676:12;8669:19;;8328:366;;;:::o;8700:::-;8842:3;8863:67;8927:2;8922:3;8863:67;:::i;:::-;8856:74;;8939:93;9028:3;8939:93;:::i;:::-;9057:2;9052:3;9048:12;9041:19;;8700:366;;;:::o;9072:::-;9214:3;9235:67;9299:2;9294:3;9235:67;:::i;:::-;9228:74;;9311:93;9400:3;9311:93;:::i;:::-;9429:2;9424:3;9420:12;9413:19;;9072:366;;;:::o;9444:::-;9586:3;9607:67;9671:2;9666:3;9607:67;:::i;:::-;9600:74;;9683:93;9772:3;9683:93;:::i;:::-;9801:2;9796:3;9792:12;9785:19;;9444:366;;;:::o;9816:118::-;9903:24;9921:5;9903:24;:::i;:::-;9898:3;9891:37;9816:118;;:::o;9940:222::-;10033:4;10071:2;10060:9;10056:18;10048:26;;10084:71;10152:1;10141:9;10137:17;10128:6;10084:71;:::i;:::-;9940:222;;;;:::o;10168:640::-;10363:4;10401:3;10390:9;10386:19;10378:27;;10415:71;10483:1;10472:9;10468:17;10459:6;10415:71;:::i;:::-;10496:72;10564:2;10553:9;10549:18;10540:6;10496:72;:::i;:::-;10578;10646:2;10635:9;10631:18;10622:6;10578:72;:::i;:::-;10697:9;10691:4;10687:20;10682:2;10671:9;10667:18;10660:48;10725:76;10796:4;10787:6;10725:76;:::i;:::-;10717:84;;10168:640;;;;;;;:::o;10814:210::-;10901:4;10939:2;10928:9;10924:18;10916:26;;10952:65;11014:1;11003:9;10999:17;10990:6;10952:65;:::i;:::-;10814:210;;;;:::o;11030:313::-;11143:4;11181:2;11170:9;11166:18;11158:26;;11230:9;11224:4;11220:20;11216:1;11205:9;11201:17;11194:47;11258:78;11331:4;11322:6;11258:78;:::i;:::-;11250:86;;11030:313;;;;:::o;11349:419::-;11515:4;11553:2;11542:9;11538:18;11530:26;;11602:9;11596:4;11592:20;11588:1;11577:9;11573:17;11566:47;11630:131;11756:4;11630:131;:::i;:::-;11622:139;;11349:419;;;:::o;11774:::-;11940:4;11978:2;11967:9;11963:18;11955:26;;12027:9;12021:4;12017:20;12013:1;12002:9;11998:17;11991:47;12055:131;12181:4;12055:131;:::i;:::-;12047:139;;11774:419;;;:::o;12199:::-;12365:4;12403:2;12392:9;12388:18;12380:26;;12452:9;12446:4;12442:20;12438:1;12427:9;12423:17;12416:47;12480:131;12606:4;12480:131;:::i;:::-;12472:139;;12199:419;;;:::o;12624:::-;12790:4;12828:2;12817:9;12813:18;12805:26;;12877:9;12871:4;12867:20;12863:1;12852:9;12848:17;12841:47;12905:131;13031:4;12905:131;:::i;:::-;12897:139;;12624:419;;;:::o;13049:::-;13215:4;13253:2;13242:9;13238:18;13230:26;;13302:9;13296:4;13292:20;13288:1;13277:9;13273:17;13266:47;13330:131;13456:4;13330:131;:::i;:::-;13322:139;;13049:419;;;:::o;13474:::-;13640:4;13678:2;13667:9;13663:18;13655:26;;13727:9;13721:4;13717:20;13713:1;13702:9;13698:17;13691:47;13755:131;13881:4;13755:131;:::i;:::-;13747:139;;13474:419;;;:::o;13899:::-;14065:4;14103:2;14092:9;14088:18;14080:26;;14152:9;14146:4;14142:20;14138:1;14127:9;14123:17;14116:47;14180:131;14306:4;14180:131;:::i;:::-;14172:139;;13899:419;;;:::o;14324:::-;14490:4;14528:2;14517:9;14513:18;14505:26;;14577:9;14571:4;14567:20;14563:1;14552:9;14548:17;14541:47;14605:131;14731:4;14605:131;:::i;:::-;14597:139;;14324:419;;;:::o;14749:222::-;14842:4;14880:2;14869:9;14865:18;14857:26;;14893:71;14961:1;14950:9;14946:17;14937:6;14893:71;:::i;:::-;14749:222;;;;:::o;14977:129::-;15011:6;15038:20;;:::i;:::-;15028:30;;15067:33;15095:4;15087:6;15067:33;:::i;:::-;14977:129;;;:::o;15112:75::-;15145:6;15178:2;15172:9;15162:19;;15112:75;:::o;15193:307::-;15254:4;15344:18;15336:6;15333:30;15330:56;;;15366:18;;:::i;:::-;15330:56;15404:29;15426:6;15404:29;:::i;:::-;15396:37;;15488:4;15482;15478:15;15470:23;;15193:307;;;:::o;15506:98::-;15557:6;15591:5;15585:12;15575:22;;15506:98;;;:::o;15610:99::-;15662:6;15696:5;15690:12;15680:22;;15610:99;;;:::o;15715:168::-;15798:11;15832:6;15827:3;15820:19;15872:4;15867:3;15863:14;15848:29;;15715:168;;;;:::o;15889:169::-;15973:11;16007:6;16002:3;15995:19;16047:4;16042:3;16038:14;16023:29;;15889:169;;;;:::o;16064:305::-;16104:3;16123:20;16141:1;16123:20;:::i;:::-;16118:25;;16157:20;16175:1;16157:20;:::i;:::-;16152:25;;16311:1;16243:66;16239:74;16236:1;16233:81;16230:107;;;16317:18;;:::i;:::-;16230:107;16361:1;16358;16354:9;16347:16;;16064:305;;;;:::o;16375:96::-;16412:7;16441:24;16459:5;16441:24;:::i;:::-;16430:35;;16375:96;;;:::o;16477:90::-;16511:7;16554:5;16547:13;16540:21;16529:32;;16477:90;;;:::o;16573:149::-;16609:7;16649:66;16642:5;16638:78;16627:89;;16573:149;;;:::o;16728:126::-;16765:7;16805:42;16798:5;16794:54;16783:65;;16728:126;;;:::o;16860:77::-;16897:7;16926:5;16915:16;;16860:77;;;:::o;16943:154::-;17027:6;17022:3;17017;17004:30;17089:1;17080:6;17075:3;17071:16;17064:27;16943:154;;;:::o;17103:307::-;17171:1;17181:113;17195:6;17192:1;17189:13;17181:113;;;17280:1;17275:3;17271:11;17265:18;17261:1;17256:3;17252:11;17245:39;17217:2;17214:1;17210:10;17205:15;;17181:113;;;17312:6;17309:1;17306:13;17303:101;;;17392:1;17383:6;17378:3;17374:16;17367:27;17303:101;17152:258;17103:307;;;:::o;17416:320::-;17460:6;17497:1;17491:4;17487:12;17477:22;;17544:1;17538:4;17534:12;17565:18;17555:81;;17621:4;17613:6;17609:17;17599:27;;17555:81;17683:2;17675:6;17672:14;17652:18;17649:38;17646:84;;;17702:18;;:::i;:::-;17646:84;17467:269;17416:320;;;:::o;17742:281::-;17825:27;17847:4;17825:27;:::i;:::-;17817:6;17813:40;17955:6;17943:10;17940:22;17919:18;17907:10;17904:34;17901:62;17898:88;;;17966:18;;:::i;:::-;17898:88;18006:10;18002:2;17995:22;17785:238;17742:281;;:::o;18029:180::-;18077:77;18074:1;18067:88;18174:4;18171:1;18164:15;18198:4;18195:1;18188:15;18215:180;18263:77;18260:1;18253:88;18360:4;18357:1;18350:15;18384:4;18381:1;18374:15;18401:180;18449:77;18446:1;18439:88;18546:4;18543:1;18536:15;18570:4;18567:1;18560:15;18587:117;18696:1;18693;18686:12;18710:117;18819:1;18816;18809:12;18833:117;18942:1;18939;18932:12;18956:117;19065:1;19062;19055:12;19079:102;19120:6;19171:2;19167:7;19162:2;19155:5;19151:14;19147:28;19137:38;;19079:102;;;:::o;19187:225::-;19327:34;19323:1;19315:6;19311:14;19304:58;19396:8;19391:2;19383:6;19379:15;19372:33;19187:225;:::o;19418:166::-;19558:18;19554:1;19546:6;19542:14;19535:42;19418:166;:::o;19590:168::-;19730:20;19726:1;19718:6;19714:14;19707:44;19590:168;:::o;19764:::-;19904:20;19900:1;19892:6;19888:14;19881:44;19764:168;:::o;19938:182::-;20078:34;20074:1;20066:6;20062:14;20055:58;19938:182;:::o;20126:234::-;20266:34;20262:1;20254:6;20250:14;20243:58;20335:17;20330:2;20322:6;20318:15;20311:42;20126:234;:::o;20366:176::-;20506:28;20502:1;20494:6;20490:14;20483:52;20366:176;:::o;20548:166::-;20688:18;20684:1;20676:6;20672:14;20665:42;20548:166;:::o;20720:122::-;20793:24;20811:5;20793:24;:::i;:::-;20786:5;20783:35;20773:63;;20832:1;20829;20822:12;20773:63;20720:122;:::o;20848:116::-;20918:21;20933:5;20918:21;:::i;:::-;20911:5;20908:32;20898:60;;20954:1;20951;20944:12;20898:60;20848:116;:::o;20970:120::-;21042:23;21059:5;21042:23;:::i;:::-;21035:5;21032:34;21022:62;;21080:1;21077;21070:12;21022:62;20970:120;:::o;21096:122::-;21169:24;21187:5;21169:24;:::i;:::-;21162:5;21159:35;21149:63;;21208:1;21205;21198:12;21149:63;21096:122;:::o
Swarm Source
ipfs://79d96badd80990b7655f36d5332828fb469e8bcdcea502f3e199e47c829ab295
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.