Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 54 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 14420677 | 1001 days ago | IN | 0 ETH | 0.00140536 | ||||
Set Approval For... | 14385797 | 1006 days ago | IN | 0 ETH | 0.00190954 | ||||
Set Approval For... | 14223461 | 1031 days ago | IN | 0 ETH | 0.00199329 | ||||
Set Approval For... | 13981035 | 1069 days ago | IN | 0 ETH | 0.00898955 | ||||
Set Approval For... | 13977256 | 1069 days ago | IN | 0 ETH | 0.01070346 | ||||
Set Approval For... | 13877775 | 1085 days ago | IN | 0 ETH | 0.00316027 | ||||
Set Approval For... | 13852278 | 1089 days ago | IN | 0 ETH | 0.00606116 | ||||
Set Sale Started | 13852182 | 1089 days ago | IN | 0 ETH | 0.00242985 | ||||
Set Sale Started | 13852163 | 1089 days ago | IN | 0 ETH | 0.00504004 | ||||
Set Current Supp... | 13852156 | 1089 days ago | IN | 0 ETH | 0.00298527 | ||||
Set Cost | 13852145 | 1089 days ago | IN | 0 ETH | 0.00221295 | ||||
Set Approval For... | 13852077 | 1089 days ago | IN | 0 ETH | 0.00326069 | ||||
Set Approval For... | 13838081 | 1091 days ago | IN | 0 ETH | 0.0039347 | ||||
Transfer Ownersh... | 13773841 | 1101 days ago | IN | 0 ETH | 0.00376827 | ||||
Set Sale Started | 13769390 | 1101 days ago | IN | 0 ETH | 0.0044278 | ||||
Transfer From | 13768518 | 1102 days ago | IN | 0 ETH | 0.00399572 | ||||
Set Sale Started | 13736972 | 1107 days ago | IN | 0 ETH | 0.00235167 | ||||
Withdraw All | 13734288 | 1107 days ago | IN | 0 ETH | 0.00394491 | ||||
Mint NFT | 13729664 | 1108 days ago | IN | 0.06 ETH | 0.01197325 | ||||
Mint NFT | 13728535 | 1108 days ago | IN | 0.06 ETH | 0.01387919 | ||||
Mint NFT | 13725927 | 1108 days ago | IN | 0.06 ETH | 0.01597552 | ||||
Mint NFT | 13724569 | 1109 days ago | IN | 0.06 ETH | 0.02163672 | ||||
Mint NFT | 13724180 | 1109 days ago | IN | 0.03 ETH | 0.01228855 | ||||
Mint NFT | 13719101 | 1109 days ago | IN | 0.06 ETH | 0.016374 | ||||
Mint NFT | 13718197 | 1110 days ago | IN | 0.03 ETH | 0.01122609 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13734288 | 1107 days ago | 2.49 ETH |
Loading...
Loading
Contract Name:
GrandpaApeCountryClub
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract GrandpaApeCountryClub is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; Counters.Counter private _tokenIdsGiveaway; uint public constant MAX_TOKENS = 10000; uint public constant MAX_TOKENS_GIVEAWAY = 0; uint public constant MAX_TOKENS_VIP = 0; uint public CURR_MINT_COST = 0.08 ether; //---- Round based supplies string public CURR_ROUND_NAME = "Presale"; uint public CURR_ROUND_SUPPLY = 10000; uint public maxMintAmount = 5; uint public nftPerAddressLimit = 50; uint public currentVIPs = 0; bool public hasSaleStarted = true; bool public onlyWhitelisted = true; string public baseURI; mapping(address => uint) public addressMintedBalance; mapping (address => bool) whitelistUserAddresses; constructor() ERC721("GrandpaApeCountryClub", "GrandpaApeCountryClub") { setBaseURI("http://api.grandpaapecountryclub.com/GrandpaApeCountryClub/"); } function totalSupply() public view returns(uint) { return _tokenIds.current(); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintNFT(uint _mintAmount) public payable returns(uint) { require(_mintAmount > 0, "Need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "Max mint amount per transaction exceeded"); require(msg.value >= CURR_MINT_COST * _mintAmount, "Insufficient funds"); require(hasSaleStarted == true, "Sale hasn't started"); require(_mintAmount <= CURR_ROUND_SUPPLY, "We're at max supply!"); if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "User is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _tokenIds.increment(); CURR_ROUND_SUPPLY--; _safeMint(msg.sender, _tokenIds.current()); } return 1; } function isWhitelisted(address _user) public view returns (bool) { return whitelistUserAddresses[_user]; } //only owner functions function setNewRound(uint _supply, uint cost, string memory name, uint maxMint, uint perAddressLimit) public onlyOwner { require(_supply <= MAX_TOKENS - totalSupply(), "Exceeded supply"); CURR_ROUND_SUPPLY = _supply; CURR_MINT_COST = cost; CURR_ROUND_NAME = name; maxMintAmount = maxMint; nftPerAddressLimit = perAddressLimit; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setmaxMintAmount(uint _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setCurrentSupply(uint numSupply) public onlyOwner{ require(numSupply<=MAX_TOKENS - totalSupply(), "Can't add new character NFTs. Would exceed supply"); CURR_ROUND_SUPPLY = numSupply; } function setCost(uint _newCost) public onlyOwner { CURR_MINT_COST = _newCost; } function whitelistAddresses (address[] calldata users) public onlyOwner { for (uint i = 0; i < users.length; i++) { whitelistUserAddresses[users[i]] = true; } } function removeWhitelistAddresses (address[] calldata users) external onlyOwner { for (uint i = 0; i < users.length; i++) { delete whitelistUserAddresses[users[i]]; } } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function getBaseURI() public onlyOwner view returns(string memory) { return baseURI; } function reserveVIP(uint numTokens, address recipient) public onlyOwner { require((currentVIPs + numTokens) <= MAX_TOKENS_VIP, "Exceeded VIP supply"); uint index; for(index = 1; index <= numTokens; index++) { _tokenIds.increment(); currentVIPs = currentVIPs + 1; uint theToken = currentVIPs + MAX_TOKENS - MAX_TOKENS_VIP; addressMintedBalance[recipient]++; _safeMint(recipient, theToken); } } function reserveGiveaway(uint numTokens, address recipient) public onlyOwner { require((_tokenIdsGiveaway.current() + numTokens) <= MAX_TOKENS_GIVEAWAY, "Exceeded giveaway supply"); uint index; // Reserved for the people who helped build this project for(index = 1; index <= numTokens; index++) { _tokenIds.increment(); _tokenIdsGiveaway.increment(); addressMintedBalance[recipient]++; _safeMint(recipient, _tokenIds.current()); } } function withdrawAll() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function setSaleStarted(bool _state) public onlyOwner { hasSaleStarted = _state; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `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.0 (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.0 (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.0 (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.0 (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.0 (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.0 (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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CURR_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CURR_ROUND_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_GIVEAWAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_VIP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentVIPs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"removeWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reserveGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reserveVIP","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numSupply","type":"uint256"}],"name":"setCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"perAddressLimit","type":"uint256"}],"name":"setNewRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405267011c37937e0800006009556040518060400160405280600781526020017f50726573616c6500000000000000000000000000000000000000000000000000815250600a90805190602001906200005d9291906200034a565b50612710600b556005600c556032600d556000600e556001600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b657600080fd5b506040518060400160405280601581526020017f4772616e647061417065436f756e747279436c756200000000000000000000008152506040518060400160405280601581526020017f4772616e647061417065436f756e747279436c7562000000000000000000000081525081600090805190602001906200013b9291906200034a565b508060019080519060200190620001549291906200034a565b505050620001776200016b620001a760201b60201c565b620001af60201b60201c565b620001a16040518060600160405280603b815260200162005028603b91396200027560201b60201c565b620004d4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000285620001a760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ab6200032060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fb906200043c565b60405180910390fd5b80601090805190602001906200031c9291906200034a565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000358906200046f565b90600052602060002090601f0160209004810192826200037c5760008555620003c8565b82601f106200039757805160ff1916838001178555620003c8565b82800160010185558215620003c8579182015b82811115620003c7578251825591602001919060010190620003aa565b5b509050620003d79190620003db565b5090565b5b80821115620003f6576000816000905550600101620003dc565b5090565b6000620004096020836200045e565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200045781620003fa565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048857607f821691505b602082108114156200049f576200049e620004a5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b4480620004e46000396000f3fe60806040526004361061027d5760003560e01c80637f00c7a61161014f578063b88d4fde116100c1578063dc5473011161007a578063dc54730114610968578063de660e3014610991578063e985e9c5146109bc578063f2fde38b146109f9578063f47c84c514610a22578063f79e66ba14610a4d5761027d565b8063b88d4fde1461085a578063ba7d2c7614610883578063bff84fc5146108ae578063c3427844146108d7578063c87b56dd14610902578063d0eb26b01461093f5761027d565b806395d89b411161011357806395d89b411461075e57806397000de1146107895780639c70b512146107b4578063a22cb465146107df578063a854ffba14610808578063b83921a6146108315761027d565b80637f00c7a6146106a7578063834dad1f146106d0578063853828b6146106f95780638da5cb5b14610703578063926427441461072e5761027d565b80632bf04304116101f35780636352211e116101ac5780636352211e1461059757806368010d6e146105d45780636c0360eb146105fd57806370a0823114610628578063714c539814610665578063715018a6146106905761027d565b80632bf043041461048d5780633af32abf146104b65780633c952764146104f357806342842e0e1461051c57806344a0d68a1461054557806355f804b31461056e5761027d565b806318160ddd1161024557806318160ddd1461037b57806318cae269146103a65780631c8b232d146103e3578063239c70ae1461040e57806323b872dd1461043957806329540530146104625761027d565b806301ffc9a714610282578063042ebb48146102bf57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613702565b610a78565b6040516102b691906142b8565b60405180910390f35b3480156102cb57600080fd5b506102d4610b5a565b6040516102e19190614655565b60405180910390f35b3480156102f657600080fd5b506102ff610b60565b60405161030c91906142d3565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613795565b610bf2565b6040516103499190614251565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613658565b610c77565b005b34801561038757600080fd5b50610390610d8f565b60405161039d9190614655565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906134ed565b610da0565b6040516103da9190614655565b60405180910390f35b3480156103ef57600080fd5b506103f8610db8565b60405161040591906142b8565b60405180910390f35b34801561041a57600080fd5b50610423610dcb565b6040516104309190614655565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613552565b610dd1565b005b34801561046e57600080fd5b50610477610e31565b60405161048491906142d3565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613694565b610ebf565b005b3480156104c257600080fd5b506104dd60048036038101906104d891906134ed565b611006565b6040516104ea91906142b8565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906136d9565b61105c565b005b34801561052857600080fd5b50610543600480360381019061053e9190613552565b6110f5565b005b34801561055157600080fd5b5061056c60048036038101906105679190613795565b611115565b005b34801561057a57600080fd5b5061059560048036038101906105909190613754565b61119b565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613795565b611231565b6040516105cb9190614251565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906137be565b6112e3565b005b34801561060957600080fd5b50610612611459565b60405161061f91906142d3565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906134ed565b6114e7565b60405161065c9190614655565b60405180910390f35b34801561067157600080fd5b5061067a61159f565b60405161068791906142d3565b60405180910390f35b34801561069c57600080fd5b506106a56116ad565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190613795565b611735565b005b3480156106dc57600080fd5b506106f760048036038101906106f291906137fa565b6117bb565b005b6107016118c8565b005b34801561070f57600080fd5b50610718611984565b6040516107259190614251565b60405180910390f35b61074860048036038101906107439190613795565b6119ae565b6040516107559190614655565b60405180910390f35b34801561076a57600080fd5b50610773611cd1565b60405161078091906142d3565b60405180910390f35b34801561079557600080fd5b5061079e611d63565b6040516107ab9190614655565b60405180910390f35b3480156107c057600080fd5b506107c9611d69565b6040516107d691906142b8565b60405180910390f35b3480156107eb57600080fd5b506108066004803603810190610801919061361c565b611d7c565b005b34801561081457600080fd5b5061082f600480360381019061082a91906136d9565b611d92565b005b34801561083d57600080fd5b5061085860048036038101906108539190613694565b611e2b565b005b34801561086657600080fd5b50610881600480360381019061087c91906135a1565b611f69565b005b34801561088f57600080fd5b50610898611fcb565b6040516108a59190614655565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d091906137be565b611fd1565b005b3480156108e357600080fd5b506108ec612162565b6040516108f99190614655565b60405180910390f35b34801561090e57600080fd5b5061092960048036038101906109249190613795565b612168565b60405161093691906142d3565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190613795565b61220f565b005b34801561097457600080fd5b5061098f600480360381019061098a9190613795565b612295565b005b34801561099d57600080fd5b506109a6612372565b6040516109b39190614655565b60405180910390f35b3480156109c857600080fd5b506109e360048036038101906109de9190613516565b612377565b6040516109f091906142b8565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b91906134ed565b61240b565b005b348015610a2e57600080fd5b50610a37612503565b604051610a449190614655565b60405180910390f35b348015610a5957600080fd5b50610a62612509565b604051610a6f9190614655565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b535750610b528261250e565b5b9050919050565b600e5481565b606060008054610b6f90614939565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9b90614939565b8015610be85780601f10610bbd57610100808354040283529160200191610be8565b820191906000526020600020905b815481529060010190602001808311610bcb57829003601f168201915b5050505050905090565b6000610bfd82612578565b610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906144f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8282611231565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90614595565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d126125e4565b73ffffffffffffffffffffffffffffffffffffffff161480610d415750610d4081610d3b6125e4565b612377565b5b610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790614455565b60405180910390fd5b610d8a83836125ec565b505050565b6000610d9b60076126a5565b905090565b60116020528060005260406000206000915090505481565b600f60009054906101000a900460ff1681565b600c5481565b610de2610ddc6125e4565b826126b3565b610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e18906145d5565b60405180910390fd5b610e2c838383612791565b505050565b600a8054610e3e90614939565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6a90614939565b8015610eb75780601f10610e8c57610100808354040283529160200191610eb7565b820191906000526020600020905b815481529060010190602001808311610e9a57829003601f168201915b505050505081565b610ec76125e4565b73ffffffffffffffffffffffffffffffffffffffff16610ee5611984565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290614515565b60405180910390fd5b60005b8282905081101561100157600160126000858585818110610f88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610f9d91906134ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ff99061496b565b915050610f3e565b505050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110646125e4565b73ffffffffffffffffffffffffffffffffffffffff16611082611984565b73ffffffffffffffffffffffffffffffffffffffff16146110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90614515565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b61111083838360405180602001604052806000815250611f69565b505050565b61111d6125e4565b73ffffffffffffffffffffffffffffffffffffffff1661113b611984565b73ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890614515565b60405180910390fd5b8060098190555050565b6111a36125e4565b73ffffffffffffffffffffffffffffffffffffffff166111c1611984565b73ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90614515565b60405180910390fd5b806010908051906020019061122d9291906132c7565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190614495565b60405180910390fd5b80915050919050565b6112eb6125e4565b73ffffffffffffffffffffffffffffffffffffffff16611309611984565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614515565b60405180910390fd5b60008261136c60086126a5565b6113769190614744565b11156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae906143f5565b60405180910390fd5b6000600190505b828111611454576113cf60076129ed565b6113d960086129ed565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906114299061496b565b91905055506114418261143c60076126a5565b612a03565b808061144c9061496b565b9150506113be565b505050565b6010805461146690614939565b80601f016020809104026020016040519081016040528092919081815260200182805461149290614939565b80156114df5780601f106114b4576101008083540402835291602001916114df565b820191906000526020600020905b8154815290600101906020018083116114c257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90614475565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606115a96125e4565b73ffffffffffffffffffffffffffffffffffffffff166115c7611984565b73ffffffffffffffffffffffffffffffffffffffff161461161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490614515565b60405180910390fd5b6010805461162a90614939565b80601f016020809104026020016040519081016040528092919081815260200182805461165690614939565b80156116a35780601f10611678576101008083540402835291602001916116a3565b820191906000526020600020905b81548152906001019060200180831161168657829003601f168201915b5050505050905090565b6116b56125e4565b73ffffffffffffffffffffffffffffffffffffffff166116d3611984565b73ffffffffffffffffffffffffffffffffffffffff1614611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614515565b60405180910390fd5b6117336000612a21565b565b61173d6125e4565b73ffffffffffffffffffffffffffffffffffffffff1661175b611984565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890614515565b60405180910390fd5b80600c8190555050565b6117c36125e4565b73ffffffffffffffffffffffffffffffffffffffff166117e1611984565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90614515565b60405180910390fd5b61183f610d8f565b61271061184c9190614825565b85111561188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611885906145f5565b60405180910390fd5b84600b819055508360098190555082600a90805190602001906118b29291906132c7565b5081600c8190555080600d819055505050505050565b6118d06125e4565b73ffffffffffffffffffffffffffffffffffffffff166118ee611984565b73ffffffffffffffffffffffffffffffffffffffff1614611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90614515565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061198257600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008082116119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990614635565b60405180910390fd5b600c54821115611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90614355565b60405180910390fd5b81600954611a4591906147cb565b341015611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e90614415565b60405180910390fd5b60011515600f60009054906101000a900460ff16151514611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490614615565b60405180910390fd5b600b54821115611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b19906145b5565b60405180910390fd5b60011515600f60019054906101000a900460ff1615151415611c1c57611b4733611006565b611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d90614435565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611bd99190614744565b1115611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190614375565b60405180910390fd5b505b6000600190505b828111611cc757601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c7a9061496b565b9190505550611c8960076129ed565b600b6000815480929190611c9c9061490f565b9190505550611cb433611caf60076126a5565b612a03565b8080611cbf9061496b565b915050611c23565b5060019050919050565b606060018054611ce090614939565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0c90614939565b8015611d595780601f10611d2e57610100808354040283529160200191611d59565b820191906000526020600020905b815481529060010190602001808311611d3c57829003601f168201915b5050505050905090565b600b5481565b600f60019054906101000a900460ff1681565b611d8e611d876125e4565b8383612ae7565b5050565b611d9a6125e4565b73ffffffffffffffffffffffffffffffffffffffff16611db8611984565b73ffffffffffffffffffffffffffffffffffffffff1614611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590614515565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611e336125e4565b73ffffffffffffffffffffffffffffffffffffffff16611e51611984565b73ffffffffffffffffffffffffffffffffffffffff1614611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e90614515565b60405180910390fd5b60005b82829050811015611f645760126000848484818110611ef2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f0791906134ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690558080611f5c9061496b565b915050611eaa565b505050565b611f7a611f746125e4565b836126b3565b611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb0906145d5565b60405180910390fd5b611fc584848484612c54565b50505050565b600d5481565b611fd96125e4565b73ffffffffffffffffffffffffffffffffffffffff16611ff7611984565b73ffffffffffffffffffffffffffffffffffffffff161461204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614515565b60405180910390fd5b600082600e5461205d9190614744565b111561209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614575565b60405180910390fd5b6000600190505b82811161215d576120b660076129ed565b6001600e546120c59190614744565b600e81905550600080612710600e546120de9190614744565b6120e89190614825565b9050601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061213a9061496b565b91905055506121498382612a03565b5080806121559061496b565b9150506120a5565b505050565b60095481565b606061217382612578565b6121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a990614555565b60405180910390fd5b60006121bc612cb0565b905060008151116121dc5760405180602001604052806000815250612207565b806121e684612d42565b6040516020016121f792919061422d565b6040516020818303038152906040525b915050919050565b6122176125e4565b73ffffffffffffffffffffffffffffffffffffffff16612235611984565b73ffffffffffffffffffffffffffffffffffffffff161461228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614515565b60405180910390fd5b80600d8190555050565b61229d6125e4565b73ffffffffffffffffffffffffffffffffffffffff166122bb611984565b73ffffffffffffffffffffffffffffffffffffffff1614612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614515565b60405180910390fd5b612319610d8f565b6127106123269190614825565b811115612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f906144b5565b60405180910390fd5b80600b8190555050565b600081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124136125e4565b73ffffffffffffffffffffffffffffffffffffffff16612431611984565b73ffffffffffffffffffffffffffffffffffffffff1614612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90614515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90614315565b60405180910390fd5b61250081612a21565b50565b61271081565b600081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661265f83611231565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006126be82612578565b6126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f4906143d5565b60405180910390fd5b600061270883611231565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061277757508373ffffffffffffffffffffffffffffffffffffffff1661275f84610bf2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061278857506127878185612377565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127b182611231565b73ffffffffffffffffffffffffffffffffffffffff1614612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe90614535565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286e90614395565b60405180910390fd5b612882838383612eef565b61288d6000826125ec565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128dd9190614825565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129349190614744565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b612a1d828260405180602001604052806000815250612ef4565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d906143b5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c4791906142b8565b60405180910390a3505050565b612c5f848484612791565b612c6b84848484612f4f565b612caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca1906142f5565b60405180910390fd5b50505050565b606060108054612cbf90614939565b80601f0160208091040260200160405190810160405280929190818152602001828054612ceb90614939565b8015612d385780601f10612d0d57610100808354040283529160200191612d38565b820191906000526020600020905b815481529060010190602001808311612d1b57829003601f168201915b5050505050905090565b60606000821415612d8a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eea565b600082905060005b60008214612dbc578080612da59061496b565b915050600a82612db5919061479a565b9150612d92565b60008167ffffffffffffffff811115612dfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e305781602001600182028036833780820191505090505b5090505b60008514612ee357600182612e499190614825565b9150600a85612e5891906149b4565b6030612e649190614744565b60f81b818381518110612ea0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612edc919061479a565b9450612e34565b8093505050505b919050565b505050565b612efe83836130e6565b612f0b6000848484612f4f565b612f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f41906142f5565b60405180910390fd5b505050565b6000612f708473ffffffffffffffffffffffffffffffffffffffff166132b4565b156130d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f996125e4565b8786866040518563ffffffff1660e01b8152600401612fbb949392919061426c565b602060405180830381600087803b158015612fd557600080fd5b505af192505050801561300657506040513d601f19601f82011682018060405250810190613003919061372b565b60015b613089573d8060008114613036576040519150601f19603f3d011682016040523d82523d6000602084013e61303b565b606091505b50600081511415613081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613078906142f5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130de565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d906144d5565b60405180910390fd5b61315f81612578565b1561319f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319690614335565b60405180910390fd5b6131ab60008383612eef565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131fb9190614744565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132d390614939565b90600052602060002090601f0160209004810192826132f5576000855561333c565b82601f1061330e57805160ff191683800117855561333c565b8280016001018555821561333c579182015b8281111561333b578251825591602001919060010190613320565b5b509050613349919061334d565b5090565b5b8082111561336657600081600090555060010161334e565b5090565b600061337d613378846146a1565b614670565b90508281526020810184848401111561339557600080fd5b6133a08482856148cd565b509392505050565b60006133bb6133b6846146d1565b614670565b9050828152602081018484840111156133d357600080fd5b6133de8482856148cd565b509392505050565b6000813590506133f581614ab2565b92915050565b60008083601f84011261340d57600080fd5b8235905067ffffffffffffffff81111561342657600080fd5b60208301915083602082028301111561343e57600080fd5b9250929050565b60008135905061345481614ac9565b92915050565b60008135905061346981614ae0565b92915050565b60008151905061347e81614ae0565b92915050565b600082601f83011261349557600080fd5b81356134a584826020860161336a565b91505092915050565b600082601f8301126134bf57600080fd5b81356134cf8482602086016133a8565b91505092915050565b6000813590506134e781614af7565b92915050565b6000602082840312156134ff57600080fd5b600061350d848285016133e6565b91505092915050565b6000806040838503121561352957600080fd5b6000613537858286016133e6565b9250506020613548858286016133e6565b9150509250929050565b60008060006060848603121561356757600080fd5b6000613575868287016133e6565b9350506020613586868287016133e6565b9250506040613597868287016134d8565b9150509250925092565b600080600080608085870312156135b757600080fd5b60006135c5878288016133e6565b94505060206135d6878288016133e6565b93505060406135e7878288016134d8565b925050606085013567ffffffffffffffff81111561360457600080fd5b61361087828801613484565b91505092959194509250565b6000806040838503121561362f57600080fd5b600061363d858286016133e6565b925050602061364e85828601613445565b9150509250929050565b6000806040838503121561366b57600080fd5b6000613679858286016133e6565b925050602061368a858286016134d8565b9150509250929050565b600080602083850312156136a757600080fd5b600083013567ffffffffffffffff8111156136c157600080fd5b6136cd858286016133fb565b92509250509250929050565b6000602082840312156136eb57600080fd5b60006136f984828501613445565b91505092915050565b60006020828403121561371457600080fd5b60006137228482850161345a565b91505092915050565b60006020828403121561373d57600080fd5b600061374b8482850161346f565b91505092915050565b60006020828403121561376657600080fd5b600082013567ffffffffffffffff81111561378057600080fd5b61378c848285016134ae565b91505092915050565b6000602082840312156137a757600080fd5b60006137b5848285016134d8565b91505092915050565b600080604083850312156137d157600080fd5b60006137df858286016134d8565b92505060206137f0858286016133e6565b9150509250929050565b600080600080600060a0868803121561381257600080fd5b6000613820888289016134d8565b9550506020613831888289016134d8565b945050604086013567ffffffffffffffff81111561384e57600080fd5b61385a888289016134ae565b935050606061386b888289016134d8565b925050608061387c888289016134d8565b9150509295509295909350565b61389281614859565b82525050565b6138a18161486b565b82525050565b60006138b282614701565b6138bc8185614717565b93506138cc8185602086016148dc565b6138d581614aa1565b840191505092915050565b60006138eb8261470c565b6138f58185614728565b93506139058185602086016148dc565b61390e81614aa1565b840191505092915050565b60006139248261470c565b61392e8185614739565b935061393e8185602086016148dc565b80840191505092915050565b6000613957603283614728565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139bd602683614728565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a23601c83614728565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a63602883614728565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ac9601c83614728565b91507f6d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b6000613b09602483614728565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b6f601983614728565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613baf602c83614728565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c15601883614728565b91507f457863656564656420676976656177617920737570706c7900000000000000006000830152602082019050919050565b6000613c55601283614728565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613c95601783614728565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613cd5603883614728565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d3b602a83614728565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613da1602983614728565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e07603183614728565b91507f43616e277420616464206e657720636861726163746572204e4654732e20576f60008301527f756c642065786365656420737570706c790000000000000000000000000000006020830152604082019050919050565b6000613e6d602083614728565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613ead602c83614728565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f13602083614728565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f53602983614728565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fb9602f83614728565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061401f601383614728565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b600061405f602183614728565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140c5601483614728565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b6000614105603183614728565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061416b600f83614728565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b60006141ab601383614728565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b60006141eb601b83614728565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b614227816148c3565b82525050565b60006142398285613919565b91506142458284613919565b91508190509392505050565b60006020820190506142666000830184613889565b92915050565b60006080820190506142816000830187613889565b61428e6020830186613889565b61429b604083018561421e565b81810360608301526142ad81846138a7565b905095945050505050565b60006020820190506142cd6000830184613898565b92915050565b600060208201905081810360008301526142ed81846138e0565b905092915050565b6000602082019050818103600083015261430e8161394a565b9050919050565b6000602082019050818103600083015261432e816139b0565b9050919050565b6000602082019050818103600083015261434e81613a16565b9050919050565b6000602082019050818103600083015261436e81613a56565b9050919050565b6000602082019050818103600083015261438e81613abc565b9050919050565b600060208201905081810360008301526143ae81613afc565b9050919050565b600060208201905081810360008301526143ce81613b62565b9050919050565b600060208201905081810360008301526143ee81613ba2565b9050919050565b6000602082019050818103600083015261440e81613c08565b9050919050565b6000602082019050818103600083015261442e81613c48565b9050919050565b6000602082019050818103600083015261444e81613c88565b9050919050565b6000602082019050818103600083015261446e81613cc8565b9050919050565b6000602082019050818103600083015261448e81613d2e565b9050919050565b600060208201905081810360008301526144ae81613d94565b9050919050565b600060208201905081810360008301526144ce81613dfa565b9050919050565b600060208201905081810360008301526144ee81613e60565b9050919050565b6000602082019050818103600083015261450e81613ea0565b9050919050565b6000602082019050818103600083015261452e81613f06565b9050919050565b6000602082019050818103600083015261454e81613f46565b9050919050565b6000602082019050818103600083015261456e81613fac565b9050919050565b6000602082019050818103600083015261458e81614012565b9050919050565b600060208201905081810360008301526145ae81614052565b9050919050565b600060208201905081810360008301526145ce816140b8565b9050919050565b600060208201905081810360008301526145ee816140f8565b9050919050565b6000602082019050818103600083015261460e8161415e565b9050919050565b6000602082019050818103600083015261462e8161419e565b9050919050565b6000602082019050818103600083015261464e816141de565b9050919050565b600060208201905061466a600083018461421e565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561469757614696614a72565b5b8060405250919050565b600067ffffffffffffffff8211156146bc576146bb614a72565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156146ec576146eb614a72565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061474f826148c3565b915061475a836148c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478f5761478e6149e5565b5b828201905092915050565b60006147a5826148c3565b91506147b0836148c3565b9250826147c0576147bf614a14565b5b828204905092915050565b60006147d6826148c3565b91506147e1836148c3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561481a576148196149e5565b5b828202905092915050565b6000614830826148c3565b915061483b836148c3565b92508282101561484e5761484d6149e5565b5b828203905092915050565b6000614864826148a3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148fa5780820151818401526020810190506148df565b83811115614909576000848401525b50505050565b600061491a826148c3565b9150600082141561492e5761492d6149e5565b5b600182039050919050565b6000600282049050600182168061495157607f821691505b6020821081141561496557614964614a43565b5b50919050565b6000614976826148c3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149a9576149a86149e5565b5b600182019050919050565b60006149bf826148c3565b91506149ca836148c3565b9250826149da576149d9614a14565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614abb81614859565b8114614ac657600080fd5b50565b614ad28161486b565b8114614add57600080fd5b50565b614ae981614877565b8114614af457600080fd5b50565b614b00816148c3565b8114614b0b57600080fd5b5056fea2646970667358221220fdebfaf6dd21a7ee3a477c149a1bdf898eef41f9b78e838211ad26332dcff36164736f6c63430008000033687474703a2f2f6170692e6772616e647061617065636f756e747279636c75622e636f6d2f4772616e647061417065436f756e747279436c75622f
Deployed Bytecode
0x60806040526004361061027d5760003560e01c80637f00c7a61161014f578063b88d4fde116100c1578063dc5473011161007a578063dc54730114610968578063de660e3014610991578063e985e9c5146109bc578063f2fde38b146109f9578063f47c84c514610a22578063f79e66ba14610a4d5761027d565b8063b88d4fde1461085a578063ba7d2c7614610883578063bff84fc5146108ae578063c3427844146108d7578063c87b56dd14610902578063d0eb26b01461093f5761027d565b806395d89b411161011357806395d89b411461075e57806397000de1146107895780639c70b512146107b4578063a22cb465146107df578063a854ffba14610808578063b83921a6146108315761027d565b80637f00c7a6146106a7578063834dad1f146106d0578063853828b6146106f95780638da5cb5b14610703578063926427441461072e5761027d565b80632bf04304116101f35780636352211e116101ac5780636352211e1461059757806368010d6e146105d45780636c0360eb146105fd57806370a0823114610628578063714c539814610665578063715018a6146106905761027d565b80632bf043041461048d5780633af32abf146104b65780633c952764146104f357806342842e0e1461051c57806344a0d68a1461054557806355f804b31461056e5761027d565b806318160ddd1161024557806318160ddd1461037b57806318cae269146103a65780631c8b232d146103e3578063239c70ae1461040e57806323b872dd1461043957806329540530146104625761027d565b806301ffc9a714610282578063042ebb48146102bf57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613702565b610a78565b6040516102b691906142b8565b60405180910390f35b3480156102cb57600080fd5b506102d4610b5a565b6040516102e19190614655565b60405180910390f35b3480156102f657600080fd5b506102ff610b60565b60405161030c91906142d3565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190613795565b610bf2565b6040516103499190614251565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613658565b610c77565b005b34801561038757600080fd5b50610390610d8f565b60405161039d9190614655565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906134ed565b610da0565b6040516103da9190614655565b60405180910390f35b3480156103ef57600080fd5b506103f8610db8565b60405161040591906142b8565b60405180910390f35b34801561041a57600080fd5b50610423610dcb565b6040516104309190614655565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613552565b610dd1565b005b34801561046e57600080fd5b50610477610e31565b60405161048491906142d3565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613694565b610ebf565b005b3480156104c257600080fd5b506104dd60048036038101906104d891906134ed565b611006565b6040516104ea91906142b8565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906136d9565b61105c565b005b34801561052857600080fd5b50610543600480360381019061053e9190613552565b6110f5565b005b34801561055157600080fd5b5061056c60048036038101906105679190613795565b611115565b005b34801561057a57600080fd5b5061059560048036038101906105909190613754565b61119b565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613795565b611231565b6040516105cb9190614251565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906137be565b6112e3565b005b34801561060957600080fd5b50610612611459565b60405161061f91906142d3565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906134ed565b6114e7565b60405161065c9190614655565b60405180910390f35b34801561067157600080fd5b5061067a61159f565b60405161068791906142d3565b60405180910390f35b34801561069c57600080fd5b506106a56116ad565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190613795565b611735565b005b3480156106dc57600080fd5b506106f760048036038101906106f291906137fa565b6117bb565b005b6107016118c8565b005b34801561070f57600080fd5b50610718611984565b6040516107259190614251565b60405180910390f35b61074860048036038101906107439190613795565b6119ae565b6040516107559190614655565b60405180910390f35b34801561076a57600080fd5b50610773611cd1565b60405161078091906142d3565b60405180910390f35b34801561079557600080fd5b5061079e611d63565b6040516107ab9190614655565b60405180910390f35b3480156107c057600080fd5b506107c9611d69565b6040516107d691906142b8565b60405180910390f35b3480156107eb57600080fd5b506108066004803603810190610801919061361c565b611d7c565b005b34801561081457600080fd5b5061082f600480360381019061082a91906136d9565b611d92565b005b34801561083d57600080fd5b5061085860048036038101906108539190613694565b611e2b565b005b34801561086657600080fd5b50610881600480360381019061087c91906135a1565b611f69565b005b34801561088f57600080fd5b50610898611fcb565b6040516108a59190614655565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d091906137be565b611fd1565b005b3480156108e357600080fd5b506108ec612162565b6040516108f99190614655565b60405180910390f35b34801561090e57600080fd5b5061092960048036038101906109249190613795565b612168565b60405161093691906142d3565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190613795565b61220f565b005b34801561097457600080fd5b5061098f600480360381019061098a9190613795565b612295565b005b34801561099d57600080fd5b506109a6612372565b6040516109b39190614655565b60405180910390f35b3480156109c857600080fd5b506109e360048036038101906109de9190613516565b612377565b6040516109f091906142b8565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b91906134ed565b61240b565b005b348015610a2e57600080fd5b50610a37612503565b604051610a449190614655565b60405180910390f35b348015610a5957600080fd5b50610a62612509565b604051610a6f9190614655565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b535750610b528261250e565b5b9050919050565b600e5481565b606060008054610b6f90614939565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9b90614939565b8015610be85780601f10610bbd57610100808354040283529160200191610be8565b820191906000526020600020905b815481529060010190602001808311610bcb57829003601f168201915b5050505050905090565b6000610bfd82612578565b610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c33906144f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8282611231565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90614595565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d126125e4565b73ffffffffffffffffffffffffffffffffffffffff161480610d415750610d4081610d3b6125e4565b612377565b5b610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790614455565b60405180910390fd5b610d8a83836125ec565b505050565b6000610d9b60076126a5565b905090565b60116020528060005260406000206000915090505481565b600f60009054906101000a900460ff1681565b600c5481565b610de2610ddc6125e4565b826126b3565b610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e18906145d5565b60405180910390fd5b610e2c838383612791565b505050565b600a8054610e3e90614939565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6a90614939565b8015610eb75780601f10610e8c57610100808354040283529160200191610eb7565b820191906000526020600020905b815481529060010190602001808311610e9a57829003601f168201915b505050505081565b610ec76125e4565b73ffffffffffffffffffffffffffffffffffffffff16610ee5611984565b73ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290614515565b60405180910390fd5b60005b8282905081101561100157600160126000858585818110610f88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610f9d91906134ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ff99061496b565b915050610f3e565b505050565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110646125e4565b73ffffffffffffffffffffffffffffffffffffffff16611082611984565b73ffffffffffffffffffffffffffffffffffffffff16146110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90614515565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b61111083838360405180602001604052806000815250611f69565b505050565b61111d6125e4565b73ffffffffffffffffffffffffffffffffffffffff1661113b611984565b73ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890614515565b60405180910390fd5b8060098190555050565b6111a36125e4565b73ffffffffffffffffffffffffffffffffffffffff166111c1611984565b73ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e90614515565b60405180910390fd5b806010908051906020019061122d9291906132c7565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190614495565b60405180910390fd5b80915050919050565b6112eb6125e4565b73ffffffffffffffffffffffffffffffffffffffff16611309611984565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614515565b60405180910390fd5b60008261136c60086126a5565b6113769190614744565b11156113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae906143f5565b60405180910390fd5b6000600190505b828111611454576113cf60076129ed565b6113d960086129ed565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906114299061496b565b91905055506114418261143c60076126a5565b612a03565b808061144c9061496b565b9150506113be565b505050565b6010805461146690614939565b80601f016020809104026020016040519081016040528092919081815260200182805461149290614939565b80156114df5780601f106114b4576101008083540402835291602001916114df565b820191906000526020600020905b8154815290600101906020018083116114c257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f90614475565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606115a96125e4565b73ffffffffffffffffffffffffffffffffffffffff166115c7611984565b73ffffffffffffffffffffffffffffffffffffffff161461161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490614515565b60405180910390fd5b6010805461162a90614939565b80601f016020809104026020016040519081016040528092919081815260200182805461165690614939565b80156116a35780601f10611678576101008083540402835291602001916116a3565b820191906000526020600020905b81548152906001019060200180831161168657829003601f168201915b5050505050905090565b6116b56125e4565b73ffffffffffffffffffffffffffffffffffffffff166116d3611984565b73ffffffffffffffffffffffffffffffffffffffff1614611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090614515565b60405180910390fd5b6117336000612a21565b565b61173d6125e4565b73ffffffffffffffffffffffffffffffffffffffff1661175b611984565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890614515565b60405180910390fd5b80600c8190555050565b6117c36125e4565b73ffffffffffffffffffffffffffffffffffffffff166117e1611984565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90614515565b60405180910390fd5b61183f610d8f565b61271061184c9190614825565b85111561188e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611885906145f5565b60405180910390fd5b84600b819055508360098190555082600a90805190602001906118b29291906132c7565b5081600c8190555080600d819055505050505050565b6118d06125e4565b73ffffffffffffffffffffffffffffffffffffffff166118ee611984565b73ffffffffffffffffffffffffffffffffffffffff1614611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90614515565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061198257600080fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008082116119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990614635565b60405180910390fd5b600c54821115611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90614355565b60405180910390fd5b81600954611a4591906147cb565b341015611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e90614415565b60405180910390fd5b60011515600f60009054906101000a900460ff16151514611add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad490614615565b60405180910390fd5b600b54821115611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b19906145b5565b60405180910390fd5b60011515600f60019054906101000a900460ff1615151415611c1c57611b4733611006565b611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d90614435565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611bd99190614744565b1115611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190614375565b60405180910390fd5b505b6000600190505b828111611cc757601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611c7a9061496b565b9190505550611c8960076129ed565b600b6000815480929190611c9c9061490f565b9190505550611cb433611caf60076126a5565b612a03565b8080611cbf9061496b565b915050611c23565b5060019050919050565b606060018054611ce090614939565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0c90614939565b8015611d595780601f10611d2e57610100808354040283529160200191611d59565b820191906000526020600020905b815481529060010190602001808311611d3c57829003601f168201915b5050505050905090565b600b5481565b600f60019054906101000a900460ff1681565b611d8e611d876125e4565b8383612ae7565b5050565b611d9a6125e4565b73ffffffffffffffffffffffffffffffffffffffff16611db8611984565b73ffffffffffffffffffffffffffffffffffffffff1614611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590614515565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b611e336125e4565b73ffffffffffffffffffffffffffffffffffffffff16611e51611984565b73ffffffffffffffffffffffffffffffffffffffff1614611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e90614515565b60405180910390fd5b60005b82829050811015611f645760126000848484818110611ef2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f0791906134ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690558080611f5c9061496b565b915050611eaa565b505050565b611f7a611f746125e4565b836126b3565b611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb0906145d5565b60405180910390fd5b611fc584848484612c54565b50505050565b600d5481565b611fd96125e4565b73ffffffffffffffffffffffffffffffffffffffff16611ff7611984565b73ffffffffffffffffffffffffffffffffffffffff161461204d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204490614515565b60405180910390fd5b600082600e5461205d9190614744565b111561209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614575565b60405180910390fd5b6000600190505b82811161215d576120b660076129ed565b6001600e546120c59190614744565b600e81905550600080612710600e546120de9190614744565b6120e89190614825565b9050601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061213a9061496b565b91905055506121498382612a03565b5080806121559061496b565b9150506120a5565b505050565b60095481565b606061217382612578565b6121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a990614555565b60405180910390fd5b60006121bc612cb0565b905060008151116121dc5760405180602001604052806000815250612207565b806121e684612d42565b6040516020016121f792919061422d565b6040516020818303038152906040525b915050919050565b6122176125e4565b73ffffffffffffffffffffffffffffffffffffffff16612235611984565b73ffffffffffffffffffffffffffffffffffffffff161461228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614515565b60405180910390fd5b80600d8190555050565b61229d6125e4565b73ffffffffffffffffffffffffffffffffffffffff166122bb611984565b73ffffffffffffffffffffffffffffffffffffffff1614612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614515565b60405180910390fd5b612319610d8f565b6127106123269190614825565b811115612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f906144b5565b60405180910390fd5b80600b8190555050565b600081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124136125e4565b73ffffffffffffffffffffffffffffffffffffffff16612431611984565b73ffffffffffffffffffffffffffffffffffffffff1614612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90614515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90614315565b60405180910390fd5b61250081612a21565b50565b61271081565b600081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661265f83611231565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006126be82612578565b6126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f4906143d5565b60405180910390fd5b600061270883611231565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061277757508373ffffffffffffffffffffffffffffffffffffffff1661275f84610bf2565b73ffffffffffffffffffffffffffffffffffffffff16145b8061278857506127878185612377565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127b182611231565b73ffffffffffffffffffffffffffffffffffffffff1614612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe90614535565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286e90614395565b60405180910390fd5b612882838383612eef565b61288d6000826125ec565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128dd9190614825565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129349190614744565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001816000016000828254019250508190555050565b612a1d828260405180602001604052806000815250612ef4565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4d906143b5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c4791906142b8565b60405180910390a3505050565b612c5f848484612791565b612c6b84848484612f4f565b612caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca1906142f5565b60405180910390fd5b50505050565b606060108054612cbf90614939565b80601f0160208091040260200160405190810160405280929190818152602001828054612ceb90614939565b8015612d385780601f10612d0d57610100808354040283529160200191612d38565b820191906000526020600020905b815481529060010190602001808311612d1b57829003601f168201915b5050505050905090565b60606000821415612d8a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eea565b600082905060005b60008214612dbc578080612da59061496b565b915050600a82612db5919061479a565b9150612d92565b60008167ffffffffffffffff811115612dfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e305781602001600182028036833780820191505090505b5090505b60008514612ee357600182612e499190614825565b9150600a85612e5891906149b4565b6030612e649190614744565b60f81b818381518110612ea0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612edc919061479a565b9450612e34565b8093505050505b919050565b505050565b612efe83836130e6565b612f0b6000848484612f4f565b612f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f41906142f5565b60405180910390fd5b505050565b6000612f708473ffffffffffffffffffffffffffffffffffffffff166132b4565b156130d9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f996125e4565b8786866040518563ffffffff1660e01b8152600401612fbb949392919061426c565b602060405180830381600087803b158015612fd557600080fd5b505af192505050801561300657506040513d601f19601f82011682018060405250810190613003919061372b565b60015b613089573d8060008114613036576040519150601f19603f3d011682016040523d82523d6000602084013e61303b565b606091505b50600081511415613081576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613078906142f5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130de565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d906144d5565b60405180910390fd5b61315f81612578565b1561319f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319690614335565b60405180910390fd5b6131ab60008383612eef565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131fb9190614744565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132d390614939565b90600052602060002090601f0160209004810192826132f5576000855561333c565b82601f1061330e57805160ff191683800117855561333c565b8280016001018555821561333c579182015b8281111561333b578251825591602001919060010190613320565b5b509050613349919061334d565b5090565b5b8082111561336657600081600090555060010161334e565b5090565b600061337d613378846146a1565b614670565b90508281526020810184848401111561339557600080fd5b6133a08482856148cd565b509392505050565b60006133bb6133b6846146d1565b614670565b9050828152602081018484840111156133d357600080fd5b6133de8482856148cd565b509392505050565b6000813590506133f581614ab2565b92915050565b60008083601f84011261340d57600080fd5b8235905067ffffffffffffffff81111561342657600080fd5b60208301915083602082028301111561343e57600080fd5b9250929050565b60008135905061345481614ac9565b92915050565b60008135905061346981614ae0565b92915050565b60008151905061347e81614ae0565b92915050565b600082601f83011261349557600080fd5b81356134a584826020860161336a565b91505092915050565b600082601f8301126134bf57600080fd5b81356134cf8482602086016133a8565b91505092915050565b6000813590506134e781614af7565b92915050565b6000602082840312156134ff57600080fd5b600061350d848285016133e6565b91505092915050565b6000806040838503121561352957600080fd5b6000613537858286016133e6565b9250506020613548858286016133e6565b9150509250929050565b60008060006060848603121561356757600080fd5b6000613575868287016133e6565b9350506020613586868287016133e6565b9250506040613597868287016134d8565b9150509250925092565b600080600080608085870312156135b757600080fd5b60006135c5878288016133e6565b94505060206135d6878288016133e6565b93505060406135e7878288016134d8565b925050606085013567ffffffffffffffff81111561360457600080fd5b61361087828801613484565b91505092959194509250565b6000806040838503121561362f57600080fd5b600061363d858286016133e6565b925050602061364e85828601613445565b9150509250929050565b6000806040838503121561366b57600080fd5b6000613679858286016133e6565b925050602061368a858286016134d8565b9150509250929050565b600080602083850312156136a757600080fd5b600083013567ffffffffffffffff8111156136c157600080fd5b6136cd858286016133fb565b92509250509250929050565b6000602082840312156136eb57600080fd5b60006136f984828501613445565b91505092915050565b60006020828403121561371457600080fd5b60006137228482850161345a565b91505092915050565b60006020828403121561373d57600080fd5b600061374b8482850161346f565b91505092915050565b60006020828403121561376657600080fd5b600082013567ffffffffffffffff81111561378057600080fd5b61378c848285016134ae565b91505092915050565b6000602082840312156137a757600080fd5b60006137b5848285016134d8565b91505092915050565b600080604083850312156137d157600080fd5b60006137df858286016134d8565b92505060206137f0858286016133e6565b9150509250929050565b600080600080600060a0868803121561381257600080fd5b6000613820888289016134d8565b9550506020613831888289016134d8565b945050604086013567ffffffffffffffff81111561384e57600080fd5b61385a888289016134ae565b935050606061386b888289016134d8565b925050608061387c888289016134d8565b9150509295509295909350565b61389281614859565b82525050565b6138a18161486b565b82525050565b60006138b282614701565b6138bc8185614717565b93506138cc8185602086016148dc565b6138d581614aa1565b840191505092915050565b60006138eb8261470c565b6138f58185614728565b93506139058185602086016148dc565b61390e81614aa1565b840191505092915050565b60006139248261470c565b61392e8185614739565b935061393e8185602086016148dc565b80840191505092915050565b6000613957603283614728565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139bd602683614728565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a23601c83614728565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613a63602883614728565b91507f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060008301527f65786365656465640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ac9601c83614728565b91507f6d6178204e4654207065722061646472657373206578636565646564000000006000830152602082019050919050565b6000613b09602483614728565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b6f601983614728565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613baf602c83614728565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613c15601883614728565b91507f457863656564656420676976656177617920737570706c7900000000000000006000830152602082019050919050565b6000613c55601283614728565b91507f496e73756666696369656e742066756e647300000000000000000000000000006000830152602082019050919050565b6000613c95601783614728565b91507f55736572206973206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000613cd5603883614728565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613d3b602a83614728565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613da1602983614728565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e07603183614728565b91507f43616e277420616464206e657720636861726163746572204e4654732e20576f60008301527f756c642065786365656420737570706c790000000000000000000000000000006020830152604082019050919050565b6000613e6d602083614728565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613ead602c83614728565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613f13602083614728565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613f53602983614728565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fb9602f83614728565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061401f601383614728565b91507f45786365656465642056495020737570706c79000000000000000000000000006000830152602082019050919050565b600061405f602183614728565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140c5601483614728565b91507f5765277265206174206d617820737570706c79210000000000000000000000006000830152602082019050919050565b6000614105603183614728565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b600061416b600f83614728565b91507f457863656564656420737570706c7900000000000000000000000000000000006000830152602082019050919050565b60006141ab601383614728565b91507f53616c65206861736e27742073746172746564000000000000000000000000006000830152602082019050919050565b60006141eb601b83614728565b91507f4e65656420746f206d696e74206174206c656173742031204e465400000000006000830152602082019050919050565b614227816148c3565b82525050565b60006142398285613919565b91506142458284613919565b91508190509392505050565b60006020820190506142666000830184613889565b92915050565b60006080820190506142816000830187613889565b61428e6020830186613889565b61429b604083018561421e565b81810360608301526142ad81846138a7565b905095945050505050565b60006020820190506142cd6000830184613898565b92915050565b600060208201905081810360008301526142ed81846138e0565b905092915050565b6000602082019050818103600083015261430e8161394a565b9050919050565b6000602082019050818103600083015261432e816139b0565b9050919050565b6000602082019050818103600083015261434e81613a16565b9050919050565b6000602082019050818103600083015261436e81613a56565b9050919050565b6000602082019050818103600083015261438e81613abc565b9050919050565b600060208201905081810360008301526143ae81613afc565b9050919050565b600060208201905081810360008301526143ce81613b62565b9050919050565b600060208201905081810360008301526143ee81613ba2565b9050919050565b6000602082019050818103600083015261440e81613c08565b9050919050565b6000602082019050818103600083015261442e81613c48565b9050919050565b6000602082019050818103600083015261444e81613c88565b9050919050565b6000602082019050818103600083015261446e81613cc8565b9050919050565b6000602082019050818103600083015261448e81613d2e565b9050919050565b600060208201905081810360008301526144ae81613d94565b9050919050565b600060208201905081810360008301526144ce81613dfa565b9050919050565b600060208201905081810360008301526144ee81613e60565b9050919050565b6000602082019050818103600083015261450e81613ea0565b9050919050565b6000602082019050818103600083015261452e81613f06565b9050919050565b6000602082019050818103600083015261454e81613f46565b9050919050565b6000602082019050818103600083015261456e81613fac565b9050919050565b6000602082019050818103600083015261458e81614012565b9050919050565b600060208201905081810360008301526145ae81614052565b9050919050565b600060208201905081810360008301526145ce816140b8565b9050919050565b600060208201905081810360008301526145ee816140f8565b9050919050565b6000602082019050818103600083015261460e8161415e565b9050919050565b6000602082019050818103600083015261462e8161419e565b9050919050565b6000602082019050818103600083015261464e816141de565b9050919050565b600060208201905061466a600083018461421e565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561469757614696614a72565b5b8060405250919050565b600067ffffffffffffffff8211156146bc576146bb614a72565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156146ec576146eb614a72565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061474f826148c3565b915061475a836148c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561478f5761478e6149e5565b5b828201905092915050565b60006147a5826148c3565b91506147b0836148c3565b9250826147c0576147bf614a14565b5b828204905092915050565b60006147d6826148c3565b91506147e1836148c3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561481a576148196149e5565b5b828202905092915050565b6000614830826148c3565b915061483b836148c3565b92508282101561484e5761484d6149e5565b5b828203905092915050565b6000614864826148a3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148fa5780820151818401526020810190506148df565b83811115614909576000848401525b50505050565b600061491a826148c3565b9150600082141561492e5761492d6149e5565b5b600182039050919050565b6000600282049050600182168061495157607f821691505b6020821081141561496557614964614a43565b5b50919050565b6000614976826148c3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149a9576149a86149e5565b5b600182019050919050565b60006149bf826148c3565b91506149ca836148c3565b9250826149da576149d9614a14565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614abb81614859565b8114614ac657600080fd5b50565b614ad28161486b565b8114614add57600080fd5b50565b614ae981614877565b8114614af457600080fd5b50565b614b00816148c3565b8114614b0b57600080fd5b5056fea2646970667358221220fdebfaf6dd21a7ee3a477c149a1bdf898eef41f9b78e838211ad26332dcff36164736f6c63430008000033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.