ERC-721
NFT
Overview
Max Total Supply
10,000 CATS
Holders
4,117
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 CATSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PopArtCats
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.7; library Address { function isContract(address account) internal view returns (bool) { uint size; assembly { size := extcodesize(account) } return size > 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); } } /** * @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); } /** * @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); } /** * @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; } } /** * @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; } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @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); } /** * @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; } } abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; // Mapping from token ID to owner address address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; 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 (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ) ++count; } return count; } /** * @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 {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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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 tokenId < _owners.length && _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); _owners.push(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); _owners[tokenId] = address(0); 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); _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 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 {} } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } } /** * @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); } } /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } /** * @dev Huge shout out to @nftchance for the optimized ERC721Enumerable implementation * https://etherscan.io/address/0x0f78c6eee3c89ff37fd9ef96bd685830993636f2#code */ contract PopArtCats is ERC721Enumerable, Ownable { bytes32 public merkleRoot; bool public revealed; bool public whitelistActive; string public baseURI; string public extension; uint256 public MAX_SUPPLY; uint256 public MAX_PER_WALLET; uint256 public MAX_WHITELIST; uint256 public RESERVES; uint256 public MAX_PER_TX; uint256 public priceInWei; uint256 public priceWhitelist; mapping(address => uint) public addressToMinted; bool public paused; address payable commissions = payable(0xE7229E461FD342899e7e1659E3ecA9F0E4f6FB08); constructor( string memory _baseURI ) ERC721("Pop Art Cats", "CATS") { baseURI = _baseURI; priceInWei = 0.18 ether; priceWhitelist = 0.09 ether; MAX_SUPPLY = 10000; MAX_PER_WALLET = 10; MAX_WHITELIST = 3; MAX_PER_TX = 10; RESERVES = 200; revealed = false; whitelistActive = true; paused = true; extension = ".json"; } function setPriceInWei(uint256 _price) public onlyOwner { priceInWei = _price; } function setPriceWhitelist(uint256 _price) public onlyOwner { priceWhitelist = _price; } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function setExtension(string memory _extension) public onlyOwner { extension = _extension; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token."); return revealed ? (bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(_tokenId + 1), extension)) : "") : string(abi.encodePacked(baseURI)); } function collectReserves() external onlyOwner { uint256 totalSupply = _owners.length; require(totalSupply + RESERVES <= MAX_SUPPLY, "Exceeds max supply."); for(uint256 i; i < RESERVES; i++) _mint(_msgSender(), i); } function reveal(string memory revealedURI) external onlyOwner { require(!revealed, "Already revealed."); baseURI = revealedURI; revealed = true; } function setWhitelistActive(bool _whitelistActive) external onlyOwner { whitelistActive = _whitelistActive; } function pause(bool _state) external onlyOwner { paused = _state; } function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { merkleRoot = _whitelistMerkleRoot; } function _leaf(address account, uint256 dummy) internal pure returns (bytes32) { return keccak256(abi.encodePacked(dummy, account)); } function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, merkleRoot, leaf); } function whitelistMint(uint256 count, uint256 dummy, bytes32[] calldata proof) public payable { uint256 totalSupply = _owners.length; require(!paused, "Contract is paused."); require(whitelistActive, "Whitelist sale is over."); require(totalSupply + count <= MAX_SUPPLY, "Exceeds max supply."); require(addressToMinted[_msgSender()] + count <= MAX_WHITELIST, "Exceeds max per whitelist."); require(_verify(_leaf(_msgSender(), dummy), proof), "Invalid Merkle Tree proof supplied."); require(count * priceWhitelist == msg.value, "Invalid funds provided."); addressToMinted[_msgSender()] += count; for(uint i; i < count; i++) { _mint(_msgSender(), totalSupply + i); } } function mint(uint256 count) public payable { uint256 totalSupply = _owners.length; require(!paused, "Contract is paused."); require(!whitelistActive, "Presale is not over yet."); require(totalSupply + count <= MAX_SUPPLY, "Exceeds max supply."); require(count <= MAX_PER_TX, "Exceeds max per transaction."); require(addressToMinted[_msgSender()] + count <= MAX_PER_WALLET, "Exceeds max per wallet."); require(count * priceInWei == msg.value, "Invalid funds provided."); addressToMinted[_msgSender()] += count; for(uint i; i < count; i++) { _mint(_msgSender(), totalSupply + i); } (bool success, ) = payable(commissions).call{value: msg.value * 5 / 1000}(""); require(success); } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) return new uint256[](0); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public { for (uint256 i = 0; i < _tokenIds.length; i++) { transferFrom(_from, _to, _tokenIds[i]); } } function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public { for (uint256 i = 0; i < _tokenIds.length; i++) { safeTransferFrom(_from, _to, _tokenIds[i], data_); } } function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool){ for(uint256 i; i < _tokenIds.length; ++i ){ if(_owners[_tokenIds[i]] != account) return false; } return true; } function setMaxWhitelist(uint256 _max_whitelist) public onlyOwner { MAX_WHITELIST = _max_whitelist; } function setMaxPerWallet(uint256 _max_per_wallet) public onlyOwner { MAX_PER_WALLET = _max_per_wallet; } function setMaxPerTx(uint256 _max_per_tx) public onlyOwner { MAX_PER_TX = _max_per_tx; } function _mint(address to, uint256 tokenId) internal virtual override { _owners.push(to); emit Transfer(address(0), to, tokenId); } }
{ "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":[{"internalType":"string","name":"_baseURI","type":"string"}],"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":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"extension","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedURI","type":"string"}],"name":"reveal","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_extension","type":"string"}],"name":"setExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_tx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_wallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_whitelist","type":"uint256"}],"name":"setMaxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceInWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistActive","type":"bool"}],"name":"setWhitelistActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint256","name":"dummy","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405273e7229e461fd342899e7e1659e3eca9f0e4f6fb08601260016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b5060405162005c0b38038062005c0b83398181016040528101906200008c91906200044e565b6040518060400160405280600c81526020017f506f7020417274204361747300000000000000000000000000000000000000008152506040518060400160405280600481526020017f434154530000000000000000000000000000000000000000000000000000000081525081600090805190602001906200011092919062000320565b5080600190805190602001906200012992919062000320565b5050506200014c620001406200025260201b60201c565b6200025a60201b60201c565b80600890805190602001906200016492919062000320565b5067027f7d0bdb920000600f8190555067013fbe85edc90000601081905550612710600a81905550600a600b819055506003600c81905550600a600e8190555060c8600d819055506000600760006101000a81548160ff0219169083151502179055506001600760016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200024a92919062000320565b505062000623565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200032e9062000534565b90600052602060002090601f0160209004810192826200035257600085556200039e565b82601f106200036d57805160ff19168380011785556200039e565b828001600101855582156200039e579182015b828111156200039d57825182559160200191906001019062000380565b5b509050620003ad9190620003b1565b5090565b5b80821115620003cc576000816000905550600101620003b2565b5090565b6000620003e7620003e184620004c8565b6200049f565b90508281526020810184848401111562000406576200040562000603565b5b62000413848285620004fe565b509392505050565b600082601f830112620004335762000432620005fe565b5b815162000445848260208601620003d0565b91505092915050565b6000602082840312156200046757620004666200060d565b5b600082015167ffffffffffffffff81111562000488576200048762000608565b5b62000496848285016200041b565b91505092915050565b6000620004ab620004be565b9050620004b982826200056a565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e657620004e5620005cf565b5b620004f18262000612565b9050602081019050919050565b60005b838110156200051e57808201518184015260208101905062000501565b838111156200052e576000848401525b50505050565b600060028204905060018216806200054d57607f821691505b60208210811415620005645762000563620005a0565b5b50919050565b620005758262000612565b810181811067ffffffffffffffff82111715620005975762000596620005cf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6155d880620006336000396000f3fe6080604052600436106102ff5760003560e01c80635c975abb11610190578063a22cb465116100dc578063c6f6f21611610095578063e985e9c51161006f578063e985e9c514610b3f578063f2fde38b14610b7c578063f3993d1114610ba5578063f43a22dc14610bce576102ff565b8063c6f6f21614610ab0578063c87b56dd14610ad9578063e268e4d314610b16576102ff565b8063a22cb465146109c7578063b88d4fde146109f0578063b95f8b5f14610a19578063bd32fb6614610a42578063c3b754dc14610a6b578063c4be5b5914610a94576102ff565b80637e2285aa1161014957806395d89b411161012357806395d89b411461091857806395f61c48146109435780639ec00c951461096e578063a0712d68146109ab576102ff565b80637e2285aa1461089b5780638774e5d0146108c45780638da5cb5b146108ed576102ff565b80635c975abb1461078b5780636352211e146107b65780636c0360eb146107f357806370a082311461081e578063715018a61461085b57806372d9eb1e14610872576102ff565b80632f745c591161024f578063438b6300116102085780634f6ccce7116101e25780634f6ccce7146106d1578063518302271461070e57806355f804b3146107395780635a4fee3014610762576102ff565b8063438b63001461062e5780634c2612471461066b5780634d44660c14610694576102ff565b80632f745c591461053d5780632fff17961461057a57806332cb6b0c146105a55780633c8da588146105d05780633ccfd60b146105fb57806342842e0e14610605576102ff565b80630922f9c5116102bc57806318160ddd1161029657806318160ddd1461049357806323b872dd146104be5780632d5537b0146104e75780632eb4a7ab14610512576102ff565b80630922f9c514610414578063095ea7b31461043f5780630f2cdd6c14610468576102ff565b806301ffc9a71461030457806302329a2914610341578063029877b61461036a57806302ce58131461038157806306fdde03146103ac578063081812fc146103d7575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613d5a565b610bf9565b60405161033891906145b5565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613d00565b610c73565b005b34801561037657600080fd5b5061037f610d0c565b005b34801561038d57600080fd5b50610396610e19565b6040516103a391906145b5565b60405180910390f35b3480156103b857600080fd5b506103c1610e2c565b6040516103ce91906145eb565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613dfd565b610ebe565b60405161040b919061452c565b60405180910390f35b34801561042057600080fd5b50610429610f43565b604051610436919061494d565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613cc0565b610f49565b005b34801561047457600080fd5b5061047d611061565b60405161048a919061494d565b60405180910390f35b34801561049f57600080fd5b506104a8611067565b6040516104b5919061494d565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190613b4a565b611074565b005b3480156104f357600080fd5b506104fc6110d4565b60405161050991906145eb565b60405180910390f35b34801561051e57600080fd5b50610527611162565b60405161053491906145d0565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613cc0565b611168565b604051610571919061494d565b60405180910390f35b34801561058657600080fd5b5061058f6112ad565b60405161059c919061494d565b60405180910390f35b3480156105b157600080fd5b506105ba6112b3565b6040516105c7919061494d565b60405180910390f35b3480156105dc57600080fd5b506105e56112b9565b6040516105f2919061494d565b60405180910390f35b6106036112bf565b005b34801561061157600080fd5b5061062c60048036038101906106279190613b4a565b6113b4565b005b34801561063a57600080fd5b50610655600480360381019061065091906139cf565b6113d4565b6040516106629190614593565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613db4565b6114de565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613c20565b6115df565b6040516106c891906145b5565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190613dfd565b6116a0565b604051610705919061494d565b60405180910390f35b34801561071a57600080fd5b506107236116f1565b60405161073091906145b5565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613db4565b611704565b005b34801561076e57600080fd5b5061078960048036038101906107849190613aab565b61179a565b005b34801561079757600080fd5b506107a06117e6565b6040516107ad91906145b5565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613dfd565b6117f9565b6040516107ea919061452c565b60405180910390f35b3480156107ff57600080fd5b506108086118b6565b60405161081591906145eb565b60405180910390f35b34801561082a57600080fd5b50610845600480360381019061084091906139cf565b611944565b604051610852919061494d565b60405180910390f35b34801561086757600080fd5b50610870611a60565b005b34801561087e57600080fd5b5061089960048036038101906108949190613dfd565b611ae8565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190613db4565b611b6e565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613dfd565b611c04565b005b3480156108f957600080fd5b50610902611c8a565b60405161090f919061452c565b60405180910390f35b34801561092457600080fd5b5061092d611cb4565b60405161093a91906145eb565b60405180910390f35b34801561094f57600080fd5b50610958611d46565b604051610965919061494d565b60405180910390f35b34801561097a57600080fd5b50610995600480360381019061099091906139cf565b611d4c565b6040516109a2919061494d565b60405180910390f35b6109c560048036038101906109c09190613dfd565b611d64565b005b3480156109d357600080fd5b506109ee60048036038101906109e99190613c80565b6120d6565b005b3480156109fc57600080fd5b50610a176004803603810190610a129190613b9d565b612257565b005b348015610a2557600080fd5b50610a406004803603810190610a3b9190613dfd565b6122b9565b005b348015610a4e57600080fd5b50610a696004803603810190610a649190613d2d565b61233f565b005b348015610a7757600080fd5b50610a926004803603810190610a8d9190613d00565b6123c5565b005b610aae6004803603810190610aa99190613e2a565b61245e565b005b348015610abc57600080fd5b50610ad76004803603810190610ad29190613dfd565b612775565b005b348015610ae557600080fd5b50610b006004803603810190610afb9190613dfd565b6127fb565b604051610b0d91906145eb565b60405180910390f35b348015610b2257600080fd5b50610b3d6004803603810190610b389190613dfd565b6128ed565b005b348015610b4b57600080fd5b50610b666004803603810190610b6191906139fc565b612973565b604051610b7391906145b5565b60405180910390f35b348015610b8857600080fd5b50610ba36004803603810190610b9e91906139cf565b612a07565b005b348015610bb157600080fd5b50610bcc6004803603810190610bc79190613a3c565b612aff565b005b348015610bda57600080fd5b50610be3612b49565b604051610bf0919061494d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c6c5750610c6b82612b4f565b5b9050919050565b610c7b612c31565b73ffffffffffffffffffffffffffffffffffffffff16610c99611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce6906147ed565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b610d14612c31565b73ffffffffffffffffffffffffffffffffffffffff16610d32611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f906147ed565b60405180910390fd5b60006002805490509050600a54600d5482610da39190614ab7565b1115610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb9061482d565b60405180910390fd5b60005b600d54811015610e1557610e02610dfc612c31565b82612c39565b8080610e0d90614cef565b915050610de7565b5050565b600760019054906101000a900460ff1681565b606060008054610e3b90614c8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6790614c8c565b8015610eb45780601f10610e8957610100808354040283529160200191610eb4565b820191906000526020600020905b815481529060010190602001808311610e9757829003601f168201915b5050505050905090565b6000610ec982612cfc565b610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff906147cd565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d5481565b6000610f54826117f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061486d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fe4612c31565b73ffffffffffffffffffffffffffffffffffffffff16148061101357506110128161100d612c31565b612973565b5b611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061472d565b60405180910390fd5b61105c8383612d84565b505050565b600b5481565b6000600280549050905090565b61108561107f612c31565b82612e3d565b6110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061488d565b60405180910390fd5b6110cf838383612f1b565b505050565b600980546110e190614c8c565b80601f016020809104026020016040519081016040528092919081815260200182805461110d90614c8c565b801561115a5780601f1061112f5761010080835404028352916020019161115a565b820191906000526020600020905b81548152906001019060200180831161113d57829003601f168201915b505050505081565b60065481565b600061117383611944565b82106111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab9061462d565b60405180910390fd5b6000805b60028054905081101561126b57600281815481106111d9576111d8614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561125857838214156112495780925050506112a7565b818061125490614cef565b9250505b808061126390614cef565b9150506111b8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e9061462d565b60405180910390fd5b92915050565b60105481565b600a5481565b600f5481565b6112c7612c31565b73ffffffffffffffffffffffffffffffffffffffff166112e5611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611332906147ed565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611361906144eb565b60006040518083038185875af1925050503d806000811461139e576040519150601f19603f3d011682016040523d82523d6000602084013e6113a3565b606091505b50509050806113b157600080fd5b50565b6113cf83838360405180602001604052806000815250612257565b505050565b606060006113e183611944565b9050600081141561143e57600067ffffffffffffffff81111561140757611406614e5d565b5b6040519080825280602002602001820160405280156114355781602001602082028036833780820191505090505b509150506114d9565b60008167ffffffffffffffff81111561145a57611459614e5d565b5b6040519080825280602002602001820160405280156114885781602001602082028036833780820191505090505b50905060005b828110156114d2576114a08582611168565b8282815181106114b3576114b2614e2e565b5b60200260200101818152505080806114ca90614cef565b91505061148e565b5080925050505b919050565b6114e6612c31565b73ffffffffffffffffffffffffffffffffffffffff16611504611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611551906147ed565b60405180910390fd5b600760009054906101000a900460ff16156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a19061468d565b60405180910390fd5b80600890805190602001906115c0929190613684565b506001600760006101000a81548160ff02191690831515021790555050565b6000805b83839050811015611693578473ffffffffffffffffffffffffffffffffffffffff16600285858481811061161a57611619614e2e565b5b905060200201358154811061163257611631614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611682576000915050611699565b8061168c90614cef565b90506115e3565b50600190505b9392505050565b600060028054905082106116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e0906148cd565b60405180910390fd5b819050919050565b600760009054906101000a900460ff1681565b61170c612c31565b73ffffffffffffffffffffffffffffffffffffffff1661172a611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611777906147ed565b60405180910390fd5b8060089080519060200190611796929190613684565b5050565b60005b82518110156117df576117cc85858584815181106117be576117bd614e2e565b5b602002602001015185612257565b80806117d790614cef565b91505061179d565b5050505050565b601260009054906101000a900460ff1681565b600080600283815481106118105761180f614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a49061478d565b60405180910390fd5b80915050919050565b600880546118c390614c8c565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90614c8c565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac9061476d565b60405180910390fd5b6000805b600280549050811015611a5657600281815481106119da576119d9614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a455781611a4290614cef565b91505b80611a4f90614cef565b90506119b9565b5080915050919050565b611a68612c31565b73ffffffffffffffffffffffffffffffffffffffff16611a86611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad3906147ed565b60405180910390fd5b611ae660006130d4565b565b611af0612c31565b73ffffffffffffffffffffffffffffffffffffffff16611b0e611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b906147ed565b60405180910390fd5b80600c8190555050565b611b76612c31565b73ffffffffffffffffffffffffffffffffffffffff16611b94611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be1906147ed565b60405180910390fd5b8060099080519060200190611c00929190613684565b5050565b611c0c612c31565b73ffffffffffffffffffffffffffffffffffffffff16611c2a611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906147ed565b60405180910390fd5b80600f8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611cc390614c8c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cef90614c8c565b8015611d3c5780601f10611d1157610100808354040283529160200191611d3c565b820191906000526020600020905b815481529060010190602001808311611d1f57829003601f168201915b5050505050905090565b600c5481565b60116020528060005260406000206000915090505481565b60006002805490509050601260009054906101000a900460ff1615611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db5906148ed565b60405180910390fd5b600760019054906101000a900460ff1615611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e059061474d565b60405180910390fd5b600a548282611e1d9190614ab7565b1115611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e559061482d565b60405180910390fd5b600e54821115611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a906148ad565b60405180910390fd5b600b548260116000611eb3612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef89190614ab7565b1115611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f30906146ad565b60405180910390fd5b34600f5483611f489190614b3e565b14611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906147ad565b60405180910390fd5b8160116000611f95612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fde9190614ab7565b9250508190555060005b8281101561201f5761200c611ffb612c31565b82846120079190614ab7565b612c39565b808061201790614cef565b915050611fe8565b506000601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e860053461206b9190614b3e565b6120759190614b0d565b604051612081906144eb565b60006040518083038185875af1925050503d80600081146120be576040519150601f19603f3d011682016040523d82523d6000602084013e6120c3565b606091505b50509050806120d157600080fd5b505050565b6120de612c31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561214c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612143906146ed565b60405180910390fd5b8060046000612159612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612206612c31565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161224b91906145b5565b60405180910390a35050565b612268612262612c31565b83612e3d565b6122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e9061488d565b60405180910390fd5b6122b38484848461319a565b50505050565b6122c1612c31565b73ffffffffffffffffffffffffffffffffffffffff166122df611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c906147ed565b60405180910390fd5b8060108190555050565b612347612c31565b73ffffffffffffffffffffffffffffffffffffffff16612365611c8a565b73ffffffffffffffffffffffffffffffffffffffff16146123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b2906147ed565b60405180910390fd5b8060068190555050565b6123cd612c31565b73ffffffffffffffffffffffffffffffffffffffff166123eb611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612438906147ed565b60405180910390fd5b80600760016101000a81548160ff02191690831515021790555050565b60006002805490509050601260009054906101000a900460ff16156124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af906148ed565b60405180910390fd5b600760019054906101000a900460ff16612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe9061484d565b60405180910390fd5b600a5485826125169190614ab7565b1115612557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254e9061482d565b60405180910390fd5b600c548560116000612567612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ac9190614ab7565b11156125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e49061492d565b60405180910390fd5b6126486126016125fb612c31565b866131f6565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613229565b612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e9061460d565b60405180910390fd5b34601054866126969190614b3e565b146126d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cd906147ad565b60405180910390fd5b84601160006126e3612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461272c9190614ab7565b9250508190555060005b8581101561276d5761275a612749612c31565b82846127559190614ab7565b612c39565b808061276590614cef565b915050612736565b505050505050565b61277d612c31565b73ffffffffffffffffffffffffffffffffffffffff1661279b611c8a565b73ffffffffffffffffffffffffffffffffffffffff16146127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e8906147ed565b60405180910390fd5b80600e8190555050565b606061280682612cfc565b612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c9061490d565b60405180910390fd5b600760009054906101000a900460ff1661287f57600860405160200161286b91906144a3565b6040516020818303038152906040526128e6565b60006008805461288e90614c8c565b9050116128aa57604051806020016040528060008152506128e5565b60086128c16001846128bc9190614ab7565b613240565b60096040516020016128d5939291906144ba565b6040516020818303038152906040525b5b9050919050565b6128f5612c31565b73ffffffffffffffffffffffffffffffffffffffff16612913611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612960906147ed565b60405180910390fd5b80600b8190555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a0f612c31565b73ffffffffffffffffffffffffffffffffffffffff16612a2d611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7a906147ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aea9061466d565b60405180910390fd5b612afc816130d4565b50565b60005b8151811015612b4357612b308484848481518110612b2357612b22614e2e565b5b6020026020010151611074565b8080612b3b90614cef565b915050612b02565b50505050565b600e5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c1a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c2a5750612c29826133a1565b5b9050919050565b600033905090565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600060028054905082108015612d7d5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612d3957612d38614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612df7836117f9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e4882612cfc565b612e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7e9061470d565b60405180910390fd5b6000612e92836117f9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f0157508373ffffffffffffffffffffffffffffffffffffffff16612ee984610ebe565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f125750612f118185612973565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f3b826117f9565b73ffffffffffffffffffffffffffffffffffffffff1614612f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f889061480d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff8906146cd565b60405180910390fd5b61300c83838361340b565b613017600082612d84565b816002828154811061302c5761302b614e2e565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131a5848484612f1b565b6131b184848484613410565b6131f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e79061464d565b60405180910390fd5b50505050565b6000818360405160200161320b929190614500565b60405160208183030381529060405280519060200120905092915050565b600061323882600654856135a7565b905092915050565b60606000821415613288576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061339c565b600082905060005b600082146132ba5780806132a390614cef565b915050600a826132b39190614b0d565b9150613290565b60008167ffffffffffffffff8111156132d6576132d5614e5d565b5b6040519080825280601f01601f1916602001820160405280156133085781602001600182028036833780820191505090505b5090505b60008514613395576001826133219190614b98565b9150600a856133309190614d70565b603061333c9190614ab7565b60f81b81838151811061335257613351614e2e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561338e9190614b0d565b945061330c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60006134318473ffffffffffffffffffffffffffffffffffffffff166135be565b1561359a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261345a612c31565b8786866040518563ffffffff1660e01b815260040161347c9493929190614547565b602060405180830381600087803b15801561349657600080fd5b505af19250505080156134c757506040513d601f19601f820116820180604052508101906134c49190613d87565b60015b61354a573d80600081146134f7576040519150601f19603f3d011682016040523d82523d6000602084013e6134fc565b606091505b50600081511415613542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135399061464d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061359f565b600190505b949350505050565b6000826135b485846135d1565b1490509392505050565b600080823b905060008111915050919050565b60008082905060005b84518110156136795760008582815181106135f8576135f7614e2e565b5b6020026020010151905080831161363957828160405160200161361c929190614477565b604051602081830303815290604052805190602001209250613665565b808360405160200161364c929190614477565b6040516020818303038152906040528051906020012092505b50808061367190614cef565b9150506135da565b508091505092915050565b82805461369090614c8c565b90600052602060002090601f0160209004810192826136b257600085556136f9565b82601f106136cb57805160ff19168380011785556136f9565b828001600101855582156136f9579182015b828111156136f85782518255916020019190600101906136dd565b5b509050613706919061370a565b5090565b5b8082111561372357600081600090555060010161370b565b5090565b600061373a6137358461498d565b614968565b9050808382526020820190508285602086028201111561375d5761375c614e96565b5b60005b8581101561378d578161377388826139ba565b845260208401935060208301925050600181019050613760565b5050509392505050565b60006137aa6137a5846149b9565b614968565b9050828152602081018484840111156137c6576137c5614e9b565b5b6137d1848285614c4a565b509392505050565b60006137ec6137e7846149ea565b614968565b90508281526020810184848401111561380857613807614e9b565b5b613813848285614c4a565b509392505050565b60008135905061382a8161552f565b92915050565b60008083601f84011261384657613845614e91565b5b8235905067ffffffffffffffff81111561386357613862614e8c565b5b60208301915083602082028301111561387f5761387e614e96565b5b9250929050565b60008083601f84011261389c5761389b614e91565b5b8235905067ffffffffffffffff8111156138b9576138b8614e8c565b5b6020830191508360208202830111156138d5576138d4614e96565b5b9250929050565b600082601f8301126138f1576138f0614e91565b5b8135613901848260208601613727565b91505092915050565b60008135905061391981615546565b92915050565b60008135905061392e8161555d565b92915050565b60008135905061394381615574565b92915050565b60008151905061395881615574565b92915050565b600082601f83011261397357613972614e91565b5b8135613983848260208601613797565b91505092915050565b600082601f8301126139a1576139a0614e91565b5b81356139b18482602086016137d9565b91505092915050565b6000813590506139c98161558b565b92915050565b6000602082840312156139e5576139e4614ea5565b5b60006139f38482850161381b565b91505092915050565b60008060408385031215613a1357613a12614ea5565b5b6000613a218582860161381b565b9250506020613a328582860161381b565b9150509250929050565b600080600060608486031215613a5557613a54614ea5565b5b6000613a638682870161381b565b9350506020613a748682870161381b565b925050604084013567ffffffffffffffff811115613a9557613a94614ea0565b5b613aa1868287016138dc565b9150509250925092565b60008060008060808587031215613ac557613ac4614ea5565b5b6000613ad38782880161381b565b9450506020613ae48782880161381b565b935050604085013567ffffffffffffffff811115613b0557613b04614ea0565b5b613b11878288016138dc565b925050606085013567ffffffffffffffff811115613b3257613b31614ea0565b5b613b3e8782880161395e565b91505092959194509250565b600080600060608486031215613b6357613b62614ea5565b5b6000613b718682870161381b565b9350506020613b828682870161381b565b9250506040613b93868287016139ba565b9150509250925092565b60008060008060808587031215613bb757613bb6614ea5565b5b6000613bc58782880161381b565b9450506020613bd68782880161381b565b9350506040613be7878288016139ba565b925050606085013567ffffffffffffffff811115613c0857613c07614ea0565b5b613c148782880161395e565b91505092959194509250565b600080600060408486031215613c3957613c38614ea5565b5b6000613c478682870161381b565b935050602084013567ffffffffffffffff811115613c6857613c67614ea0565b5b613c7486828701613886565b92509250509250925092565b60008060408385031215613c9757613c96614ea5565b5b6000613ca58582860161381b565b9250506020613cb68582860161390a565b9150509250929050565b60008060408385031215613cd757613cd6614ea5565b5b6000613ce58582860161381b565b9250506020613cf6858286016139ba565b9150509250929050565b600060208284031215613d1657613d15614ea5565b5b6000613d248482850161390a565b91505092915050565b600060208284031215613d4357613d42614ea5565b5b6000613d518482850161391f565b91505092915050565b600060208284031215613d7057613d6f614ea5565b5b6000613d7e84828501613934565b91505092915050565b600060208284031215613d9d57613d9c614ea5565b5b6000613dab84828501613949565b91505092915050565b600060208284031215613dca57613dc9614ea5565b5b600082013567ffffffffffffffff811115613de857613de7614ea0565b5b613df48482850161398c565b91505092915050565b600060208284031215613e1357613e12614ea5565b5b6000613e21848285016139ba565b91505092915050565b60008060008060608587031215613e4457613e43614ea5565b5b6000613e52878288016139ba565b9450506020613e63878288016139ba565b935050604085013567ffffffffffffffff811115613e8457613e83614ea0565b5b613e9087828801613830565b925092505092959194509250565b6000613eaa8383614442565b60208301905092915050565b613ebf81614bcc565b82525050565b613ed6613ed182614bcc565b614d38565b82525050565b6000613ee782614a40565b613ef18185614a6e565b9350613efc83614a1b565b8060005b83811015613f2d578151613f148882613e9e565b9750613f1f83614a61565b925050600181019050613f00565b5085935050505092915050565b613f4381614bde565b82525050565b613f5281614bea565b82525050565b613f69613f6482614bea565b614d4a565b82525050565b6000613f7a82614a4b565b613f848185614a7f565b9350613f94818560208601614c59565b613f9d81614eaa565b840191505092915050565b6000613fb382614a56565b613fbd8185614a9b565b9350613fcd818560208601614c59565b613fd681614eaa565b840191505092915050565b6000613fec82614a56565b613ff68185614aac565b9350614006818560208601614c59565b80840191505092915050565b6000815461401f81614c8c565b6140298186614aac565b94506001821660008114614044576001811461405557614088565b60ff19831686528186019350614088565b61405e85614a2b565b60005b8381101561408057815481890152600182019150602081019050614061565b838801955050505b50505092915050565b600061409e602383614a9b565b91506140a982614ec8565b604082019050919050565b60006140c1602b83614a9b565b91506140cc82614f17565b604082019050919050565b60006140e4603283614a9b565b91506140ef82614f66565b604082019050919050565b6000614107602683614a9b565b915061411282614fb5565b604082019050919050565b600061412a601183614a9b565b915061413582615004565b602082019050919050565b600061414d601783614a9b565b91506141588261502d565b602082019050919050565b6000614170602483614a9b565b915061417b82615056565b604082019050919050565b6000614193601983614a9b565b915061419e826150a5565b602082019050919050565b60006141b6602c83614a9b565b91506141c1826150ce565b604082019050919050565b60006141d9603883614a9b565b91506141e48261511d565b604082019050919050565b60006141fc601883614a9b565b91506142078261516c565b602082019050919050565b600061421f602a83614a9b565b915061422a82615195565b604082019050919050565b6000614242602983614a9b565b915061424d826151e4565b604082019050919050565b6000614265601783614a9b565b915061427082615233565b602082019050919050565b6000614288602c83614a9b565b91506142938261525c565b604082019050919050565b60006142ab602083614a9b565b91506142b6826152ab565b602082019050919050565b60006142ce602983614a9b565b91506142d9826152d4565b604082019050919050565b60006142f1601383614a9b565b91506142fc82615323565b602082019050919050565b6000614314601783614a9b565b915061431f8261534c565b602082019050919050565b6000614337602183614a9b565b915061434282615375565b604082019050919050565b600061435a600083614a90565b9150614365826153c4565b600082019050919050565b600061437d603183614a9b565b9150614388826153c7565b604082019050919050565b60006143a0601c83614a9b565b91506143ab82615416565b602082019050919050565b60006143c3602c83614a9b565b91506143ce8261543f565b604082019050919050565b60006143e6601383614a9b565b91506143f18261548e565b602082019050919050565b6000614409603083614a9b565b9150614414826154b7565b604082019050919050565b600061442c601a83614a9b565b915061443782615506565b602082019050919050565b61444b81614c40565b82525050565b61445a81614c40565b82525050565b61447161446c82614c40565b614d66565b82525050565b60006144838285613f58565b6020820191506144938284613f58565b6020820191508190509392505050565b60006144af8284614012565b915081905092915050565b60006144c68286614012565b91506144d28285613fe1565b91506144de8284614012565b9150819050949350505050565b60006144f68261434d565b9150819050919050565b600061450c8285614460565b60208201915061451c8284613ec5565b6014820191508190509392505050565b60006020820190506145416000830184613eb6565b92915050565b600060808201905061455c6000830187613eb6565b6145696020830186613eb6565b6145766040830185614451565b81810360608301526145888184613f6f565b905095945050505050565b600060208201905081810360008301526145ad8184613edc565b905092915050565b60006020820190506145ca6000830184613f3a565b92915050565b60006020820190506145e56000830184613f49565b92915050565b600060208201905081810360008301526146058184613fa8565b905092915050565b6000602082019050818103600083015261462681614091565b9050919050565b60006020820190508181036000830152614646816140b4565b9050919050565b60006020820190508181036000830152614666816140d7565b9050919050565b60006020820190508181036000830152614686816140fa565b9050919050565b600060208201905081810360008301526146a68161411d565b9050919050565b600060208201905081810360008301526146c681614140565b9050919050565b600060208201905081810360008301526146e681614163565b9050919050565b6000602082019050818103600083015261470681614186565b9050919050565b60006020820190508181036000830152614726816141a9565b9050919050565b60006020820190508181036000830152614746816141cc565b9050919050565b60006020820190508181036000830152614766816141ef565b9050919050565b6000602082019050818103600083015261478681614212565b9050919050565b600060208201905081810360008301526147a681614235565b9050919050565b600060208201905081810360008301526147c681614258565b9050919050565b600060208201905081810360008301526147e68161427b565b9050919050565b600060208201905081810360008301526148068161429e565b9050919050565b60006020820190508181036000830152614826816142c1565b9050919050565b60006020820190508181036000830152614846816142e4565b9050919050565b6000602082019050818103600083015261486681614307565b9050919050565b600060208201905081810360008301526148868161432a565b9050919050565b600060208201905081810360008301526148a681614370565b9050919050565b600060208201905081810360008301526148c681614393565b9050919050565b600060208201905081810360008301526148e6816143b6565b9050919050565b60006020820190508181036000830152614906816143d9565b9050919050565b60006020820190508181036000830152614926816143fc565b9050919050565b600060208201905081810360008301526149468161441f565b9050919050565b60006020820190506149626000830184614451565b92915050565b6000614972614983565b905061497e8282614cbe565b919050565b6000604051905090565b600067ffffffffffffffff8211156149a8576149a7614e5d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149d4576149d3614e5d565b5b6149dd82614eaa565b9050602081019050919050565b600067ffffffffffffffff821115614a0557614a04614e5d565b5b614a0e82614eaa565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ac282614c40565b9150614acd83614c40565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0257614b01614da1565b5b828201905092915050565b6000614b1882614c40565b9150614b2383614c40565b925082614b3357614b32614dd0565b5b828204905092915050565b6000614b4982614c40565b9150614b5483614c40565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8d57614b8c614da1565b5b828202905092915050565b6000614ba382614c40565b9150614bae83614c40565b925082821015614bc157614bc0614da1565b5b828203905092915050565b6000614bd782614c20565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c77578082015181840152602081019050614c5c565b83811115614c86576000848401525b50505050565b60006002820490506001821680614ca457607f821691505b60208210811415614cb857614cb7614dff565b5b50919050565b614cc782614eaa565b810181811067ffffffffffffffff82111715614ce657614ce5614e5d565b5b80604052505050565b6000614cfa82614c40565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d2d57614d2c614da1565b5b600182019050919050565b6000614d4382614d54565b9050919050565b6000819050919050565b6000614d5f82614ebb565b9050919050565b6000819050919050565b6000614d7b82614c40565b9150614d8683614c40565b925082614d9657614d95614dd0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c6960008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c72656164792072657665616c65642e000000000000000000000000000000600082015250565b7f45786365656473206d6178207065722077616c6c65742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f50726573616c65206973206e6f74206f766572207965742e0000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f76696465642e000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f57686974656c6973742073616c65206973206f7665722e000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973207061757365642e00000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722077686974656c6973742e000000000000600082015250565b61553881614bcc565b811461554357600080fd5b50565b61554f81614bde565b811461555a57600080fd5b50565b61556681614bea565b811461557157600080fd5b50565b61557d81614bf4565b811461558857600080fd5b50565b61559481614c40565b811461559f57600080fd5b5056fea26469706673582212207c9309554e56098b805100d08c9950a53ca2ec03befcdf28d46a987b22a2736364736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f706f702d6172742d636174732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f7072652d72657665616c2f676966742e6a736f6e00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102ff5760003560e01c80635c975abb11610190578063a22cb465116100dc578063c6f6f21611610095578063e985e9c51161006f578063e985e9c514610b3f578063f2fde38b14610b7c578063f3993d1114610ba5578063f43a22dc14610bce576102ff565b8063c6f6f21614610ab0578063c87b56dd14610ad9578063e268e4d314610b16576102ff565b8063a22cb465146109c7578063b88d4fde146109f0578063b95f8b5f14610a19578063bd32fb6614610a42578063c3b754dc14610a6b578063c4be5b5914610a94576102ff565b80637e2285aa1161014957806395d89b411161012357806395d89b411461091857806395f61c48146109435780639ec00c951461096e578063a0712d68146109ab576102ff565b80637e2285aa1461089b5780638774e5d0146108c45780638da5cb5b146108ed576102ff565b80635c975abb1461078b5780636352211e146107b65780636c0360eb146107f357806370a082311461081e578063715018a61461085b57806372d9eb1e14610872576102ff565b80632f745c591161024f578063438b6300116102085780634f6ccce7116101e25780634f6ccce7146106d1578063518302271461070e57806355f804b3146107395780635a4fee3014610762576102ff565b8063438b63001461062e5780634c2612471461066b5780634d44660c14610694576102ff565b80632f745c591461053d5780632fff17961461057a57806332cb6b0c146105a55780633c8da588146105d05780633ccfd60b146105fb57806342842e0e14610605576102ff565b80630922f9c5116102bc57806318160ddd1161029657806318160ddd1461049357806323b872dd146104be5780632d5537b0146104e75780632eb4a7ab14610512576102ff565b80630922f9c514610414578063095ea7b31461043f5780630f2cdd6c14610468576102ff565b806301ffc9a71461030457806302329a2914610341578063029877b61461036a57806302ce58131461038157806306fdde03146103ac578063081812fc146103d7575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190613d5a565b610bf9565b60405161033891906145b5565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613d00565b610c73565b005b34801561037657600080fd5b5061037f610d0c565b005b34801561038d57600080fd5b50610396610e19565b6040516103a391906145b5565b60405180910390f35b3480156103b857600080fd5b506103c1610e2c565b6040516103ce91906145eb565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613dfd565b610ebe565b60405161040b919061452c565b60405180910390f35b34801561042057600080fd5b50610429610f43565b604051610436919061494d565b60405180910390f35b34801561044b57600080fd5b5061046660048036038101906104619190613cc0565b610f49565b005b34801561047457600080fd5b5061047d611061565b60405161048a919061494d565b60405180910390f35b34801561049f57600080fd5b506104a8611067565b6040516104b5919061494d565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190613b4a565b611074565b005b3480156104f357600080fd5b506104fc6110d4565b60405161050991906145eb565b60405180910390f35b34801561051e57600080fd5b50610527611162565b60405161053491906145d0565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613cc0565b611168565b604051610571919061494d565b60405180910390f35b34801561058657600080fd5b5061058f6112ad565b60405161059c919061494d565b60405180910390f35b3480156105b157600080fd5b506105ba6112b3565b6040516105c7919061494d565b60405180910390f35b3480156105dc57600080fd5b506105e56112b9565b6040516105f2919061494d565b60405180910390f35b6106036112bf565b005b34801561061157600080fd5b5061062c60048036038101906106279190613b4a565b6113b4565b005b34801561063a57600080fd5b50610655600480360381019061065091906139cf565b6113d4565b6040516106629190614593565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613db4565b6114de565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613c20565b6115df565b6040516106c891906145b5565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190613dfd565b6116a0565b604051610705919061494d565b60405180910390f35b34801561071a57600080fd5b506107236116f1565b60405161073091906145b5565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190613db4565b611704565b005b34801561076e57600080fd5b5061078960048036038101906107849190613aab565b61179a565b005b34801561079757600080fd5b506107a06117e6565b6040516107ad91906145b5565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613dfd565b6117f9565b6040516107ea919061452c565b60405180910390f35b3480156107ff57600080fd5b506108086118b6565b60405161081591906145eb565b60405180910390f35b34801561082a57600080fd5b50610845600480360381019061084091906139cf565b611944565b604051610852919061494d565b60405180910390f35b34801561086757600080fd5b50610870611a60565b005b34801561087e57600080fd5b5061089960048036038101906108949190613dfd565b611ae8565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190613db4565b611b6e565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613dfd565b611c04565b005b3480156108f957600080fd5b50610902611c8a565b60405161090f919061452c565b60405180910390f35b34801561092457600080fd5b5061092d611cb4565b60405161093a91906145eb565b60405180910390f35b34801561094f57600080fd5b50610958611d46565b604051610965919061494d565b60405180910390f35b34801561097a57600080fd5b50610995600480360381019061099091906139cf565b611d4c565b6040516109a2919061494d565b60405180910390f35b6109c560048036038101906109c09190613dfd565b611d64565b005b3480156109d357600080fd5b506109ee60048036038101906109e99190613c80565b6120d6565b005b3480156109fc57600080fd5b50610a176004803603810190610a129190613b9d565b612257565b005b348015610a2557600080fd5b50610a406004803603810190610a3b9190613dfd565b6122b9565b005b348015610a4e57600080fd5b50610a696004803603810190610a649190613d2d565b61233f565b005b348015610a7757600080fd5b50610a926004803603810190610a8d9190613d00565b6123c5565b005b610aae6004803603810190610aa99190613e2a565b61245e565b005b348015610abc57600080fd5b50610ad76004803603810190610ad29190613dfd565b612775565b005b348015610ae557600080fd5b50610b006004803603810190610afb9190613dfd565b6127fb565b604051610b0d91906145eb565b60405180910390f35b348015610b2257600080fd5b50610b3d6004803603810190610b389190613dfd565b6128ed565b005b348015610b4b57600080fd5b50610b666004803603810190610b6191906139fc565b612973565b604051610b7391906145b5565b60405180910390f35b348015610b8857600080fd5b50610ba36004803603810190610b9e91906139cf565b612a07565b005b348015610bb157600080fd5b50610bcc6004803603810190610bc79190613a3c565b612aff565b005b348015610bda57600080fd5b50610be3612b49565b604051610bf0919061494d565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c6c5750610c6b82612b4f565b5b9050919050565b610c7b612c31565b73ffffffffffffffffffffffffffffffffffffffff16610c99611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce6906147ed565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b610d14612c31565b73ffffffffffffffffffffffffffffffffffffffff16610d32611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f906147ed565b60405180910390fd5b60006002805490509050600a54600d5482610da39190614ab7565b1115610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb9061482d565b60405180910390fd5b60005b600d54811015610e1557610e02610dfc612c31565b82612c39565b8080610e0d90614cef565b915050610de7565b5050565b600760019054906101000a900460ff1681565b606060008054610e3b90614c8c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6790614c8c565b8015610eb45780601f10610e8957610100808354040283529160200191610eb4565b820191906000526020600020905b815481529060010190602001808311610e9757829003601f168201915b5050505050905090565b6000610ec982612cfc565b610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff906147cd565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d5481565b6000610f54826117f9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061486d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fe4612c31565b73ffffffffffffffffffffffffffffffffffffffff16148061101357506110128161100d612c31565b612973565b5b611052576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110499061472d565b60405180910390fd5b61105c8383612d84565b505050565b600b5481565b6000600280549050905090565b61108561107f612c31565b82612e3d565b6110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb9061488d565b60405180910390fd5b6110cf838383612f1b565b505050565b600980546110e190614c8c565b80601f016020809104026020016040519081016040528092919081815260200182805461110d90614c8c565b801561115a5780601f1061112f5761010080835404028352916020019161115a565b820191906000526020600020905b81548152906001019060200180831161113d57829003601f168201915b505050505081565b60065481565b600061117383611944565b82106111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab9061462d565b60405180910390fd5b6000805b60028054905081101561126b57600281815481106111d9576111d8614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561125857838214156112495780925050506112a7565b818061125490614cef565b9250505b808061126390614cef565b9150506111b8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e9061462d565b60405180910390fd5b92915050565b60105481565b600a5481565b600f5481565b6112c7612c31565b73ffffffffffffffffffffffffffffffffffffffff166112e5611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461133b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611332906147ed565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611361906144eb565b60006040518083038185875af1925050503d806000811461139e576040519150601f19603f3d011682016040523d82523d6000602084013e6113a3565b606091505b50509050806113b157600080fd5b50565b6113cf83838360405180602001604052806000815250612257565b505050565b606060006113e183611944565b9050600081141561143e57600067ffffffffffffffff81111561140757611406614e5d565b5b6040519080825280602002602001820160405280156114355781602001602082028036833780820191505090505b509150506114d9565b60008167ffffffffffffffff81111561145a57611459614e5d565b5b6040519080825280602002602001820160405280156114885781602001602082028036833780820191505090505b50905060005b828110156114d2576114a08582611168565b8282815181106114b3576114b2614e2e565b5b60200260200101818152505080806114ca90614cef565b91505061148e565b5080925050505b919050565b6114e6612c31565b73ffffffffffffffffffffffffffffffffffffffff16611504611c8a565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611551906147ed565b60405180910390fd5b600760009054906101000a900460ff16156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a19061468d565b60405180910390fd5b80600890805190602001906115c0929190613684565b506001600760006101000a81548160ff02191690831515021790555050565b6000805b83839050811015611693578473ffffffffffffffffffffffffffffffffffffffff16600285858481811061161a57611619614e2e565b5b905060200201358154811061163257611631614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611682576000915050611699565b8061168c90614cef565b90506115e3565b50600190505b9392505050565b600060028054905082106116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e0906148cd565b60405180910390fd5b819050919050565b600760009054906101000a900460ff1681565b61170c612c31565b73ffffffffffffffffffffffffffffffffffffffff1661172a611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611777906147ed565b60405180910390fd5b8060089080519060200190611796929190613684565b5050565b60005b82518110156117df576117cc85858584815181106117be576117bd614e2e565b5b602002602001015185612257565b80806117d790614cef565b91505061179d565b5050505050565b601260009054906101000a900460ff1681565b600080600283815481106118105761180f614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a49061478d565b60405180910390fd5b80915050919050565b600880546118c390614c8c565b80601f01602080910402602001604051908101604052809291908181526020018280546118ef90614c8c565b801561193c5780601f106119115761010080835404028352916020019161193c565b820191906000526020600020905b81548152906001019060200180831161191f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac9061476d565b60405180910390fd5b6000805b600280549050811015611a5657600281815481106119da576119d9614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a455781611a4290614cef565b91505b80611a4f90614cef565b90506119b9565b5080915050919050565b611a68612c31565b73ffffffffffffffffffffffffffffffffffffffff16611a86611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad3906147ed565b60405180910390fd5b611ae660006130d4565b565b611af0612c31565b73ffffffffffffffffffffffffffffffffffffffff16611b0e611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b906147ed565b60405180910390fd5b80600c8190555050565b611b76612c31565b73ffffffffffffffffffffffffffffffffffffffff16611b94611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be1906147ed565b60405180910390fd5b8060099080519060200190611c00929190613684565b5050565b611c0c612c31565b73ffffffffffffffffffffffffffffffffffffffff16611c2a611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906147ed565b60405180910390fd5b80600f8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611cc390614c8c565b80601f0160208091040260200160405190810160405280929190818152602001828054611cef90614c8c565b8015611d3c5780601f10611d1157610100808354040283529160200191611d3c565b820191906000526020600020905b815481529060010190602001808311611d1f57829003601f168201915b5050505050905090565b600c5481565b60116020528060005260406000206000915090505481565b60006002805490509050601260009054906101000a900460ff1615611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db5906148ed565b60405180910390fd5b600760019054906101000a900460ff1615611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e059061474d565b60405180910390fd5b600a548282611e1d9190614ab7565b1115611e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e559061482d565b60405180910390fd5b600e54821115611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a906148ad565b60405180910390fd5b600b548260116000611eb3612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ef89190614ab7565b1115611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f30906146ad565b60405180910390fd5b34600f5483611f489190614b3e565b14611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f906147ad565b60405180910390fd5b8160116000611f95612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fde9190614ab7565b9250508190555060005b8281101561201f5761200c611ffb612c31565b82846120079190614ab7565b612c39565b808061201790614cef565b915050611fe8565b506000601260019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e860053461206b9190614b3e565b6120759190614b0d565b604051612081906144eb565b60006040518083038185875af1925050503d80600081146120be576040519150601f19603f3d011682016040523d82523d6000602084013e6120c3565b606091505b50509050806120d157600080fd5b505050565b6120de612c31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561214c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612143906146ed565b60405180910390fd5b8060046000612159612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612206612c31565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161224b91906145b5565b60405180910390a35050565b612268612262612c31565b83612e3d565b6122a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229e9061488d565b60405180910390fd5b6122b38484848461319a565b50505050565b6122c1612c31565b73ffffffffffffffffffffffffffffffffffffffff166122df611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c906147ed565b60405180910390fd5b8060108190555050565b612347612c31565b73ffffffffffffffffffffffffffffffffffffffff16612365611c8a565b73ffffffffffffffffffffffffffffffffffffffff16146123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b2906147ed565b60405180910390fd5b8060068190555050565b6123cd612c31565b73ffffffffffffffffffffffffffffffffffffffff166123eb611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612438906147ed565b60405180910390fd5b80600760016101000a81548160ff02191690831515021790555050565b60006002805490509050601260009054906101000a900460ff16156124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af906148ed565b60405180910390fd5b600760019054906101000a900460ff16612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe9061484d565b60405180910390fd5b600a5485826125169190614ab7565b1115612557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254e9061482d565b60405180910390fd5b600c548560116000612567612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125ac9190614ab7565b11156125ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e49061492d565b60405180910390fd5b6126486126016125fb612c31565b866131f6565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050613229565b612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e9061460d565b60405180910390fd5b34601054866126969190614b3e565b146126d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cd906147ad565b60405180910390fd5b84601160006126e3612c31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461272c9190614ab7565b9250508190555060005b8581101561276d5761275a612749612c31565b82846127559190614ab7565b612c39565b808061276590614cef565b915050612736565b505050505050565b61277d612c31565b73ffffffffffffffffffffffffffffffffffffffff1661279b611c8a565b73ffffffffffffffffffffffffffffffffffffffff16146127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e8906147ed565b60405180910390fd5b80600e8190555050565b606061280682612cfc565b612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c9061490d565b60405180910390fd5b600760009054906101000a900460ff1661287f57600860405160200161286b91906144a3565b6040516020818303038152906040526128e6565b60006008805461288e90614c8c565b9050116128aa57604051806020016040528060008152506128e5565b60086128c16001846128bc9190614ab7565b613240565b60096040516020016128d5939291906144ba565b6040516020818303038152906040525b5b9050919050565b6128f5612c31565b73ffffffffffffffffffffffffffffffffffffffff16612913611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612960906147ed565b60405180910390fd5b80600b8190555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a0f612c31565b73ffffffffffffffffffffffffffffffffffffffff16612a2d611c8a565b73ffffffffffffffffffffffffffffffffffffffff1614612a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7a906147ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aea9061466d565b60405180910390fd5b612afc816130d4565b50565b60005b8151811015612b4357612b308484848481518110612b2357612b22614e2e565b5b6020026020010151611074565b8080612b3b90614cef565b915050612b02565b50505050565b600e5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c1a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c2a5750612c29826133a1565b5b9050919050565b600033905090565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600060028054905082108015612d7d5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612d3957612d38614e2e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612df7836117f9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e4882612cfc565b612e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7e9061470d565b60405180910390fd5b6000612e92836117f9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f0157508373ffffffffffffffffffffffffffffffffffffffff16612ee984610ebe565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f125750612f118185612973565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f3b826117f9565b73ffffffffffffffffffffffffffffffffffffffff1614612f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f889061480d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff8906146cd565b60405180910390fd5b61300c83838361340b565b613017600082612d84565b816002828154811061302c5761302b614e2e565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131a5848484612f1b565b6131b184848484613410565b6131f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e79061464d565b60405180910390fd5b50505050565b6000818360405160200161320b929190614500565b60405160208183030381529060405280519060200120905092915050565b600061323882600654856135a7565b905092915050565b60606000821415613288576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061339c565b600082905060005b600082146132ba5780806132a390614cef565b915050600a826132b39190614b0d565b9150613290565b60008167ffffffffffffffff8111156132d6576132d5614e5d565b5b6040519080825280601f01601f1916602001820160405280156133085781602001600182028036833780820191505090505b5090505b60008514613395576001826133219190614b98565b9150600a856133309190614d70565b603061333c9190614ab7565b60f81b81838151811061335257613351614e2e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561338e9190614b0d565b945061330c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60006134318473ffffffffffffffffffffffffffffffffffffffff166135be565b1561359a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261345a612c31565b8786866040518563ffffffff1660e01b815260040161347c9493929190614547565b602060405180830381600087803b15801561349657600080fd5b505af19250505080156134c757506040513d601f19601f820116820180604052508101906134c49190613d87565b60015b61354a573d80600081146134f7576040519150601f19603f3d011682016040523d82523d6000602084013e6134fc565b606091505b50600081511415613542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135399061464d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061359f565b600190505b949350505050565b6000826135b485846135d1565b1490509392505050565b600080823b905060008111915050919050565b60008082905060005b84518110156136795760008582815181106135f8576135f7614e2e565b5b6020026020010151905080831161363957828160405160200161361c929190614477565b604051602081830303815290604052805190602001209250613665565b808360405160200161364c929190614477565b6040516020818303038152906040528051906020012092505b50808061367190614cef565b9150506135da565b508091505092915050565b82805461369090614c8c565b90600052602060002090601f0160209004810192826136b257600085556136f9565b82601f106136cb57805160ff19168380011785556136f9565b828001600101855582156136f9579182015b828111156136f85782518255916020019190600101906136dd565b5b509050613706919061370a565b5090565b5b8082111561372357600081600090555060010161370b565b5090565b600061373a6137358461498d565b614968565b9050808382526020820190508285602086028201111561375d5761375c614e96565b5b60005b8581101561378d578161377388826139ba565b845260208401935060208301925050600181019050613760565b5050509392505050565b60006137aa6137a5846149b9565b614968565b9050828152602081018484840111156137c6576137c5614e9b565b5b6137d1848285614c4a565b509392505050565b60006137ec6137e7846149ea565b614968565b90508281526020810184848401111561380857613807614e9b565b5b613813848285614c4a565b509392505050565b60008135905061382a8161552f565b92915050565b60008083601f84011261384657613845614e91565b5b8235905067ffffffffffffffff81111561386357613862614e8c565b5b60208301915083602082028301111561387f5761387e614e96565b5b9250929050565b60008083601f84011261389c5761389b614e91565b5b8235905067ffffffffffffffff8111156138b9576138b8614e8c565b5b6020830191508360208202830111156138d5576138d4614e96565b5b9250929050565b600082601f8301126138f1576138f0614e91565b5b8135613901848260208601613727565b91505092915050565b60008135905061391981615546565b92915050565b60008135905061392e8161555d565b92915050565b60008135905061394381615574565b92915050565b60008151905061395881615574565b92915050565b600082601f83011261397357613972614e91565b5b8135613983848260208601613797565b91505092915050565b600082601f8301126139a1576139a0614e91565b5b81356139b18482602086016137d9565b91505092915050565b6000813590506139c98161558b565b92915050565b6000602082840312156139e5576139e4614ea5565b5b60006139f38482850161381b565b91505092915050565b60008060408385031215613a1357613a12614ea5565b5b6000613a218582860161381b565b9250506020613a328582860161381b565b9150509250929050565b600080600060608486031215613a5557613a54614ea5565b5b6000613a638682870161381b565b9350506020613a748682870161381b565b925050604084013567ffffffffffffffff811115613a9557613a94614ea0565b5b613aa1868287016138dc565b9150509250925092565b60008060008060808587031215613ac557613ac4614ea5565b5b6000613ad38782880161381b565b9450506020613ae48782880161381b565b935050604085013567ffffffffffffffff811115613b0557613b04614ea0565b5b613b11878288016138dc565b925050606085013567ffffffffffffffff811115613b3257613b31614ea0565b5b613b3e8782880161395e565b91505092959194509250565b600080600060608486031215613b6357613b62614ea5565b5b6000613b718682870161381b565b9350506020613b828682870161381b565b9250506040613b93868287016139ba565b9150509250925092565b60008060008060808587031215613bb757613bb6614ea5565b5b6000613bc58782880161381b565b9450506020613bd68782880161381b565b9350506040613be7878288016139ba565b925050606085013567ffffffffffffffff811115613c0857613c07614ea0565b5b613c148782880161395e565b91505092959194509250565b600080600060408486031215613c3957613c38614ea5565b5b6000613c478682870161381b565b935050602084013567ffffffffffffffff811115613c6857613c67614ea0565b5b613c7486828701613886565b92509250509250925092565b60008060408385031215613c9757613c96614ea5565b5b6000613ca58582860161381b565b9250506020613cb68582860161390a565b9150509250929050565b60008060408385031215613cd757613cd6614ea5565b5b6000613ce58582860161381b565b9250506020613cf6858286016139ba565b9150509250929050565b600060208284031215613d1657613d15614ea5565b5b6000613d248482850161390a565b91505092915050565b600060208284031215613d4357613d42614ea5565b5b6000613d518482850161391f565b91505092915050565b600060208284031215613d7057613d6f614ea5565b5b6000613d7e84828501613934565b91505092915050565b600060208284031215613d9d57613d9c614ea5565b5b6000613dab84828501613949565b91505092915050565b600060208284031215613dca57613dc9614ea5565b5b600082013567ffffffffffffffff811115613de857613de7614ea0565b5b613df48482850161398c565b91505092915050565b600060208284031215613e1357613e12614ea5565b5b6000613e21848285016139ba565b91505092915050565b60008060008060608587031215613e4457613e43614ea5565b5b6000613e52878288016139ba565b9450506020613e63878288016139ba565b935050604085013567ffffffffffffffff811115613e8457613e83614ea0565b5b613e9087828801613830565b925092505092959194509250565b6000613eaa8383614442565b60208301905092915050565b613ebf81614bcc565b82525050565b613ed6613ed182614bcc565b614d38565b82525050565b6000613ee782614a40565b613ef18185614a6e565b9350613efc83614a1b565b8060005b83811015613f2d578151613f148882613e9e565b9750613f1f83614a61565b925050600181019050613f00565b5085935050505092915050565b613f4381614bde565b82525050565b613f5281614bea565b82525050565b613f69613f6482614bea565b614d4a565b82525050565b6000613f7a82614a4b565b613f848185614a7f565b9350613f94818560208601614c59565b613f9d81614eaa565b840191505092915050565b6000613fb382614a56565b613fbd8185614a9b565b9350613fcd818560208601614c59565b613fd681614eaa565b840191505092915050565b6000613fec82614a56565b613ff68185614aac565b9350614006818560208601614c59565b80840191505092915050565b6000815461401f81614c8c565b6140298186614aac565b94506001821660008114614044576001811461405557614088565b60ff19831686528186019350614088565b61405e85614a2b565b60005b8381101561408057815481890152600182019150602081019050614061565b838801955050505b50505092915050565b600061409e602383614a9b565b91506140a982614ec8565b604082019050919050565b60006140c1602b83614a9b565b91506140cc82614f17565b604082019050919050565b60006140e4603283614a9b565b91506140ef82614f66565b604082019050919050565b6000614107602683614a9b565b915061411282614fb5565b604082019050919050565b600061412a601183614a9b565b915061413582615004565b602082019050919050565b600061414d601783614a9b565b91506141588261502d565b602082019050919050565b6000614170602483614a9b565b915061417b82615056565b604082019050919050565b6000614193601983614a9b565b915061419e826150a5565b602082019050919050565b60006141b6602c83614a9b565b91506141c1826150ce565b604082019050919050565b60006141d9603883614a9b565b91506141e48261511d565b604082019050919050565b60006141fc601883614a9b565b91506142078261516c565b602082019050919050565b600061421f602a83614a9b565b915061422a82615195565b604082019050919050565b6000614242602983614a9b565b915061424d826151e4565b604082019050919050565b6000614265601783614a9b565b915061427082615233565b602082019050919050565b6000614288602c83614a9b565b91506142938261525c565b604082019050919050565b60006142ab602083614a9b565b91506142b6826152ab565b602082019050919050565b60006142ce602983614a9b565b91506142d9826152d4565b604082019050919050565b60006142f1601383614a9b565b91506142fc82615323565b602082019050919050565b6000614314601783614a9b565b915061431f8261534c565b602082019050919050565b6000614337602183614a9b565b915061434282615375565b604082019050919050565b600061435a600083614a90565b9150614365826153c4565b600082019050919050565b600061437d603183614a9b565b9150614388826153c7565b604082019050919050565b60006143a0601c83614a9b565b91506143ab82615416565b602082019050919050565b60006143c3602c83614a9b565b91506143ce8261543f565b604082019050919050565b60006143e6601383614a9b565b91506143f18261548e565b602082019050919050565b6000614409603083614a9b565b9150614414826154b7565b604082019050919050565b600061442c601a83614a9b565b915061443782615506565b602082019050919050565b61444b81614c40565b82525050565b61445a81614c40565b82525050565b61447161446c82614c40565b614d66565b82525050565b60006144838285613f58565b6020820191506144938284613f58565b6020820191508190509392505050565b60006144af8284614012565b915081905092915050565b60006144c68286614012565b91506144d28285613fe1565b91506144de8284614012565b9150819050949350505050565b60006144f68261434d565b9150819050919050565b600061450c8285614460565b60208201915061451c8284613ec5565b6014820191508190509392505050565b60006020820190506145416000830184613eb6565b92915050565b600060808201905061455c6000830187613eb6565b6145696020830186613eb6565b6145766040830185614451565b81810360608301526145888184613f6f565b905095945050505050565b600060208201905081810360008301526145ad8184613edc565b905092915050565b60006020820190506145ca6000830184613f3a565b92915050565b60006020820190506145e56000830184613f49565b92915050565b600060208201905081810360008301526146058184613fa8565b905092915050565b6000602082019050818103600083015261462681614091565b9050919050565b60006020820190508181036000830152614646816140b4565b9050919050565b60006020820190508181036000830152614666816140d7565b9050919050565b60006020820190508181036000830152614686816140fa565b9050919050565b600060208201905081810360008301526146a68161411d565b9050919050565b600060208201905081810360008301526146c681614140565b9050919050565b600060208201905081810360008301526146e681614163565b9050919050565b6000602082019050818103600083015261470681614186565b9050919050565b60006020820190508181036000830152614726816141a9565b9050919050565b60006020820190508181036000830152614746816141cc565b9050919050565b60006020820190508181036000830152614766816141ef565b9050919050565b6000602082019050818103600083015261478681614212565b9050919050565b600060208201905081810360008301526147a681614235565b9050919050565b600060208201905081810360008301526147c681614258565b9050919050565b600060208201905081810360008301526147e68161427b565b9050919050565b600060208201905081810360008301526148068161429e565b9050919050565b60006020820190508181036000830152614826816142c1565b9050919050565b60006020820190508181036000830152614846816142e4565b9050919050565b6000602082019050818103600083015261486681614307565b9050919050565b600060208201905081810360008301526148868161432a565b9050919050565b600060208201905081810360008301526148a681614370565b9050919050565b600060208201905081810360008301526148c681614393565b9050919050565b600060208201905081810360008301526148e6816143b6565b9050919050565b60006020820190508181036000830152614906816143d9565b9050919050565b60006020820190508181036000830152614926816143fc565b9050919050565b600060208201905081810360008301526149468161441f565b9050919050565b60006020820190506149626000830184614451565b92915050565b6000614972614983565b905061497e8282614cbe565b919050565b6000604051905090565b600067ffffffffffffffff8211156149a8576149a7614e5d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156149d4576149d3614e5d565b5b6149dd82614eaa565b9050602081019050919050565b600067ffffffffffffffff821115614a0557614a04614e5d565b5b614a0e82614eaa565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ac282614c40565b9150614acd83614c40565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b0257614b01614da1565b5b828201905092915050565b6000614b1882614c40565b9150614b2383614c40565b925082614b3357614b32614dd0565b5b828204905092915050565b6000614b4982614c40565b9150614b5483614c40565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8d57614b8c614da1565b5b828202905092915050565b6000614ba382614c40565b9150614bae83614c40565b925082821015614bc157614bc0614da1565b5b828203905092915050565b6000614bd782614c20565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c77578082015181840152602081019050614c5c565b83811115614c86576000848401525b50505050565b60006002820490506001821680614ca457607f821691505b60208210811415614cb857614cb7614dff565b5b50919050565b614cc782614eaa565b810181811067ffffffffffffffff82111715614ce657614ce5614e5d565b5b80604052505050565b6000614cfa82614c40565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d2d57614d2c614da1565b5b600182019050919050565b6000614d4382614d54565b9050919050565b6000819050919050565b6000614d5f82614ebb565b9050919050565b6000819050919050565b6000614d7b82614c40565b9150614d8683614c40565b925082614d9657614d95614dd0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c6964204d65726b6c6520547265652070726f6f6620737570706c6960008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c72656164792072657665616c65642e000000000000000000000000000000600082015250565b7f45786365656473206d6178207065722077616c6c65742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f50726573616c65206973206e6f74206f766572207965742e0000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f76696465642e000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f57686974656c6973742073616c65206973206f7665722e000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973207061757365642e00000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722077686974656c6973742e000000000000600082015250565b61553881614bcc565b811461554357600080fd5b50565b61554f81614bde565b811461555a57600080fd5b50565b61556681614bea565b811461557157600080fd5b50565b61557d81614bf4565b811461558857600080fd5b50565b61559481614c40565b811461559f57600080fd5b5056fea26469706673582212207c9309554e56098b805100d08c9950a53ca2ec03befcdf28d46a987b22a2736364736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f706f702d6172742d636174732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f7072652d72657665616c2f676966742e6a736f6e00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): https://pop-art-cats.s3.us-east-2.amazonaws.com/pre-reveal/gift.json
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f706f702d6172742d636174732e73332e75732d656173742d
Arg [3] : 322e616d617a6f6e6177732e636f6d2f7072652d72657665616c2f676966742e
Arg [4] : 6a736f6e00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.