ERC-721
Overview
Max Total Supply
366 ANV
Holders
268
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 ANVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Anniverse365
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract Anniverse365 is ERC721Enumerable, Ownable { using Address for address; uint256 constant _maxTokens = 366; // max NFT tokens supply uint256 _mintTimeSWhite = 1672545600; // white mint start time uint256 _mintTimeEWhite = 1672718400; // white mint end time bytes32 _merkleRoot = 0x836aa75d649c817e3f4e1c337a667a7cd6226080c20b9169e3897aee7ca8ce28; // white merkleRoot uint256 _mintTimeS = 1673409600; // start mint time uint256 _mintTimeE = 1674100800; // end mint time mapping(address => bool) public _claimed; // claimed address address public _withdrawAddress = 0x3E0DCbd1640F5AD9af76BB95fC007aA6eE1f5318; // withdraw address string _myBaseUri = 'https://api.the365.io/token/'; event PublicMintConfigUpdated(uint256 startTime, uint256 endTime); event WhitelistMintConfigUpdated(uint256 startTime, uint256 endTime, bytes32 merkleRoot); event WithdrawAddressConfigUpdated(address withdrawAddress); event Withdraw(address from, address to, uint amount); event WithdrawERC20(address from, address to,address tokenAddress, uint amount); event Donate(address from, uint256 amount); constructor() ERC721("Anniverse365", "ANV") {} function _baseURI() internal view override(ERC721) returns (string memory) { return _myBaseUri; } function setBaseUri(string memory str) external onlyOwner { _myBaseUri = str; } function mintProcess(address to, uint256 tokenId) private { require(tokenId < _maxTokens, "invalid tokenId"); require(!_exists(tokenId),"Token already claimed"); require(_claimed[to] == false, "address already claimed"); _claimed[to] = true; _safeMint(to, tokenId); } function ownerMint(address[] calldata tos, uint256[] calldata tokens) external onlyOwner { require(tos.length > 0 && tos.length == tokens.length, "invalid input"); for (uint256 i; i < tos.length; i++) { mintProcess(tos[i], tokens[i]); } } function setWhiteMint(uint256 startTime, uint256 endTime, bytes32 merkleRoot) external onlyOwner { _mintTimeSWhite = startTime; _mintTimeEWhite = endTime; _merkleRoot = merkleRoot; emit WhitelistMintConfigUpdated(startTime, endTime, merkleRoot); } function whiteMint(bytes32[] calldata merkleProof, uint256 tokenId) external { require(_mintTimeSWhite > 0 && block.timestamp >= _mintTimeSWhite, "invalid white mint period"); require(_mintTimeEWhite > 0 && block.timestamp < _mintTimeEWhite, "invalid white mint period"); require(checkWhite(merkleProof, _msgSender()) == true, "invalid merkle proof"); mintProcess(_msgSender(), tokenId); } function checkWhite(bytes32[] calldata merkleProof, address checkAddress) public view returns (bool) { require(_merkleRoot != 0x0, "invalid white mint merkle"); bytes32 leaf = keccak256(abi.encodePacked(checkAddress)); return MerkleProof.verify(merkleProof, _merkleRoot, leaf); } function setMint(uint256 startTime, uint256 endTime) external onlyOwner { _mintTimeS = startTime; _mintTimeE = endTime; emit PublicMintConfigUpdated(startTime, endTime); } function mint(uint256 tokenId) external { uint256 t = block.timestamp; require(_mintTimeS > 0 && t >= _mintTimeS, "invalid mint period"); require(_mintTimeE > 0 && t < _mintTimeE, "invalid mint period"); mintProcess(_msgSender(), tokenId); } function ownerTokens(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return (tokenIds); } function setWithdrawAddress(address withdrawAddress) external onlyOwner { _withdrawAddress = withdrawAddress; emit WithdrawAddressConfigUpdated(withdrawAddress); } function withdraw() external onlyOwner { require(_withdrawAddress != address(0), "invalid withdrawAddress"); uint256 balance = address(this).balance; Address.sendValue(payable(_withdrawAddress), balance); emit Withdraw(_msgSender(), _withdrawAddress, balance); } function withdrawERC20(address token,address to, uint256 amount) external onlyOwner { require(to != address(0), "invalid to address"); uint256 balance = IERC20(token).balanceOf(address(this)); require(amount <= balance, "balance is low"); IERC20(token).transfer(to, amount); emit WithdrawERC20(_msgSender(), to, token, amount); } function donate() public payable { emit Donate(_msgSender(), msg.value); } receive() external payable { donate(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), 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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Donate","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":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"PublicMintConfigUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"WhitelistMintConfigUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"withdrawAddress","type":"address"}],"name":"WithdrawAddressConfigUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawERC20","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"address","name":"checkAddress","type":"address"}],"name":"checkWhite","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tos","type":"address[]"},{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":"_owner","type":"address"}],"name":"ownerTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"str","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"setMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhiteMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"withdrawAddress","type":"address"}],"name":"setWithdrawAddress","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"whiteMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526363b10540600b556363b3a840600c557f836aa75d649c817e3f4e1c337a667a7cd6226080c20b9169e3897aee7ca8ce2860001b600d556363be3440600e556363c8c040600f55733e0dcbd1640f5ad9af76bb95fc007aa6ee1f5318601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280601c81526020017f68747470733a2f2f6170692e7468653336352e696f2f746f6b656e2f0000000081525060129081620000e69190620004f5565b50348015620000f457600080fd5b506040518060400160405280600c81526020017f416e6e69766572736533363500000000000000000000000000000000000000008152506040518060400160405280600381526020017f414e5600000000000000000000000000000000000000000000000000000000008152508160009081620001729190620004f5565b508060019081620001849190620004f5565b505050620001a76200019b620001ad60201b60201c565b620001b560201b60201c565b620005dc565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002fd57607f821691505b602082108103620003135762000312620002b5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200037d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200033e565b6200038986836200033e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003d6620003d0620003ca84620003a1565b620003ab565b620003a1565b9050919050565b6000819050919050565b620003f283620003b5565b6200040a6200040182620003dd565b8484546200034b565b825550505050565b600090565b6200042162000412565b6200042e818484620003e7565b505050565b5b8181101562000456576200044a60008262000417565b60018101905062000434565b5050565b601f821115620004a5576200046f8162000319565b6200047a846200032e565b810160208510156200048a578190505b620004a262000499856200032e565b83018262000433565b50505b505050565b600082821c905092915050565b6000620004ca60001984600802620004aa565b1980831691505092915050565b6000620004e58383620004b7565b9150826002028217905092915050565b62000500826200027b565b67ffffffffffffffff8111156200051c576200051b62000286565b5b620005288254620002e4565b620005358282856200045a565b600060209050601f8311600181146200056d576000841562000558578287015190505b620005648582620004d7565b865550620005d4565b601f1984166200057d8662000319565b60005b82811015620005a75784890151825560018201915060208501945060208101905062000580565b86831015620005c75784890151620005c3601f891682620004b7565b8355505b6001600288020188555050505b505050505050565b6152e580620005ec6000396000f3fe6080604052600436106101f25760003560e01c806369f7d2f21161010d578063a22cb465116100a0578063dd896a1c1161006f578063dd896a1c1461071a578063e985e9c514610757578063ed88c68e14610794578063f2fde38b1461079e578063fd07bf18146107c757610201565b8063a22cb4651461064e578063b88d4fde14610677578063bba7723e146106a0578063c87b56dd146106dd57610201565b806395d89b41116100dc57806395d89b41146105a85780639b5481a6146105d3578063a0712d68146105fc578063a0bcfc7f1461062557610201565b806369f7d2f21461050057806370a0823114610529578063715018a6146105665780638da5cb5b1461057d57610201565b80633ab1a494116101855780634f6ccce7116101545780634f6ccce7146104345780635477f45f1461047157806359e0c8f71461049a5780636352211e146104c357610201565b80633ab1a494146103a25780633ccfd60b146103cb57806342842e0e146103e257806344004cc11461040b57610201565b806315861f03116101c157806315861f03146102d457806318160ddd1461031157806323b872dd1461033c5780632f745c591461036557610201565b806301ffc9a71461020657806306fdde0314610243578063081812fc1461026e578063095ea7b3146102ab57610201565b36610201576101ff6107f2565b005b600080fd5b34801561021257600080fd5b5061022d600480360381019061022891906132af565b610834565b60405161023a91906132f7565b60405180910390f35b34801561024f57600080fd5b506102586108ae565b60405161026591906133a2565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906133fa565b610940565b6040516102a29190613468565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd91906134af565b610986565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190613554565b610a9d565b60405161030891906132f7565b60405180910390f35b34801561031d57600080fd5b50610326610b69565b60405161033391906135c3565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e91906135de565b610b76565b005b34801561037157600080fd5b5061038c600480360381019061038791906134af565b610bd6565b60405161039991906135c3565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613631565b610c7b565b005b3480156103d757600080fd5b506103e0610cfe565b005b3480156103ee57600080fd5b50610409600480360381019061040491906135de565b610e2f565b005b34801561041757600080fd5b50610432600480360381019061042d91906135de565b610e4f565b005b34801561044057600080fd5b5061045b600480360381019061045691906133fa565b611050565b60405161046891906135c3565b60405180910390f35b34801561047d57600080fd5b506104986004803603810190610493919061365e565b6110c1565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906136f4565b6111d4565b005b3480156104cf57600080fd5b506104ea60048036038101906104e591906133fa565b611231565b6040516104f79190613468565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906137f3565b6112b7565b005b34801561053557600080fd5b50610550600480360381019061054b9190613631565b611388565b60405161055d91906135c3565b60405180910390f35b34801561057257600080fd5b5061057b61143f565b005b34801561058957600080fd5b50610592611453565b60405161059f9190613468565b60405180910390f35b3480156105b457600080fd5b506105bd61147d565b6040516105ca91906133a2565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190613874565b61150f565b005b34801561060857600080fd5b50610623600480360381019061061e91906133fa565b611562565b005b34801561063157600080fd5b5061064c600480360381019061064791906139e4565b611621565b005b34801561065a57600080fd5b5061067560048036038101906106709190613a59565b61163c565b005b34801561068357600080fd5b5061069e60048036038101906106999190613b3a565b611652565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190613631565b6116b4565b6040516106d49190613c7b565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff91906133fa565b611762565b60405161071191906133a2565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613631565b6117ca565b60405161074e91906132f7565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613c9d565b6117ea565b60405161078b91906132f7565b60405180910390f35b61079c6107f2565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190613631565b61187e565b005b3480156107d357600080fd5b506107dc611901565b6040516107e99190613468565b60405180910390f35b7f0553260a2e46b0577270d8992db02d30856ca880144c72d6e9503760946aef1361081b611927565b3460405161082a929190613cdd565b60405180910390a1565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a757506108a68261192f565b5b9050919050565b6060600080546108bd90613d35565b80601f01602080910402602001604051908101604052809291908181526020018280546108e990613d35565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b5050505050905090565b600061094b82611a11565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099182611231565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613dd8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a20611927565b73ffffffffffffffffffffffffffffffffffffffff161480610a4f5750610a4e81610a49611927565b6117ea565b5b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613e6a565b60405180910390fd5b610a988383611a5c565b505050565b60008060001b600d5403610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613ed6565b60405180910390fd5b600082604051602001610af99190613f3e565b604051602081830303815290604052805190602001209050610b5f858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483611b15565b9150509392505050565b6000600880549050905090565b610b87610b81611927565b82611b2c565b610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90613fcb565b60405180910390fd5b610bd1838383611bc1565b505050565b6000610be183611388565b8210610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061405d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c83611eba565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f3db8257cc422cb4fe83340dac611268b2d13fa54f6792b91cc7e448df2c4987981604051610cf39190613468565b60405180910390a150565b610d06611eba565b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e906140c9565b60405180910390fd5b6000479050610dc8601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611f38565b7f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb610df1611927565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051610e24939291906140e9565b60405180910390a150565b610e4a83838360405180602001604052806000815250611652565b505050565b610e57611eba565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd9061416c565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f019190613468565b602060405180830381865afa158015610f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4291906141a1565b905080821115610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e9061421a565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610fc2929190613cdd565b6020604051808303816000875af1158015610fe1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611005919061424f565b507f08c1fcaf583c2b413bb27833685230422583405ae651b6d53e2053bf75bd074061102f611927565b848685604051611042949392919061427c565b60405180910390a150505050565b600061105a610b69565b821061109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290614333565b60405180910390fd5b600882815481106110af576110ae614353565b5b90600052602060002001549050919050565b6000600b541180156110d55750600b544210155b611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906143ce565b60405180910390fd5b6000600c541180156111275750600c5442105b611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906143ce565b60405180910390fd5b6001151561117c8484611177611927565b610a9d565b1515146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b59061443a565b60405180910390fd5b6111cf6111c9611927565b8261202c565b505050565b6111dc611eba565b82600b8190555081600c8190555080600d819055507fa5c6654ab989a801fd61ddbb21645628581289a6f4eff00a2f92e3e744df2e6c83838360405161122493929190614469565b60405180910390a1505050565b60008061123d836121b2565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906144ec565b60405180910390fd5b80915050919050565b6112bf611eba565b6000848490501180156112d757508181905084849050145b611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614558565b60405180910390fd5b60005b848490508110156113815761136e85858381811061133a57611339614353565b5b905060200201602081019061134f9190613631565b84848481811061136257611361614353565b5b9050602002013561202c565b8080611379906145a7565b915050611319565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614661565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611447611eba565b61145160006121ef565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461148c90613d35565b80601f01602080910402602001604051908101604052809291908181526020018280546114b890613d35565b80156115055780601f106114da57610100808354040283529160200191611505565b820191906000526020600020905b8154815290600101906020018083116114e857829003601f168201915b5050505050905090565b611517611eba565b81600e8190555080600f819055507fab3bd44151899551381b3f9e1fe662db7ac2042c36594a48da7cac9c8288558f8282604051611556929190614681565b60405180910390a15050565b60004290506000600e5411801561157b5750600e548110155b6115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b1906146f6565b60405180910390fd5b6000600f541180156115cd5750600f5481105b61160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906146f6565b60405180910390fd5b61161d611617611927565b8361202c565b5050565b611629611eba565b806012908161163891906148c2565b5050565b61164e611647611927565b83836122b5565b5050565b61166361165d611927565b83611b2c565b6116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613fcb565b60405180910390fd5b6116ae84848484612421565b50505050565b606060006116c183611388565b905060008167ffffffffffffffff8111156116df576116de6138b9565b5b60405190808252806020026020018201604052801561170d5781602001602082028036833780820191505090505b50905060005b82811015611757576117258582610bd6565b82828151811061173857611737614353565b5b602002602001018181525050808061174f906145a7565b915050611713565b508092505050919050565b606061176d82611a11565b600061177761247d565b9050600081511161179757604051806020016040528060008152506117c2565b806117a18461250f565b6040516020016117b29291906149d0565b6040516020818303038152906040525b915050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611886611eba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90614a66565b60405180910390fd5b6118fe816121ef565b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a0a5750611a09826125dd565b5b9050919050565b611a1a81612647565b611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906144ec565b60405180910390fd5b50565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611acf83611231565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611b228584612688565b1490509392505050565b600080611b3883611231565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b7a5750611b7981856117ea565b5b80611bb857508373ffffffffffffffffffffffffffffffffffffffff16611ba084610940565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611be182611231565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90614af8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d90614b8a565b60405180910390fd5b611cb383838360016126de565b8273ffffffffffffffffffffffffffffffffffffffff16611cd382611231565b73ffffffffffffffffffffffffffffffffffffffff1614611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090614af8565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eb5838383600161283c565b505050565b611ec2611927565b73ffffffffffffffffffffffffffffffffffffffff16611ee0611453565b73ffffffffffffffffffffffffffffffffffffffff1614611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d90614bf6565b60405180910390fd5b565b80471015611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614c62565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611fa190614cb3565b60006040518083038185875af1925050503d8060008114611fde576040519150601f19603f3d011682016040523d82523d6000602084013e611fe3565b606091505b5050905080612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e90614d3a565b60405180910390fd5b505050565b61016e8110612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206790614da6565b60405180910390fd5b61207981612647565b156120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b090614e12565b60405180910390fd5b60001515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614e7e565b60405180910390fd5b6001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121ae8282612842565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614eea565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161241491906132f7565b60405180910390a3505050565b61242c848484611bc1565b61243884848484612860565b612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e90614f7c565b60405180910390fd5b50505050565b60606012805461248c90613d35565b80601f01602080910402602001604051908101604052809291908181526020018280546124b890613d35565b80156125055780601f106124da57610100808354040283529160200191612505565b820191906000526020600020905b8154815290600101906020018083116124e857829003601f168201915b5050505050905090565b60606000600161251e846129e7565b01905060008167ffffffffffffffff81111561253d5761253c6138b9565b5b6040519080825280601f01601f19166020018201604052801561256f5781602001600182028036833780820191505090505b509050600082602001820190505b6001156125d2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125c6576125c5614f9c565b5b0494506000850361257d575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16612669836121b2565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008082905060005b84518110156126d3576126be828683815181106126b1576126b0614353565b5b6020026020010151612b3a565b915080806126cb906145a7565b915050612691565b508091505092915050565b6126ea84848484612b65565b600181111561272e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127259061503d565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036127755761277081612c8b565b6127b4565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146127b3576127b28582612cd4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127f6576127f181612e41565b612835565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612834576128338482612f12565b5b5b5050505050565b50505050565b61285c828260405180602001604052806000815250612f91565b5050565b60006128818473ffffffffffffffffffffffffffffffffffffffff16612fec565b156129da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128aa611927565b8786866040518563ffffffff1660e01b81526004016128cc94939291906150b2565b6020604051808303816000875af192505050801561290857506040513d601f19601f820116820180604052508101906129059190615113565b60015b61298a573d8060008114612938576040519150601f19603f3d011682016040523d82523d6000602084013e61293d565b606091505b506000815103612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990614f7c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129df565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a45577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a3b57612a3a614f9c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a82576d04ee2d6d415b85acef81000000008381612a7857612a77614f9c565b5b0492506020810190505b662386f26fc100008310612ab157662386f26fc100008381612aa757612aa6614f9c565b5b0492506010810190505b6305f5e1008310612ada576305f5e1008381612ad057612acf614f9c565b5b0492506008810190505b6127108310612aff576127108381612af557612af4614f9c565b5b0492506004810190505b60648310612b225760648381612b1857612b17614f9c565b5b0492506002810190505b600a8310612b31576001810190505b80915050919050565b6000818310612b5257612b4d828461300f565b612b5d565b612b5c838361300f565b5b905092915050565b6001811115612c8557600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612bf95780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bf19190615140565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c845780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7c9190615174565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ce184611388565b612ceb9190615140565b9050600060076000848152602001908152602001600020549050818114612dd0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e559190615140565b9050600060096000848152602001908152602001600020549050600060088381548110612e8557612e84614353565b5b906000526020600020015490508060088381548110612ea757612ea6614353565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ef657612ef56151a8565b5b6001900381819060005260206000200160009055905550505050565b6000612f1d83611388565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b612f9b8383613026565b612fa86000848484612860565b612fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fde90614f7c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308c90615223565b60405180910390fd5b61309e81612647565b156130de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d59061528f565b60405180910390fd5b6130ec6000838360016126de565b6130f581612647565b15613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c9061528f565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461323f60008383600161283c565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61328c81613257565b811461329757600080fd5b50565b6000813590506132a981613283565b92915050565b6000602082840312156132c5576132c461324d565b5b60006132d38482850161329a565b91505092915050565b60008115159050919050565b6132f1816132dc565b82525050565b600060208201905061330c60008301846132e8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561334c578082015181840152602081019050613331565b60008484015250505050565b6000601f19601f8301169050919050565b600061337482613312565b61337e818561331d565b935061338e81856020860161332e565b61339781613358565b840191505092915050565b600060208201905081810360008301526133bc8184613369565b905092915050565b6000819050919050565b6133d7816133c4565b81146133e257600080fd5b50565b6000813590506133f4816133ce565b92915050565b6000602082840312156134105761340f61324d565b5b600061341e848285016133e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061345282613427565b9050919050565b61346281613447565b82525050565b600060208201905061347d6000830184613459565b92915050565b61348c81613447565b811461349757600080fd5b50565b6000813590506134a981613483565b92915050565b600080604083850312156134c6576134c561324d565b5b60006134d48582860161349a565b92505060206134e5858286016133e5565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613514576135136134ef565b5b8235905067ffffffffffffffff811115613531576135306134f4565b5b60208301915083602082028301111561354d5761354c6134f9565b5b9250929050565b60008060006040848603121561356d5761356c61324d565b5b600084013567ffffffffffffffff81111561358b5761358a613252565b5b613597868287016134fe565b935093505060206135aa8682870161349a565b9150509250925092565b6135bd816133c4565b82525050565b60006020820190506135d860008301846135b4565b92915050565b6000806000606084860312156135f7576135f661324d565b5b60006136058682870161349a565b93505060206136168682870161349a565b9250506040613627868287016133e5565b9150509250925092565b6000602082840312156136475761364661324d565b5b60006136558482850161349a565b91505092915050565b6000806000604084860312156136775761367661324d565b5b600084013567ffffffffffffffff81111561369557613694613252565b5b6136a1868287016134fe565b935093505060206136b4868287016133e5565b9150509250925092565b6000819050919050565b6136d1816136be565b81146136dc57600080fd5b50565b6000813590506136ee816136c8565b92915050565b60008060006060848603121561370d5761370c61324d565b5b600061371b868287016133e5565b935050602061372c868287016133e5565b925050604061373d868287016136df565b9150509250925092565b60008083601f84011261375d5761375c6134ef565b5b8235905067ffffffffffffffff81111561377a576137796134f4565b5b602083019150836020820283011115613796576137956134f9565b5b9250929050565b60008083601f8401126137b3576137b26134ef565b5b8235905067ffffffffffffffff8111156137d0576137cf6134f4565b5b6020830191508360208202830111156137ec576137eb6134f9565b5b9250929050565b6000806000806040858703121561380d5761380c61324d565b5b600085013567ffffffffffffffff81111561382b5761382a613252565b5b61383787828801613747565b9450945050602085013567ffffffffffffffff81111561385a57613859613252565b5b6138668782880161379d565b925092505092959194509250565b6000806040838503121561388b5761388a61324d565b5b6000613899858286016133e5565b92505060206138aa858286016133e5565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f182613358565b810181811067ffffffffffffffff821117156139105761390f6138b9565b5b80604052505050565b6000613923613243565b905061392f82826138e8565b919050565b600067ffffffffffffffff82111561394f5761394e6138b9565b5b61395882613358565b9050602081019050919050565b82818337600083830152505050565b600061398761398284613934565b613919565b9050828152602081018484840111156139a3576139a26138b4565b5b6139ae848285613965565b509392505050565b600082601f8301126139cb576139ca6134ef565b5b81356139db848260208601613974565b91505092915050565b6000602082840312156139fa576139f961324d565b5b600082013567ffffffffffffffff811115613a1857613a17613252565b5b613a24848285016139b6565b91505092915050565b613a36816132dc565b8114613a4157600080fd5b50565b600081359050613a5381613a2d565b92915050565b60008060408385031215613a7057613a6f61324d565b5b6000613a7e8582860161349a565b9250506020613a8f85828601613a44565b9150509250929050565b600067ffffffffffffffff821115613ab457613ab36138b9565b5b613abd82613358565b9050602081019050919050565b6000613add613ad884613a99565b613919565b905082815260208101848484011115613af957613af86138b4565b5b613b04848285613965565b509392505050565b600082601f830112613b2157613b206134ef565b5b8135613b31848260208601613aca565b91505092915050565b60008060008060808587031215613b5457613b5361324d565b5b6000613b628782880161349a565b9450506020613b738782880161349a565b9350506040613b84878288016133e5565b925050606085013567ffffffffffffffff811115613ba557613ba4613252565b5b613bb187828801613b0c565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bf2816133c4565b82525050565b6000613c048383613be9565b60208301905092915050565b6000602082019050919050565b6000613c2882613bbd565b613c328185613bc8565b9350613c3d83613bd9565b8060005b83811015613c6e578151613c558882613bf8565b9750613c6083613c10565b925050600181019050613c41565b5085935050505092915050565b60006020820190508181036000830152613c958184613c1d565b905092915050565b60008060408385031215613cb457613cb361324d565b5b6000613cc28582860161349a565b9250506020613cd38582860161349a565b9150509250929050565b6000604082019050613cf26000830185613459565b613cff60208301846135b4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4d57607f821691505b602082108103613d6057613d5f613d06565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dc260218361331d565b9150613dcd82613d66565b604082019050919050565b60006020820190508181036000830152613df181613db5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613e54603d8361331d565b9150613e5f82613df8565b604082019050919050565b60006020820190508181036000830152613e8381613e47565b9050919050565b7f696e76616c6964207768697465206d696e74206d65726b6c6500000000000000600082015250565b6000613ec060198361331d565b9150613ecb82613e8a565b602082019050919050565b60006020820190508181036000830152613eef81613eb3565b9050919050565b60008160601b9050919050565b6000613f0e82613ef6565b9050919050565b6000613f2082613f03565b9050919050565b613f38613f3382613447565b613f15565b82525050565b6000613f4a8284613f27565b60148201915081905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613fb5602d8361331d565b9150613fc082613f59565b604082019050919050565b60006020820190508181036000830152613fe481613fa8565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614047602b8361331d565b915061405282613feb565b604082019050919050565b600060208201905081810360008301526140768161403a565b9050919050565b7f696e76616c696420776974686472617741646472657373000000000000000000600082015250565b60006140b360178361331d565b91506140be8261407d565b602082019050919050565b600060208201905081810360008301526140e2816140a6565b9050919050565b60006060820190506140fe6000830186613459565b61410b6020830185613459565b61411860408301846135b4565b949350505050565b7f696e76616c696420746f20616464726573730000000000000000000000000000600082015250565b600061415660128361331d565b915061416182614120565b602082019050919050565b6000602082019050818103600083015261418581614149565b9050919050565b60008151905061419b816133ce565b92915050565b6000602082840312156141b7576141b661324d565b5b60006141c58482850161418c565b91505092915050565b7f62616c616e6365206973206c6f77000000000000000000000000000000000000600082015250565b6000614204600e8361331d565b915061420f826141ce565b602082019050919050565b60006020820190508181036000830152614233816141f7565b9050919050565b60008151905061424981613a2d565b92915050565b6000602082840312156142655761426461324d565b5b60006142738482850161423a565b91505092915050565b60006080820190506142916000830187613459565b61429e6020830186613459565b6142ab6040830185613459565b6142b860608301846135b4565b95945050505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061431d602c8361331d565b9150614328826142c1565b604082019050919050565b6000602082019050818103600083015261434c81614310565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f696e76616c6964207768697465206d696e7420706572696f6400000000000000600082015250565b60006143b860198361331d565b91506143c382614382565b602082019050919050565b600060208201905081810360008301526143e7816143ab565b9050919050565b7f696e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b600061442460148361331d565b915061442f826143ee565b602082019050919050565b6000602082019050818103600083015261445381614417565b9050919050565b614463816136be565b82525050565b600060608201905061447e60008301866135b4565b61448b60208301856135b4565b614498604083018461445a565b949350505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006144d660188361331d565b91506144e1826144a0565b602082019050919050565b60006020820190508181036000830152614505816144c9565b9050919050565b7f696e76616c696420696e70757400000000000000000000000000000000000000600082015250565b6000614542600d8361331d565b915061454d8261450c565b602082019050919050565b6000602082019050818103600083015261457181614535565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145b2826133c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145e4576145e3614578565b5b600182019050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061464b60298361331d565b9150614656826145ef565b604082019050919050565b6000602082019050818103600083015261467a8161463e565b9050919050565b600060408201905061469660008301856135b4565b6146a360208301846135b4565b9392505050565b7f696e76616c6964206d696e7420706572696f6400000000000000000000000000600082015250565b60006146e060138361331d565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261473b565b614782868361473b565b95508019841693508086168417925050509392505050565b6000819050919050565b60006147bf6147ba6147b5846133c4565b61479a565b6133c4565b9050919050565b6000819050919050565b6147d9836147a4565b6147ed6147e5826147c6565b848454614748565b825550505050565b600090565b6148026147f5565b61480d8184846147d0565b505050565b5b81811015614831576148266000826147fa565b600181019050614813565b5050565b601f8211156148765761484781614716565b6148508461472b565b8101602085101561485f578190505b61487361486b8561472b565b830182614812565b50505b505050565b600082821c905092915050565b60006148996000198460080261487b565b1980831691505092915050565b60006148b28383614888565b9150826002028217905092915050565b6148cb82613312565b67ffffffffffffffff8111156148e4576148e36138b9565b5b6148ee8254613d35565b6148f9828285614835565b600060209050601f83116001811461492c576000841561491a578287015190505b61492485826148a6565b86555061498c565b601f19841661493a86614716565b60005b828110156149625784890151825560018201915060208501945060208101905061493d565b8683101561497f578489015161497b601f891682614888565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006149aa82613312565b6149b48185614994565b93506149c481856020860161332e565b80840191505092915050565b60006149dc828561499f565b91506149e8828461499f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a5060268361331d565b9150614a5b826149f4565b604082019050919050565b60006020820190508181036000830152614a7f81614a43565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614ae260258361331d565b9150614aed82614a86565b604082019050919050565b60006020820190508181036000830152614b1181614ad5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b7460248361331d565b9150614b7f82614b18565b604082019050919050565b60006020820190508181036000830152614ba381614b67565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614be060208361331d565b9150614beb82614baa565b602082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614c4c601d8361331d565b9150614c5782614c16565b602082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b600081905092915050565b50565b6000614c9d600083614c82565b9150614ca882614c8d565b600082019050919050565b6000614cbe82614c90565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614d24603a8361331d565b9150614d2f82614cc8565b604082019050919050565b60006020820190508181036000830152614d5381614d17565b9050919050565b7f696e76616c696420746f6b656e49640000000000000000000000000000000000600082015250565b6000614d90600f8361331d565b9150614d9b82614d5a565b602082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f546f6b656e20616c726561647920636c61696d65640000000000000000000000600082015250565b6000614dfc60158361331d565b9150614e0782614dc6565b602082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f6164647265737320616c726561647920636c61696d6564000000000000000000600082015250565b6000614e6860178361331d565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614ed460198361331d565b9150614edf82614e9e565b602082019050919050565b60006020820190508181036000830152614f0381614ec7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f6660328361331d565b9150614f7182614f0a565b604082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b600061502760358361331d565b915061503282614fcb565b604082019050919050565b600060208201905081810360008301526150568161501a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006150848261505d565b61508e8185615068565b935061509e81856020860161332e565b6150a781613358565b840191505092915050565b60006080820190506150c76000830187613459565b6150d46020830186613459565b6150e160408301856135b4565b81810360608301526150f38184615079565b905095945050505050565b60008151905061510d81613283565b92915050565b6000602082840312156151295761512861324d565b5b6000615137848285016150fe565b91505092915050565b600061514b826133c4565b9150615156836133c4565b925082820390508181111561516e5761516d614578565b5b92915050565b600061517f826133c4565b915061518a836133c4565b92508282019050808211156151a2576151a1614578565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061520d60208361331d565b9150615218826151d7565b602082019050919050565b6000602082019050818103600083015261523c81615200565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615279601c8361331d565b915061528482615243565b602082019050919050565b600060208201905081810360008301526152a88161526c565b905091905056fea2646970667358221220c18bed6741f080979cdaf1b03e2ec4a606e5f80ceef6abff34db09fd7297dbb364736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101f25760003560e01c806369f7d2f21161010d578063a22cb465116100a0578063dd896a1c1161006f578063dd896a1c1461071a578063e985e9c514610757578063ed88c68e14610794578063f2fde38b1461079e578063fd07bf18146107c757610201565b8063a22cb4651461064e578063b88d4fde14610677578063bba7723e146106a0578063c87b56dd146106dd57610201565b806395d89b41116100dc57806395d89b41146105a85780639b5481a6146105d3578063a0712d68146105fc578063a0bcfc7f1461062557610201565b806369f7d2f21461050057806370a0823114610529578063715018a6146105665780638da5cb5b1461057d57610201565b80633ab1a494116101855780634f6ccce7116101545780634f6ccce7146104345780635477f45f1461047157806359e0c8f71461049a5780636352211e146104c357610201565b80633ab1a494146103a25780633ccfd60b146103cb57806342842e0e146103e257806344004cc11461040b57610201565b806315861f03116101c157806315861f03146102d457806318160ddd1461031157806323b872dd1461033c5780632f745c591461036557610201565b806301ffc9a71461020657806306fdde0314610243578063081812fc1461026e578063095ea7b3146102ab57610201565b36610201576101ff6107f2565b005b600080fd5b34801561021257600080fd5b5061022d600480360381019061022891906132af565b610834565b60405161023a91906132f7565b60405180910390f35b34801561024f57600080fd5b506102586108ae565b60405161026591906133a2565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906133fa565b610940565b6040516102a29190613468565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd91906134af565b610986565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190613554565b610a9d565b60405161030891906132f7565b60405180910390f35b34801561031d57600080fd5b50610326610b69565b60405161033391906135c3565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e91906135de565b610b76565b005b34801561037157600080fd5b5061038c600480360381019061038791906134af565b610bd6565b60405161039991906135c3565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613631565b610c7b565b005b3480156103d757600080fd5b506103e0610cfe565b005b3480156103ee57600080fd5b50610409600480360381019061040491906135de565b610e2f565b005b34801561041757600080fd5b50610432600480360381019061042d91906135de565b610e4f565b005b34801561044057600080fd5b5061045b600480360381019061045691906133fa565b611050565b60405161046891906135c3565b60405180910390f35b34801561047d57600080fd5b506104986004803603810190610493919061365e565b6110c1565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906136f4565b6111d4565b005b3480156104cf57600080fd5b506104ea60048036038101906104e591906133fa565b611231565b6040516104f79190613468565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906137f3565b6112b7565b005b34801561053557600080fd5b50610550600480360381019061054b9190613631565b611388565b60405161055d91906135c3565b60405180910390f35b34801561057257600080fd5b5061057b61143f565b005b34801561058957600080fd5b50610592611453565b60405161059f9190613468565b60405180910390f35b3480156105b457600080fd5b506105bd61147d565b6040516105ca91906133a2565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190613874565b61150f565b005b34801561060857600080fd5b50610623600480360381019061061e91906133fa565b611562565b005b34801561063157600080fd5b5061064c600480360381019061064791906139e4565b611621565b005b34801561065a57600080fd5b5061067560048036038101906106709190613a59565b61163c565b005b34801561068357600080fd5b5061069e60048036038101906106999190613b3a565b611652565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190613631565b6116b4565b6040516106d49190613c7b565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff91906133fa565b611762565b60405161071191906133a2565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613631565b6117ca565b60405161074e91906132f7565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190613c9d565b6117ea565b60405161078b91906132f7565b60405180910390f35b61079c6107f2565b005b3480156107aa57600080fd5b506107c560048036038101906107c09190613631565b61187e565b005b3480156107d357600080fd5b506107dc611901565b6040516107e99190613468565b60405180910390f35b7f0553260a2e46b0577270d8992db02d30856ca880144c72d6e9503760946aef1361081b611927565b3460405161082a929190613cdd565b60405180910390a1565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a757506108a68261192f565b5b9050919050565b6060600080546108bd90613d35565b80601f01602080910402602001604051908101604052809291908181526020018280546108e990613d35565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b5050505050905090565b600061094b82611a11565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099182611231565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f890613dd8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a20611927565b73ffffffffffffffffffffffffffffffffffffffff161480610a4f5750610a4e81610a49611927565b6117ea565b5b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613e6a565b60405180910390fd5b610a988383611a5c565b505050565b60008060001b600d5403610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613ed6565b60405180910390fd5b600082604051602001610af99190613f3e565b604051602081830303815290604052805190602001209050610b5f858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483611b15565b9150509392505050565b6000600880549050905090565b610b87610b81611927565b82611b2c565b610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd90613fcb565b60405180910390fd5b610bd1838383611bc1565b505050565b6000610be183611388565b8210610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061405d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c83611eba565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f3db8257cc422cb4fe83340dac611268b2d13fa54f6792b91cc7e448df2c4987981604051610cf39190613468565b60405180910390a150565b610d06611eba565b600073ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e906140c9565b60405180910390fd5b6000479050610dc8601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611f38565b7f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb610df1611927565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051610e24939291906140e9565b60405180910390a150565b610e4a83838360405180602001604052806000815250611652565b505050565b610e57611eba565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd9061416c565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f019190613468565b602060405180830381865afa158015610f1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4291906141a1565b905080821115610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e9061421a565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401610fc2929190613cdd565b6020604051808303816000875af1158015610fe1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611005919061424f565b507f08c1fcaf583c2b413bb27833685230422583405ae651b6d53e2053bf75bd074061102f611927565b848685604051611042949392919061427c565b60405180910390a150505050565b600061105a610b69565b821061109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290614333565b60405180910390fd5b600882815481106110af576110ae614353565b5b90600052602060002001549050919050565b6000600b541180156110d55750600b544210155b611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906143ce565b60405180910390fd5b6000600c541180156111275750600c5442105b611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906143ce565b60405180910390fd5b6001151561117c8484611177611927565b610a9d565b1515146111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b59061443a565b60405180910390fd5b6111cf6111c9611927565b8261202c565b505050565b6111dc611eba565b82600b8190555081600c8190555080600d819055507fa5c6654ab989a801fd61ddbb21645628581289a6f4eff00a2f92e3e744df2e6c83838360405161122493929190614469565b60405180910390a1505050565b60008061123d836121b2565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906144ec565b60405180910390fd5b80915050919050565b6112bf611eba565b6000848490501180156112d757508181905084849050145b611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614558565b60405180910390fd5b60005b848490508110156113815761136e85858381811061133a57611339614353565b5b905060200201602081019061134f9190613631565b84848481811061136257611361614353565b5b9050602002013561202c565b8080611379906145a7565b915050611319565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614661565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611447611eba565b61145160006121ef565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461148c90613d35565b80601f01602080910402602001604051908101604052809291908181526020018280546114b890613d35565b80156115055780601f106114da57610100808354040283529160200191611505565b820191906000526020600020905b8154815290600101906020018083116114e857829003601f168201915b5050505050905090565b611517611eba565b81600e8190555080600f819055507fab3bd44151899551381b3f9e1fe662db7ac2042c36594a48da7cac9c8288558f8282604051611556929190614681565b60405180910390a15050565b60004290506000600e5411801561157b5750600e548110155b6115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b1906146f6565b60405180910390fd5b6000600f541180156115cd5750600f5481105b61160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906146f6565b60405180910390fd5b61161d611617611927565b8361202c565b5050565b611629611eba565b806012908161163891906148c2565b5050565b61164e611647611927565b83836122b5565b5050565b61166361165d611927565b83611b2c565b6116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613fcb565b60405180910390fd5b6116ae84848484612421565b50505050565b606060006116c183611388565b905060008167ffffffffffffffff8111156116df576116de6138b9565b5b60405190808252806020026020018201604052801561170d5781602001602082028036833780820191505090505b50905060005b82811015611757576117258582610bd6565b82828151811061173857611737614353565b5b602002602001018181525050808061174f906145a7565b915050611713565b508092505050919050565b606061176d82611a11565b600061177761247d565b9050600081511161179757604051806020016040528060008152506117c2565b806117a18461250f565b6040516020016117b29291906149d0565b6040516020818303038152906040525b915050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611886611eba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90614a66565b60405180910390fd5b6118fe816121ef565b50565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a0a5750611a09826125dd565b5b9050919050565b611a1a81612647565b611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906144ec565b60405180910390fd5b50565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611acf83611231565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611b228584612688565b1490509392505050565b600080611b3883611231565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b7a5750611b7981856117ea565b5b80611bb857508373ffffffffffffffffffffffffffffffffffffffff16611ba084610940565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611be182611231565b73ffffffffffffffffffffffffffffffffffffffff1614611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90614af8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d90614b8a565b60405180910390fd5b611cb383838360016126de565b8273ffffffffffffffffffffffffffffffffffffffff16611cd382611231565b73ffffffffffffffffffffffffffffffffffffffff1614611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090614af8565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eb5838383600161283c565b505050565b611ec2611927565b73ffffffffffffffffffffffffffffffffffffffff16611ee0611453565b73ffffffffffffffffffffffffffffffffffffffff1614611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d90614bf6565b60405180910390fd5b565b80471015611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290614c62565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611fa190614cb3565b60006040518083038185875af1925050503d8060008114611fde576040519150601f19603f3d011682016040523d82523d6000602084013e611fe3565b606091505b5050905080612027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201e90614d3a565b60405180910390fd5b505050565b61016e8110612070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206790614da6565b60405180910390fd5b61207981612647565b156120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b090614e12565b60405180910390fd5b60001515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614e7e565b60405180910390fd5b6001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121ae8282612842565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614eea565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161241491906132f7565b60405180910390a3505050565b61242c848484611bc1565b61243884848484612860565b612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e90614f7c565b60405180910390fd5b50505050565b60606012805461248c90613d35565b80601f01602080910402602001604051908101604052809291908181526020018280546124b890613d35565b80156125055780601f106124da57610100808354040283529160200191612505565b820191906000526020600020905b8154815290600101906020018083116124e857829003601f168201915b5050505050905090565b60606000600161251e846129e7565b01905060008167ffffffffffffffff81111561253d5761253c6138b9565b5b6040519080825280601f01601f19166020018201604052801561256f5781602001600182028036833780820191505090505b509050600082602001820190505b6001156125d2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125c6576125c5614f9c565b5b0494506000850361257d575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16612669836121b2565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008082905060005b84518110156126d3576126be828683815181106126b1576126b0614353565b5b6020026020010151612b3a565b915080806126cb906145a7565b915050612691565b508091505092915050565b6126ea84848484612b65565b600181111561272e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127259061503d565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036127755761277081612c8b565b6127b4565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146127b3576127b28582612cd4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036127f6576127f181612e41565b612835565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612834576128338482612f12565b5b5b5050505050565b50505050565b61285c828260405180602001604052806000815250612f91565b5050565b60006128818473ffffffffffffffffffffffffffffffffffffffff16612fec565b156129da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128aa611927565b8786866040518563ffffffff1660e01b81526004016128cc94939291906150b2565b6020604051808303816000875af192505050801561290857506040513d601f19601f820116820180604052508101906129059190615113565b60015b61298a573d8060008114612938576040519150601f19603f3d011682016040523d82523d6000602084013e61293d565b606091505b506000815103612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990614f7c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129df565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a45577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a3b57612a3a614f9c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a82576d04ee2d6d415b85acef81000000008381612a7857612a77614f9c565b5b0492506020810190505b662386f26fc100008310612ab157662386f26fc100008381612aa757612aa6614f9c565b5b0492506010810190505b6305f5e1008310612ada576305f5e1008381612ad057612acf614f9c565b5b0492506008810190505b6127108310612aff576127108381612af557612af4614f9c565b5b0492506004810190505b60648310612b225760648381612b1857612b17614f9c565b5b0492506002810190505b600a8310612b31576001810190505b80915050919050565b6000818310612b5257612b4d828461300f565b612b5d565b612b5c838361300f565b5b905092915050565b6001811115612c8557600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612bf95780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bf19190615140565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c845780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7c9190615174565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ce184611388565b612ceb9190615140565b9050600060076000848152602001908152602001600020549050818114612dd0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e559190615140565b9050600060096000848152602001908152602001600020549050600060088381548110612e8557612e84614353565b5b906000526020600020015490508060088381548110612ea757612ea6614353565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ef657612ef56151a8565b5b6001900381819060005260206000200160009055905550505050565b6000612f1d83611388565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b612f9b8383613026565b612fa86000848484612860565b612fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fde90614f7c565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308c90615223565b60405180910390fd5b61309e81612647565b156130de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d59061528f565b60405180910390fd5b6130ec6000838360016126de565b6130f581612647565b15613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c9061528f565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461323f60008383600161283c565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61328c81613257565b811461329757600080fd5b50565b6000813590506132a981613283565b92915050565b6000602082840312156132c5576132c461324d565b5b60006132d38482850161329a565b91505092915050565b60008115159050919050565b6132f1816132dc565b82525050565b600060208201905061330c60008301846132e8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561334c578082015181840152602081019050613331565b60008484015250505050565b6000601f19601f8301169050919050565b600061337482613312565b61337e818561331d565b935061338e81856020860161332e565b61339781613358565b840191505092915050565b600060208201905081810360008301526133bc8184613369565b905092915050565b6000819050919050565b6133d7816133c4565b81146133e257600080fd5b50565b6000813590506133f4816133ce565b92915050565b6000602082840312156134105761340f61324d565b5b600061341e848285016133e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061345282613427565b9050919050565b61346281613447565b82525050565b600060208201905061347d6000830184613459565b92915050565b61348c81613447565b811461349757600080fd5b50565b6000813590506134a981613483565b92915050565b600080604083850312156134c6576134c561324d565b5b60006134d48582860161349a565b92505060206134e5858286016133e5565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613514576135136134ef565b5b8235905067ffffffffffffffff811115613531576135306134f4565b5b60208301915083602082028301111561354d5761354c6134f9565b5b9250929050565b60008060006040848603121561356d5761356c61324d565b5b600084013567ffffffffffffffff81111561358b5761358a613252565b5b613597868287016134fe565b935093505060206135aa8682870161349a565b9150509250925092565b6135bd816133c4565b82525050565b60006020820190506135d860008301846135b4565b92915050565b6000806000606084860312156135f7576135f661324d565b5b60006136058682870161349a565b93505060206136168682870161349a565b9250506040613627868287016133e5565b9150509250925092565b6000602082840312156136475761364661324d565b5b60006136558482850161349a565b91505092915050565b6000806000604084860312156136775761367661324d565b5b600084013567ffffffffffffffff81111561369557613694613252565b5b6136a1868287016134fe565b935093505060206136b4868287016133e5565b9150509250925092565b6000819050919050565b6136d1816136be565b81146136dc57600080fd5b50565b6000813590506136ee816136c8565b92915050565b60008060006060848603121561370d5761370c61324d565b5b600061371b868287016133e5565b935050602061372c868287016133e5565b925050604061373d868287016136df565b9150509250925092565b60008083601f84011261375d5761375c6134ef565b5b8235905067ffffffffffffffff81111561377a576137796134f4565b5b602083019150836020820283011115613796576137956134f9565b5b9250929050565b60008083601f8401126137b3576137b26134ef565b5b8235905067ffffffffffffffff8111156137d0576137cf6134f4565b5b6020830191508360208202830111156137ec576137eb6134f9565b5b9250929050565b6000806000806040858703121561380d5761380c61324d565b5b600085013567ffffffffffffffff81111561382b5761382a613252565b5b61383787828801613747565b9450945050602085013567ffffffffffffffff81111561385a57613859613252565b5b6138668782880161379d565b925092505092959194509250565b6000806040838503121561388b5761388a61324d565b5b6000613899858286016133e5565b92505060206138aa858286016133e5565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f182613358565b810181811067ffffffffffffffff821117156139105761390f6138b9565b5b80604052505050565b6000613923613243565b905061392f82826138e8565b919050565b600067ffffffffffffffff82111561394f5761394e6138b9565b5b61395882613358565b9050602081019050919050565b82818337600083830152505050565b600061398761398284613934565b613919565b9050828152602081018484840111156139a3576139a26138b4565b5b6139ae848285613965565b509392505050565b600082601f8301126139cb576139ca6134ef565b5b81356139db848260208601613974565b91505092915050565b6000602082840312156139fa576139f961324d565b5b600082013567ffffffffffffffff811115613a1857613a17613252565b5b613a24848285016139b6565b91505092915050565b613a36816132dc565b8114613a4157600080fd5b50565b600081359050613a5381613a2d565b92915050565b60008060408385031215613a7057613a6f61324d565b5b6000613a7e8582860161349a565b9250506020613a8f85828601613a44565b9150509250929050565b600067ffffffffffffffff821115613ab457613ab36138b9565b5b613abd82613358565b9050602081019050919050565b6000613add613ad884613a99565b613919565b905082815260208101848484011115613af957613af86138b4565b5b613b04848285613965565b509392505050565b600082601f830112613b2157613b206134ef565b5b8135613b31848260208601613aca565b91505092915050565b60008060008060808587031215613b5457613b5361324d565b5b6000613b628782880161349a565b9450506020613b738782880161349a565b9350506040613b84878288016133e5565b925050606085013567ffffffffffffffff811115613ba557613ba4613252565b5b613bb187828801613b0c565b91505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bf2816133c4565b82525050565b6000613c048383613be9565b60208301905092915050565b6000602082019050919050565b6000613c2882613bbd565b613c328185613bc8565b9350613c3d83613bd9565b8060005b83811015613c6e578151613c558882613bf8565b9750613c6083613c10565b925050600181019050613c41565b5085935050505092915050565b60006020820190508181036000830152613c958184613c1d565b905092915050565b60008060408385031215613cb457613cb361324d565b5b6000613cc28582860161349a565b9250506020613cd38582860161349a565b9150509250929050565b6000604082019050613cf26000830185613459565b613cff60208301846135b4565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4d57607f821691505b602082108103613d6057613d5f613d06565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dc260218361331d565b9150613dcd82613d66565b604082019050919050565b60006020820190508181036000830152613df181613db5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613e54603d8361331d565b9150613e5f82613df8565b604082019050919050565b60006020820190508181036000830152613e8381613e47565b9050919050565b7f696e76616c6964207768697465206d696e74206d65726b6c6500000000000000600082015250565b6000613ec060198361331d565b9150613ecb82613e8a565b602082019050919050565b60006020820190508181036000830152613eef81613eb3565b9050919050565b60008160601b9050919050565b6000613f0e82613ef6565b9050919050565b6000613f2082613f03565b9050919050565b613f38613f3382613447565b613f15565b82525050565b6000613f4a8284613f27565b60148201915081905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613fb5602d8361331d565b9150613fc082613f59565b604082019050919050565b60006020820190508181036000830152613fe481613fa8565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614047602b8361331d565b915061405282613feb565b604082019050919050565b600060208201905081810360008301526140768161403a565b9050919050565b7f696e76616c696420776974686472617741646472657373000000000000000000600082015250565b60006140b360178361331d565b91506140be8261407d565b602082019050919050565b600060208201905081810360008301526140e2816140a6565b9050919050565b60006060820190506140fe6000830186613459565b61410b6020830185613459565b61411860408301846135b4565b949350505050565b7f696e76616c696420746f20616464726573730000000000000000000000000000600082015250565b600061415660128361331d565b915061416182614120565b602082019050919050565b6000602082019050818103600083015261418581614149565b9050919050565b60008151905061419b816133ce565b92915050565b6000602082840312156141b7576141b661324d565b5b60006141c58482850161418c565b91505092915050565b7f62616c616e6365206973206c6f77000000000000000000000000000000000000600082015250565b6000614204600e8361331d565b915061420f826141ce565b602082019050919050565b60006020820190508181036000830152614233816141f7565b9050919050565b60008151905061424981613a2d565b92915050565b6000602082840312156142655761426461324d565b5b60006142738482850161423a565b91505092915050565b60006080820190506142916000830187613459565b61429e6020830186613459565b6142ab6040830185613459565b6142b860608301846135b4565b95945050505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b600061431d602c8361331d565b9150614328826142c1565b604082019050919050565b6000602082019050818103600083015261434c81614310565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f696e76616c6964207768697465206d696e7420706572696f6400000000000000600082015250565b60006143b860198361331d565b91506143c382614382565b602082019050919050565b600060208201905081810360008301526143e7816143ab565b9050919050565b7f696e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b600061442460148361331d565b915061442f826143ee565b602082019050919050565b6000602082019050818103600083015261445381614417565b9050919050565b614463816136be565b82525050565b600060608201905061447e60008301866135b4565b61448b60208301856135b4565b614498604083018461445a565b949350505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006144d660188361331d565b91506144e1826144a0565b602082019050919050565b60006020820190508181036000830152614505816144c9565b9050919050565b7f696e76616c696420696e70757400000000000000000000000000000000000000600082015250565b6000614542600d8361331d565b915061454d8261450c565b602082019050919050565b6000602082019050818103600083015261457181614535565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145b2826133c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145e4576145e3614578565b5b600182019050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061464b60298361331d565b9150614656826145ef565b604082019050919050565b6000602082019050818103600083015261467a8161463e565b9050919050565b600060408201905061469660008301856135b4565b6146a360208301846135b4565b9392505050565b7f696e76616c6964206d696e7420706572696f6400000000000000000000000000600082015250565b60006146e060138361331d565b91506146eb826146aa565b602082019050919050565b6000602082019050818103600083015261470f816146d3565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026147787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261473b565b614782868361473b565b95508019841693508086168417925050509392505050565b6000819050919050565b60006147bf6147ba6147b5846133c4565b61479a565b6133c4565b9050919050565b6000819050919050565b6147d9836147a4565b6147ed6147e5826147c6565b848454614748565b825550505050565b600090565b6148026147f5565b61480d8184846147d0565b505050565b5b81811015614831576148266000826147fa565b600181019050614813565b5050565b601f8211156148765761484781614716565b6148508461472b565b8101602085101561485f578190505b61487361486b8561472b565b830182614812565b50505b505050565b600082821c905092915050565b60006148996000198460080261487b565b1980831691505092915050565b60006148b28383614888565b9150826002028217905092915050565b6148cb82613312565b67ffffffffffffffff8111156148e4576148e36138b9565b5b6148ee8254613d35565b6148f9828285614835565b600060209050601f83116001811461492c576000841561491a578287015190505b61492485826148a6565b86555061498c565b601f19841661493a86614716565b60005b828110156149625784890151825560018201915060208501945060208101905061493d565b8683101561497f578489015161497b601f891682614888565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b60006149aa82613312565b6149b48185614994565b93506149c481856020860161332e565b80840191505092915050565b60006149dc828561499f565b91506149e8828461499f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a5060268361331d565b9150614a5b826149f4565b604082019050919050565b60006020820190508181036000830152614a7f81614a43565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614ae260258361331d565b9150614aed82614a86565b604082019050919050565b60006020820190508181036000830152614b1181614ad5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b7460248361331d565b9150614b7f82614b18565b604082019050919050565b60006020820190508181036000830152614ba381614b67565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614be060208361331d565b9150614beb82614baa565b602082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614c4c601d8361331d565b9150614c5782614c16565b602082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b600081905092915050565b50565b6000614c9d600083614c82565b9150614ca882614c8d565b600082019050919050565b6000614cbe82614c90565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614d24603a8361331d565b9150614d2f82614cc8565b604082019050919050565b60006020820190508181036000830152614d5381614d17565b9050919050565b7f696e76616c696420746f6b656e49640000000000000000000000000000000000600082015250565b6000614d90600f8361331d565b9150614d9b82614d5a565b602082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f546f6b656e20616c726561647920636c61696d65640000000000000000000000600082015250565b6000614dfc60158361331d565b9150614e0782614dc6565b602082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f6164647265737320616c726561647920636c61696d6564000000000000000000600082015250565b6000614e6860178361331d565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614ed460198361331d565b9150614edf82614e9e565b602082019050919050565b60006020820190508181036000830152614f0381614ec7565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f6660328361331d565b9150614f7182614f0a565b604082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b600061502760358361331d565b915061503282614fcb565b604082019050919050565b600060208201905081810360008301526150568161501a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006150848261505d565b61508e8185615068565b935061509e81856020860161332e565b6150a781613358565b840191505092915050565b60006080820190506150c76000830187613459565b6150d46020830186613459565b6150e160408301856135b4565b81810360608301526150f38184615079565b905095945050505050565b60008151905061510d81613283565b92915050565b6000602082840312156151295761512861324d565b5b6000615137848285016150fe565b91505092915050565b600061514b826133c4565b9150615156836133c4565b925082820390508181111561516e5761516d614578565b5b92915050565b600061517f826133c4565b915061518a836133c4565b92508282019050808211156151a2576151a1614578565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061520d60208361331d565b9150615218826151d7565b602082019050919050565b6000602082019050818103600083015261523c81615200565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615279601c8361331d565b915061528482615243565b602082019050919050565b600060208201905081810360008301526152a88161526c565b905091905056fea2646970667358221220c18bed6741f080979cdaf1b03e2ec4a606e5f80ceef6abff34db09fd7297dbb364736f6c63430008110033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.