Overview
TokenID
3290
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MotherFuckerNFTees
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-04 */ // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: contracts/MotherFuckerNFTees.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract MotherFuckerNFTees is Ownable, ERC721A, ERC2981, ReentrancyGuard { uint96 public ROYALTY_PERCENTAGE = 600; uint256 public MAX_FREE_PER_WALLET = 1; uint256 public MAX_SUPPLY = 5000; uint256 public MAX_TX_PER_WALLET = 5; uint256 public SALE_PRICE = 0.003 ether; bool public IS_SALE_ACTIVE = false; string internal baseURI = ""; modifier isUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } constructor() ERC721A("MotherFuckerNFTees", "MFN") { _setDefaultRoyalty(owner(), ROYALTY_PERCENTAGE); } function setIsSaleActive(bool isActive) external virtual onlyOwner { IS_SALE_ACTIVE = isActive; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function getNumberMinted(address addr) external view virtual returns (uint256){ return _numberMinted(addr); } function setBaseURI(string memory newURI) external virtual onlyOwner { baseURI = newURI; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId) || super.supportsInterface(interfaceId); } function privateMint(address buyerAddress, uint256 quantity) external onlyOwner nonReentrant { require(totalSupply() + quantity <= MAX_SUPPLY, "Max supply reached"); _mint(buyerAddress, quantity); } function mint(uint256 quantity) public payable virtual nonReentrant isUser { uint256 salePrice; require(IS_SALE_ACTIVE, "Mint not active"); require(totalSupply() + quantity <= MAX_SUPPLY, "Max supply reached"); if (_numberMinted(msg.sender) > 0) { salePrice = SALE_PRICE * (quantity); } else { salePrice = SALE_PRICE * (quantity - MAX_FREE_PER_WALLET); } require(msg.value >= salePrice, "Insufficient funds"); require( _numberMinted(msg.sender) + quantity <= MAX_TX_PER_WALLET, "Exceeded tx limit" ); _mint(msg.sender, quantity); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_PERCENTAGE","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"buyerAddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"privateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setIsSaleActive","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610258600c60006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506001600d55611388600e556005600f55660aa87bee5380006010556000601160006101000a81548160ff02191690831515021790555060405180602001604052806000815250601290816200008d9190620006ce565b503480156200009b57600080fd5b506040518060400160405280601281526020017f4d6f746865724675636b65724e465465657300000000000000000000000000008152506040518060400160405280600381526020017f4d464e0000000000000000000000000000000000000000000000000000000000815250620001286200011c620001ad60201b60201c565b620001b560201b60201c565b8160039081620001399190620006ce565b5080600490816200014b9190620006ce565b506200015c6200027960201b60201c565b60018190555050506001600b81905550620001a7620001806200027e60201b60201c565b600c60009054906101000a90046bffffffffffffffffffffffff16620002a760201b60201c565b620008d0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620002b76200044a60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030f906200083c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200038a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038190620008ae565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004d657607f821691505b602082108103620004ec57620004eb6200048e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005567fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000517565b62000562868362000517565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005af620005a9620005a3846200057a565b62000584565b6200057a565b9050919050565b6000819050919050565b620005cb836200058e565b620005e3620005da82620005b6565b84845462000524565b825550505050565b600090565b620005fa620005eb565b62000607818484620005c0565b505050565b5b818110156200062f5762000623600082620005f0565b6001810190506200060d565b5050565b601f8211156200067e576200064881620004f2565b620006538462000507565b8101602085101562000663578190505b6200067b620006728562000507565b8301826200060c565b50505b505050565b600082821c905092915050565b6000620006a36000198460080262000683565b1980831691505092915050565b6000620006be838362000690565b9150826002028217905092915050565b620006d98262000454565b67ffffffffffffffff811115620006f557620006f46200045f565b5b620007018254620004bd565b6200070e82828562000633565b600060209050601f83116001811462000746576000841562000731578287015190505b6200073d8582620006b0565b865550620007ad565b601f1984166200075686620004f2565b60005b82811015620007805784890151825560018201915060208501945060208101905062000759565b86831015620007a057848901516200079c601f89168262000690565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000824602a83620007b5565b91506200083182620007c6565b604082019050919050565b60006020820190508181036000830152620008578162000815565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000896601983620007b5565b9150620008a3826200085e565b602082019050919050565b60006020820190508181036000830152620008c98162000887565b9050919050565b61362480620008e06000396000f3fe6080604052600436106101cd5760003560e01c806376d02b71116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610658578063d2d65ff514610695578063e985e9c5146106be578063f2fde38b146106fb576101cd565b8063a0712d68146105c1578063a22cb465146105dd578063b88d4fde14610606578063be62b3c11461062f576101cd565b80638da5cb5b116100d15780638da5cb5b1461051557806395d89b4114610540578063975e840e1461056b57806398710d1e14610596576101cd565b806376d02b71146104825780637f205a74146104ad5780638a59a7fd146104d8576101cd565b806332cb6b0c1161016f57806355f804b31161013e57806355f804b3146103c85780636352211e146103f157806370a082311461042e578063715018a61461046b576101cd565b806332cb6b0c146103325780633ccfd60b1461035d57806342842e0e14610374578063463b08db1461039d576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632a55205a146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612509565b610724565b6040516102069190612551565b60405180910390f35b34801561021b57600080fd5b50610224610756565b6040516102319190612605565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061265d565b6107e8565b60405161026e91906126cb565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612712565b610864565b005b3480156102ac57600080fd5b506102b5610a0a565b6040516102c29190612761565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed919061277c565b610a21565b005b34801561030057600080fd5b5061031b600480360381019061031691906127cf565b610a31565b60405161032992919061280f565b60405180910390f35b34801561033e57600080fd5b50610347610c1b565b6040516103549190612761565b60405180910390f35b34801561036957600080fd5b50610372610c21565b005b34801561038057600080fd5b5061039b6004803603810190610396919061277c565b610da1565b005b3480156103a957600080fd5b506103b2610dc1565b6040516103bf919061285f565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906129af565b610ddf565b005b3480156103fd57600080fd5b506104186004803603810190610413919061265d565b610e6e565b60405161042591906126cb565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906129f8565b610e80565b6040516104629190612761565b60405180910390f35b34801561047757600080fd5b50610480610f38565b005b34801561048e57600080fd5b50610497610fc0565b6040516104a49190612551565b60405180910390f35b3480156104b957600080fd5b506104c2610fd3565b6040516104cf9190612761565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906129f8565b610fd9565b60405161050c9190612761565b60405180910390f35b34801561052157600080fd5b5061052a610feb565b60405161053791906126cb565b60405180910390f35b34801561054c57600080fd5b50610555611014565b6040516105629190612605565b60405180910390f35b34801561057757600080fd5b506105806110a6565b60405161058d9190612761565b60405180910390f35b3480156105a257600080fd5b506105ab6110ac565b6040516105b89190612761565b60405180910390f35b6105db60048036038101906105d6919061265d565b6110b2565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612a51565b61130a565b005b34801561061257600080fd5b5061062d60048036038101906106289190612b32565b611481565b005b34801561063b57600080fd5b5061065660048036038101906106519190612712565b6114f4565b005b34801561066457600080fd5b5061067f600480360381019061067a919061265d565b61162a565b60405161068c9190612605565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612bb5565b6116c8565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190612be2565b611761565b6040516106f29190612551565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d91906129f8565b6117f5565b005b600061072f826118ec565b8061073f575061073e8261197e565b5b8061074f575061074e8261197e565b5b9050919050565b60606003805461076590612c51565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612c51565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826119f8565b610829576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086f82611a57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f5611b23565b73ffffffffffffffffffffffffffffffffffffffff1614610958576109218161091c611b23565b611761565b610957576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a14611b2b565b6002546001540303905090565b610a2c838383611b30565b505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610bc65760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610bd0611ed7565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610bfc9190612cb1565b610c069190612d3a565b90508160000151819350935050509250929050565b600e5481565b610c29611ee1565b73ffffffffffffffffffffffffffffffffffffffff16610c47610feb565b73ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490612db7565b60405180910390fd5b6002600b5403610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990612e23565b60405180910390fd5b6002600b8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d1090612e74565b60006040518083038185875af1925050503d8060008114610d4d576040519150601f19603f3d011682016040523d82523d6000602084013e610d52565b606091505b5050905080610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90612ed5565b60405180910390fd5b506001600b81905550565b610dbc83838360405180602001604052806000815250611481565b505050565b600c60009054906101000a90046bffffffffffffffffffffffff1681565b610de7611ee1565b73ffffffffffffffffffffffffffffffffffffffff16610e05610feb565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290612db7565b60405180910390fd5b8060129081610e6a91906130a1565b5050565b6000610e7982611a57565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f40611ee1565b73ffffffffffffffffffffffffffffffffffffffff16610f5e610feb565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90612db7565b60405180910390fd5b610fbe6000611ee9565b565b601160009054906101000a900460ff1681565b60105481565b6000610fe482611fad565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461102390612c51565b80601f016020809104026020016040519081016040528092919081815260200182805461104f90612c51565b801561109c5780601f106110715761010080835404028352916020019161109c565b820191906000526020600020905b81548152906001019060200180831161107f57829003601f168201915b5050505050905090565b600f5481565b600d5481565b6002600b54036110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90612e23565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906131bf565b60405180910390fd5b6000601160009054906101000a900460ff166111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b59061322b565b60405180910390fd5b600e54826111ca610a0a565b6111d4919061324b565b1115611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c906132ed565b60405180910390fd5b600061122033611fad565b111561123b57816010546112349190612cb1565b9050611259565b600d5482611249919061330d565b6010546112569190612cb1565b90505b8034101561129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061338d565b60405180910390fd5b600f54826112a933611fad565b6112b3919061324b565b11156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb906133f9565b60405180910390fd5b6112fe3383612004565b506001600b8190555050565b611312611b23565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611376576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611383611b23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611430611b23565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114759190612551565b60405180910390a35050565b61148c848484611b30565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114ee576114b7848484846121d7565b6114ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114fc611ee1565b73ffffffffffffffffffffffffffffffffffffffff1661151a610feb565b73ffffffffffffffffffffffffffffffffffffffff1614611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790612db7565b60405180910390fd5b6002600b54036115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612e23565b60405180910390fd5b6002600b81905550600e54816115c9610a0a565b6115d3919061324b565b1115611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b906132ed565b60405180910390fd5b61161e8282612004565b6001600b819055505050565b6060611635826119f8565b61166b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611675612327565b9050600081510361169557604051806020016040528060008152506116c0565b8061169f846123b9565b6040516020016116b0929190613455565b6040516020818303038152906040525b915050919050565b6116d0611ee1565b73ffffffffffffffffffffffffffffffffffffffff166116ee610feb565b73ffffffffffffffffffffffffffffffffffffffff1614611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90612db7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117fd611ee1565b73ffffffffffffffffffffffffffffffffffffffff1661181b610feb565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890612db7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d7906134eb565b60405180910390fd5b6118e981611ee9565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061194757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119775750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119f157506119f082612413565b5b9050919050565b600081611a03611b2b565b11158015611a12575060015482105b8015611a50575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611a66611b2b565b11611aec57600154811015611aeb5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ae9575b60008103611adf576005600083600190039350838152602001908152602001600020549050611ab5565b8092505050611b1e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b3b82611a57565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bc3611b23565b73ffffffffffffffffffffffffffffffffffffffff161480611bf25750611bf185611bec611b23565b611761565b5b80611c375750611c00611b23565b73ffffffffffffffffffffffffffffffffffffffff16611c1f846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c70576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce3858585600161247d565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611de086612483565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611e685760006001840190506000600560008381526020019081526020016000205403611e66576001548114611e65578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ed0858585600161248d565b5050505050565b6000612710905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612071576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036120ab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120b8600084838561247d565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161211d60018414612493565b901b60a042901b61212d85612483565b171760056000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612153578160018190555050506121d2600084838561248d565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121fd611b23565b8786866040518563ffffffff1660e01b815260040161221f9493929190613560565b6020604051808303816000875af192505050801561225b57506040513d601f19601f8201168201806040525081019061225891906135c1565b60015b6122d4573d806000811461228b576040519150601f19603f3d011682016040523d82523d6000602084013e612290565b606091505b5060008151036122cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606012805461233690612c51565b80601f016020809104026020016040519081016040528092919081815260200182805461236290612c51565b80156123af5780601f10612384576101008083540402835291602001916123af565b820191906000526020600020905b81548152906001019060200180831161239257829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156123ff57600183039250600a81066030018353600a810490506123df565b508181036020830392508083525050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124e6816124b1565b81146124f157600080fd5b50565b600081359050612503816124dd565b92915050565b60006020828403121561251f5761251e6124a7565b5b600061252d848285016124f4565b91505092915050565b60008115159050919050565b61254b81612536565b82525050565b60006020820190506125666000830184612542565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a657808201518184015260208101905061258b565b838111156125b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006125d78261256c565b6125e18185612577565b93506125f1818560208601612588565b6125fa816125bb565b840191505092915050565b6000602082019050818103600083015261261f81846125cc565b905092915050565b6000819050919050565b61263a81612627565b811461264557600080fd5b50565b60008135905061265781612631565b92915050565b600060208284031215612673576126726124a7565b5b600061268184828501612648565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126b58261268a565b9050919050565b6126c5816126aa565b82525050565b60006020820190506126e060008301846126bc565b92915050565b6126ef816126aa565b81146126fa57600080fd5b50565b60008135905061270c816126e6565b92915050565b60008060408385031215612729576127286124a7565b5b6000612737858286016126fd565b925050602061274885828601612648565b9150509250929050565b61275b81612627565b82525050565b60006020820190506127766000830184612752565b92915050565b600080600060608486031215612795576127946124a7565b5b60006127a3868287016126fd565b93505060206127b4868287016126fd565b92505060406127c586828701612648565b9150509250925092565b600080604083850312156127e6576127e56124a7565b5b60006127f485828601612648565b925050602061280585828601612648565b9150509250929050565b600060408201905061282460008301856126bc565b6128316020830184612752565b9392505050565b60006bffffffffffffffffffffffff82169050919050565b61285981612838565b82525050565b60006020820190506128746000830184612850565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128bc826125bb565b810181811067ffffffffffffffff821117156128db576128da612884565b5b80604052505050565b60006128ee61249d565b90506128fa82826128b3565b919050565b600067ffffffffffffffff82111561291a57612919612884565b5b612923826125bb565b9050602081019050919050565b82818337600083830152505050565b600061295261294d846128ff565b6128e4565b90508281526020810184848401111561296e5761296d61287f565b5b612979848285612930565b509392505050565b600082601f8301126129965761299561287a565b5b81356129a684826020860161293f565b91505092915050565b6000602082840312156129c5576129c46124a7565b5b600082013567ffffffffffffffff8111156129e3576129e26124ac565b5b6129ef84828501612981565b91505092915050565b600060208284031215612a0e57612a0d6124a7565b5b6000612a1c848285016126fd565b91505092915050565b612a2e81612536565b8114612a3957600080fd5b50565b600081359050612a4b81612a25565b92915050565b60008060408385031215612a6857612a676124a7565b5b6000612a76858286016126fd565b9250506020612a8785828601612a3c565b9150509250929050565b600067ffffffffffffffff821115612aac57612aab612884565b5b612ab5826125bb565b9050602081019050919050565b6000612ad5612ad084612a91565b6128e4565b905082815260208101848484011115612af157612af061287f565b5b612afc848285612930565b509392505050565b600082601f830112612b1957612b1861287a565b5b8135612b29848260208601612ac2565b91505092915050565b60008060008060808587031215612b4c57612b4b6124a7565b5b6000612b5a878288016126fd565b9450506020612b6b878288016126fd565b9350506040612b7c87828801612648565b925050606085013567ffffffffffffffff811115612b9d57612b9c6124ac565b5b612ba987828801612b04565b91505092959194509250565b600060208284031215612bcb57612bca6124a7565b5b6000612bd984828501612a3c565b91505092915050565b60008060408385031215612bf957612bf86124a7565b5b6000612c07858286016126fd565b9250506020612c18858286016126fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c6957607f821691505b602082108103612c7c57612c7b612c22565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cbc82612627565b9150612cc783612627565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d0057612cff612c82565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d4582612627565b9150612d5083612627565b925082612d6057612d5f612d0b565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612da1602083612577565b9150612dac82612d6b565b602082019050919050565b60006020820190508181036000830152612dd081612d94565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612e0d601f83612577565b9150612e1882612dd7565b602082019050919050565b60006020820190508181036000830152612e3c81612e00565b9050919050565b600081905092915050565b50565b6000612e5e600083612e43565b9150612e6982612e4e565b600082019050919050565b6000612e7f82612e51565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612ebf601083612577565b9150612eca82612e89565b602082019050919050565b60006020820190508181036000830152612eee81612eb2565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f1a565b612f618683612f1a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612f9e612f99612f9484612627565b612f79565b612627565b9050919050565b6000819050919050565b612fb883612f83565b612fcc612fc482612fa5565b848454612f27565b825550505050565b600090565b612fe1612fd4565b612fec818484612faf565b505050565b5b8181101561301057613005600082612fd9565b600181019050612ff2565b5050565b601f8211156130555761302681612ef5565b61302f84612f0a565b8101602085101561303e578190505b61305261304a85612f0a565b830182612ff1565b50505b505050565b600082821c905092915050565b60006130786000198460080261305a565b1980831691505092915050565b60006130918383613067565b9150826002028217905092915050565b6130aa8261256c565b67ffffffffffffffff8111156130c3576130c2612884565b5b6130cd8254612c51565b6130d8828285613014565b600060209050601f83116001811461310b57600084156130f9578287015190505b6131038582613085565b86555061316b565b601f19841661311986612ef5565b60005b828110156131415784890151825560018201915060208501945060208101905061311c565b8683101561315e578489015161315a601f891682613067565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006131a9601e83612577565b91506131b482613173565b602082019050919050565b600060208201905081810360008301526131d88161319c565b9050919050565b7f4d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b6000613215600f83612577565b9150613220826131df565b602082019050919050565b6000602082019050818103600083015261324481613208565b9050919050565b600061325682612627565b915061326183612627565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329657613295612c82565b5b828201905092915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006132d7601283612577565b91506132e2826132a1565b602082019050919050565b60006020820190508181036000830152613306816132ca565b9050919050565b600061331882612627565b915061332383612627565b92508282101561333657613335612c82565b5b828203905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613377601283612577565b915061338282613341565b602082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f4578636565646564207478206c696d6974000000000000000000000000000000600082015250565b60006133e3601183612577565b91506133ee826133ad565b602082019050919050565b60006020820190508181036000830152613412816133d6565b9050919050565b600081905092915050565b600061342f8261256c565b6134398185613419565b9350613449818560208601612588565b80840191505092915050565b60006134618285613424565b915061346d8284613424565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134d5602683612577565b91506134e082613479565b604082019050919050565b60006020820190508181036000830152613504816134c8565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135328261350b565b61353c8185613516565b935061354c818560208601612588565b613555816125bb565b840191505092915050565b600060808201905061357560008301876126bc565b61358260208301866126bc565b61358f6040830185612752565b81810360608301526135a18184613527565b905095945050505050565b6000815190506135bb816124dd565b92915050565b6000602082840312156135d7576135d66124a7565b5b60006135e5848285016135ac565b9150509291505056fea26469706673582212205a6e73c5b5076c0354d7f0d93c8b97c6cc7dd34e92db95d1ae97c41dc0d7fe8564736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806376d02b71116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610658578063d2d65ff514610695578063e985e9c5146106be578063f2fde38b146106fb576101cd565b8063a0712d68146105c1578063a22cb465146105dd578063b88d4fde14610606578063be62b3c11461062f576101cd565b80638da5cb5b116100d15780638da5cb5b1461051557806395d89b4114610540578063975e840e1461056b57806398710d1e14610596576101cd565b806376d02b71146104825780637f205a74146104ad5780638a59a7fd146104d8576101cd565b806332cb6b0c1161016f57806355f804b31161013e57806355f804b3146103c85780636352211e146103f157806370a082311461042e578063715018a61461046b576101cd565b806332cb6b0c146103325780633ccfd60b1461035d57806342842e0e14610374578063463b08db1461039d576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632a55205a146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612509565b610724565b6040516102069190612551565b60405180910390f35b34801561021b57600080fd5b50610224610756565b6040516102319190612605565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061265d565b6107e8565b60405161026e91906126cb565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612712565b610864565b005b3480156102ac57600080fd5b506102b5610a0a565b6040516102c29190612761565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed919061277c565b610a21565b005b34801561030057600080fd5b5061031b600480360381019061031691906127cf565b610a31565b60405161032992919061280f565b60405180910390f35b34801561033e57600080fd5b50610347610c1b565b6040516103549190612761565b60405180910390f35b34801561036957600080fd5b50610372610c21565b005b34801561038057600080fd5b5061039b6004803603810190610396919061277c565b610da1565b005b3480156103a957600080fd5b506103b2610dc1565b6040516103bf919061285f565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906129af565b610ddf565b005b3480156103fd57600080fd5b506104186004803603810190610413919061265d565b610e6e565b60405161042591906126cb565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906129f8565b610e80565b6040516104629190612761565b60405180910390f35b34801561047757600080fd5b50610480610f38565b005b34801561048e57600080fd5b50610497610fc0565b6040516104a49190612551565b60405180910390f35b3480156104b957600080fd5b506104c2610fd3565b6040516104cf9190612761565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906129f8565b610fd9565b60405161050c9190612761565b60405180910390f35b34801561052157600080fd5b5061052a610feb565b60405161053791906126cb565b60405180910390f35b34801561054c57600080fd5b50610555611014565b6040516105629190612605565b60405180910390f35b34801561057757600080fd5b506105806110a6565b60405161058d9190612761565b60405180910390f35b3480156105a257600080fd5b506105ab6110ac565b6040516105b89190612761565b60405180910390f35b6105db60048036038101906105d6919061265d565b6110b2565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612a51565b61130a565b005b34801561061257600080fd5b5061062d60048036038101906106289190612b32565b611481565b005b34801561063b57600080fd5b5061065660048036038101906106519190612712565b6114f4565b005b34801561066457600080fd5b5061067f600480360381019061067a919061265d565b61162a565b60405161068c9190612605565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612bb5565b6116c8565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190612be2565b611761565b6040516106f29190612551565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d91906129f8565b6117f5565b005b600061072f826118ec565b8061073f575061073e8261197e565b5b8061074f575061074e8261197e565b5b9050919050565b60606003805461076590612c51565b80601f016020809104026020016040519081016040528092919081815260200182805461079190612c51565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f3826119f8565b610829576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086f82611a57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f5611b23565b73ffffffffffffffffffffffffffffffffffffffff1614610958576109218161091c611b23565b611761565b610957576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a14611b2b565b6002546001540303905090565b610a2c838383611b30565b505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610bc65760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610bd0611ed7565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610bfc9190612cb1565b610c069190612d3a565b90508160000151819350935050509250929050565b600e5481565b610c29611ee1565b73ffffffffffffffffffffffffffffffffffffffff16610c47610feb565b73ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490612db7565b60405180910390fd5b6002600b5403610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990612e23565b60405180910390fd5b6002600b8190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d1090612e74565b60006040518083038185875af1925050503d8060008114610d4d576040519150601f19603f3d011682016040523d82523d6000602084013e610d52565b606091505b5050905080610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90612ed5565b60405180910390fd5b506001600b81905550565b610dbc83838360405180602001604052806000815250611481565b505050565b600c60009054906101000a90046bffffffffffffffffffffffff1681565b610de7611ee1565b73ffffffffffffffffffffffffffffffffffffffff16610e05610feb565b73ffffffffffffffffffffffffffffffffffffffff1614610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290612db7565b60405180910390fd5b8060129081610e6a91906130a1565b5050565b6000610e7982611a57565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f40611ee1565b73ffffffffffffffffffffffffffffffffffffffff16610f5e610feb565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90612db7565b60405180910390fd5b610fbe6000611ee9565b565b601160009054906101000a900460ff1681565b60105481565b6000610fe482611fad565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461102390612c51565b80601f016020809104026020016040519081016040528092919081815260200182805461104f90612c51565b801561109c5780601f106110715761010080835404028352916020019161109c565b820191906000526020600020905b81548152906001019060200180831161107f57829003601f168201915b5050505050905090565b600f5481565b600d5481565b6002600b54036110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90612e23565b60405180910390fd5b6002600b819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906131bf565b60405180910390fd5b6000601160009054906101000a900460ff166111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b59061322b565b60405180910390fd5b600e54826111ca610a0a565b6111d4919061324b565b1115611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c906132ed565b60405180910390fd5b600061122033611fad565b111561123b57816010546112349190612cb1565b9050611259565b600d5482611249919061330d565b6010546112569190612cb1565b90505b8034101561129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061338d565b60405180910390fd5b600f54826112a933611fad565b6112b3919061324b565b11156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb906133f9565b60405180910390fd5b6112fe3383612004565b506001600b8190555050565b611312611b23565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611376576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611383611b23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611430611b23565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114759190612551565b60405180910390a35050565b61148c848484611b30565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114ee576114b7848484846121d7565b6114ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114fc611ee1565b73ffffffffffffffffffffffffffffffffffffffff1661151a610feb565b73ffffffffffffffffffffffffffffffffffffffff1614611570576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156790612db7565b60405180910390fd5b6002600b54036115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90612e23565b60405180910390fd5b6002600b81905550600e54816115c9610a0a565b6115d3919061324b565b1115611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b906132ed565b60405180910390fd5b61161e8282612004565b6001600b819055505050565b6060611635826119f8565b61166b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611675612327565b9050600081510361169557604051806020016040528060008152506116c0565b8061169f846123b9565b6040516020016116b0929190613455565b6040516020818303038152906040525b915050919050565b6116d0611ee1565b73ffffffffffffffffffffffffffffffffffffffff166116ee610feb565b73ffffffffffffffffffffffffffffffffffffffff1614611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90612db7565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117fd611ee1565b73ffffffffffffffffffffffffffffffffffffffff1661181b610feb565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890612db7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d7906134eb565b60405180910390fd5b6118e981611ee9565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061194757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119775750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119f157506119f082612413565b5b9050919050565b600081611a03611b2b565b11158015611a12575060015482105b8015611a50575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611a66611b2b565b11611aec57600154811015611aeb5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ae9575b60008103611adf576005600083600190039350838152602001908152602001600020549050611ab5565b8092505050611b1e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b3b82611a57565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bc3611b23565b73ffffffffffffffffffffffffffffffffffffffff161480611bf25750611bf185611bec611b23565b611761565b5b80611c375750611c00611b23565b73ffffffffffffffffffffffffffffffffffffffff16611c1f846107e8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c70576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611cd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce3858585600161247d565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611de086612483565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611e685760006001840190506000600560008381526020019081526020016000205403611e66576001548114611e65578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ed0858585600161248d565b5050505050565b6000612710905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612071576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036120ab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120b8600084838561247d565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161211d60018414612493565b901b60a042901b61212d85612483565b171760056000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612153578160018190555050506121d2600084838561248d565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121fd611b23565b8786866040518563ffffffff1660e01b815260040161221f9493929190613560565b6020604051808303816000875af192505050801561225b57506040513d601f19601f8201168201806040525081019061225891906135c1565b60015b6122d4573d806000811461228b576040519150601f19603f3d011682016040523d82523d6000602084013e612290565b606091505b5060008151036122cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606012805461233690612c51565b80601f016020809104026020016040519081016040528092919081815260200182805461236290612c51565b80156123af5780601f10612384576101008083540402835291602001916123af565b820191906000526020600020905b81548152906001019060200180831161239257829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156123ff57600183039250600a81066030018353600a810490506123df565b508181036020830392508083525050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6000819050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124e6816124b1565b81146124f157600080fd5b50565b600081359050612503816124dd565b92915050565b60006020828403121561251f5761251e6124a7565b5b600061252d848285016124f4565b91505092915050565b60008115159050919050565b61254b81612536565b82525050565b60006020820190506125666000830184612542565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125a657808201518184015260208101905061258b565b838111156125b5576000848401525b50505050565b6000601f19601f8301169050919050565b60006125d78261256c565b6125e18185612577565b93506125f1818560208601612588565b6125fa816125bb565b840191505092915050565b6000602082019050818103600083015261261f81846125cc565b905092915050565b6000819050919050565b61263a81612627565b811461264557600080fd5b50565b60008135905061265781612631565b92915050565b600060208284031215612673576126726124a7565b5b600061268184828501612648565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126b58261268a565b9050919050565b6126c5816126aa565b82525050565b60006020820190506126e060008301846126bc565b92915050565b6126ef816126aa565b81146126fa57600080fd5b50565b60008135905061270c816126e6565b92915050565b60008060408385031215612729576127286124a7565b5b6000612737858286016126fd565b925050602061274885828601612648565b9150509250929050565b61275b81612627565b82525050565b60006020820190506127766000830184612752565b92915050565b600080600060608486031215612795576127946124a7565b5b60006127a3868287016126fd565b93505060206127b4868287016126fd565b92505060406127c586828701612648565b9150509250925092565b600080604083850312156127e6576127e56124a7565b5b60006127f485828601612648565b925050602061280585828601612648565b9150509250929050565b600060408201905061282460008301856126bc565b6128316020830184612752565b9392505050565b60006bffffffffffffffffffffffff82169050919050565b61285981612838565b82525050565b60006020820190506128746000830184612850565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128bc826125bb565b810181811067ffffffffffffffff821117156128db576128da612884565b5b80604052505050565b60006128ee61249d565b90506128fa82826128b3565b919050565b600067ffffffffffffffff82111561291a57612919612884565b5b612923826125bb565b9050602081019050919050565b82818337600083830152505050565b600061295261294d846128ff565b6128e4565b90508281526020810184848401111561296e5761296d61287f565b5b612979848285612930565b509392505050565b600082601f8301126129965761299561287a565b5b81356129a684826020860161293f565b91505092915050565b6000602082840312156129c5576129c46124a7565b5b600082013567ffffffffffffffff8111156129e3576129e26124ac565b5b6129ef84828501612981565b91505092915050565b600060208284031215612a0e57612a0d6124a7565b5b6000612a1c848285016126fd565b91505092915050565b612a2e81612536565b8114612a3957600080fd5b50565b600081359050612a4b81612a25565b92915050565b60008060408385031215612a6857612a676124a7565b5b6000612a76858286016126fd565b9250506020612a8785828601612a3c565b9150509250929050565b600067ffffffffffffffff821115612aac57612aab612884565b5b612ab5826125bb565b9050602081019050919050565b6000612ad5612ad084612a91565b6128e4565b905082815260208101848484011115612af157612af061287f565b5b612afc848285612930565b509392505050565b600082601f830112612b1957612b1861287a565b5b8135612b29848260208601612ac2565b91505092915050565b60008060008060808587031215612b4c57612b4b6124a7565b5b6000612b5a878288016126fd565b9450506020612b6b878288016126fd565b9350506040612b7c87828801612648565b925050606085013567ffffffffffffffff811115612b9d57612b9c6124ac565b5b612ba987828801612b04565b91505092959194509250565b600060208284031215612bcb57612bca6124a7565b5b6000612bd984828501612a3c565b91505092915050565b60008060408385031215612bf957612bf86124a7565b5b6000612c07858286016126fd565b9250506020612c18858286016126fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c6957607f821691505b602082108103612c7c57612c7b612c22565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cbc82612627565b9150612cc783612627565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d0057612cff612c82565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d4582612627565b9150612d5083612627565b925082612d6057612d5f612d0b565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612da1602083612577565b9150612dac82612d6b565b602082019050919050565b60006020820190508181036000830152612dd081612d94565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612e0d601f83612577565b9150612e1882612dd7565b602082019050919050565b60006020820190508181036000830152612e3c81612e00565b9050919050565b600081905092915050565b50565b6000612e5e600083612e43565b9150612e6982612e4e565b600082019050919050565b6000612e7f82612e51565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612ebf601083612577565b9150612eca82612e89565b602082019050919050565b60006020820190508181036000830152612eee81612eb2565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f1a565b612f618683612f1a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612f9e612f99612f9484612627565b612f79565b612627565b9050919050565b6000819050919050565b612fb883612f83565b612fcc612fc482612fa5565b848454612f27565b825550505050565b600090565b612fe1612fd4565b612fec818484612faf565b505050565b5b8181101561301057613005600082612fd9565b600181019050612ff2565b5050565b601f8211156130555761302681612ef5565b61302f84612f0a565b8101602085101561303e578190505b61305261304a85612f0a565b830182612ff1565b50505b505050565b600082821c905092915050565b60006130786000198460080261305a565b1980831691505092915050565b60006130918383613067565b9150826002028217905092915050565b6130aa8261256c565b67ffffffffffffffff8111156130c3576130c2612884565b5b6130cd8254612c51565b6130d8828285613014565b600060209050601f83116001811461310b57600084156130f9578287015190505b6131038582613085565b86555061316b565b601f19841661311986612ef5565b60005b828110156131415784890151825560018201915060208501945060208101905061311c565b8683101561315e578489015161315a601f891682613067565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006131a9601e83612577565b91506131b482613173565b602082019050919050565b600060208201905081810360008301526131d88161319c565b9050919050565b7f4d696e74206e6f74206163746976650000000000000000000000000000000000600082015250565b6000613215600f83612577565b9150613220826131df565b602082019050919050565b6000602082019050818103600083015261324481613208565b9050919050565b600061325682612627565b915061326183612627565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329657613295612c82565b5b828201905092915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006132d7601283612577565b91506132e2826132a1565b602082019050919050565b60006020820190508181036000830152613306816132ca565b9050919050565b600061331882612627565b915061332383612627565b92508282101561333657613335612c82565b5b828203905092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613377601283612577565b915061338282613341565b602082019050919050565b600060208201905081810360008301526133a68161336a565b9050919050565b7f4578636565646564207478206c696d6974000000000000000000000000000000600082015250565b60006133e3601183612577565b91506133ee826133ad565b602082019050919050565b60006020820190508181036000830152613412816133d6565b9050919050565b600081905092915050565b600061342f8261256c565b6134398185613419565b9350613449818560208601612588565b80840191505092915050565b60006134618285613424565b915061346d8284613424565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134d5602683612577565b91506134e082613479565b604082019050919050565b60006020820190508181036000830152613504816134c8565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135328261350b565b61353c8185613516565b935061354c818560208601612588565b613555816125bb565b840191505092915050565b600060808201905061357560008301876126bc565b61358260208301866126bc565b61358f6040830185612752565b81810360608301526135a18184613527565b905095945050505050565b6000815190506135bb816124dd565b92915050565b6000602082840312156135d7576135d66124a7565b5b60006135e5848285016135ac565b9150509291505056fea26469706673582212205a6e73c5b5076c0354d7f0d93c8b97c6cc7dd34e92db95d1ae97c41dc0d7fe8564736f6c634300080f0033
Deployed Bytecode Sourcemap
51640:2663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52945:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18086:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20154:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19614:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12127:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21040:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49029:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;51813:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52388:188;;;;;;;;;;;;;:::i;:::-;;21281:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51721:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52717:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17875:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13752:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43712:103;;;;;;;;;;;;;:::i;:::-;;51943:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51895:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52584:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43061:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18255:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51852:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51768:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53560:740;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20430:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21537:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53297:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18430:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52269:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20809:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43970:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52945:344;53093:4;53135:38;53161:11;53135:25;:38::i;:::-;:93;;;;53190:38;53216:11;53190:25;:38::i;:::-;53135:93;:146;;;;53245:36;53269:11;53245:23;:36::i;:::-;53135:146;53115:166;;52945:344;;;:::o;18086:100::-;18140:13;18173:5;18166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18086:100;:::o;20154:204::-;20222:7;20247:16;20255:7;20247;:16::i;:::-;20242:64;;20272:34;;;;;;;;;;;;;;20242:64;20326:15;:24;20342:7;20326:24;;;;;;;;;;;;;;;;;;;;;20319:31;;20154:204;;;:::o;19614:474::-;19687:13;19719:27;19738:7;19719:18;:27::i;:::-;19687:61;;19769:5;19763:11;;:2;:11;;;19759:48;;19783:24;;;;;;;;;;;;;;19759:48;19847:5;19824:28;;:19;:17;:19::i;:::-;:28;;;19820:175;;19872:44;19889:5;19896:19;:17;:19::i;:::-;19872:16;:44::i;:::-;19867:128;;19944:35;;;;;;;;;;;;;;19867:128;19820:175;20034:2;20007:15;:24;20023:7;20007:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20072:7;20068:2;20052:28;;20061:5;20052:28;;;;;;;;;;;;19676:412;19614:474;;:::o;12127:315::-;12180:7;12408:15;:13;:15::i;:::-;12393:12;;12377:13;;:28;:46;12370:53;;12127:315;:::o;21040:170::-;21174:28;21184:4;21190:2;21194:7;21174:9;:28::i;:::-;21040:170;;;:::o;49029:442::-;49126:7;49135;49155:26;49184:17;:27;49202:8;49184:27;;;;;;;;;;;49155:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49256:1;49228:30;;:7;:16;;;:30;;;49224:92;;49285:19;49275:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49224:92;49328:21;49393:17;:15;:17::i;:::-;49352:58;;49366:7;:23;;;49353:36;;:10;:36;;;;:::i;:::-;49352:58;;;;:::i;:::-;49328:82;;49431:7;:16;;;49449:13;49423:40;;;;;;49029:442;;;;;:::o;51813:32::-;;;;:::o;52388:188::-;43292:12;:10;:12::i;:::-;43281:23;;:7;:5;:7::i;:::-;:23;;;43273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40159:1:::1;40757:7;;:19:::0;40749:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40159:1;40890:7;:18;;;;52452:12:::2;52470:10;:15;;52493:21;52470:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52451:68;;;52540:7;52532:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52440:136;40115:1:::1;41069:7;:22;;;;52388:188::o:0;21281:185::-;21419:39;21436:4;21442:2;21446:7;21419:39;;;;;;;;;;;;:16;:39::i;:::-;21281:185;;;:::o;51721:38::-;;;;;;;;;;;;;:::o;52717:104::-;43292:12;:10;:12::i;:::-;43281:23;;:7;:5;:7::i;:::-;:23;;;43273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52807:6:::1;52797:7;:16;;;;;;:::i;:::-;;52717:104:::0;:::o;17875:144::-;17939:7;17982:27;18001:7;17982:18;:27::i;:::-;17959:52;;17875:144;;;:::o;13752:224::-;13816:7;13857:1;13840:19;;:5;:19;;;13836:60;;13868:28;;;;;;;;;;;;;;13836:60;9091:13;13914:18;:25;13933:5;13914:25;;;;;;;;;;;;;;;;:54;13907:61;;13752:224;;;:::o;43712:103::-;43292:12;:10;:12::i;:::-;43281:23;;:7;:5;:7::i;:::-;:23;;;43273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43777:30:::1;43804:1;43777:18;:30::i;:::-;43712:103::o:0;51943:34::-;;;;;;;;;;;;;:::o;51895:39::-;;;;:::o;52584:125::-;52654:7;52682:19;52696:4;52682:13;:19::i;:::-;52675:26;;52584:125;;;:::o;43061:87::-;43107:7;43134:6;;;;;;;;;;;43127:13;;43061:87;:::o;18255:104::-;18311:13;18344:7;18337:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18255:104;:::o;51852:36::-;;;;:::o;51768:38::-;;;;:::o;53560:740::-;40159:1;40757:7;;:19;40749:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40159:1;40890:7;:18;;;;52071:10:::1;52058:23;;:9;:23;;;52050:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;53696:17:::2;53734:14;;;;;;;;;;;53726:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;53817:10;;53805:8;53789:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;53781:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53895:1;53867:25;53881:10;53867:13;:25::i;:::-;:29;53863:187;;;53939:8;53925:10;;:23;;;;:::i;:::-;53913:35;;53863:187;;;54018:19;;54007:8;:30;;;;:::i;:::-;53993:10;;:45;;;;:::i;:::-;53981:57;;53863:187;54083:9;54070;:22;;54062:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54190:17;;54178:8;54150:25;54164:10;54150:13;:25::i;:::-;:36;;;;:::i;:::-;:57;;54128:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;54265:27;54271:10;54283:8;54265:5;:27::i;:::-;53685:615;40115:1:::0;41069:7;:22;;;;53560:740;:::o;20430:308::-;20541:19;:17;:19::i;:::-;20529:31;;:8;:31;;;20525:61;;20569:17;;;;;;;;;;;;;;20525:61;20651:8;20599:18;:39;20618:19;:17;:19::i;:::-;20599:39;;;;;;;;;;;;;;;:49;20639:8;20599:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20711:8;20675:55;;20690:19;:17;:19::i;:::-;20675:55;;;20721:8;20675:55;;;;;;:::i;:::-;;;;;;;;20430:308;;:::o;21537:396::-;21704:28;21714:4;21720:2;21724:7;21704:9;:28::i;:::-;21765:1;21747:2;:14;;;:19;21743:183;;21786:56;21817:4;21823:2;21827:7;21836:5;21786:30;:56::i;:::-;21781:145;;21870:40;;;;;;;;;;;;;;21781:145;21743:183;21537:396;;;;:::o;53297:255::-;43292:12;:10;:12::i;:::-;43281:23;;:7;:5;:7::i;:::-;:23;;;43273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40159:1:::1;40757:7;;:19:::0;40749:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40159:1;40890:7;:18;;;;53469:10:::2;;53457:8;53441:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;53433:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53515:29;53521:12;53535:8;53515:5;:29::i;:::-;40115:1:::1;41069:7;:22;;;;53297:255:::0;;:::o;18430:318::-;18503:13;18534:16;18542:7;18534;:16::i;:::-;18529:59;;18559:29;;;;;;;;;;;;;;18529:59;18601:21;18625:10;:8;:10::i;:::-;18601:34;;18678:1;18659:7;18653:21;:26;:87;;;;;;;;;;;;;;;;;18706:7;18715:18;18725:7;18715:9;:18::i;:::-;18689:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18653:87;18646:94;;;18430:318;;;:::o;52269:111::-;43292:12;:10;:12::i;:::-;43281:23;;:7;:5;:7::i;:::-;:23;;;43273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52364:8:::1;52347:14;;:25;;;;;;;;;;;;;;;;;;52269:111:::0;:::o;20809:164::-;20906:4;20930:18;:25;20949:5;20930:25;;;;;;;;;;;;;;;:35;20956:8;20930:35;;;;;;;;;;;;;;;;;;;;;;;;;20923:42;;20809:164;;;;:::o;43970:201::-;43292:12;:10;:12::i;:::-;43281:23;;:7;:5;:7::i;:::-;:23;;;43273:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44079:1:::1;44059:22;;:8;:22;;::::0;44051:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;44135:28;44154:8;44135:18;:28::i;:::-;43970:201:::0;:::o;13073:615::-;13158:4;13473:10;13458:25;;:11;:25;;;;:102;;;;13550:10;13535:25;;:11;:25;;;;13458:102;:179;;;;13627:10;13612:25;;:11;:25;;;;13458:179;13438:199;;13073:615;;;:::o;48759:215::-;48861:4;48900:26;48885:41;;;:11;:41;;;;:81;;;;48930:36;48954:11;48930:23;:36::i;:::-;48885:81;48878:88;;48759:215;;;:::o;22188:273::-;22245:4;22301:7;22282:15;:13;:15::i;:::-;:26;;:66;;;;;22335:13;;22325:7;:23;22282:66;:152;;;;;22433:1;9861:8;22386:17;:26;22404:7;22386:26;;;;;;;;;;;;:43;:48;22282:152;22262:172;;22188:273;;;:::o;15390:1129::-;15457:7;15477:12;15492:7;15477:22;;15560:4;15541:15;:13;:15::i;:::-;:23;15537:915;;15594:13;;15587:4;:20;15583:869;;;15632:14;15649:17;:23;15667:4;15649:23;;;;;;;;;;;;15632:40;;15765:1;9861:8;15738:6;:23;:28;15734:699;;16257:113;16274:1;16264:6;:11;16257:113;;16317:17;:25;16335:6;;;;;;;16317:25;;;;;;;;;;;;16308:34;;16257:113;;;16403:6;16396:13;;;;;;15734:699;15609:843;15583:869;15537:915;16480:31;;;;;;;;;;;;;;15390:1129;;;;:::o;36170:105::-;36230:7;36257:10;36250:17;;36170:105;:::o;11650:92::-;11706:7;11650:92;:::o;27427:2515::-;27542:27;27572;27591:7;27572:18;:27::i;:::-;27542:57;;27657:4;27616:45;;27632:19;27616:45;;;27612:86;;27670:28;;;;;;;;;;;;;;27612:86;27711:22;27760:4;27737:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27781:43;27798:4;27804:19;:17;:19::i;:::-;27781:16;:43::i;:::-;27737:87;:147;;;;27865:19;:17;:19::i;:::-;27841:43;;:20;27853:7;27841:11;:20::i;:::-;:43;;;27737:147;27711:174;;27903:17;27898:66;;27929:35;;;;;;;;;;;;;;27898:66;27993:1;27979:16;;:2;:16;;;27975:52;;28004:23;;;;;;;;;;;;;;27975:52;28040:43;28062:4;28068:2;28072:7;28081:1;28040:21;:43::i;:::-;28156:15;:24;28172:7;28156:24;;;;;;;;;;;;28149:31;;;;;;;;;;;28548:18;:24;28567:4;28548:24;;;;;;;;;;;;;;;;28546:26;;;;;;;;;;;;28617:18;:22;28636:2;28617:22;;;;;;;;;;;;;;;;28615:24;;;;;;;;;;;10143:8;9745:3;28998:15;:41;;28956:21;28974:2;28956:17;:21::i;:::-;:84;:128;28910:17;:26;28928:7;28910:26;;;;;;;;;;;:174;;;;29254:1;10143:8;29204:19;:46;:51;29200:626;;29276:19;29308:1;29298:7;:11;29276:33;;29465:1;29431:17;:30;29449:11;29431:30;;;;;;;;;;;;:35;29427:384;;29569:13;;29554:11;:28;29550:242;;29749:19;29716:17;:30;29734:11;29716:30;;;;;;;;;;;:52;;;;29550:242;29427:384;29257:569;29200:626;29873:7;29869:2;29854:27;;29863:4;29854:27;;;;;;;;;;;;29892:42;29913:4;29919:2;29923:7;29932:1;29892:20;:42::i;:::-;27531:2411;;27427:2515;;;:::o;49753:97::-;49811:6;49837:5;49830:12;;49753:97;:::o;41785:98::-;41838:7;41865:10;41858:17;;41785:98;:::o;44331:191::-;44405:16;44424:6;;;;;;;;;;;44405:25;;44450:8;44441:6;;:17;;;;;;;;;;;;;;;;;;44505:8;44474:40;;44495:8;44474:40;;;;;;;;;;;;44394:128;44331:191;:::o;14058:176::-;14119:7;9091:13;9228:2;14147:18;:25;14166:5;14147:25;;;;;;;;;;;;;;;;:49;;14146:80;14139:87;;14058:176;;;:::o;25517:1656::-;25582:20;25605:13;;25582:36;;25647:1;25633:16;;:2;:16;;;25629:48;;25658:19;;;;;;;;;;;;;;25629:48;25704:1;25692:8;:13;25688:44;;25714:18;;;;;;;;;;;;;;25688:44;25745:61;25775:1;25779:2;25783:12;25797:8;25745:21;:61::i;:::-;26349:1;9228:2;26320:1;:25;;26319:31;26307:8;:44;26281:18;:22;26300:2;26281:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10008:3;26750:29;26777:1;26765:8;:13;26750:14;:29::i;:::-;:56;;9745:3;26687:15;:41;;26645:21;26663:2;26645:17;:21::i;:::-;:84;:162;26594:17;:31;26612:12;26594:31;;;;;;;;;;;:213;;;;26824:20;26847:12;26824:35;;26874:11;26903:8;26888:12;:23;26874:37;;26928:111;26980:14;;;;;;26976:2;26955:40;;26972:1;26955:40;;;;;;;;;;;;27034:3;27019:12;:18;26928:111;;27071:12;27055:13;:28;;;;26058:1037;;27105:60;27134:1;27138:2;27142:12;27156:8;27105:20;:60::i;:::-;25571:1602;25517:1656;;:::o;33639:716::-;33802:4;33848:2;33823:45;;;33869:19;:17;:19::i;:::-;33890:4;33896:7;33905:5;33823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34123:1;34106:6;:13;:18;34102:235;;34152:40;;;;;;;;;;;;;;34102:235;34295:6;34289:13;34280:6;34276:2;34272:15;34265:38;33819:529;33992:54;;;33982:64;;;:6;:64;;;;33975:71;;;33639:716;;;;;;:::o;52829:108::-;52889:13;52922:7;52915:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52829:108;:::o;36381:1959::-;36438:17;36859:3;36852:4;36846:11;36842:21;36835:28;;36950:3;36944:4;36937:17;37056:3;37513:5;37643:1;37638:3;37634:11;37627:18;;37780:2;37774:4;37770:13;37766:2;37762:22;37757:3;37749:36;37821:2;37815:4;37811:13;37803:21;;37404:682;37840:4;37404:682;;;38015:1;38010:3;38006:11;37999:18;;38066:2;38060:4;38056:13;38052:2;38048:22;38043:3;38035:36;37936:2;37930:4;37926:13;37918:21;;37404:682;;;37408:431;38137:3;38132;38128:13;38252:2;38247:3;38243:12;38236:19;;38315:6;38310:3;38303:19;36477:1856;;36381:1959;;;:::o;46311:157::-;46396:4;46435:25;46420:40;;;:11;:40;;;;46413:47;;46311:157;;;:::o;35003:159::-;;;;;:::o;19175:148::-;19239:14;19300:5;19290:15;;19175:148;;;:::o;35821:158::-;;;;;:::o;19410:142::-;19468:14;19529:5;19519:15;;19410:142;;;:::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:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:474::-;5983:6;5991;6040:2;6028:9;6019:7;6015:23;6011:32;6008:119;;;6046:79;;:::i;:::-;6008:119;6166:1;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6137:117;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5915:474;;;;;:::o;6395:332::-;6516:4;6554:2;6543:9;6539:18;6531:26;;6567:71;6635:1;6624:9;6620:17;6611:6;6567:71;:::i;:::-;6648:72;6716:2;6705:9;6701:18;6692:6;6648:72;:::i;:::-;6395:332;;;;;:::o;6733:109::-;6769:7;6809:26;6802:5;6798:38;6787:49;;6733:109;;;:::o;6848:115::-;6933:23;6950:5;6933:23;:::i;:::-;6928:3;6921:36;6848:115;;:::o;6969:218::-;7060:4;7098:2;7087:9;7083:18;7075:26;;7111:69;7177:1;7166:9;7162:17;7153:6;7111:69;:::i;:::-;6969:218;;;;:::o;7193:117::-;7302:1;7299;7292:12;7316:117;7425:1;7422;7415:12;7439:180;7487:77;7484:1;7477:88;7584:4;7581:1;7574:15;7608:4;7605:1;7598:15;7625:281;7708:27;7730:4;7708:27;:::i;:::-;7700:6;7696:40;7838:6;7826:10;7823:22;7802:18;7790:10;7787:34;7784:62;7781:88;;;7849:18;;:::i;:::-;7781:88;7889:10;7885:2;7878:22;7668:238;7625:281;;:::o;7912:129::-;7946:6;7973:20;;:::i;:::-;7963:30;;8002:33;8030:4;8022:6;8002:33;:::i;:::-;7912:129;;;:::o;8047:308::-;8109:4;8199:18;8191:6;8188:30;8185:56;;;8221:18;;:::i;:::-;8185:56;8259:29;8281:6;8259:29;:::i;:::-;8251:37;;8343:4;8337;8333:15;8325:23;;8047:308;;;:::o;8361:154::-;8445:6;8440:3;8435;8422:30;8507:1;8498:6;8493:3;8489:16;8482:27;8361:154;;;:::o;8521:412::-;8599:5;8624:66;8640:49;8682:6;8640:49;:::i;:::-;8624:66;:::i;:::-;8615:75;;8713:6;8706:5;8699:21;8751:4;8744:5;8740:16;8789:3;8780:6;8775:3;8771:16;8768:25;8765:112;;;8796:79;;:::i;:::-;8765:112;8886:41;8920:6;8915:3;8910;8886:41;:::i;:::-;8605:328;8521:412;;;;;:::o;8953:340::-;9009:5;9058:3;9051:4;9043:6;9039:17;9035:27;9025:122;;9066:79;;:::i;:::-;9025:122;9183:6;9170:20;9208:79;9283:3;9275:6;9268:4;9260:6;9256:17;9208:79;:::i;:::-;9199:88;;9015:278;8953:340;;;;:::o;9299:509::-;9368:6;9417:2;9405:9;9396:7;9392:23;9388:32;9385:119;;;9423:79;;:::i;:::-;9385:119;9571:1;9560:9;9556:17;9543:31;9601:18;9593:6;9590:30;9587:117;;;9623:79;;:::i;:::-;9587:117;9728:63;9783:7;9774:6;9763:9;9759:22;9728:63;:::i;:::-;9718:73;;9514:287;9299:509;;;;:::o;9814:329::-;9873:6;9922:2;9910:9;9901:7;9897:23;9893:32;9890:119;;;9928:79;;:::i;:::-;9890:119;10048:1;10073:53;10118:7;10109:6;10098:9;10094:22;10073:53;:::i;:::-;10063:63;;10019:117;9814:329;;;;:::o;10149:116::-;10219:21;10234:5;10219:21;:::i;:::-;10212:5;10209:32;10199:60;;10255:1;10252;10245:12;10199:60;10149:116;:::o;10271:133::-;10314:5;10352:6;10339:20;10330:29;;10368:30;10392:5;10368:30;:::i;:::-;10271:133;;;;:::o;10410:468::-;10475:6;10483;10532:2;10520:9;10511:7;10507:23;10503:32;10500:119;;;10538:79;;:::i;:::-;10500:119;10658:1;10683:53;10728:7;10719:6;10708:9;10704:22;10683:53;:::i;:::-;10673:63;;10629:117;10785:2;10811:50;10853:7;10844:6;10833:9;10829:22;10811:50;:::i;:::-;10801:60;;10756:115;10410:468;;;;;:::o;10884:307::-;10945:4;11035:18;11027:6;11024:30;11021:56;;;11057:18;;:::i;:::-;11021:56;11095:29;11117:6;11095:29;:::i;:::-;11087:37;;11179:4;11173;11169:15;11161:23;;10884:307;;;:::o;11197:410::-;11274:5;11299:65;11315:48;11356:6;11315:48;:::i;:::-;11299:65;:::i;:::-;11290:74;;11387:6;11380:5;11373:21;11425:4;11418:5;11414:16;11463:3;11454:6;11449:3;11445:16;11442:25;11439:112;;;11470:79;;:::i;:::-;11439:112;11560:41;11594:6;11589:3;11584;11560:41;:::i;:::-;11280:327;11197:410;;;;;:::o;11626:338::-;11681:5;11730:3;11723:4;11715:6;11711:17;11707:27;11697:122;;11738:79;;:::i;:::-;11697:122;11855:6;11842:20;11880:78;11954:3;11946:6;11939:4;11931:6;11927:17;11880:78;:::i;:::-;11871:87;;11687:277;11626:338;;;;:::o;11970:943::-;12065:6;12073;12081;12089;12138:3;12126:9;12117:7;12113:23;12109:33;12106:120;;;12145:79;;:::i;:::-;12106:120;12265:1;12290:53;12335:7;12326:6;12315:9;12311:22;12290:53;:::i;:::-;12280:63;;12236:117;12392:2;12418:53;12463:7;12454:6;12443:9;12439:22;12418:53;:::i;:::-;12408:63;;12363:118;12520:2;12546:53;12591:7;12582:6;12571:9;12567:22;12546:53;:::i;:::-;12536:63;;12491:118;12676:2;12665:9;12661:18;12648:32;12707:18;12699:6;12696:30;12693:117;;;12729:79;;:::i;:::-;12693:117;12834:62;12888:7;12879:6;12868:9;12864:22;12834:62;:::i;:::-;12824:72;;12619:287;11970:943;;;;;;;:::o;12919:323::-;12975:6;13024:2;13012:9;13003:7;12999:23;12995:32;12992:119;;;13030:79;;:::i;:::-;12992:119;13150:1;13175:50;13217:7;13208:6;13197:9;13193:22;13175:50;:::i;:::-;13165:60;;13121:114;12919:323;;;;:::o;13248:474::-;13316:6;13324;13373:2;13361:9;13352:7;13348:23;13344:32;13341:119;;;13379:79;;:::i;:::-;13341:119;13499:1;13524:53;13569:7;13560:6;13549:9;13545:22;13524:53;:::i;:::-;13514:63;;13470:117;13626:2;13652:53;13697:7;13688:6;13677:9;13673:22;13652:53;:::i;:::-;13642:63;;13597:118;13248:474;;;;;:::o;13728:180::-;13776:77;13773:1;13766:88;13873:4;13870:1;13863:15;13897:4;13894:1;13887:15;13914:320;13958:6;13995:1;13989:4;13985:12;13975:22;;14042:1;14036:4;14032:12;14063:18;14053:81;;14119:4;14111:6;14107:17;14097:27;;14053:81;14181:2;14173:6;14170:14;14150:18;14147:38;14144:84;;14200:18;;:::i;:::-;14144:84;13965:269;13914:320;;;:::o;14240:180::-;14288:77;14285:1;14278:88;14385:4;14382:1;14375:15;14409:4;14406:1;14399:15;14426:348;14466:7;14489:20;14507:1;14489:20;:::i;:::-;14484:25;;14523:20;14541:1;14523:20;:::i;:::-;14518:25;;14711:1;14643:66;14639:74;14636:1;14633:81;14628:1;14621:9;14614:17;14610:105;14607:131;;;14718:18;;:::i;:::-;14607:131;14766:1;14763;14759:9;14748:20;;14426:348;;;;:::o;14780:180::-;14828:77;14825:1;14818:88;14925:4;14922:1;14915:15;14949:4;14946:1;14939:15;14966:185;15006:1;15023:20;15041:1;15023:20;:::i;:::-;15018:25;;15057:20;15075:1;15057:20;:::i;:::-;15052:25;;15096:1;15086:35;;15101:18;;:::i;:::-;15086:35;15143:1;15140;15136:9;15131:14;;14966:185;;;;:::o;15157:182::-;15297:34;15293:1;15285:6;15281:14;15274:58;15157:182;:::o;15345:366::-;15487:3;15508:67;15572:2;15567:3;15508:67;:::i;:::-;15501:74;;15584:93;15673:3;15584:93;:::i;:::-;15702:2;15697:3;15693:12;15686:19;;15345:366;;;:::o;15717:419::-;15883:4;15921:2;15910:9;15906:18;15898:26;;15970:9;15964:4;15960:20;15956:1;15945:9;15941:17;15934:47;15998:131;16124:4;15998:131;:::i;:::-;15990:139;;15717:419;;;:::o;16142:181::-;16282:33;16278:1;16270:6;16266:14;16259:57;16142:181;:::o;16329:366::-;16471:3;16492:67;16556:2;16551:3;16492:67;:::i;:::-;16485:74;;16568:93;16657:3;16568:93;:::i;:::-;16686:2;16681:3;16677:12;16670:19;;16329:366;;;:::o;16701:419::-;16867:4;16905:2;16894:9;16890:18;16882:26;;16954:9;16948:4;16944:20;16940:1;16929:9;16925:17;16918:47;16982:131;17108:4;16982:131;:::i;:::-;16974:139;;16701:419;;;:::o;17126:147::-;17227:11;17264:3;17249:18;;17126:147;;;;:::o;17279:114::-;;:::o;17399:398::-;17558:3;17579:83;17660:1;17655:3;17579:83;:::i;:::-;17572:90;;17671:93;17760:3;17671:93;:::i;:::-;17789:1;17784:3;17780:11;17773:18;;17399:398;;;:::o;17803:379::-;17987:3;18009:147;18152:3;18009:147;:::i;:::-;18002:154;;18173:3;18166:10;;17803:379;;;:::o;18188:166::-;18328:18;18324:1;18316:6;18312:14;18305:42;18188:166;:::o;18360:366::-;18502:3;18523:67;18587:2;18582:3;18523:67;:::i;:::-;18516:74;;18599:93;18688:3;18599:93;:::i;:::-;18717:2;18712:3;18708:12;18701:19;;18360:366;;;:::o;18732:419::-;18898:4;18936:2;18925:9;18921:18;18913:26;;18985:9;18979:4;18975:20;18971:1;18960:9;18956:17;18949:47;19013:131;19139:4;19013:131;:::i;:::-;19005:139;;18732:419;;;:::o;19157:141::-;19206:4;19229:3;19221:11;;19252:3;19249:1;19242:14;19286:4;19283:1;19273:18;19265:26;;19157:141;;;:::o;19304:93::-;19341:6;19388:2;19383;19376:5;19372:14;19368:23;19358:33;;19304:93;;;:::o;19403:107::-;19447:8;19497:5;19491:4;19487:16;19466:37;;19403:107;;;;:::o;19516:393::-;19585:6;19635:1;19623:10;19619:18;19658:97;19688:66;19677:9;19658:97;:::i;:::-;19776:39;19806:8;19795:9;19776:39;:::i;:::-;19764:51;;19848:4;19844:9;19837:5;19833:21;19824:30;;19897:4;19887:8;19883:19;19876:5;19873:30;19863:40;;19592:317;;19516:393;;;;;:::o;19915:60::-;19943:3;19964:5;19957:12;;19915:60;;;:::o;19981:142::-;20031:9;20064:53;20082:34;20091:24;20109:5;20091:24;:::i;:::-;20082:34;:::i;:::-;20064:53;:::i;:::-;20051:66;;19981:142;;;:::o;20129:75::-;20172:3;20193:5;20186:12;;20129:75;;;:::o;20210:269::-;20320:39;20351:7;20320:39;:::i;:::-;20381:91;20430:41;20454:16;20430:41;:::i;:::-;20422:6;20415:4;20409:11;20381:91;:::i;:::-;20375:4;20368:105;20286:193;20210:269;;;:::o;20485:73::-;20530:3;20485:73;:::o;20564:189::-;20641:32;;:::i;:::-;20682:65;20740:6;20732;20726:4;20682:65;:::i;:::-;20617:136;20564:189;;:::o;20759:186::-;20819:120;20836:3;20829:5;20826:14;20819:120;;;20890:39;20927:1;20920:5;20890:39;:::i;:::-;20863:1;20856:5;20852:13;20843:22;;20819:120;;;20759:186;;:::o;20951:543::-;21052:2;21047:3;21044:11;21041:446;;;21086:38;21118:5;21086:38;:::i;:::-;21170:29;21188:10;21170:29;:::i;:::-;21160:8;21156:44;21353:2;21341:10;21338:18;21335:49;;;21374:8;21359:23;;21335:49;21397:80;21453:22;21471:3;21453:22;:::i;:::-;21443:8;21439:37;21426:11;21397:80;:::i;:::-;21056:431;;21041:446;20951:543;;;:::o;21500:117::-;21554:8;21604:5;21598:4;21594:16;21573:37;;21500:117;;;;:::o;21623:169::-;21667:6;21700:51;21748:1;21744:6;21736:5;21733:1;21729:13;21700:51;:::i;:::-;21696:56;21781:4;21775;21771:15;21761:25;;21674:118;21623:169;;;;:::o;21797:295::-;21873:4;22019:29;22044:3;22038:4;22019:29;:::i;:::-;22011:37;;22081:3;22078:1;22074:11;22068:4;22065:21;22057:29;;21797:295;;;;:::o;22097:1395::-;22214:37;22247:3;22214:37;:::i;:::-;22316:18;22308:6;22305:30;22302:56;;;22338:18;;:::i;:::-;22302:56;22382:38;22414:4;22408:11;22382:38;:::i;:::-;22467:67;22527:6;22519;22513:4;22467:67;:::i;:::-;22561:1;22585:4;22572:17;;22617:2;22609:6;22606:14;22634:1;22629:618;;;;23291:1;23308:6;23305:77;;;23357:9;23352:3;23348:19;23342:26;23333:35;;23305:77;23408:67;23468:6;23461:5;23408:67;:::i;:::-;23402:4;23395:81;23264:222;22599:887;;22629:618;22681:4;22677:9;22669:6;22665:22;22715:37;22747:4;22715:37;:::i;:::-;22774:1;22788:208;22802:7;22799:1;22796:14;22788:208;;;22881:9;22876:3;22872:19;22866:26;22858:6;22851:42;22932:1;22924:6;22920:14;22910:24;;22979:2;22968:9;22964:18;22951:31;;22825:4;22822:1;22818:12;22813:17;;22788:208;;;23024:6;23015:7;23012:19;23009:179;;;23082:9;23077:3;23073:19;23067:26;23125:48;23167:4;23159:6;23155:17;23144:9;23125:48;:::i;:::-;23117:6;23110:64;23032:156;23009:179;23234:1;23230;23222:6;23218:14;23214:22;23208:4;23201:36;22636:611;;;22599:887;;22189:1303;;;22097:1395;;:::o;23498:180::-;23638:32;23634:1;23626:6;23622:14;23615:56;23498:180;:::o;23684:366::-;23826:3;23847:67;23911:2;23906:3;23847:67;:::i;:::-;23840:74;;23923:93;24012:3;23923:93;:::i;:::-;24041:2;24036:3;24032:12;24025:19;;23684:366;;;:::o;24056:419::-;24222:4;24260:2;24249:9;24245:18;24237:26;;24309:9;24303:4;24299:20;24295:1;24284:9;24280:17;24273:47;24337:131;24463:4;24337:131;:::i;:::-;24329:139;;24056:419;;;:::o;24481:165::-;24621:17;24617:1;24609:6;24605:14;24598:41;24481:165;:::o;24652:366::-;24794:3;24815:67;24879:2;24874:3;24815:67;:::i;:::-;24808:74;;24891:93;24980:3;24891:93;:::i;:::-;25009:2;25004:3;25000:12;24993:19;;24652:366;;;:::o;25024:419::-;25190:4;25228:2;25217:9;25213:18;25205:26;;25277:9;25271:4;25267:20;25263:1;25252:9;25248:17;25241:47;25305:131;25431:4;25305:131;:::i;:::-;25297:139;;25024:419;;;:::o;25449:305::-;25489:3;25508:20;25526:1;25508:20;:::i;:::-;25503:25;;25542:20;25560:1;25542:20;:::i;:::-;25537:25;;25696:1;25628:66;25624:74;25621:1;25618:81;25615:107;;;25702:18;;:::i;:::-;25615:107;25746:1;25743;25739:9;25732:16;;25449:305;;;;:::o;25760:168::-;25900:20;25896:1;25888:6;25884:14;25877:44;25760:168;:::o;25934:366::-;26076:3;26097:67;26161:2;26156:3;26097:67;:::i;:::-;26090:74;;26173:93;26262:3;26173:93;:::i;:::-;26291:2;26286:3;26282:12;26275:19;;25934:366;;;:::o;26306:419::-;26472:4;26510:2;26499:9;26495:18;26487:26;;26559:9;26553:4;26549:20;26545:1;26534:9;26530:17;26523:47;26587:131;26713:4;26587:131;:::i;:::-;26579:139;;26306:419;;;:::o;26731:191::-;26771:4;26791:20;26809:1;26791:20;:::i;:::-;26786:25;;26825:20;26843:1;26825:20;:::i;:::-;26820:25;;26864:1;26861;26858:8;26855:34;;;26869:18;;:::i;:::-;26855:34;26914:1;26911;26907:9;26899:17;;26731:191;;;;:::o;26928:168::-;27068:20;27064:1;27056:6;27052:14;27045:44;26928:168;:::o;27102:366::-;27244:3;27265:67;27329:2;27324:3;27265:67;:::i;:::-;27258:74;;27341:93;27430:3;27341:93;:::i;:::-;27459:2;27454:3;27450:12;27443:19;;27102:366;;;:::o;27474:419::-;27640:4;27678:2;27667:9;27663:18;27655:26;;27727:9;27721:4;27717:20;27713:1;27702:9;27698:17;27691:47;27755:131;27881:4;27755:131;:::i;:::-;27747:139;;27474:419;;;:::o;27899:167::-;28039:19;28035:1;28027:6;28023:14;28016:43;27899:167;:::o;28072:366::-;28214:3;28235:67;28299:2;28294:3;28235:67;:::i;:::-;28228:74;;28311:93;28400:3;28311:93;:::i;:::-;28429:2;28424:3;28420:12;28413:19;;28072:366;;;:::o;28444:419::-;28610:4;28648:2;28637:9;28633:18;28625:26;;28697:9;28691:4;28687:20;28683:1;28672:9;28668:17;28661:47;28725:131;28851:4;28725:131;:::i;:::-;28717:139;;28444:419;;;:::o;28869:148::-;28971:11;29008:3;28993:18;;28869:148;;;;:::o;29023:377::-;29129:3;29157:39;29190:5;29157:39;:::i;:::-;29212:89;29294:6;29289:3;29212:89;:::i;:::-;29205:96;;29310:52;29355:6;29350:3;29343:4;29336:5;29332:16;29310:52;:::i;:::-;29387:6;29382:3;29378:16;29371:23;;29133:267;29023:377;;;;:::o;29406:435::-;29586:3;29608:95;29699:3;29690:6;29608:95;:::i;:::-;29601:102;;29720:95;29811:3;29802:6;29720:95;:::i;:::-;29713:102;;29832:3;29825:10;;29406:435;;;;;:::o;29847:225::-;29987:34;29983:1;29975:6;29971:14;29964:58;30056:8;30051:2;30043:6;30039:15;30032:33;29847:225;:::o;30078:366::-;30220:3;30241:67;30305:2;30300:3;30241:67;:::i;:::-;30234:74;;30317:93;30406:3;30317:93;:::i;:::-;30435:2;30430:3;30426:12;30419:19;;30078:366;;;:::o;30450:419::-;30616:4;30654:2;30643:9;30639:18;30631:26;;30703:9;30697:4;30693:20;30689:1;30678:9;30674:17;30667:47;30731:131;30857:4;30731:131;:::i;:::-;30723:139;;30450:419;;;:::o;30875:98::-;30926:6;30960:5;30954:12;30944:22;;30875:98;;;:::o;30979:168::-;31062:11;31096:6;31091:3;31084:19;31136:4;31131:3;31127:14;31112:29;;30979:168;;;;:::o;31153:360::-;31239:3;31267:38;31299:5;31267:38;:::i;:::-;31321:70;31384:6;31379:3;31321:70;:::i;:::-;31314:77;;31400:52;31445:6;31440:3;31433:4;31426:5;31422:16;31400:52;:::i;:::-;31477:29;31499:6;31477:29;:::i;:::-;31472:3;31468:39;31461:46;;31243:270;31153:360;;;;:::o;31519:640::-;31714:4;31752:3;31741:9;31737:19;31729:27;;31766:71;31834:1;31823:9;31819:17;31810:6;31766:71;:::i;:::-;31847:72;31915:2;31904:9;31900:18;31891:6;31847:72;:::i;:::-;31929;31997:2;31986:9;31982:18;31973:6;31929:72;:::i;:::-;32048:9;32042:4;32038:20;32033:2;32022:9;32018:18;32011:48;32076:76;32147:4;32138:6;32076:76;:::i;:::-;32068:84;;31519:640;;;;;;;:::o;32165:141::-;32221:5;32252:6;32246:13;32237:22;;32268:32;32294:5;32268:32;:::i;:::-;32165:141;;;;:::o;32312:349::-;32381:6;32430:2;32418:9;32409:7;32405:23;32401:32;32398:119;;;32436:79;;:::i;:::-;32398:119;32556:1;32581:63;32636:7;32627:6;32616:9;32612:22;32581:63;:::i;:::-;32571:73;;32527:127;32312:349;;;;:::o
Swarm Source
ipfs://5a6e73c5b5076c0354d7f0d93c8b97c6cc7dd34e92db95d1ae97c41dc0d7fe85
Loading...
Loading
Loading...
Loading
[ 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.