Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
2253
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoredBigfootBillionaires
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract BoredBigfootBillionaires is ERC721, Ownable { using Strings for uint256; // Change these address public verifiedSigner = 0xF41D419b73AC92f0f2C2135e798879CE9AB24B63; address private memberOne = 0xceEC829845c7a4c042d835952799328D3515a3bF; address private memberTwo = 0xfb3b14ECd84B52d9376bD12C1D1fB73562bD85DF; address private memberThree = 0xc7F1B6FC1675621aE1d03B8237C07956e6Df2CF7; address private memberFour = 0xF41D419b73AC92f0f2C2135e798879CE9AB24B63; uint256 public constant NFT_MAX = 10000; uint256 public NFT_PRICE = 0.07 ether; uint256 public constant NFTS_PER_MINT = 10; string private _contractURI = "https://gateway.pinata.cloud/ipfs/QmchjF8VkYP62eneBr5y3fLoVK4ov9LpAKKcPLKZ3o3BnX/"; string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmchjF8VkYP62eneBr5y3fLoVK4ov9LpAKKcPLKZ3o3BnX/"; string public _mysteryURI = "https://gateway.pinata.cloud/ipfs/QmXu4SkW5pxAf7LvMbtUodJJTwrCCUsuHs6DuWVqKZFa3U/1.json"; // end of change mapping(uint256 => bool) private usedNonce; bool public revealed; bool public saleLive; bool public giftLive; uint256 public totalSupply; constructor() ERC721("Bored Bigfoot Billionaires", "BFOOTS") {} function mintGift(uint256 tokenQuantity, address wallet) external onlyOwner { require(giftLive, "GIFTING_CLOSED"); require(totalSupply < NFT_MAX, "OUT_OF_STOCK"); require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK"); for (uint256 i = 0; i < tokenQuantity; i++) { _safeMint(wallet, totalSupply + i + 1); } totalSupply += tokenQuantity; } function mint( uint256 tokenQuantity, uint256 nonce, address wallet, bytes memory signature ) external payable { require(saleLive, "SALE_CLOSED"); require(totalSupply < NFT_MAX, "OUT_OF_STOCK"); require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK"); require(NFT_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH"); require(!usedNonce[nonce], "NONCE_ALREADY_USED"); require(tokenQuantity <= NFTS_PER_MINT, "EXCEED_NFTS_PER_MINT"); require( matchSigner(hashTransaction(nonce, wallet), signature), "NOT_ALLOWED_TO_MINT" ); usedNonce[nonce] = true; for (uint256 i = 0; i < tokenQuantity; i++) { _safeMint(msg.sender, totalSupply + i + 1); } totalSupply += tokenQuantity; } function hashTransaction(uint256 nonce, address wallet) internal pure returns (bytes32) { bytes32 hash = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(nonce, wallet)) ) ); return hash; } function matchSigner(bytes32 hash, bytes memory signature) internal view returns (bool) { return verifiedSigner == ECDSA.recover(hash, signature); } function withdraw() external { uint256 currentBalance = address(this).balance; payable(memberOne).transfer((currentBalance * 445) / 1000); payable(memberTwo).transfer((currentBalance * 215) / 1000); payable(memberThree).transfer((currentBalance * 180) / 1000); payable(memberFour).transfer((currentBalance * 160) / 1000); } function toggleSaleStatus() external onlyOwner { saleLive = !saleLive; } function toggleSaleGiftStatus() external onlyOwner { giftLive = !giftLive; } function toggleMysteryURI() public onlyOwner { revealed = !revealed; } function setMysteryURI(string calldata URI) public onlyOwner { _mysteryURI = URI; } function setPriceOfNFT(uint256 price) external onlyOwner { // 70000000000000000 = .07 eth NFT_PRICE = price; } function setContractURI(string calldata URI) external onlyOwner { _contractURI = URI; } function setBaseURI(string calldata URI) external onlyOwner { _tokenBaseURI = URI; } function contractURI() public view returns (string memory) { return _contractURI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Cannot query non-existent token"); if (revealed == false) { return _mysteryURI; } return string( abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json") ); } }
// 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 (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 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// 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":"NFTS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mysteryURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"giftLive","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":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPriceOfNFT","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":[],"name":"toggleMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleGiftStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"verifiedSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273f41d419b73ac92f0f2c2135e798879ce9ab24b63600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ceec829845c7a4c042d835952799328d3515a3bf600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fb3b14ecd84b52d9376bd12c1d1fb73562bd85df600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c7f1b6fc1675621ae1d03b8237c07956e6df2cf7600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f41d419b73ac92f0f2c2135e798879ce9ab24b63600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555066f8b0a10e470000600c55604051806080016040528060518152602001620050ce60519139600d9080519060200190620001e9929190620003f0565b50604051806080016040528060518152602001620050ce60519139600e90805190602001906200021b929190620003f0565b506040518060800160405280605781526020016200507760579139600f90805190602001906200024d929190620003f0565b503480156200025b57600080fd5b506040518060400160405280601a81526020017f426f72656420426967666f6f742042696c6c696f6e61697265730000000000008152506040518060400160405280600681526020017f42464f4f545300000000000000000000000000000000000000000000000000008152508160009080519060200190620002e0929190620003f0565b508060019080519060200190620002f9929190620003f0565b5050506200031c620003106200032260201b60201c565b6200032a60201b60201c565b62000505565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003fe90620004a0565b90600052602060002090601f0160209004810192826200042257600085556200046e565b82601f106200043d57805160ff19168380011785556200046e565b828001600101855582156200046e579182015b828111156200046d57825182559160200191906001019062000450565b5b5090506200047d919062000481565b5090565b5b808211156200049c57600081600090555060010162000482565b5090565b60006002820490506001821680620004b957607f821691505b60208210811415620004d057620004cf620004d6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b6280620005156000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c87b56dd116100a0578063e72be68a1161006f578063e72be68a14610720578063e8a3d48514610749578063e985e9c514610774578063ee040645146107b1578063f2fde38b146107da5761020f565b8063c87b56dd14610678578063cb908cce146106b5578063e081b781146106cc578063e423a511146106f75761020f565b806395d89b41116100e757806395d89b41146105a5578063a22cb465146105d0578063a4f8eaeb146105f9578063b88d4fde14610624578063c30e76841461064d5761020f565b8063715018a61461050f57806372bfb1af146105265780638da5cb5b14610551578063938e3d7b1461057c5761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104255780635ca5933a1461044e5780636352211e1461046a578063676dd563146104a757806370a08231146104d25761020f565b80633ccfd60b146103a357806342842e0e146103ba57806345bcf17f146103e357806351830227146103fa5761020f565b8063095ea7b3116101e2578063095ea7b3146102d057806318160ddd146102f957806323b872dd146103245780632cff9e061461034d57806335ef4fb7146103785761020f565b806301ffc9a714610214578063049c5c491461025157806306fdde0314610268578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906132b1565b610803565b6040516102489190613afc565b60405180910390f35b34801561025d57600080fd5b506102666108e5565b005b34801561027457600080fd5b5061027d61098d565b60405161028a9190613b5c565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613358565b610a1f565b6040516102c79190613a95565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190613271565b610aa4565b005b34801561030557600080fd5b5061030e610bbc565b60405161031b9190613efe565b60405180910390f35b34801561033057600080fd5b5061034b6004803603810190610346919061315b565b610bc2565b005b34801561035957600080fd5b50610362610c22565b60405161036f9190613afc565b60405180910390f35b34801561038457600080fd5b5061038d610c35565b60405161039a9190613a95565b60405180910390f35b3480156103af57600080fd5b506103b8610c5b565b005b3480156103c657600080fd5b506103e160048036038101906103dc919061315b565b610e6c565b005b3480156103ef57600080fd5b506103f8610e8c565b005b34801561040657600080fd5b5061040f610f34565b60405161041c9190613afc565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061330b565b610f47565b005b610468600480360381019061046391906133c5565b610fd9565b005b34801561047657600080fd5b50610491600480360381019061048c9190613358565b611294565b60405161049e9190613a95565b60405180910390f35b3480156104b357600080fd5b506104bc611346565b6040516104c99190613efe565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f491906130ee565b61134c565b6040516105069190613efe565b60405180910390f35b34801561051b57600080fd5b50610524611404565b005b34801561053257600080fd5b5061053b61148c565b6040516105489190613efe565b60405180910390f35b34801561055d57600080fd5b50610566611491565b6040516105739190613a95565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e919061330b565b6114bb565b005b3480156105b157600080fd5b506105ba61154d565b6040516105c79190613b5c565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613231565b6115df565b005b34801561060557600080fd5b5061060e6115f5565b60405161061b9190613b5c565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906131ae565b611683565b005b34801561065957600080fd5b506106626116e5565b60405161066f9190613efe565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613358565b6116eb565b6040516106ac9190613b5c565b60405180910390f35b3480156106c157600080fd5b506106ca611816565b005b3480156106d857600080fd5b506106e16118be565b6040516106ee9190613afc565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613358565b6118d1565b005b34801561072c57600080fd5b506107476004803603810190610742919061330b565b611957565b005b34801561075557600080fd5b5061075e6119e9565b60405161076b9190613b5c565b60405180910390f35b34801561078057600080fd5b5061079b6004803603810190610796919061311b565b611a7b565b6040516107a89190613afc565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613385565b611b0f565b005b3480156107e657600080fd5b5061080160048036038101906107fc91906130ee565b611cd1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108de57506108dd82611dc9565b5b9050919050565b6108ed611e33565b73ffffffffffffffffffffffffffffffffffffffff1661090b611491565b73ffffffffffffffffffffffffffffffffffffffff1614610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613dde565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b60606000805461099c906141a9565b80601f01602080910402602001604051908101604052809291908181526020018280546109c8906141a9565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611e3b565b610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090613dbe565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aaf82611294565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790613e3e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3f611e33565b73ffffffffffffffffffffffffffffffffffffffff161480610b6e5750610b6d81610b68611e33565b611a7b565b5b610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490613cfe565b60405180910390fd5b610bb78383611ea7565b505050565b60125481565b610bd3610bcd611e33565b82611f60565b610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990613e7e565b60405180910390fd5b610c1d83838361203e565b505050565b601160029054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86101bd84610cad919061404e565b610cb7919061401d565b9081150290604051600060405180830381858888f19350505050158015610ce2573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860d784610d2f919061404e565b610d39919061401d565b9081150290604051600060405180830381858888f19350505050158015610d64573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860b484610db1919061404e565b610dbb919061401d565b9081150290604051600060405180830381858888f19350505050158015610de6573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860a084610e33919061404e565b610e3d919061401d565b9081150290604051600060405180830381858888f19350505050158015610e68573d6000803e3d6000fd5b5050565b610e8783838360405180602001604052806000815250611683565b505050565b610e94611e33565b73ffffffffffffffffffffffffffffffffffffffff16610eb2611491565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff90613dde565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b601160009054906101000a900460ff1681565b610f4f611e33565b73ffffffffffffffffffffffffffffffffffffffff16610f6d611491565b73ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613dde565b60405180910390fd5b8181600e9190610fd4929190612f1c565b505050565b601160019054906101000a900460ff16611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613cbe565b60405180910390fd5b6127106012541061106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590613c7e565b60405180910390fd5b6127108460125461107f9190613fc7565b11156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613bfe565b60405180910390fd5b3484600c546110cf919061404e565b1115611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790613ebe565b60405180910390fd5b6010600084815260200190815260200160002060009054906101000a900460ff1615611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890613d5e565b60405180910390fd5b600a8411156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613e9e565b60405180910390fd5b6111c86111c2848461229a565b826122f8565b611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90613e5e565b60405180910390fd5b60016010600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8481101561127457611261336001836012546112529190613fc7565b61125c9190613fc7565b61235c565b808061126c9061420c565b915050611236565b5083601260008282546112879190613fc7565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490613d3e565b60405180910390fd5b80915050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490613d1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140c611e33565b73ffffffffffffffffffffffffffffffffffffffff1661142a611491565b73ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613dde565b60405180910390fd5b61148a600061237a565b565b600a81565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114c3611e33565b73ffffffffffffffffffffffffffffffffffffffff166114e1611491565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613dde565b60405180910390fd5b8181600d9190611548929190612f1c565b505050565b60606001805461155c906141a9565b80601f0160208091040260200160405190810160405280929190818152602001828054611588906141a9565b80156115d55780601f106115aa576101008083540402835291602001916115d5565b820191906000526020600020905b8154815290600101906020018083116115b857829003601f168201915b5050505050905090565b6115f16115ea611e33565b8383612440565b5050565b600f8054611602906141a9565b80601f016020809104026020016040519081016040528092919081815260200182805461162e906141a9565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b505050505081565b61169461168e611e33565b83611f60565b6116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613e7e565b60405180910390fd5b6116df848484846125ad565b50505050565b61271081565b60606116f682611e3b565b611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613e1e565b60405180910390fd5b60001515601160009054906101000a900460ff16151514156117e357600f805461175e906141a9565b80601f016020809104026020016040519081016040528092919081815260200182805461178a906141a9565b80156117d75780601f106117ac576101008083540402835291602001916117d7565b820191906000526020600020905b8154815290600101906020018083116117ba57829003601f168201915b50505050509050611811565b600e6117ee83612609565b6040516020016117ff929190613a14565b60405160208183030381529060405290505b919050565b61181e611e33565b73ffffffffffffffffffffffffffffffffffffffff1661183c611491565b73ffffffffffffffffffffffffffffffffffffffff1614611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613dde565b60405180910390fd5b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b601160019054906101000a900460ff1681565b6118d9611e33565b73ffffffffffffffffffffffffffffffffffffffff166118f7611491565b73ffffffffffffffffffffffffffffffffffffffff161461194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490613dde565b60405180910390fd5b80600c8190555050565b61195f611e33565b73ffffffffffffffffffffffffffffffffffffffff1661197d611491565b73ffffffffffffffffffffffffffffffffffffffff16146119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca90613dde565b60405180910390fd5b8181600f91906119e4929190612f1c565b505050565b6060600d80546119f8906141a9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a24906141a9565b8015611a715780601f10611a4657610100808354040283529160200191611a71565b820191906000526020600020905b815481529060010190602001808311611a5457829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b17611e33565b73ffffffffffffffffffffffffffffffffffffffff16611b35611491565b73ffffffffffffffffffffffffffffffffffffffff1614611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290613dde565b60405180910390fd5b601160029054906101000a900460ff16611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190613ede565b60405180910390fd5b61271060125410611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790613c7e565b60405180910390fd5b61271082601254611c319190613fc7565b1115611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990613bfe565b60405180910390fd5b60005b82811015611cb357611ca082600183601254611c919190613fc7565b611c9b9190613fc7565b61235c565b8080611cab9061420c565b915050611c75565b508160126000828254611cc69190613fc7565b925050819055505050565b611cd9611e33565b73ffffffffffffffffffffffffffffffffffffffff16611cf7611491565b73ffffffffffffffffffffffffffffffffffffffff1614611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490613dde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613bde565b60405180910390fd5b611dc68161237a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1a83611294565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6b82611e3b565b611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613cde565b60405180910390fd5b6000611fb583611294565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202457508373ffffffffffffffffffffffffffffffffffffffff1661200c84610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203557506120348185611a7b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205e82611294565b73ffffffffffffffffffffffffffffffffffffffff16146120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab90613dfe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90613c3e565b60405180910390fd5b61212f83838361276a565b61213a600082611ea7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218a91906140a8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e19190613fc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008083836040516020016122b0929190613a69565b604051602081830303815290604052805190602001206040516020016122d69190613a43565b6040516020818303038152906040528051906020012090508091505092915050565b6000612304838361276f565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612376828260405180602001604052806000815250612796565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a690613c5e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125a09190613afc565b60405180910390a3505050565b6125b884848461203e565b6125c4848484846127f1565b612603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fa90613bbe565b60405180910390fd5b50505050565b60606000821415612651576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612765565b600082905060005b6000821461268357808061266c9061420c565b915050600a8261267c919061401d565b9150612659565b60008167ffffffffffffffff81111561269f5761269e6143a9565b5b6040519080825280601f01601f1916602001820160405280156126d15781602001600182028036833780820191505090505b5090505b6000851461275e576001826126ea91906140a8565b9150600a856126f9919061428d565b60306127059190613fc7565b60f81b81838151811061271b5761271a61437a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612757919061401d565b94506126d5565b8093505050505b919050565b505050565b600080600061277e8585612988565b9150915061278b81612a0b565b819250505092915050565b6127a08383612be0565b6127ad60008484846127f1565b6127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e390613bbe565b60405180910390fd5b505050565b60006128128473ffffffffffffffffffffffffffffffffffffffff16612dae565b1561297b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261283b611e33565b8786866040518563ffffffff1660e01b815260040161285d9493929190613ab0565b602060405180830381600087803b15801561287757600080fd5b505af19250505080156128a857506040513d601f19601f820116820180604052508101906128a591906132de565b60015b61292b573d80600081146128d8576040519150601f19603f3d011682016040523d82523d6000602084013e6128dd565b606091505b50600081511415612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a90613bbe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612980565b600190505b949350505050565b6000806041835114156129ca5760008060006020860151925060408601519150606086015160001a90506129be87828585612dc1565b94509450505050612a04565b6040835114156129fb5760008060208501519150604085015190506129f0868383612ece565b935093505050612a04565b60006002915091505b9250929050565b60006004811115612a1f57612a1e61431c565b5b816004811115612a3257612a3161431c565b5b1415612a3d57612bdd565b60016004811115612a5157612a5061431c565b5b816004811115612a6457612a6361431c565b5b1415612aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9c90613b7e565b60405180910390fd5b60026004811115612ab957612ab861431c565b5b816004811115612acc57612acb61431c565b5b1415612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0490613b9e565b60405180910390fd5b60036004811115612b2157612b2061431c565b5b816004811115612b3457612b3361431c565b5b1415612b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6c90613c9e565b60405180910390fd5b600480811115612b8857612b8761431c565b5b816004811115612b9b57612b9a61431c565b5b1415612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd390613d7e565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4790613d9e565b60405180910390fd5b612c5981611e3b565b15612c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9090613c1e565b60405180910390fd5b612ca56000838361276a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cf59190613fc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612dfc576000600391509150612ec5565b601b8560ff1614158015612e145750601c8560ff1614155b15612e26576000600491509150612ec5565b600060018787878760405160008152602001604052604051612e4b9493929190613b17565b6020604051602081039080840390855afa158015612e6d573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ebc57600060019250925050612ec5565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612f0e87828885612dc1565b935093505050935093915050565b828054612f28906141a9565b90600052602060002090601f016020900481019282612f4a5760008555612f91565b82601f10612f6357803560ff1916838001178555612f91565b82800160010185558215612f91579182015b82811115612f90578235825591602001919060010190612f75565b5b509050612f9e9190612fa2565b5090565b5b80821115612fbb576000816000905550600101612fa3565b5090565b6000612fd2612fcd84613f3e565b613f19565b905082815260208101848484011115612fee57612fed6143e7565b5b612ff9848285614167565b509392505050565b60008135905061301081614ad0565b92915050565b60008135905061302581614ae7565b92915050565b60008135905061303a81614afe565b92915050565b60008151905061304f81614afe565b92915050565b600082601f83011261306a576130696143dd565b5b813561307a848260208601612fbf565b91505092915050565b60008083601f840112613099576130986143dd565b5b8235905067ffffffffffffffff8111156130b6576130b56143d8565b5b6020830191508360018202830111156130d2576130d16143e2565b5b9250929050565b6000813590506130e881614b15565b92915050565b600060208284031215613104576131036143f1565b5b600061311284828501613001565b91505092915050565b60008060408385031215613132576131316143f1565b5b600061314085828601613001565b925050602061315185828601613001565b9150509250929050565b600080600060608486031215613174576131736143f1565b5b600061318286828701613001565b935050602061319386828701613001565b92505060406131a4868287016130d9565b9150509250925092565b600080600080608085870312156131c8576131c76143f1565b5b60006131d687828801613001565b94505060206131e787828801613001565b93505060406131f8878288016130d9565b925050606085013567ffffffffffffffff811115613219576132186143ec565b5b61322587828801613055565b91505092959194509250565b60008060408385031215613248576132476143f1565b5b600061325685828601613001565b925050602061326785828601613016565b9150509250929050565b60008060408385031215613288576132876143f1565b5b600061329685828601613001565b92505060206132a7858286016130d9565b9150509250929050565b6000602082840312156132c7576132c66143f1565b5b60006132d58482850161302b565b91505092915050565b6000602082840312156132f4576132f36143f1565b5b600061330284828501613040565b91505092915050565b60008060208385031215613322576133216143f1565b5b600083013567ffffffffffffffff8111156133405761333f6143ec565b5b61334c85828601613083565b92509250509250929050565b60006020828403121561336e5761336d6143f1565b5b600061337c848285016130d9565b91505092915050565b6000806040838503121561339c5761339b6143f1565b5b60006133aa858286016130d9565b92505060206133bb85828601613001565b9150509250929050565b600080600080608085870312156133df576133de6143f1565b5b60006133ed878288016130d9565b94505060206133fe878288016130d9565b935050604061340f87828801613001565b925050606085013567ffffffffffffffff8111156134305761342f6143ec565b5b61343c87828801613055565b91505092959194509250565b613451816140dc565b82525050565b613468613463826140dc565b614255565b82525050565b613477816140ee565b82525050565b613486816140fa565b82525050565b61349d613498826140fa565b614267565b82525050565b60006134ae82613f84565b6134b88185613f9a565b93506134c8818560208601614176565b6134d1816143f6565b840191505092915050565b60006134e782613f8f565b6134f18185613fab565b9350613501818560208601614176565b61350a816143f6565b840191505092915050565b600061352082613f8f565b61352a8185613fbc565b935061353a818560208601614176565b80840191505092915050565b60008154613553816141a9565b61355d8186613fbc565b945060018216600081146135785760018114613589576135bc565b60ff198316865281860193506135bc565b61359285613f6f565b60005b838110156135b457815481890152600182019150602081019050613595565b838801955050505b50505092915050565b60006135d2601883613fab565b91506135dd82614414565b602082019050919050565b60006135f5601f83613fab565b91506136008261443d565b602082019050919050565b6000613618601c83613fbc565b915061362382614466565b601c82019050919050565b600061363b603283613fab565b91506136468261448f565b604082019050919050565b600061365e602683613fab565b9150613669826144de565b604082019050919050565b6000613681600c83613fab565b915061368c8261452d565b602082019050919050565b60006136a4601c83613fab565b91506136af82614556565b602082019050919050565b60006136c7602483613fab565b91506136d28261457f565b604082019050919050565b60006136ea601983613fab565b91506136f5826145ce565b602082019050919050565b600061370d600c83613fab565b9150613718826145f7565b602082019050919050565b6000613730602283613fab565b915061373b82614620565b604082019050919050565b6000613753600b83613fab565b915061375e8261466f565b602082019050919050565b6000613776602c83613fab565b915061378182614698565b604082019050919050565b6000613799603883613fab565b91506137a4826146e7565b604082019050919050565b60006137bc602a83613fab565b91506137c782614736565b604082019050919050565b60006137df602983613fab565b91506137ea82614785565b604082019050919050565b6000613802601283613fab565b915061380d826147d4565b602082019050919050565b6000613825602283613fab565b9150613830826147fd565b604082019050919050565b6000613848602083613fab565b91506138538261484c565b602082019050919050565b600061386b602c83613fab565b915061387682614875565b604082019050919050565b600061388e600583613fbc565b9150613899826148c4565b600582019050919050565b60006138b1602083613fab565b91506138bc826148ed565b602082019050919050565b60006138d4602983613fab565b91506138df82614916565b604082019050919050565b60006138f7601f83613fab565b915061390282614965565b602082019050919050565b600061391a602183613fab565b91506139258261498e565b604082019050919050565b600061393d601383613fab565b9150613948826149dd565b602082019050919050565b6000613960603183613fab565b915061396b82614a06565b604082019050919050565b6000613983601483613fab565b915061398e82614a55565b602082019050919050565b60006139a6601083613fab565b91506139b182614a7e565b602082019050919050565b60006139c9600e83613fab565b91506139d482614aa7565b602082019050919050565b6139e881614150565b82525050565b6139ff6139fa82614150565b614283565b82525050565b613a0e8161415a565b82525050565b6000613a208285613546565b9150613a2c8284613515565b9150613a3782613881565b91508190509392505050565b6000613a4e8261360b565b9150613a5a828461348c565b60208201915081905092915050565b6000613a7582856139ee565b602082019150613a858284613457565b6014820191508190509392505050565b6000602082019050613aaa6000830184613448565b92915050565b6000608082019050613ac56000830187613448565b613ad26020830186613448565b613adf60408301856139df565b8181036060830152613af181846134a3565b905095945050505050565b6000602082019050613b11600083018461346e565b92915050565b6000608082019050613b2c600083018761347d565b613b396020830186613a05565b613b46604083018561347d565b613b53606083018461347d565b95945050505050565b60006020820190508181036000830152613b7681846134dc565b905092915050565b60006020820190508181036000830152613b97816135c5565b9050919050565b60006020820190508181036000830152613bb7816135e8565b9050919050565b60006020820190508181036000830152613bd78161362e565b9050919050565b60006020820190508181036000830152613bf781613651565b9050919050565b60006020820190508181036000830152613c1781613674565b9050919050565b60006020820190508181036000830152613c3781613697565b9050919050565b60006020820190508181036000830152613c57816136ba565b9050919050565b60006020820190508181036000830152613c77816136dd565b9050919050565b60006020820190508181036000830152613c9781613700565b9050919050565b60006020820190508181036000830152613cb781613723565b9050919050565b60006020820190508181036000830152613cd781613746565b9050919050565b60006020820190508181036000830152613cf781613769565b9050919050565b60006020820190508181036000830152613d178161378c565b9050919050565b60006020820190508181036000830152613d37816137af565b9050919050565b60006020820190508181036000830152613d57816137d2565b9050919050565b60006020820190508181036000830152613d77816137f5565b9050919050565b60006020820190508181036000830152613d9781613818565b9050919050565b60006020820190508181036000830152613db78161383b565b9050919050565b60006020820190508181036000830152613dd78161385e565b9050919050565b60006020820190508181036000830152613df7816138a4565b9050919050565b60006020820190508181036000830152613e17816138c7565b9050919050565b60006020820190508181036000830152613e37816138ea565b9050919050565b60006020820190508181036000830152613e578161390d565b9050919050565b60006020820190508181036000830152613e7781613930565b9050919050565b60006020820190508181036000830152613e9781613953565b9050919050565b60006020820190508181036000830152613eb781613976565b9050919050565b60006020820190508181036000830152613ed781613999565b9050919050565b60006020820190508181036000830152613ef7816139bc565b9050919050565b6000602082019050613f1360008301846139df565b92915050565b6000613f23613f34565b9050613f2f82826141db565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5957613f586143a9565b5b613f62826143f6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fd282614150565b9150613fdd83614150565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614012576140116142be565b5b828201905092915050565b600061402882614150565b915061403383614150565b925082614043576140426142ed565b5b828204905092915050565b600061405982614150565b915061406483614150565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561409d5761409c6142be565b5b828202905092915050565b60006140b382614150565b91506140be83614150565b9250828210156140d1576140d06142be565b5b828203905092915050565b60006140e782614130565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614194578082015181840152602081019050614179565b838111156141a3576000848401525b50505050565b600060028204905060018216806141c157607f821691505b602082108114156141d5576141d461434b565b5b50919050565b6141e4826143f6565b810181811067ffffffffffffffff82111715614203576142026143a9565b5b80604052505050565b600061421782614150565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561424a576142496142be565b5b600182019050919050565b600061426082614271565b9050919050565b6000819050919050565b600061427c82614407565b9050919050565b6000819050919050565b600061429882614150565b91506142a383614150565b9250826142b3576142b26142ed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e4f4e43455f414c52454144595f555345440000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f545f414c4c4f5745445f544f5f4d494e5400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b614ad9816140dc565b8114614ae457600080fd5b50565b614af0816140ee565b8114614afb57600080fd5b50565b614b0781614104565b8114614b1257600080fd5b50565b614b1e81614150565b8114614b2957600080fd5b5056fea2646970667358221220394c35445b385f24e5aa6135f77e4c71a61125a9ca0639259ff8101d47dcc68b64736f6c6343000806003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d587534536b573570784166374c764d6274556f644a4a547772434355737548733644755756714b5a466133552f312e6a736f6e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63686a4638566b59503632656e654272357933664c6f564b346f76394c70414b4b63504c4b5a336f33426e582f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063c87b56dd116100a0578063e72be68a1161006f578063e72be68a14610720578063e8a3d48514610749578063e985e9c514610774578063ee040645146107b1578063f2fde38b146107da5761020f565b8063c87b56dd14610678578063cb908cce146106b5578063e081b781146106cc578063e423a511146106f75761020f565b806395d89b41116100e757806395d89b41146105a5578063a22cb465146105d0578063a4f8eaeb146105f9578063b88d4fde14610624578063c30e76841461064d5761020f565b8063715018a61461050f57806372bfb1af146105265780638da5cb5b14610551578063938e3d7b1461057c5761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104255780635ca5933a1461044e5780636352211e1461046a578063676dd563146104a757806370a08231146104d25761020f565b80633ccfd60b146103a357806342842e0e146103ba57806345bcf17f146103e357806351830227146103fa5761020f565b8063095ea7b3116101e2578063095ea7b3146102d057806318160ddd146102f957806323b872dd146103245780632cff9e061461034d57806335ef4fb7146103785761020f565b806301ffc9a714610214578063049c5c491461025157806306fdde0314610268578063081812fc14610293575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906132b1565b610803565b6040516102489190613afc565b60405180910390f35b34801561025d57600080fd5b506102666108e5565b005b34801561027457600080fd5b5061027d61098d565b60405161028a9190613b5c565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613358565b610a1f565b6040516102c79190613a95565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f29190613271565b610aa4565b005b34801561030557600080fd5b5061030e610bbc565b60405161031b9190613efe565b60405180910390f35b34801561033057600080fd5b5061034b6004803603810190610346919061315b565b610bc2565b005b34801561035957600080fd5b50610362610c22565b60405161036f9190613afc565b60405180910390f35b34801561038457600080fd5b5061038d610c35565b60405161039a9190613a95565b60405180910390f35b3480156103af57600080fd5b506103b8610c5b565b005b3480156103c657600080fd5b506103e160048036038101906103dc919061315b565b610e6c565b005b3480156103ef57600080fd5b506103f8610e8c565b005b34801561040657600080fd5b5061040f610f34565b60405161041c9190613afc565b60405180910390f35b34801561043157600080fd5b5061044c6004803603810190610447919061330b565b610f47565b005b610468600480360381019061046391906133c5565b610fd9565b005b34801561047657600080fd5b50610491600480360381019061048c9190613358565b611294565b60405161049e9190613a95565b60405180910390f35b3480156104b357600080fd5b506104bc611346565b6040516104c99190613efe565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f491906130ee565b61134c565b6040516105069190613efe565b60405180910390f35b34801561051b57600080fd5b50610524611404565b005b34801561053257600080fd5b5061053b61148c565b6040516105489190613efe565b60405180910390f35b34801561055d57600080fd5b50610566611491565b6040516105739190613a95565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e919061330b565b6114bb565b005b3480156105b157600080fd5b506105ba61154d565b6040516105c79190613b5c565b60405180910390f35b3480156105dc57600080fd5b506105f760048036038101906105f29190613231565b6115df565b005b34801561060557600080fd5b5061060e6115f5565b60405161061b9190613b5c565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906131ae565b611683565b005b34801561065957600080fd5b506106626116e5565b60405161066f9190613efe565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613358565b6116eb565b6040516106ac9190613b5c565b60405180910390f35b3480156106c157600080fd5b506106ca611816565b005b3480156106d857600080fd5b506106e16118be565b6040516106ee9190613afc565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613358565b6118d1565b005b34801561072c57600080fd5b506107476004803603810190610742919061330b565b611957565b005b34801561075557600080fd5b5061075e6119e9565b60405161076b9190613b5c565b60405180910390f35b34801561078057600080fd5b5061079b6004803603810190610796919061311b565b611a7b565b6040516107a89190613afc565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613385565b611b0f565b005b3480156107e657600080fd5b5061080160048036038101906107fc91906130ee565b611cd1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108de57506108dd82611dc9565b5b9050919050565b6108ed611e33565b73ffffffffffffffffffffffffffffffffffffffff1661090b611491565b73ffffffffffffffffffffffffffffffffffffffff1614610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613dde565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b60606000805461099c906141a9565b80601f01602080910402602001604051908101604052809291908181526020018280546109c8906141a9565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82611e3b565b610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090613dbe565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aaf82611294565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790613e3e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3f611e33565b73ffffffffffffffffffffffffffffffffffffffff161480610b6e5750610b6d81610b68611e33565b611a7b565b5b610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490613cfe565b60405180910390fd5b610bb78383611ea7565b505050565b60125481565b610bd3610bcd611e33565b82611f60565b610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990613e7e565b60405180910390fd5b610c1d83838361203e565b505050565b601160029054906101000a900460ff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86101bd84610cad919061404e565b610cb7919061401d565b9081150290604051600060405180830381858888f19350505050158015610ce2573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860d784610d2f919061404e565b610d39919061401d565b9081150290604051600060405180830381858888f19350505050158015610d64573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860b484610db1919061404e565b610dbb919061401d565b9081150290604051600060405180830381858888f19350505050158015610de6573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860a084610e33919061404e565b610e3d919061401d565b9081150290604051600060405180830381858888f19350505050158015610e68573d6000803e3d6000fd5b5050565b610e8783838360405180602001604052806000815250611683565b505050565b610e94611e33565b73ffffffffffffffffffffffffffffffffffffffff16610eb2611491565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff90613dde565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b601160009054906101000a900460ff1681565b610f4f611e33565b73ffffffffffffffffffffffffffffffffffffffff16610f6d611491565b73ffffffffffffffffffffffffffffffffffffffff1614610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90613dde565b60405180910390fd5b8181600e9190610fd4929190612f1c565b505050565b601160019054906101000a900460ff16611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613cbe565b60405180910390fd5b6127106012541061106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590613c7e565b60405180910390fd5b6127108460125461107f9190613fc7565b11156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790613bfe565b60405180910390fd5b3484600c546110cf919061404e565b1115611110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110790613ebe565b60405180910390fd5b6010600084815260200190815260200160002060009054906101000a900460ff1615611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890613d5e565b60405180910390fd5b600a8411156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90613e9e565b60405180910390fd5b6111c86111c2848461229a565b826122f8565b611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90613e5e565b60405180910390fd5b60016010600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8481101561127457611261336001836012546112529190613fc7565b61125c9190613fc7565b61235c565b808061126c9061420c565b915050611236565b5083601260008282546112879190613fc7565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490613d3e565b60405180910390fd5b80915050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490613d1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61140c611e33565b73ffffffffffffffffffffffffffffffffffffffff1661142a611491565b73ffffffffffffffffffffffffffffffffffffffff1614611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790613dde565b60405180910390fd5b61148a600061237a565b565b600a81565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114c3611e33565b73ffffffffffffffffffffffffffffffffffffffff166114e1611491565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90613dde565b60405180910390fd5b8181600d9190611548929190612f1c565b505050565b60606001805461155c906141a9565b80601f0160208091040260200160405190810160405280929190818152602001828054611588906141a9565b80156115d55780601f106115aa576101008083540402835291602001916115d5565b820191906000526020600020905b8154815290600101906020018083116115b857829003601f168201915b5050505050905090565b6115f16115ea611e33565b8383612440565b5050565b600f8054611602906141a9565b80601f016020809104026020016040519081016040528092919081815260200182805461162e906141a9565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b505050505081565b61169461168e611e33565b83611f60565b6116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613e7e565b60405180910390fd5b6116df848484846125ad565b50505050565b61271081565b60606116f682611e3b565b611735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172c90613e1e565b60405180910390fd5b60001515601160009054906101000a900460ff16151514156117e357600f805461175e906141a9565b80601f016020809104026020016040519081016040528092919081815260200182805461178a906141a9565b80156117d75780601f106117ac576101008083540402835291602001916117d7565b820191906000526020600020905b8154815290600101906020018083116117ba57829003601f168201915b50505050509050611811565b600e6117ee83612609565b6040516020016117ff929190613a14565b60405160208183030381529060405290505b919050565b61181e611e33565b73ffffffffffffffffffffffffffffffffffffffff1661183c611491565b73ffffffffffffffffffffffffffffffffffffffff1614611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613dde565b60405180910390fd5b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b601160019054906101000a900460ff1681565b6118d9611e33565b73ffffffffffffffffffffffffffffffffffffffff166118f7611491565b73ffffffffffffffffffffffffffffffffffffffff161461194d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194490613dde565b60405180910390fd5b80600c8190555050565b61195f611e33565b73ffffffffffffffffffffffffffffffffffffffff1661197d611491565b73ffffffffffffffffffffffffffffffffffffffff16146119d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ca90613dde565b60405180910390fd5b8181600f91906119e4929190612f1c565b505050565b6060600d80546119f8906141a9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a24906141a9565b8015611a715780601f10611a4657610100808354040283529160200191611a71565b820191906000526020600020905b815481529060010190602001808311611a5457829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b17611e33565b73ffffffffffffffffffffffffffffffffffffffff16611b35611491565b73ffffffffffffffffffffffffffffffffffffffff1614611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290613dde565b60405180910390fd5b601160029054906101000a900460ff16611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190613ede565b60405180910390fd5b61271060125410611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790613c7e565b60405180910390fd5b61271082601254611c319190613fc7565b1115611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990613bfe565b60405180910390fd5b60005b82811015611cb357611ca082600183601254611c919190613fc7565b611c9b9190613fc7565b61235c565b8080611cab9061420c565b915050611c75565b508160126000828254611cc69190613fc7565b925050819055505050565b611cd9611e33565b73ffffffffffffffffffffffffffffffffffffffff16611cf7611491565b73ffffffffffffffffffffffffffffffffffffffff1614611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4490613dde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613bde565b60405180910390fd5b611dc68161237a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1a83611294565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6b82611e3b565b611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613cde565b60405180910390fd5b6000611fb583611294565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202457508373ffffffffffffffffffffffffffffffffffffffff1661200c84610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203557506120348185611a7b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205e82611294565b73ffffffffffffffffffffffffffffffffffffffff16146120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab90613dfe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90613c3e565b60405180910390fd5b61212f83838361276a565b61213a600082611ea7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218a91906140a8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e19190613fc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008083836040516020016122b0929190613a69565b604051602081830303815290604052805190602001206040516020016122d69190613a43565b6040516020818303038152906040528051906020012090508091505092915050565b6000612304838361276f565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612376828260405180602001604052806000815250612796565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a690613c5e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125a09190613afc565b60405180910390a3505050565b6125b884848461203e565b6125c4848484846127f1565b612603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fa90613bbe565b60405180910390fd5b50505050565b60606000821415612651576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612765565b600082905060005b6000821461268357808061266c9061420c565b915050600a8261267c919061401d565b9150612659565b60008167ffffffffffffffff81111561269f5761269e6143a9565b5b6040519080825280601f01601f1916602001820160405280156126d15781602001600182028036833780820191505090505b5090505b6000851461275e576001826126ea91906140a8565b9150600a856126f9919061428d565b60306127059190613fc7565b60f81b81838151811061271b5761271a61437a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612757919061401d565b94506126d5565b8093505050505b919050565b505050565b600080600061277e8585612988565b9150915061278b81612a0b565b819250505092915050565b6127a08383612be0565b6127ad60008484846127f1565b6127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e390613bbe565b60405180910390fd5b505050565b60006128128473ffffffffffffffffffffffffffffffffffffffff16612dae565b1561297b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261283b611e33565b8786866040518563ffffffff1660e01b815260040161285d9493929190613ab0565b602060405180830381600087803b15801561287757600080fd5b505af19250505080156128a857506040513d601f19601f820116820180604052508101906128a591906132de565b60015b61292b573d80600081146128d8576040519150601f19603f3d011682016040523d82523d6000602084013e6128dd565b606091505b50600081511415612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a90613bbe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612980565b600190505b949350505050565b6000806041835114156129ca5760008060006020860151925060408601519150606086015160001a90506129be87828585612dc1565b94509450505050612a04565b6040835114156129fb5760008060208501519150604085015190506129f0868383612ece565b935093505050612a04565b60006002915091505b9250929050565b60006004811115612a1f57612a1e61431c565b5b816004811115612a3257612a3161431c565b5b1415612a3d57612bdd565b60016004811115612a5157612a5061431c565b5b816004811115612a6457612a6361431c565b5b1415612aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9c90613b7e565b60405180910390fd5b60026004811115612ab957612ab861431c565b5b816004811115612acc57612acb61431c565b5b1415612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0490613b9e565b60405180910390fd5b60036004811115612b2157612b2061431c565b5b816004811115612b3457612b3361431c565b5b1415612b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6c90613c9e565b60405180910390fd5b600480811115612b8857612b8761431c565b5b816004811115612b9b57612b9a61431c565b5b1415612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd390613d7e565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4790613d9e565b60405180910390fd5b612c5981611e3b565b15612c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9090613c1e565b60405180910390fd5b612ca56000838361276a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cf59190613fc7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612dfc576000600391509150612ec5565b601b8560ff1614158015612e145750601c8560ff1614155b15612e26576000600491509150612ec5565b600060018787878760405160008152602001604052604051612e4b9493929190613b17565b6020604051602081039080840390855afa158015612e6d573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ebc57600060019250925050612ec5565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612f0e87828885612dc1565b935093505050935093915050565b828054612f28906141a9565b90600052602060002090601f016020900481019282612f4a5760008555612f91565b82601f10612f6357803560ff1916838001178555612f91565b82800160010185558215612f91579182015b82811115612f90578235825591602001919060010190612f75565b5b509050612f9e9190612fa2565b5090565b5b80821115612fbb576000816000905550600101612fa3565b5090565b6000612fd2612fcd84613f3e565b613f19565b905082815260208101848484011115612fee57612fed6143e7565b5b612ff9848285614167565b509392505050565b60008135905061301081614ad0565b92915050565b60008135905061302581614ae7565b92915050565b60008135905061303a81614afe565b92915050565b60008151905061304f81614afe565b92915050565b600082601f83011261306a576130696143dd565b5b813561307a848260208601612fbf565b91505092915050565b60008083601f840112613099576130986143dd565b5b8235905067ffffffffffffffff8111156130b6576130b56143d8565b5b6020830191508360018202830111156130d2576130d16143e2565b5b9250929050565b6000813590506130e881614b15565b92915050565b600060208284031215613104576131036143f1565b5b600061311284828501613001565b91505092915050565b60008060408385031215613132576131316143f1565b5b600061314085828601613001565b925050602061315185828601613001565b9150509250929050565b600080600060608486031215613174576131736143f1565b5b600061318286828701613001565b935050602061319386828701613001565b92505060406131a4868287016130d9565b9150509250925092565b600080600080608085870312156131c8576131c76143f1565b5b60006131d687828801613001565b94505060206131e787828801613001565b93505060406131f8878288016130d9565b925050606085013567ffffffffffffffff811115613219576132186143ec565b5b61322587828801613055565b91505092959194509250565b60008060408385031215613248576132476143f1565b5b600061325685828601613001565b925050602061326785828601613016565b9150509250929050565b60008060408385031215613288576132876143f1565b5b600061329685828601613001565b92505060206132a7858286016130d9565b9150509250929050565b6000602082840312156132c7576132c66143f1565b5b60006132d58482850161302b565b91505092915050565b6000602082840312156132f4576132f36143f1565b5b600061330284828501613040565b91505092915050565b60008060208385031215613322576133216143f1565b5b600083013567ffffffffffffffff8111156133405761333f6143ec565b5b61334c85828601613083565b92509250509250929050565b60006020828403121561336e5761336d6143f1565b5b600061337c848285016130d9565b91505092915050565b6000806040838503121561339c5761339b6143f1565b5b60006133aa858286016130d9565b92505060206133bb85828601613001565b9150509250929050565b600080600080608085870312156133df576133de6143f1565b5b60006133ed878288016130d9565b94505060206133fe878288016130d9565b935050604061340f87828801613001565b925050606085013567ffffffffffffffff8111156134305761342f6143ec565b5b61343c87828801613055565b91505092959194509250565b613451816140dc565b82525050565b613468613463826140dc565b614255565b82525050565b613477816140ee565b82525050565b613486816140fa565b82525050565b61349d613498826140fa565b614267565b82525050565b60006134ae82613f84565b6134b88185613f9a565b93506134c8818560208601614176565b6134d1816143f6565b840191505092915050565b60006134e782613f8f565b6134f18185613fab565b9350613501818560208601614176565b61350a816143f6565b840191505092915050565b600061352082613f8f565b61352a8185613fbc565b935061353a818560208601614176565b80840191505092915050565b60008154613553816141a9565b61355d8186613fbc565b945060018216600081146135785760018114613589576135bc565b60ff198316865281860193506135bc565b61359285613f6f565b60005b838110156135b457815481890152600182019150602081019050613595565b838801955050505b50505092915050565b60006135d2601883613fab565b91506135dd82614414565b602082019050919050565b60006135f5601f83613fab565b91506136008261443d565b602082019050919050565b6000613618601c83613fbc565b915061362382614466565b601c82019050919050565b600061363b603283613fab565b91506136468261448f565b604082019050919050565b600061365e602683613fab565b9150613669826144de565b604082019050919050565b6000613681600c83613fab565b915061368c8261452d565b602082019050919050565b60006136a4601c83613fab565b91506136af82614556565b602082019050919050565b60006136c7602483613fab565b91506136d28261457f565b604082019050919050565b60006136ea601983613fab565b91506136f5826145ce565b602082019050919050565b600061370d600c83613fab565b9150613718826145f7565b602082019050919050565b6000613730602283613fab565b915061373b82614620565b604082019050919050565b6000613753600b83613fab565b915061375e8261466f565b602082019050919050565b6000613776602c83613fab565b915061378182614698565b604082019050919050565b6000613799603883613fab565b91506137a4826146e7565b604082019050919050565b60006137bc602a83613fab565b91506137c782614736565b604082019050919050565b60006137df602983613fab565b91506137ea82614785565b604082019050919050565b6000613802601283613fab565b915061380d826147d4565b602082019050919050565b6000613825602283613fab565b9150613830826147fd565b604082019050919050565b6000613848602083613fab565b91506138538261484c565b602082019050919050565b600061386b602c83613fab565b915061387682614875565b604082019050919050565b600061388e600583613fbc565b9150613899826148c4565b600582019050919050565b60006138b1602083613fab565b91506138bc826148ed565b602082019050919050565b60006138d4602983613fab565b91506138df82614916565b604082019050919050565b60006138f7601f83613fab565b915061390282614965565b602082019050919050565b600061391a602183613fab565b91506139258261498e565b604082019050919050565b600061393d601383613fab565b9150613948826149dd565b602082019050919050565b6000613960603183613fab565b915061396b82614a06565b604082019050919050565b6000613983601483613fab565b915061398e82614a55565b602082019050919050565b60006139a6601083613fab565b91506139b182614a7e565b602082019050919050565b60006139c9600e83613fab565b91506139d482614aa7565b602082019050919050565b6139e881614150565b82525050565b6139ff6139fa82614150565b614283565b82525050565b613a0e8161415a565b82525050565b6000613a208285613546565b9150613a2c8284613515565b9150613a3782613881565b91508190509392505050565b6000613a4e8261360b565b9150613a5a828461348c565b60208201915081905092915050565b6000613a7582856139ee565b602082019150613a858284613457565b6014820191508190509392505050565b6000602082019050613aaa6000830184613448565b92915050565b6000608082019050613ac56000830187613448565b613ad26020830186613448565b613adf60408301856139df565b8181036060830152613af181846134a3565b905095945050505050565b6000602082019050613b11600083018461346e565b92915050565b6000608082019050613b2c600083018761347d565b613b396020830186613a05565b613b46604083018561347d565b613b53606083018461347d565b95945050505050565b60006020820190508181036000830152613b7681846134dc565b905092915050565b60006020820190508181036000830152613b97816135c5565b9050919050565b60006020820190508181036000830152613bb7816135e8565b9050919050565b60006020820190508181036000830152613bd78161362e565b9050919050565b60006020820190508181036000830152613bf781613651565b9050919050565b60006020820190508181036000830152613c1781613674565b9050919050565b60006020820190508181036000830152613c3781613697565b9050919050565b60006020820190508181036000830152613c57816136ba565b9050919050565b60006020820190508181036000830152613c77816136dd565b9050919050565b60006020820190508181036000830152613c9781613700565b9050919050565b60006020820190508181036000830152613cb781613723565b9050919050565b60006020820190508181036000830152613cd781613746565b9050919050565b60006020820190508181036000830152613cf781613769565b9050919050565b60006020820190508181036000830152613d178161378c565b9050919050565b60006020820190508181036000830152613d37816137af565b9050919050565b60006020820190508181036000830152613d57816137d2565b9050919050565b60006020820190508181036000830152613d77816137f5565b9050919050565b60006020820190508181036000830152613d9781613818565b9050919050565b60006020820190508181036000830152613db78161383b565b9050919050565b60006020820190508181036000830152613dd78161385e565b9050919050565b60006020820190508181036000830152613df7816138a4565b9050919050565b60006020820190508181036000830152613e17816138c7565b9050919050565b60006020820190508181036000830152613e37816138ea565b9050919050565b60006020820190508181036000830152613e578161390d565b9050919050565b60006020820190508181036000830152613e7781613930565b9050919050565b60006020820190508181036000830152613e9781613953565b9050919050565b60006020820190508181036000830152613eb781613976565b9050919050565b60006020820190508181036000830152613ed781613999565b9050919050565b60006020820190508181036000830152613ef7816139bc565b9050919050565b6000602082019050613f1360008301846139df565b92915050565b6000613f23613f34565b9050613f2f82826141db565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5957613f586143a9565b5b613f62826143f6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fd282614150565b9150613fdd83614150565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614012576140116142be565b5b828201905092915050565b600061402882614150565b915061403383614150565b925082614043576140426142ed565b5b828204905092915050565b600061405982614150565b915061406483614150565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561409d5761409c6142be565b5b828202905092915050565b60006140b382614150565b91506140be83614150565b9250828210156140d1576140d06142be565b5b828203905092915050565b60006140e782614130565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614194578082015181840152602081019050614179565b838111156141a3576000848401525b50505050565b600060028204905060018216806141c157607f821691505b602082108114156141d5576141d461434b565b5b50919050565b6141e4826143f6565b810181811067ffffffffffffffff82111715614203576142026143a9565b5b80604052505050565b600061421782614150565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561424a576142496142be565b5b600182019050919050565b600061426082614271565b9050919050565b6000819050919050565b600061427c82614407565b9050919050565b6000819050919050565b600061429882614150565b91506142a383614150565b9250826142b3576142b26142ed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e4f4e43455f414c52454144595f555345440000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f545f414c4c4f5745445f544f5f4d494e5400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b614ad9816140dc565b8114614ae457600080fd5b50565b614af0816140ee565b8114614afb57600080fd5b50565b614b0781614104565b8114614b1257600080fd5b50565b614b1e81614150565b8114614b2957600080fd5b5056fea2646970667358221220394c35445b385f24e5aa6135f77e4c71a61125a9ca0639259ff8101d47dcc68b64736f6c63430008060033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.