Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
100 JDC
Holders
51
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 JDCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JohnDoeCollective
Compiler Version
v0.8.9+commit.e5eed63a
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.9; import "./ERC721A.sol"; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; contract JohnDoeCollective is ERC721A, ReentrancyGuard { using Strings for uint256; // Token Info uint256 public MAX_SUPPLY = 250; uint256 public PRICE = .01 ether; uint256 public MAX_VOLUME_MINTABLE = 100; // Base URI string private _baseURIextended; // AllowList mapping(address => uint8) private _claimList; // PreSale - PublicSales uint8 private _state = 0; // Whitelist bytes32 public merkleRoot = 0x0000000000000000000000000000000000000000000000000000000000000000; // Owners address private owner0 = 0xe8dEe1F812194521d5Cd74BA8b9E21b2cdc048C4; address private owner1 = 0x91587758Ab2Ae704887Be04b2706C0aFA5583dC3; // Modifiers modifier isRealUser() { require(msg.sender == tx.origin, "Sorry, you do not have the permission todo that."); _; } modifier isOwner() { require(msg.sender == owner0 || msg.sender == owner1, "You are not an owner"); _; } constructor() ERC721A('John Doe Collective', 'JDC', 3) { } function changeSupply(uint256 num) external isOwner() { MAX_SUPPLY = num; } function setBaseURI(string memory baseURI_) external isOwner() { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function setVolumeMintable(uint256 maxMintable) external isOwner { MAX_VOLUME_MINTABLE = maxMintable; } function getTotalSupply() public view returns (uint256) { return totalSupply(); } function getTokenByOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function setProof(bytes32 newRoot) public isOwner() { merkleRoot = newRoot; } function setState(uint8 newState) public isOwner() { _state = newState; } function withdraw() public isOwner() nonReentrant { uint256 currentBalance = address(this).balance; require(payable(owner0).send(currentBalance), "Wrong."); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(tokenId < MAX_SUPPLY) { return string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")); } else { return "ERC721Metadata: URI query for nonexistent token - Invalid token ID"; } } function mintPresale(uint8 TOKENS_TO_MINT, bytes32[] calldata _merkleProof) public payable isRealUser nonReentrant { require(_state == 1, "Sorry, pre-sales is not active yet."); require((totalSupply() + TOKENS_TO_MINT) <= MAX_VOLUME_MINTABLE , "Exceeding max supply"); require(TOKENS_TO_MINT <= 1 && TOKENS_TO_MINT > 0, "Sorry, you are trying to mint too many tokens at one time"); require(_claimList[msg.sender] <= 8, "Address has already claimed"); bytes32 proof = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, merkleRoot, proof), 'Invalid proof.'); _claimList[msg.sender] += TOKENS_TO_MINT; _mint(TOKENS_TO_MINT, msg.sender); } function mintPaid(uint8 TOKENS_TO_MINT) public payable isRealUser nonReentrant { require(_state == 3, "Sorry, public-sales are not active yet."); require((totalSupply() + TOKENS_TO_MINT) <= MAX_VOLUME_MINTABLE , "Exceeding max supply"); require(TOKENS_TO_MINT <= 1 && TOKENS_TO_MINT > 0, "Sorry, you are trying to mint too many tokens at one time"); require(PRICE*TOKENS_TO_MINT <= msg.value, "Sorry, you did not sent the required amount of ETH"); require(_claimList[msg.sender] <= 20, "Address has already claimed"); _claimList[msg.sender] += TOKENS_TO_MINT; _mint(TOKENS_TO_MINT, msg.sender); } function mintPublic(uint8 TOKENS_TO_MINT) public payable isRealUser nonReentrant { require(_state == 2, "Sorry, public-sales are not active yet."); require((totalSupply() + TOKENS_TO_MINT) <= MAX_VOLUME_MINTABLE , "Exceeding max supply"); require(TOKENS_TO_MINT <= 1 && TOKENS_TO_MINT > 0, "Sorry, you are trying to mint too many tokens at one time"); require(_claimList[msg.sender] <= 20, "Address has already claimed"); _claimList[msg.sender] += TOKENS_TO_MINT; _mint(TOKENS_TO_MINT, msg.sender); } function reserveToken(uint256 num) public isOwner() { require((totalSupply() + num) <= MAX_SUPPLY, "Exceeding max supply"); _mint(num, msg.sender); } function airdropToken(uint256 num, address recipient) public isOwner() { require((totalSupply() + num) <= MAX_SUPPLY, "Exceeding max supply"); _mint(num, recipient); } function airdropTokenToMultipleRecipient(address[] memory recipients) external isOwner() { require((totalSupply() + recipients.length) <= MAX_SUPPLY, "Exceeding max supply"); for (uint256 i = 0; i < recipients.length; i++) { airdropToken(1, recipients[i]); } } function _mint(uint256 num, address recipient) internal { _safeMint(recipient, num); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 0; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero'); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); 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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), 'ERC721A: token already minted'); require(quantity <= maxBatchSize, 'ERC721A: quantity to mint too high'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; } _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ 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 Returns the rebuilt hash obtained by traversing a Merklee 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++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// 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 v4.4.1 (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 tokenId); /** * @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 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 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 v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// 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); }
{ "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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_VOLUME_MINTABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"airdropToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airdropTokenToMultipleRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"changeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"TOKENS_TO_MINT","type":"uint8"}],"name":"mintPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"TOKENS_TO_MINT","type":"uint8"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"TOKENS_TO_MINT","type":"uint8"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserveToken","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setProof","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newState","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintable","type":"uint256"}],"name":"setVolumeMintable","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526000805560fa600855662386f26fc100006009556064600a556000600d60006101000a81548160ff021916908360ff1602179055506000801b600e5573e8dee1f812194521d5cd74ba8b9e21b2cdc048c4600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507391587758ab2ae704887be04b2706c0afa5583dc3601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f757600080fd5b506040518060400160405280601381526020017f4a6f686e20446f6520436f6c6c656374697665000000000000000000000000008152506040518060400160405280600381526020017f4a44430000000000000000000000000000000000000000000000000000000000815250600360008111620001ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a3906200032e565b60405180910390fd5b8260019080519060200190620001c4929190620001f7565b508160029080519060200190620001dd929190620001f7565b5080608081815250505050506001600781905550620003b5565b82805462000205906200037f565b90600052602060002090601f01602090048101928262000229576000855562000275565b82601f106200024457805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027457825182559160200191906001019062000257565b5b50905062000284919062000288565b5090565b5b80821115620002a357600081600090555060010162000289565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b600062000316602783620002a7565b91506200032382620002b8565b604082019050919050565b60006020820190508181036000830152620003498162000307565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200039857607f821691505b60208210811415620003af57620003ae62000350565b5b50919050565b608051615b27620003df60003960008181612f4301528181612f6c01526136440152615b276000f3fe6080604052600436106101f95760003560e01c806356de96db1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610713578063e0e3163914610750578063e985e9c51461076c578063ebe90e43146107a9578063f62fa93e146107d2576101f9565b8063a22cb4651461067a578063a6af4d6d146106a3578063b88d4fde146106bf578063c4e41b22146106e8576101f9565b806370a08231116100dc57806370a08231146105bc5780638c0f33de146105f95780638d859f3e1461062457806395d89b411461064f576101f9565b806356de96db1461051157806359d8a4261461053a5780636352211e1461056357806367dce1ed146105a0576101f9565b80632bf79c941161019057806339a7919f1161015f57806339a7919f146104425780633ccfd60b1461046b57806342842e0e146104825780634f6ccce7146104ab57806355f804b3146104e8576101f9565b80632bf79c94146103725780632eb4a7ab146103af5780632f745c59146103da57806332cb6b0c14610417576101f9565b806310c0e158116101cc57806310c0e158146102cc57806314c274a4146102f557806318160ddd1461031e57806323b872dd14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613bab565b6107fb565b6040516102329190613bf3565b60405180910390f35b34801561024757600080fd5b50610250610945565b60405161025d9190613ca7565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613cff565b6109d7565b60405161029a9190613d6d565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613db4565b610a5c565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190613cff565b610b75565b005b34801561030157600080fd5b5061031c60048036038101906103179190613f3c565b610cc1565b005b34801561032a57600080fd5b50610333610e49565b6040516103409190613f94565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190613faf565b610e52565b005b34801561037e57600080fd5b5061039960048036038101906103949190614002565b610e62565b6040516103a691906140ed565b60405180910390f35b3480156103bb57600080fd5b506103c4610f10565b6040516103d19190614128565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190613db4565b610f16565b60405161040e9190613f94565b60405180910390f35b34801561042357600080fd5b5061042c611114565b6040516104399190613f94565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613cff565b61111a565b005b34801561047757600080fd5b5061048061120c565b005b34801561048e57600080fd5b506104a960048036038101906104a49190613faf565b6113e8565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613cff565b611408565b6040516104df9190613f94565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a91906141f8565b61145b565b005b34801561051d57600080fd5b506105386004803603810190610533919061427a565b61155d565b005b34801561054657600080fd5b50610561600480360381019061055c91906142a7565b611663565b005b34801561056f57600080fd5b5061058a60048036038101906105859190613cff565b6117b0565b6040516105979190613d6d565b60405180910390f35b6105ba60048036038101906105b5919061427a565b6117c6565b005b3480156105c857600080fd5b506105e360048036038101906105de9190614002565b611aa5565b6040516105f09190613f94565b60405180910390f35b34801561060557600080fd5b5061060e611b8e565b60405161061b9190613f94565b60405180910390f35b34801561063057600080fd5b50610639611b94565b6040516106469190613f94565b60405180910390f35b34801561065b57600080fd5b50610664611b9a565b6040516106719190613ca7565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190614313565b611c2c565b005b6106bd60048036038101906106b8919061427a565b611dad565b005b3480156106cb57600080fd5b506106e660048036038101906106e191906143f4565b6120df565b005b3480156106f457600080fd5b506106fd61213b565b60405161070a9190613f94565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613cff565b61214a565b6040516107479190613ca7565b60405180910390f35b61076a600480360381019061076591906144d2565b6121f7565b005b34801561077857600080fd5b50610793600480360381019061078e9190614532565b612591565b6040516107a09190613bf3565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb919061459e565b612625565b005b3480156107de57600080fd5b506107f960048036038101906107f49190613cff565b612717565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093e575061093d82612809565b5b9050919050565b606060018054610954906145fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610980906145fa565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b60006109e282612873565b610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a189061469e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a67826117b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90614730565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af7612880565b73ffffffffffffffffffffffffffffffffffffffff161480610b265750610b2581610b20612880565b612591565b5b610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c906147c2565b60405180910390fd5b610b70838383612888565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c1e5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c549061482e565b60405180910390fd5b60085481610c69610e49565b610c73919061487d565b1115610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab9061491f565b60405180910390fd5b610cbe813361293a565b50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d6a5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da09061482e565b60405180910390fd5b6008548151610db6610e49565b610dc0919061487d565b1115610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df89061491f565b60405180910390fd5b60005b8151811015610e4557610e326001838381518110610e2557610e2461493f565b5b6020026020010151611663565b8080610e3d9061496e565b915050610e04565b5050565b60008054905090565b610e5d838383612948565b505050565b60606000610e6f83611aa5565b905060008167ffffffffffffffff811115610e8d57610e8c613df9565b5b604051908082528060200260200182016040528015610ebb5781602001602082028036833780820191505090505b50905060005b82811015610f0557610ed38582610f16565b828281518110610ee657610ee561493f565b5b6020026020010181815250508080610efd9061496e565b915050610ec1565b508092505050919050565b600e5481565b6000610f2183611aa5565b8210610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990614a29565b60405180910390fd5b6000610f6c610e49565b905060008060005b838110156110d2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461106657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110be57868414156110af57819550505050505061110e565b83806110ba9061496e565b9450505b5080806110ca9061496e565b915050610f74565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590614abb565b60405180910390fd5b92915050565b60085481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806111c35750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061482e565b60405180910390fd5b8060088190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112b55750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb9061482e565b60405180910390fd5b6002600754141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614b27565b60405180910390fd5b60026007819055506000479050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490614b93565b60405180910390fd5b506001600781905550565b611403838383604051806020016040528060008152506120df565b505050565b6000611412610e49565b8210611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614c25565b60405180910390fd5b819050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115045750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9061482e565b60405180910390fd5b80600b9080519060200190611559929190613a62565b5050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116065750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c9061482e565b60405180910390fd5b80600d60006101000a81548160ff021916908360ff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061170c5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61174b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117429061482e565b60405180910390fd5b60085482611757610e49565b611761919061487d565b11156117a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117999061491f565b60405180910390fd5b6117ac828261293a565b5050565b60006117bb82612eef565b600001519050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90614cb7565b60405180910390fd5b6002600754141561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614b27565b60405180910390fd5b60026007819055506002600d60009054906101000a900460ff1660ff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614d49565b60405180910390fd5b600a548160ff166118e6610e49565b6118f0919061487d565b1115611931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119289061491f565b60405180910390fd5b60018160ff1611158015611948575060008160ff16115b611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90614ddb565b60405180910390fd5b6014600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190614e47565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611a759190614e67565b92506101000a81548160ff021916908360ff160217905550611a9a8160ff163361293a565b600160078190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90614f10565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600a5481565b60095481565b606060028054611ba9906145fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd5906145fa565b8015611c225780601f10611bf757610100808354040283529160200191611c22565b820191906000526020600020905b815481529060010190602001808311611c0557829003601f168201915b5050505050905090565b611c34612880565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990614f7c565b60405180910390fd5b8060066000611caf612880565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d5c612880565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611da19190613bf3565b60405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290614cb7565b60405180910390fd5b60026007541415611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614b27565b60405180910390fd5b60026007819055506003600d60009054906101000a900460ff1660ff1614611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb590614d49565b60405180910390fd5b600a548160ff16611ecd610e49565b611ed7919061487d565b1115611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f9061491f565b60405180910390fd5b60018160ff1611158015611f2f575060008160ff16115b611f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6590614ddb565b60405180910390fd5b348160ff16600954611f809190614f9c565b1115611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890615068565b60405180910390fd5b6014600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90614e47565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166120af9190614e67565b92506101000a81548160ff021916908360ff1602179055506120d48160ff163361293a565b600160078190555050565b6120ea848484612948565b6120f6848484846130f2565b612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c906150fa565b60405180910390fd5b50505050565b6000612145610e49565b905090565b606061215582612873565b612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b9061518c565b60405180910390fd5b6008548210156121d6576121a6613289565b6121af8361331b565b6040516020016121c0929190615234565b60405160208183030381529060405290506121f2565b604051806080016040528060428152602001615ab06042913990505b919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90614cb7565b60405180910390fd5b600260075414156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290614b27565b60405180910390fd5b60026007819055506001600d60009054906101000a900460ff1660ff1614612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff906152d5565b60405180910390fd5b600a548360ff16612317610e49565b612321919061487d565b1115612362576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123599061491f565b60405180910390fd5b60018360ff1611158015612379575060008360ff16115b6123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90614ddb565b60405180910390fd5b6008600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16111561244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290614e47565b60405180910390fd5b60003360405160200161245e919061533d565b6040516020818303038152906040528051906020012090506124c4838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e548361347c565b612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa906153a4565b60405180910390fd5b83600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661255e9190614e67565b92506101000a81548160ff021916908360ff1602179055506125838460ff163361293a565b506001600781905550505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806126ce5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61270d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127049061482e565b60405180910390fd5b80600e8190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806127c05750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f69061482e565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6129448183613493565b5050565b600061295382612eef565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661297a612880565b73ffffffffffffffffffffffffffffffffffffffff1614806129d6575061299f612880565b73ffffffffffffffffffffffffffffffffffffffff166129be846109d7565b73ffffffffffffffffffffffffffffffffffffffff16145b806129f257506129f182600001516129ec612880565b612591565b5b905080612a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2b90615436565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9d906154c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0d9061555a565b60405180910390fd5b612b2385858560016134b1565b612b336000848460000151612888565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612d39919061487d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e7f57612daf81612873565b15612e7e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ee786868660016134b7565b505050505050565b612ef7613ae8565b612f0082612873565b612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f36906155ec565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612fa35760017f000000000000000000000000000000000000000000000000000000000000000084612f96919061560c565b612fa0919061487d565b90505b60008390505b8181106130b1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461309d578093505050506130ed565b5080806130a990615640565b915050612fa9565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e4906156dc565b60405180910390fd5b919050565b60006131138473ffffffffffffffffffffffffffffffffffffffff166134bd565b1561327c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261313c612880565b8786866040518563ffffffff1660e01b815260040161315e9493929190615751565b602060405180830381600087803b15801561317857600080fd5b505af19250505080156131a957506040513d601f19601f820116820180604052508101906131a691906157b2565b60015b61322c573d80600081146131d9576040519150601f19603f3d011682016040523d82523d6000602084013e6131de565b606091505b50600081511415613224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321b906150fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613281565b600190505b949350505050565b6060600b8054613298906145fa565b80601f01602080910402602001604051908101604052809291908181526020018280546132c4906145fa565b80156133115780601f106132e657610100808354040283529160200191613311565b820191906000526020600020905b8154815290600101906020018083116132f457829003601f168201915b5050505050905090565b60606000821415613363576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613477565b600082905060005b6000821461339557808061337e9061496e565b915050600a8261338e919061580e565b915061336b565b60008167ffffffffffffffff8111156133b1576133b0613df9565b5b6040519080825280601f01601f1916602001820160405280156133e35781602001600182028036833780820191505090505b5090505b60008514613470576001826133fc919061560c565b9150600a8561340b919061583f565b6030613417919061487d565b60f81b81838151811061342d5761342c61493f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613469919061580e565b94506133e7565b8093505050505b919050565b60008261348985846134d0565b1490509392505050565b6134ad828260405180602001604052806000815250613583565b5050565b50505050565b50505050565b600080823b905060008111915050919050565b60008082905060005b84518110156135785760008582815181106134f7576134f661493f565b5b6020026020010151905080831161353857828160405160200161351b929190615891565b604051602081830303815290604052805190602001209250613564565b808360405160200161354b929190615891565b6040516020818303038152906040528051906020012092505b5080806135709061496e565b9150506134d9565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156135f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f09061592f565b60405180910390fd5b61360281612873565b15613642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136399061599b565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156136a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369c90615a2d565b60405180910390fd5b6136b260008583866134b1565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516137af9190615a69565b6fffffffffffffffffffffffffffffffff1681526020018583602001516137d69190615a69565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613a4557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139e560008884886130f2565b613a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1b906150fa565b60405180910390fd5b8180613a2f9061496e565b9250508080613a3d9061496e565b915050613974565b5080600081905550613a5a60008785886134b7565b505050505050565b828054613a6e906145fa565b90600052602060002090601f016020900481019282613a905760008555613ad7565b82601f10613aa957805160ff1916838001178555613ad7565b82800160010185558215613ad7579182015b82811115613ad6578251825591602001919060010190613abb565b5b509050613ae49190613b22565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b3b576000816000905550600101613b23565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b8881613b53565b8114613b9357600080fd5b50565b600081359050613ba581613b7f565b92915050565b600060208284031215613bc157613bc0613b49565b5b6000613bcf84828501613b96565b91505092915050565b60008115159050919050565b613bed81613bd8565b82525050565b6000602082019050613c086000830184613be4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c48578082015181840152602081019050613c2d565b83811115613c57576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c7982613c0e565b613c838185613c19565b9350613c93818560208601613c2a565b613c9c81613c5d565b840191505092915050565b60006020820190508181036000830152613cc18184613c6e565b905092915050565b6000819050919050565b613cdc81613cc9565b8114613ce757600080fd5b50565b600081359050613cf981613cd3565b92915050565b600060208284031215613d1557613d14613b49565b5b6000613d2384828501613cea565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d5782613d2c565b9050919050565b613d6781613d4c565b82525050565b6000602082019050613d826000830184613d5e565b92915050565b613d9181613d4c565b8114613d9c57600080fd5b50565b600081359050613dae81613d88565b92915050565b60008060408385031215613dcb57613dca613b49565b5b6000613dd985828601613d9f565b9250506020613dea85828601613cea565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e3182613c5d565b810181811067ffffffffffffffff82111715613e5057613e4f613df9565b5b80604052505050565b6000613e63613b3f565b9050613e6f8282613e28565b919050565b600067ffffffffffffffff821115613e8f57613e8e613df9565b5b602082029050602081019050919050565b600080fd5b6000613eb8613eb384613e74565b613e59565b90508083825260208201905060208402830185811115613edb57613eda613ea0565b5b835b81811015613f045780613ef08882613d9f565b845260208401935050602081019050613edd565b5050509392505050565b600082601f830112613f2357613f22613df4565b5b8135613f33848260208601613ea5565b91505092915050565b600060208284031215613f5257613f51613b49565b5b600082013567ffffffffffffffff811115613f7057613f6f613b4e565b5b613f7c84828501613f0e565b91505092915050565b613f8e81613cc9565b82525050565b6000602082019050613fa96000830184613f85565b92915050565b600080600060608486031215613fc857613fc7613b49565b5b6000613fd686828701613d9f565b9350506020613fe786828701613d9f565b9250506040613ff886828701613cea565b9150509250925092565b60006020828403121561401857614017613b49565b5b600061402684828501613d9f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61406481613cc9565b82525050565b6000614076838361405b565b60208301905092915050565b6000602082019050919050565b600061409a8261402f565b6140a4818561403a565b93506140af8361404b565b8060005b838110156140e05781516140c7888261406a565b97506140d283614082565b9250506001810190506140b3565b5085935050505092915050565b60006020820190508181036000830152614107818461408f565b905092915050565b6000819050919050565b6141228161410f565b82525050565b600060208201905061413d6000830184614119565b92915050565b600080fd5b600067ffffffffffffffff82111561416357614162613df9565b5b61416c82613c5d565b9050602081019050919050565b82818337600083830152505050565b600061419b61419684614148565b613e59565b9050828152602081018484840111156141b7576141b6614143565b5b6141c2848285614179565b509392505050565b600082601f8301126141df576141de613df4565b5b81356141ef848260208601614188565b91505092915050565b60006020828403121561420e5761420d613b49565b5b600082013567ffffffffffffffff81111561422c5761422b613b4e565b5b614238848285016141ca565b91505092915050565b600060ff82169050919050565b61425781614241565b811461426257600080fd5b50565b6000813590506142748161424e565b92915050565b6000602082840312156142905761428f613b49565b5b600061429e84828501614265565b91505092915050565b600080604083850312156142be576142bd613b49565b5b60006142cc85828601613cea565b92505060206142dd85828601613d9f565b9150509250929050565b6142f081613bd8565b81146142fb57600080fd5b50565b60008135905061430d816142e7565b92915050565b6000806040838503121561432a57614329613b49565b5b600061433885828601613d9f565b9250506020614349858286016142fe565b9150509250929050565b600067ffffffffffffffff82111561436e5761436d613df9565b5b61437782613c5d565b9050602081019050919050565b600061439761439284614353565b613e59565b9050828152602081018484840111156143b3576143b2614143565b5b6143be848285614179565b509392505050565b600082601f8301126143db576143da613df4565b5b81356143eb848260208601614384565b91505092915050565b6000806000806080858703121561440e5761440d613b49565b5b600061441c87828801613d9f565b945050602061442d87828801613d9f565b935050604061443e87828801613cea565b925050606085013567ffffffffffffffff81111561445f5761445e613b4e565b5b61446b878288016143c6565b91505092959194509250565b600080fd5b60008083601f84011261449257614491613df4565b5b8235905067ffffffffffffffff8111156144af576144ae614477565b5b6020830191508360208202830111156144cb576144ca613ea0565b5b9250929050565b6000806000604084860312156144eb576144ea613b49565b5b60006144f986828701614265565b935050602084013567ffffffffffffffff81111561451a57614519613b4e565b5b6145268682870161447c565b92509250509250925092565b6000806040838503121561454957614548613b49565b5b600061455785828601613d9f565b925050602061456885828601613d9f565b9150509250929050565b61457b8161410f565b811461458657600080fd5b50565b60008135905061459881614572565b92915050565b6000602082840312156145b4576145b3613b49565b5b60006145c284828501614589565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061461257607f821691505b60208210811415614626576146256145cb565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614688602d83613c19565b91506146938261462c565b604082019050919050565b600060208201905081810360008301526146b78161467b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061471a602283613c19565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006147ac603983613c19565b91506147b782614750565b604082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f596f7520617265206e6f7420616e206f776e6572000000000000000000000000600082015250565b6000614818601483613c19565b9150614823826147e2565b602082019050919050565b600060208201905081810360008301526148478161480b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061488882613cc9565b915061489383613cc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c8576148c761484e565b5b828201905092915050565b7f457863656564696e67206d617820737570706c79000000000000000000000000600082015250565b6000614909601483613c19565b9150614914826148d3565b602082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061497982613cc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149ac576149ab61484e565b5b600182019050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a13602283613c19565b9150614a1e826149b7565b604082019050919050565b60006020820190508181036000830152614a4281614a06565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614aa5602e83613c19565b9150614ab082614a49565b604082019050919050565b60006020820190508181036000830152614ad481614a98565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614b11601f83613c19565b9150614b1c82614adb565b602082019050919050565b60006020820190508181036000830152614b4081614b04565b9050919050565b7f57726f6e672e0000000000000000000000000000000000000000000000000000600082015250565b6000614b7d600683613c19565b9150614b8882614b47565b602082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0f602383613c19565b9150614c1a82614bb3565b604082019050919050565b60006020820190508181036000830152614c3e81614c02565b9050919050565b7f536f7272792c20796f7520646f206e6f74206861766520746865207065726d6960008201527f7373696f6e20746f646f20746861742e00000000000000000000000000000000602082015250565b6000614ca1603083613c19565b9150614cac82614c45565b604082019050919050565b60006020820190508181036000830152614cd081614c94565b9050919050565b7f536f7272792c207075626c69632d73616c657320617265206e6f74206163746960008201527f7665207965742e00000000000000000000000000000000000000000000000000602082015250565b6000614d33602783613c19565b9150614d3e82614cd7565b604082019050919050565b60006020820190508181036000830152614d6281614d26565b9050919050565b7f536f7272792c20796f752061726520747279696e6720746f206d696e7420746f60008201527f6f206d616e7920746f6b656e73206174206f6e652074696d6500000000000000602082015250565b6000614dc5603983613c19565b9150614dd082614d69565b604082019050919050565b60006020820190508181036000830152614df481614db8565b9050919050565b7f416464726573732068617320616c726561647920636c61696d65640000000000600082015250565b6000614e31601b83613c19565b9150614e3c82614dfb565b602082019050919050565b60006020820190508181036000830152614e6081614e24565b9050919050565b6000614e7282614241565b9150614e7d83614241565b92508260ff03821115614e9357614e9261484e565b5b828201905092915050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614efa602b83613c19565b9150614f0582614e9e565b604082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614f66601a83613c19565b9150614f7182614f30565b602082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b6000614fa782613cc9565b9150614fb283613cc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614feb57614fea61484e565b5b828202905092915050565b7f536f7272792c20796f7520646964206e6f742073656e7420746865207265717560008201527f6972656420616d6f756e74206f66204554480000000000000000000000000000602082015250565b6000615052603283613c19565b915061505d82614ff6565b604082019050919050565b6000602082019050818103600083015261508181615045565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006150e4603383613c19565b91506150ef82615088565b604082019050919050565b60006020820190508181036000830152615113816150d7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615176602f83613c19565b91506151818261511a565b604082019050919050565b600060208201905081810360008301526151a581615169565b9050919050565b600081905092915050565b60006151c282613c0e565b6151cc81856151ac565b93506151dc818560208601613c2a565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061521e6005836151ac565b9150615229826151e8565b600582019050919050565b600061524082856151b7565b915061524c82846151b7565b915061525782615211565b91508190509392505050565b7f536f7272792c207072652d73616c6573206973206e6f7420616374697665207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b60006152bf602383613c19565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b60008160601b9050919050565b600061530d826152f5565b9050919050565b600061531f82615302565b9050919050565b61533761533282613d4c565b615314565b82525050565b60006153498284615326565b60148201915081905092915050565b7f496e76616c69642070726f6f662e000000000000000000000000000000000000600082015250565b600061538e600e83613c19565b915061539982615358565b602082019050919050565b600060208201905081810360008301526153bd81615381565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615420603283613c19565b915061542b826153c4565b604082019050919050565b6000602082019050818103600083015261544f81615413565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006154b2602683613c19565b91506154bd82615456565b604082019050919050565b600060208201905081810360008301526154e1816154a5565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615544602583613c19565b915061554f826154e8565b604082019050919050565b6000602082019050818103600083015261557381615537565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006155d6602a83613c19565b91506155e18261557a565b604082019050919050565b60006020820190508181036000830152615605816155c9565b9050919050565b600061561782613cc9565b915061562283613cc9565b9250828210156156355761563461484e565b5b828203905092915050565b600061564b82613cc9565b9150600082141561565f5761565e61484e565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006156c6602f83613c19565b91506156d18261566a565b604082019050919050565b600060208201905081810360008301526156f5816156b9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615723826156fc565b61572d8185615707565b935061573d818560208601613c2a565b61574681613c5d565b840191505092915050565b60006080820190506157666000830187613d5e565b6157736020830186613d5e565b6157806040830185613f85565b81810360608301526157928184615718565b905095945050505050565b6000815190506157ac81613b7f565b92915050565b6000602082840312156157c8576157c7613b49565b5b60006157d68482850161579d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061581982613cc9565b915061582483613cc9565b925082615834576158336157df565b5b828204905092915050565b600061584a82613cc9565b915061585583613cc9565b925082615865576158646157df565b5b828206905092915050565b6000819050919050565b61588b6158868261410f565b615870565b82525050565b600061589d828561587a565b6020820191506158ad828461587a565b6020820191508190509392505050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615919602183613c19565b9150615924826158bd565b604082019050919050565b600060208201905081810360008301526159488161590c565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615985601d83613c19565b91506159908261594f565b602082019050919050565b600060208201905081810360008301526159b481615978565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a17602283613c19565b9150615a22826159bb565b604082019050919050565b60006020820190508181036000830152615a4681615a0a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000615a7482615a4d565b9150615a7f83615a4d565b9250826fffffffffffffffffffffffffffffffff03821115615aa457615aa361484e565b5b82820190509291505056fe4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e202d20496e76616c696420746f6b656e204944a2646970667358221220d377cd18c619310315af5271fefd1584ed840ee8fa515010c33e74478409477764736f6c63430008090033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806356de96db1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610713578063e0e3163914610750578063e985e9c51461076c578063ebe90e43146107a9578063f62fa93e146107d2576101f9565b8063a22cb4651461067a578063a6af4d6d146106a3578063b88d4fde146106bf578063c4e41b22146106e8576101f9565b806370a08231116100dc57806370a08231146105bc5780638c0f33de146105f95780638d859f3e1461062457806395d89b411461064f576101f9565b806356de96db1461051157806359d8a4261461053a5780636352211e1461056357806367dce1ed146105a0576101f9565b80632bf79c941161019057806339a7919f1161015f57806339a7919f146104425780633ccfd60b1461046b57806342842e0e146104825780634f6ccce7146104ab57806355f804b3146104e8576101f9565b80632bf79c94146103725780632eb4a7ab146103af5780632f745c59146103da57806332cb6b0c14610417576101f9565b806310c0e158116101cc57806310c0e158146102cc57806314c274a4146102f557806318160ddd1461031e57806323b872dd14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613bab565b6107fb565b6040516102329190613bf3565b60405180910390f35b34801561024757600080fd5b50610250610945565b60405161025d9190613ca7565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190613cff565b6109d7565b60405161029a9190613d6d565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613db4565b610a5c565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190613cff565b610b75565b005b34801561030157600080fd5b5061031c60048036038101906103179190613f3c565b610cc1565b005b34801561032a57600080fd5b50610333610e49565b6040516103409190613f94565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190613faf565b610e52565b005b34801561037e57600080fd5b5061039960048036038101906103949190614002565b610e62565b6040516103a691906140ed565b60405180910390f35b3480156103bb57600080fd5b506103c4610f10565b6040516103d19190614128565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190613db4565b610f16565b60405161040e9190613f94565b60405180910390f35b34801561042357600080fd5b5061042c611114565b6040516104399190613f94565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190613cff565b61111a565b005b34801561047757600080fd5b5061048061120c565b005b34801561048e57600080fd5b506104a960048036038101906104a49190613faf565b6113e8565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613cff565b611408565b6040516104df9190613f94565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a91906141f8565b61145b565b005b34801561051d57600080fd5b506105386004803603810190610533919061427a565b61155d565b005b34801561054657600080fd5b50610561600480360381019061055c91906142a7565b611663565b005b34801561056f57600080fd5b5061058a60048036038101906105859190613cff565b6117b0565b6040516105979190613d6d565b60405180910390f35b6105ba60048036038101906105b5919061427a565b6117c6565b005b3480156105c857600080fd5b506105e360048036038101906105de9190614002565b611aa5565b6040516105f09190613f94565b60405180910390f35b34801561060557600080fd5b5061060e611b8e565b60405161061b9190613f94565b60405180910390f35b34801561063057600080fd5b50610639611b94565b6040516106469190613f94565b60405180910390f35b34801561065b57600080fd5b50610664611b9a565b6040516106719190613ca7565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190614313565b611c2c565b005b6106bd60048036038101906106b8919061427a565b611dad565b005b3480156106cb57600080fd5b506106e660048036038101906106e191906143f4565b6120df565b005b3480156106f457600080fd5b506106fd61213b565b60405161070a9190613f94565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613cff565b61214a565b6040516107479190613ca7565b60405180910390f35b61076a600480360381019061076591906144d2565b6121f7565b005b34801561077857600080fd5b50610793600480360381019061078e9190614532565b612591565b6040516107a09190613bf3565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb919061459e565b612625565b005b3480156107de57600080fd5b506107f960048036038101906107f49190613cff565b612717565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061093e575061093d82612809565b5b9050919050565b606060018054610954906145fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610980906145fa565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b60006109e282612873565b610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a189061469e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a67826117b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90614730565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af7612880565b73ffffffffffffffffffffffffffffffffffffffff161480610b265750610b2581610b20612880565b612591565b5b610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c906147c2565b60405180910390fd5b610b70838383612888565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c1e5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c549061482e565b60405180910390fd5b60085481610c69610e49565b610c73919061487d565b1115610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab9061491f565b60405180910390fd5b610cbe813361293a565b50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d6a5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da09061482e565b60405180910390fd5b6008548151610db6610e49565b610dc0919061487d565b1115610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df89061491f565b60405180910390fd5b60005b8151811015610e4557610e326001838381518110610e2557610e2461493f565b5b6020026020010151611663565b8080610e3d9061496e565b915050610e04565b5050565b60008054905090565b610e5d838383612948565b505050565b60606000610e6f83611aa5565b905060008167ffffffffffffffff811115610e8d57610e8c613df9565b5b604051908082528060200260200182016040528015610ebb5781602001602082028036833780820191505090505b50905060005b82811015610f0557610ed38582610f16565b828281518110610ee657610ee561493f565b5b6020026020010181815250508080610efd9061496e565b915050610ec1565b508092505050919050565b600e5481565b6000610f2183611aa5565b8210610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990614a29565b60405180910390fd5b6000610f6c610e49565b905060008060005b838110156110d2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461106657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110be57868414156110af57819550505050505061110e565b83806110ba9061496e565b9450505b5080806110ca9061496e565b915050610f74565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590614abb565b60405180910390fd5b92915050565b60085481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806111c35750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061482e565b60405180910390fd5b8060088190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806112b55750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb9061482e565b60405180910390fd5b6002600754141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190614b27565b60405180910390fd5b60026007819055506000479050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490614b93565b60405180910390fd5b506001600781905550565b611403838383604051806020016040528060008152506120df565b505050565b6000611412610e49565b8210611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614c25565b60405180910390fd5b819050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806115045750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9061482e565b60405180910390fd5b80600b9080519060200190611559929190613a62565b5050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806116065750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c9061482e565b60405180910390fd5b80600d60006101000a81548160ff021916908360ff16021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061170c5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61174b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117429061482e565b60405180910390fd5b60085482611757610e49565b611761919061487d565b11156117a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117999061491f565b60405180910390fd5b6117ac828261293a565b5050565b60006117bb82612eef565b600001519050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90614cb7565b60405180910390fd5b6002600754141561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614b27565b60405180910390fd5b60026007819055506002600d60009054906101000a900460ff1660ff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614d49565b60405180910390fd5b600a548160ff166118e6610e49565b6118f0919061487d565b1115611931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119289061491f565b60405180910390fd5b60018160ff1611158015611948575060008160ff16115b611987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197e90614ddb565b60405180910390fd5b6014600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190614e47565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611a759190614e67565b92506101000a81548160ff021916908360ff160217905550611a9a8160ff163361293a565b600160078190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90614f10565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600a5481565b60095481565b606060028054611ba9906145fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd5906145fa565b8015611c225780601f10611bf757610100808354040283529160200191611c22565b820191906000526020600020905b815481529060010190602001808311611c0557829003601f168201915b5050505050905090565b611c34612880565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990614f7c565b60405180910390fd5b8060066000611caf612880565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d5c612880565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611da19190613bf3565b60405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290614cb7565b60405180910390fd5b60026007541415611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614b27565b60405180910390fd5b60026007819055506003600d60009054906101000a900460ff1660ff1614611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb590614d49565b60405180910390fd5b600a548160ff16611ecd610e49565b611ed7919061487d565b1115611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f9061491f565b60405180910390fd5b60018160ff1611158015611f2f575060008160ff16115b611f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6590614ddb565b60405180910390fd5b348160ff16600954611f809190614f9c565b1115611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb890615068565b60405180910390fd5b6014600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90614e47565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166120af9190614e67565b92506101000a81548160ff021916908360ff1602179055506120d48160ff163361293a565b600160078190555050565b6120ea848484612948565b6120f6848484846130f2565b612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c906150fa565b60405180910390fd5b50505050565b6000612145610e49565b905090565b606061215582612873565b612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b9061518c565b60405180910390fd5b6008548210156121d6576121a6613289565b6121af8361331b565b6040516020016121c0929190615234565b60405160208183030381529060405290506121f2565b604051806080016040528060428152602001615ab06042913990505b919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90614cb7565b60405180910390fd5b600260075414156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290614b27565b60405180910390fd5b60026007819055506001600d60009054906101000a900460ff1660ff1614612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff906152d5565b60405180910390fd5b600a548360ff16612317610e49565b612321919061487d565b1115612362576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123599061491f565b60405180910390fd5b60018360ff1611158015612379575060008360ff16115b6123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90614ddb565b60405180910390fd5b6008600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16111561244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290614e47565b60405180910390fd5b60003360405160200161245e919061533d565b6040516020818303038152906040528051906020012090506124c4838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e548361347c565b612503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fa906153a4565b60405180910390fd5b83600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661255e9190614e67565b92506101000a81548160ff021916908360ff1602179055506125838460ff163361293a565b506001600781905550505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806126ce5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61270d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127049061482e565b60405180910390fd5b80600e8190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806127c05750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6127ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f69061482e565b60405180910390fd5b80600a8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6129448183613493565b5050565b600061295382612eef565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661297a612880565b73ffffffffffffffffffffffffffffffffffffffff1614806129d6575061299f612880565b73ffffffffffffffffffffffffffffffffffffffff166129be846109d7565b73ffffffffffffffffffffffffffffffffffffffff16145b806129f257506129f182600001516129ec612880565b612591565b5b905080612a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2b90615436565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9d906154c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0d9061555a565b60405180910390fd5b612b2385858560016134b1565b612b336000848460000151612888565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612d39919061487d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e7f57612daf81612873565b15612e7e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ee786868660016134b7565b505050505050565b612ef7613ae8565b612f0082612873565b612f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f36906155ec565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000038310612fa35760017f000000000000000000000000000000000000000000000000000000000000000384612f96919061560c565b612fa0919061487d565b90505b60008390505b8181106130b1576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461309d578093505050506130ed565b5080806130a990615640565b915050612fa9565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e4906156dc565b60405180910390fd5b919050565b60006131138473ffffffffffffffffffffffffffffffffffffffff166134bd565b1561327c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261313c612880565b8786866040518563ffffffff1660e01b815260040161315e9493929190615751565b602060405180830381600087803b15801561317857600080fd5b505af19250505080156131a957506040513d601f19601f820116820180604052508101906131a691906157b2565b60015b61322c573d80600081146131d9576040519150601f19603f3d011682016040523d82523d6000602084013e6131de565b606091505b50600081511415613224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321b906150fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613281565b600190505b949350505050565b6060600b8054613298906145fa565b80601f01602080910402602001604051908101604052809291908181526020018280546132c4906145fa565b80156133115780601f106132e657610100808354040283529160200191613311565b820191906000526020600020905b8154815290600101906020018083116132f457829003601f168201915b5050505050905090565b60606000821415613363576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613477565b600082905060005b6000821461339557808061337e9061496e565b915050600a8261338e919061580e565b915061336b565b60008167ffffffffffffffff8111156133b1576133b0613df9565b5b6040519080825280601f01601f1916602001820160405280156133e35781602001600182028036833780820191505090505b5090505b60008514613470576001826133fc919061560c565b9150600a8561340b919061583f565b6030613417919061487d565b60f81b81838151811061342d5761342c61493f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613469919061580e565b94506133e7565b8093505050505b919050565b60008261348985846134d0565b1490509392505050565b6134ad828260405180602001604052806000815250613583565b5050565b50505050565b50505050565b600080823b905060008111915050919050565b60008082905060005b84518110156135785760008582815181106134f7576134f661493f565b5b6020026020010151905080831161353857828160405160200161351b929190615891565b604051602081830303815290604052805190602001209250613564565b808360405160200161354b929190615891565b6040516020818303038152906040528051906020012092505b5080806135709061496e565b9150506134d9565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156135f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f09061592f565b60405180910390fd5b61360281612873565b15613642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136399061599b565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000038311156136a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369c90615a2d565b60405180910390fd5b6136b260008583866134b1565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516137af9190615a69565b6fffffffffffffffffffffffffffffffff1681526020018583602001516137d69190615a69565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015613a4557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139e560008884886130f2565b613a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1b906150fa565b60405180910390fd5b8180613a2f9061496e565b9250508080613a3d9061496e565b915050613974565b5080600081905550613a5a60008785886134b7565b505050505050565b828054613a6e906145fa565b90600052602060002090601f016020900481019282613a905760008555613ad7565b82601f10613aa957805160ff1916838001178555613ad7565b82800160010185558215613ad7579182015b82811115613ad6578251825591602001919060010190613abb565b5b509050613ae49190613b22565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b3b576000816000905550600101613b23565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b8881613b53565b8114613b9357600080fd5b50565b600081359050613ba581613b7f565b92915050565b600060208284031215613bc157613bc0613b49565b5b6000613bcf84828501613b96565b91505092915050565b60008115159050919050565b613bed81613bd8565b82525050565b6000602082019050613c086000830184613be4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c48578082015181840152602081019050613c2d565b83811115613c57576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c7982613c0e565b613c838185613c19565b9350613c93818560208601613c2a565b613c9c81613c5d565b840191505092915050565b60006020820190508181036000830152613cc18184613c6e565b905092915050565b6000819050919050565b613cdc81613cc9565b8114613ce757600080fd5b50565b600081359050613cf981613cd3565b92915050565b600060208284031215613d1557613d14613b49565b5b6000613d2384828501613cea565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d5782613d2c565b9050919050565b613d6781613d4c565b82525050565b6000602082019050613d826000830184613d5e565b92915050565b613d9181613d4c565b8114613d9c57600080fd5b50565b600081359050613dae81613d88565b92915050565b60008060408385031215613dcb57613dca613b49565b5b6000613dd985828601613d9f565b9250506020613dea85828601613cea565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e3182613c5d565b810181811067ffffffffffffffff82111715613e5057613e4f613df9565b5b80604052505050565b6000613e63613b3f565b9050613e6f8282613e28565b919050565b600067ffffffffffffffff821115613e8f57613e8e613df9565b5b602082029050602081019050919050565b600080fd5b6000613eb8613eb384613e74565b613e59565b90508083825260208201905060208402830185811115613edb57613eda613ea0565b5b835b81811015613f045780613ef08882613d9f565b845260208401935050602081019050613edd565b5050509392505050565b600082601f830112613f2357613f22613df4565b5b8135613f33848260208601613ea5565b91505092915050565b600060208284031215613f5257613f51613b49565b5b600082013567ffffffffffffffff811115613f7057613f6f613b4e565b5b613f7c84828501613f0e565b91505092915050565b613f8e81613cc9565b82525050565b6000602082019050613fa96000830184613f85565b92915050565b600080600060608486031215613fc857613fc7613b49565b5b6000613fd686828701613d9f565b9350506020613fe786828701613d9f565b9250506040613ff886828701613cea565b9150509250925092565b60006020828403121561401857614017613b49565b5b600061402684828501613d9f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61406481613cc9565b82525050565b6000614076838361405b565b60208301905092915050565b6000602082019050919050565b600061409a8261402f565b6140a4818561403a565b93506140af8361404b565b8060005b838110156140e05781516140c7888261406a565b97506140d283614082565b9250506001810190506140b3565b5085935050505092915050565b60006020820190508181036000830152614107818461408f565b905092915050565b6000819050919050565b6141228161410f565b82525050565b600060208201905061413d6000830184614119565b92915050565b600080fd5b600067ffffffffffffffff82111561416357614162613df9565b5b61416c82613c5d565b9050602081019050919050565b82818337600083830152505050565b600061419b61419684614148565b613e59565b9050828152602081018484840111156141b7576141b6614143565b5b6141c2848285614179565b509392505050565b600082601f8301126141df576141de613df4565b5b81356141ef848260208601614188565b91505092915050565b60006020828403121561420e5761420d613b49565b5b600082013567ffffffffffffffff81111561422c5761422b613b4e565b5b614238848285016141ca565b91505092915050565b600060ff82169050919050565b61425781614241565b811461426257600080fd5b50565b6000813590506142748161424e565b92915050565b6000602082840312156142905761428f613b49565b5b600061429e84828501614265565b91505092915050565b600080604083850312156142be576142bd613b49565b5b60006142cc85828601613cea565b92505060206142dd85828601613d9f565b9150509250929050565b6142f081613bd8565b81146142fb57600080fd5b50565b60008135905061430d816142e7565b92915050565b6000806040838503121561432a57614329613b49565b5b600061433885828601613d9f565b9250506020614349858286016142fe565b9150509250929050565b600067ffffffffffffffff82111561436e5761436d613df9565b5b61437782613c5d565b9050602081019050919050565b600061439761439284614353565b613e59565b9050828152602081018484840111156143b3576143b2614143565b5b6143be848285614179565b509392505050565b600082601f8301126143db576143da613df4565b5b81356143eb848260208601614384565b91505092915050565b6000806000806080858703121561440e5761440d613b49565b5b600061441c87828801613d9f565b945050602061442d87828801613d9f565b935050604061443e87828801613cea565b925050606085013567ffffffffffffffff81111561445f5761445e613b4e565b5b61446b878288016143c6565b91505092959194509250565b600080fd5b60008083601f84011261449257614491613df4565b5b8235905067ffffffffffffffff8111156144af576144ae614477565b5b6020830191508360208202830111156144cb576144ca613ea0565b5b9250929050565b6000806000604084860312156144eb576144ea613b49565b5b60006144f986828701614265565b935050602084013567ffffffffffffffff81111561451a57614519613b4e565b5b6145268682870161447c565b92509250509250925092565b6000806040838503121561454957614548613b49565b5b600061455785828601613d9f565b925050602061456885828601613d9f565b9150509250929050565b61457b8161410f565b811461458657600080fd5b50565b60008135905061459881614572565b92915050565b6000602082840312156145b4576145b3613b49565b5b60006145c284828501614589565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061461257607f821691505b60208210811415614626576146256145cb565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614688602d83613c19565b91506146938261462c565b604082019050919050565b600060208201905081810360008301526146b78161467b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061471a602283613c19565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006147ac603983613c19565b91506147b782614750565b604082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f596f7520617265206e6f7420616e206f776e6572000000000000000000000000600082015250565b6000614818601483613c19565b9150614823826147e2565b602082019050919050565b600060208201905081810360008301526148478161480b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061488882613cc9565b915061489383613cc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c8576148c761484e565b5b828201905092915050565b7f457863656564696e67206d617820737570706c79000000000000000000000000600082015250565b6000614909601483613c19565b9150614914826148d3565b602082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061497982613cc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149ac576149ab61484e565b5b600182019050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a13602283613c19565b9150614a1e826149b7565b604082019050919050565b60006020820190508181036000830152614a4281614a06565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614aa5602e83613c19565b9150614ab082614a49565b604082019050919050565b60006020820190508181036000830152614ad481614a98565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614b11601f83613c19565b9150614b1c82614adb565b602082019050919050565b60006020820190508181036000830152614b4081614b04565b9050919050565b7f57726f6e672e0000000000000000000000000000000000000000000000000000600082015250565b6000614b7d600683613c19565b9150614b8882614b47565b602082019050919050565b60006020820190508181036000830152614bac81614b70565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0f602383613c19565b9150614c1a82614bb3565b604082019050919050565b60006020820190508181036000830152614c3e81614c02565b9050919050565b7f536f7272792c20796f7520646f206e6f74206861766520746865207065726d6960008201527f7373696f6e20746f646f20746861742e00000000000000000000000000000000602082015250565b6000614ca1603083613c19565b9150614cac82614c45565b604082019050919050565b60006020820190508181036000830152614cd081614c94565b9050919050565b7f536f7272792c207075626c69632d73616c657320617265206e6f74206163746960008201527f7665207965742e00000000000000000000000000000000000000000000000000602082015250565b6000614d33602783613c19565b9150614d3e82614cd7565b604082019050919050565b60006020820190508181036000830152614d6281614d26565b9050919050565b7f536f7272792c20796f752061726520747279696e6720746f206d696e7420746f60008201527f6f206d616e7920746f6b656e73206174206f6e652074696d6500000000000000602082015250565b6000614dc5603983613c19565b9150614dd082614d69565b604082019050919050565b60006020820190508181036000830152614df481614db8565b9050919050565b7f416464726573732068617320616c726561647920636c61696d65640000000000600082015250565b6000614e31601b83613c19565b9150614e3c82614dfb565b602082019050919050565b60006020820190508181036000830152614e6081614e24565b9050919050565b6000614e7282614241565b9150614e7d83614241565b92508260ff03821115614e9357614e9261484e565b5b828201905092915050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000614efa602b83613c19565b9150614f0582614e9e565b604082019050919050565b60006020820190508181036000830152614f2981614eed565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614f66601a83613c19565b9150614f7182614f30565b602082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b6000614fa782613cc9565b9150614fb283613cc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614feb57614fea61484e565b5b828202905092915050565b7f536f7272792c20796f7520646964206e6f742073656e7420746865207265717560008201527f6972656420616d6f756e74206f66204554480000000000000000000000000000602082015250565b6000615052603283613c19565b915061505d82614ff6565b604082019050919050565b6000602082019050818103600083015261508181615045565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006150e4603383613c19565b91506150ef82615088565b604082019050919050565b60006020820190508181036000830152615113816150d7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615176602f83613c19565b91506151818261511a565b604082019050919050565b600060208201905081810360008301526151a581615169565b9050919050565b600081905092915050565b60006151c282613c0e565b6151cc81856151ac565b93506151dc818560208601613c2a565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061521e6005836151ac565b9150615229826151e8565b600582019050919050565b600061524082856151b7565b915061524c82846151b7565b915061525782615211565b91508190509392505050565b7f536f7272792c207072652d73616c6573206973206e6f7420616374697665207960008201527f65742e0000000000000000000000000000000000000000000000000000000000602082015250565b60006152bf602383613c19565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b60008160601b9050919050565b600061530d826152f5565b9050919050565b600061531f82615302565b9050919050565b61533761533282613d4c565b615314565b82525050565b60006153498284615326565b60148201915081905092915050565b7f496e76616c69642070726f6f662e000000000000000000000000000000000000600082015250565b600061538e600e83613c19565b915061539982615358565b602082019050919050565b600060208201905081810360008301526153bd81615381565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000615420603283613c19565b915061542b826153c4565b604082019050919050565b6000602082019050818103600083015261544f81615413565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006154b2602683613c19565b91506154bd82615456565b604082019050919050565b600060208201905081810360008301526154e1816154a5565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615544602583613c19565b915061554f826154e8565b604082019050919050565b6000602082019050818103600083015261557381615537565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006155d6602a83613c19565b91506155e18261557a565b604082019050919050565b60006020820190508181036000830152615605816155c9565b9050919050565b600061561782613cc9565b915061562283613cc9565b9250828210156156355761563461484e565b5b828203905092915050565b600061564b82613cc9565b9150600082141561565f5761565e61484e565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006156c6602f83613c19565b91506156d18261566a565b604082019050919050565b600060208201905081810360008301526156f5816156b9565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615723826156fc565b61572d8185615707565b935061573d818560208601613c2a565b61574681613c5d565b840191505092915050565b60006080820190506157666000830187613d5e565b6157736020830186613d5e565b6157806040830185613f85565b81810360608301526157928184615718565b905095945050505050565b6000815190506157ac81613b7f565b92915050565b6000602082840312156157c8576157c7613b49565b5b60006157d68482850161579d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061581982613cc9565b915061582483613cc9565b925082615834576158336157df565b5b828204905092915050565b600061584a82613cc9565b915061585583613cc9565b925082615865576158646157df565b5b828206905092915050565b6000819050919050565b61588b6158868261410f565b615870565b82525050565b600061589d828561587a565b6020820191506158ad828461587a565b6020820191508190509392505050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615919602183613c19565b9150615924826158bd565b604082019050919050565b600060208201905081810360008301526159488161590c565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615985601d83613c19565b91506159908261594f565b602082019050919050565b600060208201905081810360008301526159b481615978565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615a17602283613c19565b9150615a22826159bb565b604082019050919050565b60006020820190508181036000830152615a4681615a0a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000615a7482615a4d565b9150615a7f83615a4d565b9250826fffffffffffffffffffffffffffffffff03821115615aa457615aa361484e565b5b82820190509291505056fe4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e202d20496e76616c696420746f6b656e204944a2646970667358221220d377cd18c619310315af5271fefd1584ed840ee8fa515010c33e74478409477764736f6c63430008090033
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.