ERC-721
Overview
Max Total Supply
1,657 Tiger Zuki
Holders
1,581
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 Tiger ZukiLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-27 */ // Sources flattened with hardhat v2.12.3 https://hardhat.org // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File operator-filter-registry/src/[email protected] pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File erc721a/contracts/[email protected] // 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/[email protected] // 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 @openzeppelin/contracts/utils/[email protected] // 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/[email protected] // 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 @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File contracts/NFT.sol pragma solidity ^0.8.13; contract NFT is ERC721A, DefaultOperatorFilterer, Ownable { using Address for address; string private _baseTokenURI; uint256 public maxSupply; uint256 public maxMint; uint256 public price; bool public mintable; mapping(address => uint256) public minted; constructor( string memory url, string memory name, string memory symbol, address _owner, uint256 _price ) ERC721A(name, symbol) { _baseTokenURI = url; maxSupply = 3333; maxMint = 11; price = _price; mintable = true; _transferOwnership(_owner); } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function tokenURI( uint256 tokenId ) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return string(abi.encodePacked(baseURI, _toString(tokenId), ".json")); } function changeBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function changeMintable(bool _mintable) public onlyOwner { mintable = _mintable; } function changePrice(uint256 _price) public onlyOwner { price = _price; } function changeMaxMint(uint256 _maxMint) public onlyOwner { maxMint = _maxMint; } function mint(uint256 num) public payable { uint256 amount = num * price; if (minted[msg.sender] == 0) { amount -= price; } require(mintable, "status err"); require(msg.value == amount, "eth err"); require(minted[msg.sender] + num <= maxMint, "num err"); minted[msg.sender] += num; require(totalSupply() + num <= maxSupply, "num err"); _safeMint(msg.sender, num); } function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function _startTokenId() internal view override returns (uint256) { return 1; } function approve( address operator, uint256 tokenId ) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function airdrop( address[] memory users, uint256[] memory nums ) public onlyOwner { require(users.length == nums.length); for (uint i = 0; i < users.length; i++) { uint256 num = nums[i]; address user = users[i]; require(totalSupply() + num <= maxSupply, "num err"); _safeMint(user, num); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"url","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"nums","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"changeMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintable","type":"bool"}],"name":"changeMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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
60806040523480156200001157600080fd5b50604051620039af380380620039af8339818101604052810190620000379190620006dc565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018585816002908051906020019062000068929190620003ef565b50806003908051906020019062000081929190620003ef565b50620000926200031860201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200028f57801562000155576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200011b929190620007d2565b600060405180830381600087803b1580156200013657600080fd5b505af11580156200014b573d6000803e3d6000fd5b505050506200028e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200020f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001d5929190620007d2565b600060405180830381600087803b158015620001f057600080fd5b505af115801562000205573d6000803e3d6000fd5b505050506200028d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002589190620007ff565b600060405180830381600087803b1580156200027357600080fd5b505af115801562000288573d6000803e3d6000fd5b505050505b5b5b5050620002b1620002a56200032160201b60201c565b6200032960201b60201c565b8460099080519060200190620002c9929190620003ef565b50610d05600a81905550600b808190555080600c819055506001600d60006101000a81548160ff0219169083151502179055506200030d826200032960201b60201c565b505050505062000880565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003fd906200084b565b90600052602060002090601f0160209004810192826200042157600085556200046d565b82601f106200043c57805160ff19168380011785556200046d565b828001600101855582156200046d579182015b828111156200046c5782518255916020019190600101906200044f565b5b5090506200047c919062000480565b5090565b5b808211156200049b57600081600090555060010162000481565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200050882620004bd565b810181811067ffffffffffffffff821117156200052a5762000529620004ce565b5b80604052505050565b60006200053f6200049f565b90506200054d8282620004fd565b919050565b600067ffffffffffffffff82111562000570576200056f620004ce565b5b6200057b82620004bd565b9050602081019050919050565b60005b83811015620005a85780820151818401526020810190506200058b565b83811115620005b8576000848401525b50505050565b6000620005d5620005cf8462000552565b62000533565b905082815260208101848484011115620005f457620005f3620004b8565b5b6200060184828562000588565b509392505050565b600082601f830112620006215762000620620004b3565b5b815162000633848260208601620005be565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000669826200063c565b9050919050565b6200067b816200065c565b81146200068757600080fd5b50565b6000815190506200069b8162000670565b92915050565b6000819050919050565b620006b681620006a1565b8114620006c257600080fd5b50565b600081519050620006d681620006ab565b92915050565b600080600080600060a08688031215620006fb57620006fa620004a9565b5b600086015167ffffffffffffffff8111156200071c576200071b620004ae565b5b6200072a8882890162000609565b955050602086015167ffffffffffffffff8111156200074e576200074d620004ae565b5b6200075c8882890162000609565b945050604086015167ffffffffffffffff81111562000780576200077f620004ae565b5b6200078e8882890162000609565b9350506060620007a1888289016200068a565b9250506080620007b488828901620006c5565b9150509295509295909350565b620007cc816200065c565b82525050565b6000604082019050620007e96000830185620007c1565b620007f86020830184620007c1565b9392505050565b6000602082019050620008166000830184620007c1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086457607f821691505b6020821081036200087a57620008796200081c565b5b50919050565b61311f80620008906000396000f3fe6080604052600436106101cd5760003560e01c806367243482116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461060b578063d5abeb0114610648578063e985e9c514610673578063f2fde38b146106b0576101cd565b8063a0712d6814610581578063a22cb4651461059d578063a2b40d19146105c6578063b88d4fde146105ef576101cd565b80637501f741116100d15780637501f741146104d55780638da5cb5b1461050057806395d89b411461052b578063a035b1fe14610556576101cd565b8063672434821461045857806370a0823114610481578063715018a6146104be576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103ab5780634779b82e146103c75780634bf365df146103f05780636352211e1461041b576101cd565b806323b872dd1461032457806339a0c6f9146103405780633ccfd60b1461036957806341f4343414610380576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102935780631e7269c5146102be57806320c63e3b146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061213b565b6106d9565b6040516102069190612183565b60405180910390f35b34801561021b57600080fd5b5061022461076b565b6040516102319190612237565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061228f565b6107fd565b60405161026e91906122fd565b60405180910390f35b610291600480360381019061028c9190612344565b61087c565b005b34801561029f57600080fd5b506102a8610895565b6040516102b59190612393565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906123ae565b6108ac565b6040516102f29190612393565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061228f565b6108c4565b005b61033e600480360381019061033991906123db565b6108d6565b005b34801561034c57600080fd5b5061036760048036038101906103629190612563565b610925565b005b34801561037557600080fd5b5061037e610947565b005b34801561038c57600080fd5b50610395610998565b6040516103a2919061260b565b60405180910390f35b6103c560048036038101906103c091906123db565b6109aa565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612652565b6109f9565b005b3480156103fc57600080fd5b50610405610a1e565b6040516104129190612183565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d919061228f565b610a31565b60405161044f91906122fd565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061280a565b610a43565b005b34801561048d57600080fd5b506104a860048036038101906104a391906123ae565b610b1e565b6040516104b59190612393565b60405180910390f35b3480156104ca57600080fd5b506104d3610bd6565b005b3480156104e157600080fd5b506104ea610bea565b6040516104f79190612393565b60405180910390f35b34801561050c57600080fd5b50610515610bf0565b60405161052291906122fd565b60405180910390f35b34801561053757600080fd5b50610540610c1a565b60405161054d9190612237565b60405180910390f35b34801561056257600080fd5b5061056b610cac565b6040516105789190612393565b60405180910390f35b61059b6004803603810190610596919061228f565b610cb2565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190612882565b610ef7565b005b3480156105d257600080fd5b506105ed60048036038101906105e8919061228f565b610f10565b005b61060960048036038101906106049190612963565b610f22565b005b34801561061757600080fd5b50610632600480360381019061062d919061228f565b610f73565b60405161063f9190612237565b60405180910390f35b34801561065457600080fd5b5061065d610ffb565b60405161066a9190612393565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906129e6565b611001565b6040516106a79190612183565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906123ae565b611095565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077a90612a55565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690612a55565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b600061080882611118565b61083e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161088681611177565b6108908383611274565b505050565b600061089f6113b8565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b6108cc6113c1565b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109145761091333611177565b5b61091f84848461143f565b50505050565b61092d6113c1565b806009908051906020019061094392919061202c565b5050565b61094f6113c1565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610995573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e8576109e733611177565b5b6109f3848484611761565b50505050565b610a016113c1565b80600d60006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff1681565b6000610a3c82611781565b9050919050565b610a4b6113c1565b8051825114610a5957600080fd5b60005b8251811015610b19576000828281518110610a7a57610a79612a86565b5b602002602001015190506000848381518110610a9957610a98612a86565b5b60200260200101519050600a5482610aaf610895565b610ab99190612ae4565b1115610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190612b86565b60405180910390fd5b610b04818361184d565b50508080610b1190612ba6565b915050610a5c565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b85576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bde6113c1565b610be8600061186b565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c2990612a55565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590612a55565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b600c5481565b6000600c5482610cc29190612bee565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610d1c57600c5481610d199190612c48565b90505b600d60009054906101000a900460ff16610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290612cc8565b60405180910390fd5b803414610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490612d34565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dfb9190612ae4565b1115610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390612b86565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e8b9190612ae4565b92505081905550600a5482610e9e610895565b610ea89190612ae4565b1115610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090612b86565b60405180910390fd5b610ef3338361184d565b5050565b81610f0181611177565b610f0b8383611931565b505050565b610f186113c1565b80600c8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f6057610f5f33611177565b5b610f6c85858585611a3c565b5050505050565b6060610f7e82611118565b610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612dc6565b60405180910390fd5b6000610fc7611aaf565b905080610fd384611b41565b604051602001610fe4929190612e6e565b604051602081830303815290604052915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61109d6113c1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390612f0f565b60405180910390fd5b6111158161186b565b50565b6000816111236113b8565b11158015611132575060005482105b8015611170575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611271576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111ee929190612f2f565b602060405180830381865afa15801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f9190612f6d565b61127057806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161126791906122fd565b60405180910390fd5b5b50565b600061127f82610a31565b90508073ffffffffffffffffffffffffffffffffffffffff166112a0611b91565b73ffffffffffffffffffffffffffffffffffffffff1614611303576112cc816112c7611b91565b611001565b611302576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6113c9611b99565b73ffffffffffffffffffffffffffffffffffffffff166113e7610bf0565b73ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490612fe6565b60405180910390fd5b565b600061144a82611781565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114bd84611ba1565b915091506114d381876114ce611b91565b611bc8565b61151f576114e8866114e3611b91565b611001565b61151e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611585576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115928686866001611c0c565b801561159d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061166b85611647888887611c12565b7c020000000000000000000000000000000000000000000000000000000017611c3a565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116f157600060018501905060006004600083815260200190815260200160002054036116ef5760005481146116ee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117598686866001611c65565b505050505050565b61177c83838360405180602001604052806000815250610f22565b505050565b600080829050806117906113b8565b11611816576000548110156118155760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611813575b600081036118095760046000836001900393508381526020019081526020016000205490506117df565b8092505050611848565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611867828260405180602001604052806000815250611c6b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061193e611b91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119eb611b91565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a309190612183565b60405180910390a35050565b611a478484846108d6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611aa957611a7284848484611d08565b611aa8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611abe90612a55565b80601f0160208091040260200160405190810160405280929190818152602001828054611aea90612a55565b8015611b375780601f10611b0c57610100808354040283529160200191611b37565b820191906000526020600020905b815481529060010190602001808311611b1a57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611b7c57600184039350600a81066030018453600a8104905080611b5a575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c29868684611e58565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c758383611e61565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d0357600080549050600083820390505b611cb56000868380600101945086611d08565b611ceb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ca2578160005414611d0057600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2e611b91565b8786866040518563ffffffff1660e01b8152600401611d50949392919061305b565b6020604051808303816000875af1925050508015611d8c57506040513d601f19601f82011682018060405250810190611d8991906130bc565b60015b611e05573d8060008114611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b506000815103611dfd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611ea1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eae6000848385611c0c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2583611f166000866000611c12565b611f1f8561201c565b17611c3a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fc657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f8b565b5060008203612001576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120176000848385611c65565b505050565b60006001821460e11b9050919050565b82805461203890612a55565b90600052602060002090601f01602090048101928261205a57600085556120a1565b82601f1061207357805160ff19168380011785556120a1565b828001600101855582156120a1579182015b828111156120a0578251825591602001919060010190612085565b5b5090506120ae91906120b2565b5090565b5b808211156120cb5760008160009055506001016120b3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612118816120e3565b811461212357600080fd5b50565b6000813590506121358161210f565b92915050565b600060208284031215612151576121506120d9565b5b600061215f84828501612126565b91505092915050565b60008115159050919050565b61217d81612168565b82525050565b60006020820190506121986000830184612174565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121d85780820151818401526020810190506121bd565b838111156121e7576000848401525b50505050565b6000601f19601f8301169050919050565b60006122098261219e565b61221381856121a9565b93506122238185602086016121ba565b61222c816121ed565b840191505092915050565b6000602082019050818103600083015261225181846121fe565b905092915050565b6000819050919050565b61226c81612259565b811461227757600080fd5b50565b60008135905061228981612263565b92915050565b6000602082840312156122a5576122a46120d9565b5b60006122b38482850161227a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122e7826122bc565b9050919050565b6122f7816122dc565b82525050565b600060208201905061231260008301846122ee565b92915050565b612321816122dc565b811461232c57600080fd5b50565b60008135905061233e81612318565b92915050565b6000806040838503121561235b5761235a6120d9565b5b60006123698582860161232f565b925050602061237a8582860161227a565b9150509250929050565b61238d81612259565b82525050565b60006020820190506123a86000830184612384565b92915050565b6000602082840312156123c4576123c36120d9565b5b60006123d28482850161232f565b91505092915050565b6000806000606084860312156123f4576123f36120d9565b5b60006124028682870161232f565b93505060206124138682870161232f565b92505060406124248682870161227a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612470826121ed565b810181811067ffffffffffffffff8211171561248f5761248e612438565b5b80604052505050565b60006124a26120cf565b90506124ae8282612467565b919050565b600067ffffffffffffffff8211156124ce576124cd612438565b5b6124d7826121ed565b9050602081019050919050565b82818337600083830152505050565b6000612506612501846124b3565b612498565b90508281526020810184848401111561252257612521612433565b5b61252d8482856124e4565b509392505050565b600082601f83011261254a5761254961242e565b5b813561255a8482602086016124f3565b91505092915050565b600060208284031215612579576125786120d9565b5b600082013567ffffffffffffffff811115612597576125966120de565b5b6125a384828501612535565b91505092915050565b6000819050919050565b60006125d16125cc6125c7846122bc565b6125ac565b6122bc565b9050919050565b60006125e3826125b6565b9050919050565b60006125f5826125d8565b9050919050565b612605816125ea565b82525050565b600060208201905061262060008301846125fc565b92915050565b61262f81612168565b811461263a57600080fd5b50565b60008135905061264c81612626565b92915050565b600060208284031215612668576126676120d9565b5b60006126768482850161263d565b91505092915050565b600067ffffffffffffffff82111561269a57612699612438565b5b602082029050602081019050919050565b600080fd5b60006126c36126be8461267f565b612498565b905080838252602082019050602084028301858111156126e6576126e56126ab565b5b835b8181101561270f57806126fb888261232f565b8452602084019350506020810190506126e8565b5050509392505050565b600082601f83011261272e5761272d61242e565b5b813561273e8482602086016126b0565b91505092915050565b600067ffffffffffffffff82111561276257612761612438565b5b602082029050602081019050919050565b600061278661278184612747565b612498565b905080838252602082019050602084028301858111156127a9576127a86126ab565b5b835b818110156127d257806127be888261227a565b8452602084019350506020810190506127ab565b5050509392505050565b600082601f8301126127f1576127f061242e565b5b8135612801848260208601612773565b91505092915050565b60008060408385031215612821576128206120d9565b5b600083013567ffffffffffffffff81111561283f5761283e6120de565b5b61284b85828601612719565b925050602083013567ffffffffffffffff81111561286c5761286b6120de565b5b612878858286016127dc565b9150509250929050565b60008060408385031215612899576128986120d9565b5b60006128a78582860161232f565b92505060206128b88582860161263d565b9150509250929050565b600067ffffffffffffffff8211156128dd576128dc612438565b5b6128e6826121ed565b9050602081019050919050565b6000612906612901846128c2565b612498565b90508281526020810184848401111561292257612921612433565b5b61292d8482856124e4565b509392505050565b600082601f83011261294a5761294961242e565b5b813561295a8482602086016128f3565b91505092915050565b6000806000806080858703121561297d5761297c6120d9565b5b600061298b8782880161232f565b945050602061299c8782880161232f565b93505060406129ad8782880161227a565b925050606085013567ffffffffffffffff8111156129ce576129cd6120de565b5b6129da87828801612935565b91505092959194509250565b600080604083850312156129fd576129fc6120d9565b5b6000612a0b8582860161232f565b9250506020612a1c8582860161232f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a6d57607f821691505b602082108103612a8057612a7f612a26565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aef82612259565b9150612afa83612259565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b2f57612b2e612ab5565b5b828201905092915050565b7f6e756d2065727200000000000000000000000000000000000000000000000000600082015250565b6000612b706007836121a9565b9150612b7b82612b3a565b602082019050919050565b60006020820190508181036000830152612b9f81612b63565b9050919050565b6000612bb182612259565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612be357612be2612ab5565b5b600182019050919050565b6000612bf982612259565b9150612c0483612259565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3d57612c3c612ab5565b5b828202905092915050565b6000612c5382612259565b9150612c5e83612259565b925082821015612c7157612c70612ab5565b5b828203905092915050565b7f7374617475732065727200000000000000000000000000000000000000000000600082015250565b6000612cb2600a836121a9565b9150612cbd82612c7c565b602082019050919050565b60006020820190508181036000830152612ce181612ca5565b9050919050565b7f6574682065727200000000000000000000000000000000000000000000000000600082015250565b6000612d1e6007836121a9565b9150612d2982612ce8565b602082019050919050565b60006020820190508181036000830152612d4d81612d11565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612db0602f836121a9565b9150612dbb82612d54565b604082019050919050565b60006020820190508181036000830152612ddf81612da3565b9050919050565b600081905092915050565b6000612dfc8261219e565b612e068185612de6565b9350612e168185602086016121ba565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e58600583612de6565b9150612e6382612e22565b600582019050919050565b6000612e7a8285612df1565b9150612e868284612df1565b9150612e9182612e4b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ef96026836121a9565b9150612f0482612e9d565b604082019050919050565b60006020820190508181036000830152612f2881612eec565b9050919050565b6000604082019050612f4460008301856122ee565b612f5160208301846122ee565b9392505050565b600081519050612f6781612626565b92915050565b600060208284031215612f8357612f826120d9565b5b6000612f9184828501612f58565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fd06020836121a9565b9150612fdb82612f9a565b602082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061302d82613006565b6130378185613011565b93506130478185602086016121ba565b613050816121ed565b840191505092915050565b600060808201905061307060008301876122ee565b61307d60208301866122ee565b61308a6040830185612384565b818103606083015261309c8184613022565b905095945050505050565b6000815190506130b68161210f565b92915050565b6000602082840312156130d2576130d16120d9565b5b60006130e0848285016130a7565b9150509291505056fea2646970667358221220d86f6cdb761eab7ec2dc13cf69bd99dfe560918185899c8c642eba9fceb40b1d64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000006df2bbb7e1ef2f3e03c53626f37c3d96e38e6c0c000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569637136796a75756a796b6a6c68336d6b6f366e7468736278686668786a65766470723675716a6d6264796e636e7970636a7a69792f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5469676572205a756b6900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5469676572205a756b6900000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806367243482116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461060b578063d5abeb0114610648578063e985e9c514610673578063f2fde38b146106b0576101cd565b8063a0712d6814610581578063a22cb4651461059d578063a2b40d19146105c6578063b88d4fde146105ef576101cd565b80637501f741116100d15780637501f741146104d55780638da5cb5b1461050057806395d89b411461052b578063a035b1fe14610556576101cd565b8063672434821461045857806370a0823114610481578063715018a6146104be576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103ab5780634779b82e146103c75780634bf365df146103f05780636352211e1461041b576101cd565b806323b872dd1461032457806339a0c6f9146103405780633ccfd60b1461036957806341f4343414610380576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102935780631e7269c5146102be57806320c63e3b146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061213b565b6106d9565b6040516102069190612183565b60405180910390f35b34801561021b57600080fd5b5061022461076b565b6040516102319190612237565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061228f565b6107fd565b60405161026e91906122fd565b60405180910390f35b610291600480360381019061028c9190612344565b61087c565b005b34801561029f57600080fd5b506102a8610895565b6040516102b59190612393565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906123ae565b6108ac565b6040516102f29190612393565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061228f565b6108c4565b005b61033e600480360381019061033991906123db565b6108d6565b005b34801561034c57600080fd5b5061036760048036038101906103629190612563565b610925565b005b34801561037557600080fd5b5061037e610947565b005b34801561038c57600080fd5b50610395610998565b6040516103a2919061260b565b60405180910390f35b6103c560048036038101906103c091906123db565b6109aa565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612652565b6109f9565b005b3480156103fc57600080fd5b50610405610a1e565b6040516104129190612183565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d919061228f565b610a31565b60405161044f91906122fd565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a919061280a565b610a43565b005b34801561048d57600080fd5b506104a860048036038101906104a391906123ae565b610b1e565b6040516104b59190612393565b60405180910390f35b3480156104ca57600080fd5b506104d3610bd6565b005b3480156104e157600080fd5b506104ea610bea565b6040516104f79190612393565b60405180910390f35b34801561050c57600080fd5b50610515610bf0565b60405161052291906122fd565b60405180910390f35b34801561053757600080fd5b50610540610c1a565b60405161054d9190612237565b60405180910390f35b34801561056257600080fd5b5061056b610cac565b6040516105789190612393565b60405180910390f35b61059b6004803603810190610596919061228f565b610cb2565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190612882565b610ef7565b005b3480156105d257600080fd5b506105ed60048036038101906105e8919061228f565b610f10565b005b61060960048036038101906106049190612963565b610f22565b005b34801561061757600080fd5b50610632600480360381019061062d919061228f565b610f73565b60405161063f9190612237565b60405180910390f35b34801561065457600080fd5b5061065d610ffb565b60405161066a9190612393565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906129e6565b611001565b6040516106a79190612183565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906123ae565b611095565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077a90612a55565b80601f01602080910402602001604051908101604052809291908181526020018280546107a690612a55565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b600061080882611118565b61083e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161088681611177565b6108908383611274565b505050565b600061089f6113b8565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b6108cc6113c1565b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109145761091333611177565b5b61091f84848461143f565b50505050565b61092d6113c1565b806009908051906020019061094392919061202c565b5050565b61094f6113c1565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610995573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e8576109e733611177565b5b6109f3848484611761565b50505050565b610a016113c1565b80600d60006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff1681565b6000610a3c82611781565b9050919050565b610a4b6113c1565b8051825114610a5957600080fd5b60005b8251811015610b19576000828281518110610a7a57610a79612a86565b5b602002602001015190506000848381518110610a9957610a98612a86565b5b60200260200101519050600a5482610aaf610895565b610ab99190612ae4565b1115610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190612b86565b60405180910390fd5b610b04818361184d565b50508080610b1190612ba6565b915050610a5c565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b85576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bde6113c1565b610be8600061186b565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c2990612a55565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5590612a55565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b600c5481565b6000600c5482610cc29190612bee565b90506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610d1c57600c5481610d199190612c48565b90505b600d60009054906101000a900460ff16610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290612cc8565b60405180910390fd5b803414610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490612d34565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dfb9190612ae4565b1115610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390612b86565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e8b9190612ae4565b92505081905550600a5482610e9e610895565b610ea89190612ae4565b1115610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090612b86565b60405180910390fd5b610ef3338361184d565b5050565b81610f0181611177565b610f0b8383611931565b505050565b610f186113c1565b80600c8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f6057610f5f33611177565b5b610f6c85858585611a3c565b5050505050565b6060610f7e82611118565b610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612dc6565b60405180910390fd5b6000610fc7611aaf565b905080610fd384611b41565b604051602001610fe4929190612e6e565b604051602081830303815290604052915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61109d6113c1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390612f0f565b60405180910390fd5b6111158161186b565b50565b6000816111236113b8565b11158015611132575060005482105b8015611170575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611271576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111ee929190612f2f565b602060405180830381865afa15801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f9190612f6d565b61127057806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161126791906122fd565b60405180910390fd5b5b50565b600061127f82610a31565b90508073ffffffffffffffffffffffffffffffffffffffff166112a0611b91565b73ffffffffffffffffffffffffffffffffffffffff1614611303576112cc816112c7611b91565b611001565b611302576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6113c9611b99565b73ffffffffffffffffffffffffffffffffffffffff166113e7610bf0565b73ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490612fe6565b60405180910390fd5b565b600061144a82611781565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114b1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114bd84611ba1565b915091506114d381876114ce611b91565b611bc8565b61151f576114e8866114e3611b91565b611001565b61151e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611585576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115928686866001611c0c565b801561159d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061166b85611647888887611c12565b7c020000000000000000000000000000000000000000000000000000000017611c3a565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116f157600060018501905060006004600083815260200190815260200160002054036116ef5760005481146116ee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117598686866001611c65565b505050505050565b61177c83838360405180602001604052806000815250610f22565b505050565b600080829050806117906113b8565b11611816576000548110156118155760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611813575b600081036118095760046000836001900393508381526020019081526020016000205490506117df565b8092505050611848565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611867828260405180602001604052806000815250611c6b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061193e611b91565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119eb611b91565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a309190612183565b60405180910390a35050565b611a478484846108d6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611aa957611a7284848484611d08565b611aa8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611abe90612a55565b80601f0160208091040260200160405190810160405280929190818152602001828054611aea90612a55565b8015611b375780601f10611b0c57610100808354040283529160200191611b37565b820191906000526020600020905b815481529060010190602001808311611b1a57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611b7c57600184039350600a81066030018453600a8104905080611b5a575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c29868684611e58565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c758383611e61565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d0357600080549050600083820390505b611cb56000868380600101945086611d08565b611ceb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ca2578160005414611d0057600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2e611b91565b8786866040518563ffffffff1660e01b8152600401611d50949392919061305b565b6020604051808303816000875af1925050508015611d8c57506040513d601f19601f82011682018060405250810190611d8991906130bc565b60015b611e05573d8060008114611dbc576040519150601f19603f3d011682016040523d82523d6000602084013e611dc1565b606091505b506000815103611dfd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611ea1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eae6000848385611c0c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2583611f166000866000611c12565b611f1f8561201c565b17611c3a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fc657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f8b565b5060008203612001576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120176000848385611c65565b505050565b60006001821460e11b9050919050565b82805461203890612a55565b90600052602060002090601f01602090048101928261205a57600085556120a1565b82601f1061207357805160ff19168380011785556120a1565b828001600101855582156120a1579182015b828111156120a0578251825591602001919060010190612085565b5b5090506120ae91906120b2565b5090565b5b808211156120cb5760008160009055506001016120b3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612118816120e3565b811461212357600080fd5b50565b6000813590506121358161210f565b92915050565b600060208284031215612151576121506120d9565b5b600061215f84828501612126565b91505092915050565b60008115159050919050565b61217d81612168565b82525050565b60006020820190506121986000830184612174565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121d85780820151818401526020810190506121bd565b838111156121e7576000848401525b50505050565b6000601f19601f8301169050919050565b60006122098261219e565b61221381856121a9565b93506122238185602086016121ba565b61222c816121ed565b840191505092915050565b6000602082019050818103600083015261225181846121fe565b905092915050565b6000819050919050565b61226c81612259565b811461227757600080fd5b50565b60008135905061228981612263565b92915050565b6000602082840312156122a5576122a46120d9565b5b60006122b38482850161227a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122e7826122bc565b9050919050565b6122f7816122dc565b82525050565b600060208201905061231260008301846122ee565b92915050565b612321816122dc565b811461232c57600080fd5b50565b60008135905061233e81612318565b92915050565b6000806040838503121561235b5761235a6120d9565b5b60006123698582860161232f565b925050602061237a8582860161227a565b9150509250929050565b61238d81612259565b82525050565b60006020820190506123a86000830184612384565b92915050565b6000602082840312156123c4576123c36120d9565b5b60006123d28482850161232f565b91505092915050565b6000806000606084860312156123f4576123f36120d9565b5b60006124028682870161232f565b93505060206124138682870161232f565b92505060406124248682870161227a565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612470826121ed565b810181811067ffffffffffffffff8211171561248f5761248e612438565b5b80604052505050565b60006124a26120cf565b90506124ae8282612467565b919050565b600067ffffffffffffffff8211156124ce576124cd612438565b5b6124d7826121ed565b9050602081019050919050565b82818337600083830152505050565b6000612506612501846124b3565b612498565b90508281526020810184848401111561252257612521612433565b5b61252d8482856124e4565b509392505050565b600082601f83011261254a5761254961242e565b5b813561255a8482602086016124f3565b91505092915050565b600060208284031215612579576125786120d9565b5b600082013567ffffffffffffffff811115612597576125966120de565b5b6125a384828501612535565b91505092915050565b6000819050919050565b60006125d16125cc6125c7846122bc565b6125ac565b6122bc565b9050919050565b60006125e3826125b6565b9050919050565b60006125f5826125d8565b9050919050565b612605816125ea565b82525050565b600060208201905061262060008301846125fc565b92915050565b61262f81612168565b811461263a57600080fd5b50565b60008135905061264c81612626565b92915050565b600060208284031215612668576126676120d9565b5b60006126768482850161263d565b91505092915050565b600067ffffffffffffffff82111561269a57612699612438565b5b602082029050602081019050919050565b600080fd5b60006126c36126be8461267f565b612498565b905080838252602082019050602084028301858111156126e6576126e56126ab565b5b835b8181101561270f57806126fb888261232f565b8452602084019350506020810190506126e8565b5050509392505050565b600082601f83011261272e5761272d61242e565b5b813561273e8482602086016126b0565b91505092915050565b600067ffffffffffffffff82111561276257612761612438565b5b602082029050602081019050919050565b600061278661278184612747565b612498565b905080838252602082019050602084028301858111156127a9576127a86126ab565b5b835b818110156127d257806127be888261227a565b8452602084019350506020810190506127ab565b5050509392505050565b600082601f8301126127f1576127f061242e565b5b8135612801848260208601612773565b91505092915050565b60008060408385031215612821576128206120d9565b5b600083013567ffffffffffffffff81111561283f5761283e6120de565b5b61284b85828601612719565b925050602083013567ffffffffffffffff81111561286c5761286b6120de565b5b612878858286016127dc565b9150509250929050565b60008060408385031215612899576128986120d9565b5b60006128a78582860161232f565b92505060206128b88582860161263d565b9150509250929050565b600067ffffffffffffffff8211156128dd576128dc612438565b5b6128e6826121ed565b9050602081019050919050565b6000612906612901846128c2565b612498565b90508281526020810184848401111561292257612921612433565b5b61292d8482856124e4565b509392505050565b600082601f83011261294a5761294961242e565b5b813561295a8482602086016128f3565b91505092915050565b6000806000806080858703121561297d5761297c6120d9565b5b600061298b8782880161232f565b945050602061299c8782880161232f565b93505060406129ad8782880161227a565b925050606085013567ffffffffffffffff8111156129ce576129cd6120de565b5b6129da87828801612935565b91505092959194509250565b600080604083850312156129fd576129fc6120d9565b5b6000612a0b8582860161232f565b9250506020612a1c8582860161232f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a6d57607f821691505b602082108103612a8057612a7f612a26565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aef82612259565b9150612afa83612259565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b2f57612b2e612ab5565b5b828201905092915050565b7f6e756d2065727200000000000000000000000000000000000000000000000000600082015250565b6000612b706007836121a9565b9150612b7b82612b3a565b602082019050919050565b60006020820190508181036000830152612b9f81612b63565b9050919050565b6000612bb182612259565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612be357612be2612ab5565b5b600182019050919050565b6000612bf982612259565b9150612c0483612259565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3d57612c3c612ab5565b5b828202905092915050565b6000612c5382612259565b9150612c5e83612259565b925082821015612c7157612c70612ab5565b5b828203905092915050565b7f7374617475732065727200000000000000000000000000000000000000000000600082015250565b6000612cb2600a836121a9565b9150612cbd82612c7c565b602082019050919050565b60006020820190508181036000830152612ce181612ca5565b9050919050565b7f6574682065727200000000000000000000000000000000000000000000000000600082015250565b6000612d1e6007836121a9565b9150612d2982612ce8565b602082019050919050565b60006020820190508181036000830152612d4d81612d11565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612db0602f836121a9565b9150612dbb82612d54565b604082019050919050565b60006020820190508181036000830152612ddf81612da3565b9050919050565b600081905092915050565b6000612dfc8261219e565b612e068185612de6565b9350612e168185602086016121ba565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e58600583612de6565b9150612e6382612e22565b600582019050919050565b6000612e7a8285612df1565b9150612e868284612df1565b9150612e9182612e4b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ef96026836121a9565b9150612f0482612e9d565b604082019050919050565b60006020820190508181036000830152612f2881612eec565b9050919050565b6000604082019050612f4460008301856122ee565b612f5160208301846122ee565b9392505050565b600081519050612f6781612626565b92915050565b600060208284031215612f8357612f826120d9565b5b6000612f9184828501612f58565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fd06020836121a9565b9150612fdb82612f9a565b602082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061302d82613006565b6130378185613011565b93506130478185602086016121ba565b613050816121ed565b840191505092915050565b600060808201905061307060008301876122ee565b61307d60208301866122ee565b61308a6040830185612384565b818103606083015261309c8184613022565b905095945050505050565b6000815190506130b68161210f565b92915050565b6000602082840312156130d2576130d16120d9565b5b60006130e0848285016130a7565b9150509291505056fea2646970667358221220d86f6cdb761eab7ec2dc13cf69bd99dfe560918185899c8c642eba9fceb40b1d64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000006df2bbb7e1ef2f3e03c53626f37c3d96e38e6c0c000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569637136796a75756a796b6a6c68336d6b6f366e7468736278686668786a65766470723675716a6d6264796e636e7970636a7a69792f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5469676572205a756b6900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5469676572205a756b6900000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : url (string): ipfs://bafybeicq6yjuujykjlh3mko6nthsbxhfhxjevdpr6uqjmbdyncnypcjziy/
Arg [1] : name (string): Tiger Zuki
Arg [2] : symbol (string): Tiger Zuki
Arg [3] : _owner (address): 0x6dF2bBb7E1EF2F3E03c53626F37C3d96e38E6C0C
Arg [4] : _price (uint256): 3000000000000000
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 0000000000000000000000006df2bbb7e1ef2f3e03c53626f37c3d96e38e6c0c
Arg [4] : 000000000000000000000000000000000000000000000000000aa87bee538000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [6] : 697066733a2f2f62616679626569637136796a75756a796b6a6c68336d6b6f36
Arg [7] : 6e7468736278686668786a65766470723675716a6d6264796e636e7970636a7a
Arg [8] : 69792f0000000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [10] : 5469676572205a756b6900000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [12] : 5469676572205a756b6900000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
70067:3742:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23926:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24828:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31319:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72403:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20579:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70317:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71517:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72601:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71205:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73290:109;;;;;;;;;;;;;:::i;:::-;;3004:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72814:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71318:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70288:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26221:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73407:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21763:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59747:103;;;;;;;;;;;;;:::i;:::-;;70232:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59099:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25004:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70261:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71620:464;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72092:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71422:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73035:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70844:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70201:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32268:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60005:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23926:639;24011:4;24350:10;24335:25;;:11;:25;;;;:102;;;;24427:10;24412:25;;:11;:25;;;;24335:102;:179;;;;24504:10;24489:25;;:11;:25;;;;24335:179;24315:199;;23926:639;;;:::o;24828:100::-;24882:13;24915:5;24908:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24828:100;:::o;31319:218::-;31395:7;31420:16;31428:7;31420;:16::i;:::-;31415:64;;31445:34;;;;;;;;;;;;;;31415:64;31499:15;:24;31515:7;31499:24;;;;;;;;;;;:30;;;;;;;;;;;;31492:37;;31319:218;;;:::o;72403:190::-;72532:8;4525:30;4546:8;4525:20;:30::i;:::-;72553:32:::1;72567:8;72577:7;72553:13;:32::i;:::-;72403:190:::0;;;:::o;20579:323::-;20640:7;20868:15;:13;:15::i;:::-;20853:12;;20837:13;;:28;:46;20830:53;;20579:323;:::o;70317:41::-;;;;;;;;;;;;;;;;;:::o;71517:95::-;58985:13;:11;:13::i;:::-;71596:8:::1;71586:7;:18;;;;71517:95:::0;:::o;72601:205::-;72744:4;4353:10;4345:18;;:4;:18;;;4341:83;;4380:32;4401:10;4380:20;:32::i;:::-;4341:83;72761:37:::1;72780:4;72786:2;72790:7;72761:18;:37::i;:::-;72601:205:::0;;;;:::o;71205:105::-;58985:13;:11;:13::i;:::-;71295:7:::1;71279:13;:23;;;;;;;;;;;;:::i;:::-;;71205:105:::0;:::o;73290:109::-;58985:13;:11;:13::i;:::-;73348:10:::1;73340:28;;:51;73369:21;73340:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;73290:109::o:0;3004:143::-;3104:42;3004:143;:::o;72814:213::-;72961:4;4353:10;4345:18;;:4;:18;;;4341:83;;4380:32;4401:10;4380:20;:32::i;:::-;4341:83;72978:41:::1;73001:4;73007:2;73011:7;72978:22;:41::i;:::-;72814:213:::0;;;;:::o;71318:96::-;58985:13;:11;:13::i;:::-;71397:9:::1;71386:8;;:20;;;;;;;;;;;;;;;;;;71318:96:::0;:::o;70288:20::-;;;;;;;;;;;;;:::o;26221:152::-;26293:7;26336:27;26355:7;26336:18;:27::i;:::-;26313:52;;26221:152;;;:::o;73407:399::-;58985:13;:11;:13::i;:::-;73548:4:::1;:11;73532:5;:12;:27;73524:36;;;::::0;::::1;;73576:6;73571:228;73592:5;:12;73588:1;:16;73571:228;;;73626:11;73640:4;73645:1;73640:7;;;;;;;;:::i;:::-;;;;;;;;73626:21;;73662:12;73677:5;73683:1;73677:8;;;;;;;;:::i;:::-;;;;;;;;73662:23;;73731:9;;73724:3;73708:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;73700:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;73767:20;73777:4;73783:3;73767:9;:20::i;:::-;73611:188;;73606:3;;;;;:::i;:::-;;;;73571:228;;;;73407:399:::0;;:::o;21763:233::-;21835:7;21876:1;21859:19;;:5;:19;;;21855:60;;21887:28;;;;;;;;;;;;;;21855:60;15922:13;21933:18;:25;21952:5;21933:25;;;;;;;;;;;;;;;;:55;21926:62;;21763:233;;;:::o;59747:103::-;58985:13;:11;:13::i;:::-;59812:30:::1;59839:1;59812:18;:30::i;:::-;59747:103::o:0;70232:22::-;;;;:::o;59099:87::-;59145:7;59172:6;;;;;;;;;;;59165:13;;59099:87;:::o;25004:104::-;25060:13;25093:7;25086:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25004:104;:::o;70261:20::-;;;;:::o;71620:464::-;71673:14;71696:5;;71690:3;:11;;;;:::i;:::-;71673:28;;71738:1;71716:6;:18;71723:10;71716:18;;;;;;;;;;;;;;;;:23;71712:71;;71766:5;;71756:15;;;;;:::i;:::-;;;71712:71;71801:8;;;;;;;;;;;71793:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;71856:6;71843:9;:19;71835:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;71921:7;;71914:3;71893:6;:18;71900:10;71893:18;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;:35;;71885:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71973:3;71951:6;:18;71958:10;71951:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;72018:9;;72011:3;71995:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;71987:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;72050:26;72060:10;72072:3;72050:9;:26::i;:::-;71662:422;71620:464;:::o;72092:201::-;72221:8;4525:30;4546:8;4525:20;:30::i;:::-;72242:43:::1;72266:8;72276;72242:23;:43::i;:::-;72092:201:::0;;;:::o;71422:87::-;58985:13;:11;:13::i;:::-;71495:6:::1;71487:5;:14;;;;71422:87:::0;:::o;73035:247::-;73210:4;4353:10;4345:18;;:4;:18;;;4341:83;;4380:32;4401:10;4380:20;:32::i;:::-;4341:83;73227:47:::1;73250:4;73256:2;73260:7;73269:4;73227:22;:47::i;:::-;73035:247:::0;;;;;:::o;70844:353::-;70925:13;70973:16;70981:7;70973;:16::i;:::-;70951:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;71075:21;71099:10;:8;:10::i;:::-;71075:34;;71151:7;71160:18;71170:7;71160:9;:18::i;:::-;71134:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71120:69;;;70844:353;;;:::o;70201:24::-;;;;:::o;32268:164::-;32365:4;32389:18;:25;32408:5;32389:25;;;;;;;;;;;;;;;:35;32415:8;32389:35;;;;;;;;;;;;;;;;;;;;;;;;;32382:42;;32268:164;;;;:::o;60005:201::-;58985:13;:11;:13::i;:::-;60114:1:::1;60094:22;;:8;:22;;::::0;60086:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;60170:28;60189:8;60170:18;:28::i;:::-;60005:201:::0;:::o;32690:282::-;32755:4;32811:7;32792:15;:13;:15::i;:::-;:26;;:66;;;;;32845:13;;32835:7;:23;32792:66;:153;;;;;32944:1;16698:8;32896:17;:26;32914:7;32896:26;;;;;;;;;;;;:44;:49;32792:153;32772:173;;32690:282;;;:::o;4583:419::-;4822:1;3104:42;4774:45;;;:49;4770:225;;;3104:42;4845;;;4896:4;4903:8;4845:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4840:144;;4959:8;4940:28;;;;;;;;;;;:::i;:::-;;;;;;;;4840:144;4770:225;4583:419;:::o;30752:408::-;30841:13;30857:16;30865:7;30857;:16::i;:::-;30841:32;;30913:5;30890:28;;:19;:17;:19::i;:::-;:28;;;30886:175;;30938:44;30955:5;30962:19;:17;:19::i;:::-;30938:16;:44::i;:::-;30933:128;;31010:35;;;;;;;;;;;;;;30933:128;30886:175;31106:2;31073:15;:24;31089:7;31073:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31144:7;31140:2;31124:28;;31133:5;31124:28;;;;;;;;;;;;30830:330;30752:408;;:::o;72302:93::-;72359:7;72386:1;72379:8;;72302:93;:::o;59264:132::-;59339:12;:10;:12::i;:::-;59328:23;;:7;:5;:7::i;:::-;:23;;;59320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59264:132::o;34958:2825::-;35100:27;35130;35149:7;35130:18;:27::i;:::-;35100:57;;35215:4;35174:45;;35190:19;35174:45;;;35170:86;;35228:28;;;;;;;;;;;;;;35170:86;35270:27;35299:23;35326:35;35353:7;35326:26;:35::i;:::-;35269:92;;;;35461:68;35486:15;35503:4;35509:19;:17;:19::i;:::-;35461:24;:68::i;:::-;35456:180;;35549:43;35566:4;35572:19;:17;:19::i;:::-;35549:16;:43::i;:::-;35544:92;;35601:35;;;;;;;;;;;;;;35544:92;35456:180;35667:1;35653:16;;:2;:16;;;35649:52;;35678:23;;;;;;;;;;;;;;35649:52;35714:43;35736:4;35742:2;35746:7;35755:1;35714:21;:43::i;:::-;35850:15;35847:160;;;35990:1;35969:19;35962:30;35847:160;36387:18;:24;36406:4;36387:24;;;;;;;;;;;;;;;;36385:26;;;;;;;;;;;;36456:18;:22;36475:2;36456:22;;;;;;;;;;;;;;;;36454:24;;;;;;;;;;;36778:146;36815:2;36864:45;36879:4;36885:2;36889:19;36864:14;:45::i;:::-;16978:8;36836:73;36778:18;:146::i;:::-;36749:17;:26;36767:7;36749:26;;;;;;;;;;;:175;;;;37095:1;16978:8;37044:19;:47;:52;37040:627;;37117:19;37149:1;37139:7;:11;37117:33;;37306:1;37272:17;:30;37290:11;37272:30;;;;;;;;;;;;:35;37268:384;;37410:13;;37395:11;:28;37391:242;;37590:19;37557:17;:30;37575:11;37557:30;;;;;;;;;;;:52;;;;37391:242;37268:384;37098:569;37040:627;37714:7;37710:2;37695:27;;37704:4;37695:27;;;;;;;;;;;;37733:42;37754:4;37760:2;37764:7;37773:1;37733:20;:42::i;:::-;35089:2694;;;34958:2825;;;:::o;37879:193::-;38025:39;38042:4;38048:2;38052:7;38025:39;;;;;;;;;;;;:16;:39::i;:::-;37879:193;;;:::o;27376:1275::-;27443:7;27463:12;27478:7;27463:22;;27546:4;27527:15;:13;:15::i;:::-;:23;27523:1061;;27580:13;;27573:4;:20;27569:1015;;;27618:14;27635:17;:23;27653:4;27635:23;;;;;;;;;;;;27618:40;;27752:1;16698:8;27724:6;:24;:29;27720:845;;28389:113;28406:1;28396:6;:11;28389:113;;28449:17;:25;28467:6;;;;;;;28449:25;;;;;;;;;;;;28440:34;;28389:113;;;28535:6;28528:13;;;;;;27720:845;27595:989;27569:1015;27523:1061;28612:31;;;;;;;;;;;;;;27376:1275;;;;:::o;48830:112::-;48907:27;48917:2;48921:8;48907:27;;;;;;;;;;;;:9;:27::i;:::-;48830:112;;:::o;60366:191::-;60440:16;60459:6;;;;;;;;;;;60440:25;;60485:8;60476:6;;:17;;;;;;;;;;;;;;;;;;60540:8;60509:40;;60530:8;60509:40;;;;;;;;;;;;60429:128;60366:191;:::o;31877:234::-;32024:8;31972:18;:39;31991:19;:17;:19::i;:::-;31972:39;;;;;;;;;;;;;;;:49;32012:8;31972:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32084:8;32048:55;;32063:19;:17;:19::i;:::-;32048:55;;;32094:8;32048:55;;;;;;:::i;:::-;;;;;;;;31877:234;;:::o;38670:407::-;38845:31;38858:4;38864:2;38868:7;38845:12;:31::i;:::-;38909:1;38891:2;:14;;;:19;38887:183;;38930:56;38961:4;38967:2;38971:7;38980:5;38930:30;:56::i;:::-;38925:145;;39014:40;;;;;;;;;;;;;;38925:145;38887:183;38670:407;;;;:::o;70730:106::-;70782:13;70815;70808:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70730:106;:::o;55205:1745::-;55270:17;55704:4;55697;55691:11;55687:22;55796:1;55790:4;55783:15;55871:4;55868:1;55864:12;55857:19;;55953:1;55948:3;55941:14;56057:3;56296:5;56278:428;56304:1;56278:428;;;56344:1;56339:3;56335:11;56328:18;;56515:2;56509:4;56505:13;56501:2;56497:22;56492:3;56484:36;56609:2;56603:4;56599:13;56591:21;;56676:4;56278:428;56666:25;56278:428;56282:21;56745:3;56740;56736:13;56860:4;56855:3;56851:14;56844:21;;56925:6;56920:3;56913:19;55309:1634;;;55205:1745;;;:::o;54998:105::-;55058:7;55085:10;55078:17;;54998:105;:::o;57644:98::-;57697:7;57724:10;57717:17;;57644:98;:::o;33853:485::-;33955:27;33984:23;34025:38;34066:15;:24;34082:7;34066:24;;;;;;;;;;;34025:65;;34243:18;34220:41;;34300:19;34294:26;34275:45;;34205:126;33853:485;;;:::o;33081:659::-;33230:11;33395:16;33388:5;33384:28;33375:37;;33555:16;33544:9;33540:32;33527:45;;33705:15;33694:9;33691:30;33683:5;33672:9;33669:20;33666:56;33656:66;;33081:659;;;;;:::o;39739:159::-;;;;;:::o;54307:311::-;54442:7;54462:16;17102:3;54488:19;:41;;54462:68;;17102:3;54556:31;54567:4;54573:2;54577:9;54556:10;:31::i;:::-;54548:40;;:62;;54541:69;;;54307:311;;;;;:::o;29199:450::-;29279:14;29447:16;29440:5;29436:28;29427:37;;29624:5;29610:11;29585:23;29581:41;29578:52;29571:5;29568:63;29558:73;;29199:450;;;;:::o;40563:158::-;;;;;:::o;48057:689::-;48188:19;48194:2;48198:8;48188:5;:19::i;:::-;48267:1;48249:2;:14;;;:19;48245:483;;48289:11;48303:13;;48289:27;;48335:13;48357:8;48351:3;:14;48335:30;;48384:233;48415:62;48454:1;48458:2;48462:7;;;;;;48471:5;48415:30;:62::i;:::-;48410:167;;48513:40;;;;;;;;;;;;;;48410:167;48612:3;48604:5;:11;48384:233;;48699:3;48682:13;;:20;48678:34;;48704:8;;;48678:34;48270:458;;48245:483;48057:689;;;:::o;41161:716::-;41324:4;41370:2;41345:45;;;41391:19;:17;:19::i;:::-;41412:4;41418:7;41427:5;41345:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41341:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41645:1;41628:6;:13;:18;41624:235;;41674:40;;;;;;;;;;;;;;41624:235;41817:6;41811:13;41802:6;41798:2;41794:15;41787:38;41341:529;41514:54;;;41504:64;;;:6;:64;;;;41497:71;;;41161:716;;;;;;:::o;54008:147::-;54145:6;54008:147;;;;;:::o;42339:2966::-;42412:20;42435:13;;42412:36;;42475:1;42463:8;:13;42459:44;;42485:18;;;;;;;;;;;;;;42459:44;42516:61;42546:1;42550:2;42554:12;42568:8;42516:21;:61::i;:::-;43060:1;16060:2;43030:1;:26;;43029:32;43017:8;:45;42991:18;:22;43010:2;42991:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43339:139;43376:2;43430:33;43453:1;43457:2;43461:1;43430:14;:33::i;:::-;43397:30;43418:8;43397:20;:30::i;:::-;:66;43339:18;:139::i;:::-;43305:17;:31;43323:12;43305:31;;;;;;;;;;;:173;;;;43495:16;43526:11;43555:8;43540:12;:23;43526:37;;44076:16;44072:2;44068:25;44056:37;;44448:12;44408:8;44367:1;44305:25;44246:1;44185;44158:335;44819:1;44805:12;44801:20;44759:346;44860:3;44851:7;44848:16;44759:346;;45078:7;45068:8;45065:1;45038:25;45035:1;45032;45027:59;44913:1;44904:7;44900:15;44889:26;;44759:346;;;44763:77;45150:1;45138:8;:13;45134:45;;45160:19;;;;;;;;;;;;;;45134:45;45212:3;45196:13;:19;;;;42765:2462;;45237:60;45266:1;45270:2;45274:12;45288:8;45237:20;:60::i;:::-;42401:2904;42339:2966;;:::o;29751:324::-;29821:14;30054:1;30044:8;30041:15;30015:24;30011:46;30001:56;;29751:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:60::-;8899:3;8920:5;8913:12;;8871:60;;;:::o;8937:142::-;8987:9;9020:53;9038:34;9047:24;9065:5;9047:24;:::i;:::-;9038:34;:::i;:::-;9020:53;:::i;:::-;9007:66;;8937:142;;;:::o;9085:126::-;9135:9;9168:37;9199:5;9168:37;:::i;:::-;9155:50;;9085:126;;;:::o;9217:157::-;9298:9;9331:37;9362:5;9331:37;:::i;:::-;9318:50;;9217:157;;;:::o;9380:193::-;9498:68;9560:5;9498:68;:::i;:::-;9493:3;9486:81;9380:193;;:::o;9579:284::-;9703:4;9741:2;9730:9;9726:18;9718:26;;9754:102;9853:1;9842:9;9838:17;9829:6;9754:102;:::i;:::-;9579:284;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:323::-;10186:6;10235:2;10223:9;10214:7;10210:23;10206:32;10203:119;;;10241:79;;:::i;:::-;10203:119;10361:1;10386:50;10428:7;10419:6;10408:9;10404:22;10386:50;:::i;:::-;10376:60;;10332:114;10130:323;;;;:::o;10459:311::-;10536:4;10626:18;10618:6;10615:30;10612:56;;;10648:18;;:::i;:::-;10612:56;10698:4;10690:6;10686:17;10678:25;;10758:4;10752;10748:15;10740:23;;10459:311;;;:::o;10776:117::-;10885:1;10882;10875:12;10916:710;11012:5;11037:81;11053:64;11110:6;11053:64;:::i;:::-;11037:81;:::i;:::-;11028:90;;11138:5;11167:6;11160:5;11153:21;11201:4;11194:5;11190:16;11183:23;;11254:4;11246:6;11242:17;11234:6;11230:30;11283:3;11275:6;11272:15;11269:122;;;11302:79;;:::i;:::-;11269:122;11417:6;11400:220;11434:6;11429:3;11426:15;11400:220;;;11509:3;11538:37;11571:3;11559:10;11538:37;:::i;:::-;11533:3;11526:50;11605:4;11600:3;11596:14;11589:21;;11476:144;11460:4;11455:3;11451:14;11444:21;;11400:220;;;11404:21;11018:608;;10916:710;;;;;:::o;11649:370::-;11720:5;11769:3;11762:4;11754:6;11750:17;11746:27;11736:122;;11777:79;;:::i;:::-;11736:122;11894:6;11881:20;11919:94;12009:3;12001:6;11994:4;11986:6;11982:17;11919:94;:::i;:::-;11910:103;;11726:293;11649:370;;;;:::o;12025:311::-;12102:4;12192:18;12184:6;12181:30;12178:56;;;12214:18;;:::i;:::-;12178:56;12264:4;12256:6;12252:17;12244:25;;12324:4;12318;12314:15;12306:23;;12025:311;;;:::o;12359:710::-;12455:5;12480:81;12496:64;12553:6;12496:64;:::i;:::-;12480:81;:::i;:::-;12471:90;;12581:5;12610:6;12603:5;12596:21;12644:4;12637:5;12633:16;12626:23;;12697:4;12689:6;12685:17;12677:6;12673:30;12726:3;12718:6;12715:15;12712:122;;;12745:79;;:::i;:::-;12712:122;12860:6;12843:220;12877:6;12872:3;12869:15;12843:220;;;12952:3;12981:37;13014:3;13002:10;12981:37;:::i;:::-;12976:3;12969:50;13048:4;13043:3;13039:14;13032:21;;12919:144;12903:4;12898:3;12894:14;12887:21;;12843:220;;;12847:21;12461:608;;12359:710;;;;;:::o;13092:370::-;13163:5;13212:3;13205:4;13197:6;13193:17;13189:27;13179:122;;13220:79;;:::i;:::-;13179:122;13337:6;13324:20;13362:94;13452:3;13444:6;13437:4;13429:6;13425:17;13362:94;:::i;:::-;13353:103;;13169:293;13092:370;;;;:::o;13468:894::-;13586:6;13594;13643:2;13631:9;13622:7;13618:23;13614:32;13611:119;;;13649:79;;:::i;:::-;13611:119;13797:1;13786:9;13782:17;13769:31;13827:18;13819:6;13816:30;13813:117;;;13849:79;;:::i;:::-;13813:117;13954:78;14024:7;14015:6;14004:9;14000:22;13954:78;:::i;:::-;13944:88;;13740:302;14109:2;14098:9;14094:18;14081:32;14140:18;14132:6;14129:30;14126:117;;;14162:79;;:::i;:::-;14126:117;14267:78;14337:7;14328:6;14317:9;14313:22;14267:78;:::i;:::-;14257:88;;14052:303;13468:894;;;;;:::o;14368:468::-;14433:6;14441;14490:2;14478:9;14469:7;14465:23;14461:32;14458:119;;;14496:79;;:::i;:::-;14458:119;14616:1;14641:53;14686:7;14677:6;14666:9;14662:22;14641:53;:::i;:::-;14631:63;;14587:117;14743:2;14769:50;14811:7;14802:6;14791:9;14787:22;14769:50;:::i;:::-;14759:60;;14714:115;14368:468;;;;;:::o;14842:307::-;14903:4;14993:18;14985:6;14982:30;14979:56;;;15015:18;;:::i;:::-;14979:56;15053:29;15075:6;15053:29;:::i;:::-;15045:37;;15137:4;15131;15127:15;15119:23;;14842:307;;;:::o;15155:410::-;15232:5;15257:65;15273:48;15314:6;15273:48;:::i;:::-;15257:65;:::i;:::-;15248:74;;15345:6;15338:5;15331:21;15383:4;15376:5;15372:16;15421:3;15412:6;15407:3;15403:16;15400:25;15397:112;;;15428:79;;:::i;:::-;15397:112;15518:41;15552:6;15547:3;15542;15518:41;:::i;:::-;15238:327;15155:410;;;;;:::o;15584:338::-;15639:5;15688:3;15681:4;15673:6;15669:17;15665:27;15655:122;;15696:79;;:::i;:::-;15655:122;15813:6;15800:20;15838:78;15912:3;15904:6;15897:4;15889:6;15885:17;15838:78;:::i;:::-;15829:87;;15645:277;15584:338;;;;:::o;15928:943::-;16023:6;16031;16039;16047;16096:3;16084:9;16075:7;16071:23;16067:33;16064:120;;;16103:79;;:::i;:::-;16064:120;16223:1;16248:53;16293:7;16284:6;16273:9;16269:22;16248:53;:::i;:::-;16238:63;;16194:117;16350:2;16376:53;16421:7;16412:6;16401:9;16397:22;16376:53;:::i;:::-;16366:63;;16321:118;16478:2;16504:53;16549:7;16540:6;16529:9;16525:22;16504:53;:::i;:::-;16494:63;;16449:118;16634:2;16623:9;16619:18;16606:32;16665:18;16657:6;16654:30;16651:117;;;16687:79;;:::i;:::-;16651:117;16792:62;16846:7;16837:6;16826:9;16822:22;16792:62;:::i;:::-;16782:72;;16577:287;15928:943;;;;;;;:::o;16877:474::-;16945:6;16953;17002:2;16990:9;16981:7;16977:23;16973:32;16970:119;;;17008:79;;:::i;:::-;16970:119;17128:1;17153:53;17198:7;17189:6;17178:9;17174:22;17153:53;:::i;:::-;17143:63;;17099:117;17255:2;17281:53;17326:7;17317:6;17306:9;17302:22;17281:53;:::i;:::-;17271:63;;17226:118;16877:474;;;;;:::o;17357:180::-;17405:77;17402:1;17395:88;17502:4;17499:1;17492:15;17526:4;17523:1;17516:15;17543:320;17587:6;17624:1;17618:4;17614:12;17604:22;;17671:1;17665:4;17661:12;17692:18;17682:81;;17748:4;17740:6;17736:17;17726:27;;17682:81;17810:2;17802:6;17799:14;17779:18;17776:38;17773:84;;17829:18;;:::i;:::-;17773:84;17594:269;17543:320;;;:::o;17869:180::-;17917:77;17914:1;17907:88;18014:4;18011:1;18004:15;18038:4;18035:1;18028:15;18055:180;18103:77;18100:1;18093:88;18200:4;18197:1;18190:15;18224:4;18221:1;18214:15;18241:305;18281:3;18300:20;18318:1;18300:20;:::i;:::-;18295:25;;18334:20;18352:1;18334:20;:::i;:::-;18329:25;;18488:1;18420:66;18416:74;18413:1;18410:81;18407:107;;;18494:18;;:::i;:::-;18407:107;18538:1;18535;18531:9;18524:16;;18241:305;;;;:::o;18552:157::-;18692:9;18688:1;18680:6;18676:14;18669:33;18552:157;:::o;18715:365::-;18857:3;18878:66;18942:1;18937:3;18878:66;:::i;:::-;18871:73;;18953:93;19042:3;18953:93;:::i;:::-;19071:2;19066:3;19062:12;19055:19;;18715:365;;;:::o;19086:419::-;19252:4;19290:2;19279:9;19275:18;19267:26;;19339:9;19333:4;19329:20;19325:1;19314:9;19310:17;19303:47;19367:131;19493:4;19367:131;:::i;:::-;19359:139;;19086:419;;;:::o;19511:233::-;19550:3;19573:24;19591:5;19573:24;:::i;:::-;19564:33;;19619:66;19612:5;19609:77;19606:103;;19689:18;;:::i;:::-;19606:103;19736:1;19729:5;19725:13;19718:20;;19511:233;;;:::o;19750:348::-;19790:7;19813:20;19831:1;19813:20;:::i;:::-;19808:25;;19847:20;19865:1;19847:20;:::i;:::-;19842:25;;20035:1;19967:66;19963:74;19960:1;19957:81;19952:1;19945:9;19938:17;19934:105;19931:131;;;20042:18;;:::i;:::-;19931:131;20090:1;20087;20083:9;20072:20;;19750:348;;;;:::o;20104:191::-;20144:4;20164:20;20182:1;20164:20;:::i;:::-;20159:25;;20198:20;20216:1;20198:20;:::i;:::-;20193:25;;20237:1;20234;20231:8;20228:34;;;20242:18;;:::i;:::-;20228:34;20287:1;20284;20280:9;20272:17;;20104:191;;;;:::o;20301:160::-;20441:12;20437:1;20429:6;20425:14;20418:36;20301:160;:::o;20467:366::-;20609:3;20630:67;20694:2;20689:3;20630:67;:::i;:::-;20623:74;;20706:93;20795:3;20706:93;:::i;:::-;20824:2;20819:3;20815:12;20808:19;;20467:366;;;:::o;20839:419::-;21005:4;21043:2;21032:9;21028:18;21020:26;;21092:9;21086:4;21082:20;21078:1;21067:9;21063:17;21056:47;21120:131;21246:4;21120:131;:::i;:::-;21112:139;;20839:419;;;:::o;21264:157::-;21404:9;21400:1;21392:6;21388:14;21381:33;21264:157;:::o;21427:365::-;21569:3;21590:66;21654:1;21649:3;21590:66;:::i;:::-;21583:73;;21665:93;21754:3;21665:93;:::i;:::-;21783:2;21778:3;21774:12;21767:19;;21427:365;;;:::o;21798:419::-;21964:4;22002:2;21991:9;21987:18;21979:26;;22051:9;22045:4;22041:20;22037:1;22026:9;22022:17;22015:47;22079:131;22205:4;22079:131;:::i;:::-;22071:139;;21798:419;;;:::o;22223:234::-;22363:34;22359:1;22351:6;22347:14;22340:58;22432:17;22427:2;22419:6;22415:15;22408:42;22223:234;:::o;22463:366::-;22605:3;22626:67;22690:2;22685:3;22626:67;:::i;:::-;22619:74;;22702:93;22791:3;22702:93;:::i;:::-;22820:2;22815:3;22811:12;22804:19;;22463:366;;;:::o;22835:419::-;23001:4;23039:2;23028:9;23024:18;23016:26;;23088:9;23082:4;23078:20;23074:1;23063:9;23059:17;23052:47;23116:131;23242:4;23116:131;:::i;:::-;23108:139;;22835:419;;;:::o;23260:148::-;23362:11;23399:3;23384:18;;23260:148;;;;:::o;23414:377::-;23520:3;23548:39;23581:5;23548:39;:::i;:::-;23603:89;23685:6;23680:3;23603:89;:::i;:::-;23596:96;;23701:52;23746:6;23741:3;23734:4;23727:5;23723:16;23701:52;:::i;:::-;23778:6;23773:3;23769:16;23762:23;;23524:267;23414:377;;;;:::o;23797:155::-;23937:7;23933:1;23925:6;23921:14;23914:31;23797:155;:::o;23958:400::-;24118:3;24139:84;24221:1;24216:3;24139:84;:::i;:::-;24132:91;;24232:93;24321:3;24232:93;:::i;:::-;24350:1;24345:3;24341:11;24334:18;;23958:400;;;:::o;24364:701::-;24645:3;24667:95;24758:3;24749:6;24667:95;:::i;:::-;24660:102;;24779:95;24870:3;24861:6;24779:95;:::i;:::-;24772:102;;24891:148;25035:3;24891:148;:::i;:::-;24884:155;;25056:3;25049:10;;24364:701;;;;;:::o;25071:225::-;25211:34;25207:1;25199:6;25195:14;25188:58;25280:8;25275:2;25267:6;25263:15;25256:33;25071:225;:::o;25302:366::-;25444:3;25465:67;25529:2;25524:3;25465:67;:::i;:::-;25458:74;;25541:93;25630:3;25541:93;:::i;:::-;25659:2;25654:3;25650:12;25643:19;;25302:366;;;:::o;25674:419::-;25840:4;25878:2;25867:9;25863:18;25855:26;;25927:9;25921:4;25917:20;25913:1;25902:9;25898:17;25891:47;25955:131;26081:4;25955:131;:::i;:::-;25947:139;;25674:419;;;:::o;26099:332::-;26220:4;26258:2;26247:9;26243:18;26235:26;;26271:71;26339:1;26328:9;26324:17;26315:6;26271:71;:::i;:::-;26352:72;26420:2;26409:9;26405:18;26396:6;26352:72;:::i;:::-;26099:332;;;;;:::o;26437:137::-;26491:5;26522:6;26516:13;26507:22;;26538:30;26562:5;26538:30;:::i;:::-;26437:137;;;;:::o;26580:345::-;26647:6;26696:2;26684:9;26675:7;26671:23;26667:32;26664:119;;;26702:79;;:::i;:::-;26664:119;26822:1;26847:61;26900:7;26891:6;26880:9;26876:22;26847:61;:::i;:::-;26837:71;;26793:125;26580:345;;;;:::o;26931:182::-;27071:34;27067:1;27059:6;27055:14;27048:58;26931:182;:::o;27119:366::-;27261:3;27282:67;27346:2;27341:3;27282:67;:::i;:::-;27275:74;;27358:93;27447:3;27358:93;:::i;:::-;27476:2;27471:3;27467:12;27460:19;;27119:366;;;:::o;27491:419::-;27657:4;27695:2;27684:9;27680:18;27672:26;;27744:9;27738:4;27734:20;27730:1;27719:9;27715:17;27708:47;27772:131;27898:4;27772:131;:::i;:::-;27764:139;;27491:419;;;:::o;27916:98::-;27967:6;28001:5;27995:12;27985:22;;27916:98;;;:::o;28020:168::-;28103:11;28137:6;28132:3;28125:19;28177:4;28172:3;28168:14;28153:29;;28020:168;;;;:::o;28194:360::-;28280:3;28308:38;28340:5;28308:38;:::i;:::-;28362:70;28425:6;28420:3;28362:70;:::i;:::-;28355:77;;28441:52;28486:6;28481:3;28474:4;28467:5;28463:16;28441:52;:::i;:::-;28518:29;28540:6;28518:29;:::i;:::-;28513:3;28509:39;28502:46;;28284:270;28194:360;;;;:::o;28560:640::-;28755:4;28793:3;28782:9;28778:19;28770:27;;28807:71;28875:1;28864:9;28860:17;28851:6;28807:71;:::i;:::-;28888:72;28956:2;28945:9;28941:18;28932:6;28888:72;:::i;:::-;28970;29038:2;29027:9;29023:18;29014:6;28970:72;:::i;:::-;29089:9;29083:4;29079:20;29074:2;29063:9;29059:18;29052:48;29117:76;29188:4;29179:6;29117:76;:::i;:::-;29109:84;;28560:640;;;;;;;:::o;29206:141::-;29262:5;29293:6;29287:13;29278:22;;29309:32;29335:5;29309:32;:::i;:::-;29206:141;;;;:::o;29353:349::-;29422:6;29471:2;29459:9;29450:7;29446:23;29442:32;29439:119;;;29477:79;;:::i;:::-;29439:119;29597:1;29622:63;29677:7;29668:6;29657:9;29653:22;29622:63;:::i;:::-;29612:73;;29568:127;29353:349;;;;:::o
Swarm Source
ipfs://d86f6cdb761eab7ec2dc13cf69bd99dfe560918185899c8c642eba9fceb40b1d
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.