ERC-721
Overview
Max Total Supply
89 CYNQUE
Holders
26
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CYNQUELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CYNQUE
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; /* CYNQUE.sol Written by: mousedev.eth */ import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract CYNQUE is ERC721, Ownable { using Strings for uint256; string public baseURI = "https://api.lostchildren.xyz/api/cynques/"; string public contractURI = "https://api.lostchildren.xyz/cynque-contract.json"; uint256 public nextTokenId = 1; uint256 public passportSaleStartTime = 1654657871; uint256 public publicSaleStartTime = 1655089871; uint256 public publicSaleEndTime = 1657681871; address public passportAddress = 0x4aa0247996529009a1D805AccC84432CC1b5da5D; mapping(uint256 => bool) public passportHasMinted; mapping(uint256 => uint256) public passportToCynque; mapping(uint256 => uint256) public cynqueToPassport; mapping(address => uint256) public quantityOfPublicMinted; //EIP2981 uint256 private _royaltyBps; address private _royaltyRecipient; bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a; //Custom errors error PassportSaleNotLive(); error PublicSaleNotLive(); error NotOwnerOfCynque(); error TeamMintAlreadyDone(); error MaxMintedOnPublicSale(); error IncorrectQuantity(); error MaxSupplyExceeded(); error PassportAlreadyMinted(); error NotOwnerOfPassport(); error NotEnoughEtherSent(); constructor() ERC721("Lost Children of Andromeda: CYNQUE Prototype", "CYNQUE") {} /* __ __ ______ __ _ / / / /_______ _____ / ____/_ ______ _____/ /_(_)___ ____ _____ / / / / ___/ _ \/ ___/ / /_ / / / / __ \/ ___/ __/ / __ \/ __ \/ ___/ / /_/ (__ ) __/ / / __/ / /_/ / / / / /__/ /_/ / /_/ / / / (__ ) \____/____/\___/_/ /_/ \__,_/_/ /_/\___/\__/_/\____/_/ /_/____/ */ function mintCynqueWithoutPassport(uint256 _quantity) external payable { if (_quantity < 1 || _quantity > 2) revert IncorrectQuantity(); //Require cynque sale has started if ( block.timestamp < publicSaleStartTime || block.timestamp > publicSaleEndTime ) revert PassportSaleNotLive(); if (quantityOfPublicMinted[msg.sender] + _quantity > 2) revert MaxMintedOnPublicSale(); if (msg.value < (0.3333 ether * _quantity)) revert NotEnoughEtherSent(); quantityOfPublicMinted[msg.sender] += _quantity; for (uint256 i = 0; i < _quantity; i++) { //Call internal method mintCynque(); } } function mintCynqueWithPassports(uint256[] memory passportIds) external payable { //Require cynque sale has started if (block.timestamp < passportSaleStartTime) revert PassportSaleNotLive(); if (msg.value < (0.2222 ether * passportIds.length)) revert NotEnoughEtherSent(); for (uint256 i = 0; i < passportIds.length; i++) { //Require this passport hasn't minted if (passportHasMinted[passportIds[i]] == true) revert PassportAlreadyMinted(); //Make sure they own this passport if (IERC721(passportAddress).ownerOf(passportIds[i]) != msg.sender) revert NotOwnerOfPassport(); //Mark minted before minting. passportHasMinted[passportIds[i]] = true; //Store that this passport is connected to the next cynque passportToCynque[passportIds[i]] = nextTokenId; //Store that the next cynque is connected to this passport cynqueToPassport[nextTokenId] = passportIds[i]; //Call internal method mintCynque(); } } function cynqueronize(uint256 passportId, uint256 cynqueTokenId) external { //Make sure they own this passport if (IERC721(passportAddress).ownerOf(passportId) != msg.sender) revert NotOwnerOfPassport(); //Make sure they own this passport if (ownerOf(cynqueTokenId) != msg.sender) revert NotOwnerOfCynque(); //Store that this passport is connected to this cynque. passportToCynque[passportId] = cynqueTokenId; //Store that this cynque is connected to this passport. cynqueToPassport[cynqueTokenId] = passportId; } function mintCynque() internal { //Require under max supply if (nextTokenId > 1111) revert MaxSupplyExceeded(); _mint(msg.sender, nextTokenId); unchecked { ++nextTokenId; } } /* _ ___ ______ __ _ | | / (_)__ _ __ / ____/_ ______ _____/ /_(_)___ ____ _____ | | / / / _ \ | /| / / / /_ / / / / __ \/ ___/ __/ / __ \/ __ \/ ___/ | |/ / / __/ |/ |/ / / __/ / /_/ / / / / /__/ /_/ / /_/ / / / (__ ) |___/_/\___/|__/|__/ /_/ \__,_/_/ /_/\___/\__/_/\____/_/ /_/____/ */ function walletOfOwner(address _address) public view virtual returns (uint256[] memory) { //Thanks 0xinuarashi for da inspo uint256 _balance = balanceOf(_address); uint256[] memory _tokens = new uint256[](_balance); uint256 _addedTokens; for (uint256 i = 1; i <= totalSupply(); i++) { if (ownerOf(i) == _address) { _tokens[_addedTokens] = i; _addedTokens++; } if (_addedTokens == _balance) break; } return _tokens; } function totalSupply() public view returns (uint256) { return nextTokenId - 1; } function tokenURI(uint256 id) public view override returns (string memory) { require(_exists(id), "Token does not exist!"); return string(abi.encodePacked(baseURI, id.toString())); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return super.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981; } function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) { return (_royaltyRecipient, (value * _royaltyBps) / 10000); } /* ____ ______ __ _ / __ \_ ______ ___ _____ / ____/_ ______ _____/ /_(_)___ ____ _____ / / / / | /| / / __ \/ _ \/ ___/ / /_ / / / / __ \/ ___/ __/ / __ \/ __ \/ ___/ / /_/ /| |/ |/ / / / / __/ / / __/ / /_/ / / / / /__/ /_/ / /_/ / / / (__ ) \____/ |__/|__/_/ /_/\___/_/ /_/ \__,_/_/ /_/\___/\__/_/\____/_/ /_/____/ */ function communitySweep(uint256 _quantity) external onlyOwner { for (uint256 i = 0; i < _quantity; i++) { mintCynque(); } } function teamMint() external onlyOwner { if (nextTokenId > 1) revert TeamMintAlreadyDone(); for (uint256 i = 0; i < 64; i++) { mintCynque(); } } function setBaseURI(string calldata _baseURI) external onlyOwner { baseURI = _baseURI; } function setContractURI(string calldata _contractURI) external onlyOwner { contractURI = _contractURI; } function setPassportAddress(address _passportAddress) external onlyOwner { passportAddress = _passportAddress; } function setPassportSaleStartTime(uint256 _passportSaleStartTime) external onlyOwner { passportSaleStartTime = _passportSaleStartTime; } function setPublicSaleTimes( uint256 _publicSaleStartTime, uint256 _publicSaleEndTime ) external onlyOwner { publicSaleStartTime = _publicSaleStartTime; publicSaleEndTime = _publicSaleEndTime; } function withdraw() public onlyOwner { (bool succ, ) = payable(msg.sender).call{value: address(this).balance}( "" ); require(succ, "transfer failed"); } /** * ROYALTY FUNCTIONS */ function updateRoyalties(address payable recipient, uint256 bps) external onlyOwner { _royaltyRecipient = recipient; _royaltyBps = bps; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(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 from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"IncorrectQuantity","type":"error"},{"inputs":[],"name":"MaxMintedOnPublicSale","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"NotEnoughEtherSent","type":"error"},{"inputs":[],"name":"NotOwnerOfCynque","type":"error"},{"inputs":[],"name":"NotOwnerOfPassport","type":"error"},{"inputs":[],"name":"PassportAlreadyMinted","type":"error"},{"inputs":[],"name":"PassportSaleNotLive","type":"error"},{"inputs":[],"name":"PublicSaleNotLive","type":"error"},{"inputs":[],"name":"TeamMintAlreadyDone","type":"error"},{"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":[{"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":"uint256","name":"_quantity","type":"uint256"}],"name":"communitySweep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cynqueToPassport","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"passportId","type":"uint256"},{"internalType":"uint256","name":"cynqueTokenId","type":"uint256"}],"name":"cynqueronize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"passportIds","type":"uint256[]"}],"name":"mintCynqueWithPassports","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintCynqueWithoutPassport","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passportAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"passportHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passportSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"passportToCynque","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"quantityOfPublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_passportAddress","type":"address"}],"name":"setPassportAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_passportSaleStartTime","type":"uint256"}],"name":"setPassportSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleStartTime","type":"uint256"},{"internalType":"uint256","name":"_publicSaleEndTime","type":"uint256"}],"name":"setPublicSaleTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","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 payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180606001604052806029815260200162004c3b60299139600790805190602001906200003592919062000260565b5060405180606001604052806031815260200162004bde60319139600890805190602001906200006792919062000260565b5060016009556362a0134f600a556362a6aacf600b556362ce37cf600c55734aa0247996529009a1d805accc84432cc1b5da5d600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000e757600080fd5b506040518060600160405280602c815260200162004c0f602c91396040518060400160405280600681526020017f43594e515545000000000000000000000000000000000000000000000000000081525081600090805190602001906200015092919062000260565b5080600190805190602001906200016992919062000260565b5050506200018c620001806200019260201b60201c565b6200019a60201b60201c565b62000375565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026e9062000310565b90600052602060002090601f016020900481019282620002925760008555620002de565b82601f10620002ad57805160ff1916838001178555620002de565b82800160010185558215620002de579182015b82811115620002dd578251825591602001919060010190620002c0565b5b509050620002ed9190620002f1565b5090565b5b808211156200030c576000816000905550600101620002f2565b5090565b600060028204905060018216806200032957607f821691505b6020821081141562000340576200033f62000346565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61485980620003856000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063b88d4fde116100b6578063e8a3d4851161007a578063e8a3d48514610893578063e985e9c5146108be578063f2fde38b146108fb578063f35ceb9014610924578063f670084a14610961578063fbc2b6271461098a57610251565b8063b88d4fde146107c2578063ba7a86b8146107eb578063c87b56dd14610802578063cb7f028d1461083f578063cf679dfc1461086857610251565b8063955e16af116100fd578063955e16af146106ec57806395d89b411461071557806399abc77514610740578063a22cb4651461075c578063b329ff691461078557610251565b8063715018a61461063a57806375794a3c146106515780638da5cb5b1461067c57806391096ce3146106a7578063938e3d7b146106c357610251565b806342842e0e116101d25780636352211e116101965780636352211e1461051857806369077a93146105555780636bb7b1d91461057e5780636c0360eb146105a95780636c2f5acd146105d457806370a08231146105fd57610251565b806342842e0e14610435578063438b63001461045e578063460f05221461049b5780634c5ff4f7146104c657806355f804b3146104ef57610251565b80631e4d185f116102195780631e4d185f1461034f57806323b872dd1461037a57806329f7617f146103a35780632a55205a146103e05780633ccfd60b1461041e57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613604565b6109c7565b60405161028a9190613c35565b60405180910390f35b34801561029f57600080fd5b506102a8610a28565b6040516102b59190613c50565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e0919061369b565b610aba565b6040516102f29190613b83565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613587565b610b3f565b005b34801561033057600080fd5b50610339610c57565b6040516103469190613e92565b60405180910390f35b34801561035b57600080fd5b50610364610c6d565b6040516103719190613e92565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613481565b610c73565b005b3480156103af57600080fd5b506103ca60048036038101906103c5919061369b565b610cd3565b6040516103d79190613c35565b60405180910390f35b3480156103ec57600080fd5b50610407600480360381019061040291906136c4565b610cf3565b604051610415929190613bea565b60405180910390f35b34801561042a57600080fd5b50610433610d3f565b005b34801561044157600080fd5b5061045c60048036038101906104579190613481565b610e6a565b005b34801561046a57600080fd5b50610485600480360381019061048091906133b7565b610e8a565b6040516104929190613c13565b60405180910390f35b3480156104a757600080fd5b506104b0610fdf565b6040516104bd9190613b83565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906133b7565b611005565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613656565b6110c5565b005b34801561052457600080fd5b5061053f600480360381019061053a919061369b565b611157565b60405161054c9190613b83565b60405180910390f35b34801561056157600080fd5b5061057c6004803603810190610577919061369b565b611209565b005b34801561058a57600080fd5b5061059361128f565b6040516105a09190613e92565b60405180910390f35b3480156105b557600080fd5b506105be611295565b6040516105cb9190613c50565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f69190613409565b611323565b005b34801561060957600080fd5b50610624600480360381019061061f91906133b7565b6113eb565b6040516106319190613e92565b60405180910390f35b34801561064657600080fd5b5061064f6114a3565b005b34801561065d57600080fd5b5061066661152b565b6040516106739190613e92565b60405180910390f35b34801561068857600080fd5b50610691611531565b60405161069e9190613b83565b60405180910390f35b6106c160048036038101906106bc919061369b565b61155b565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613656565b61173b565b005b3480156106f857600080fd5b50610713600480360381019061070e91906136c4565b6117cd565b005b34801561072157600080fd5b5061072a61185b565b6040516107379190613c50565b60405180910390f35b61075a600480360381019061075591906135c3565b6118ed565b005b34801561076857600080fd5b50610783600480360381019061077e919061354b565b611cb0565b005b34801561079157600080fd5b506107ac60048036038101906107a791906133b7565b611cc6565b6040516107b99190613e92565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906134d0565b611cde565b005b3480156107f757600080fd5b50610800611d40565b005b34801561080e57600080fd5b506108296004803603810190610824919061369b565b611e23565b6040516108369190613c50565b60405180910390f35b34801561084b57600080fd5b50610866600480360381019061086191906136c4565b611e9f565b005b34801561087457600080fd5b5061087d61204f565b60405161088a9190613e92565b60405180910390f35b34801561089f57600080fd5b506108a8612055565b6040516108b59190613c50565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190613445565b6120e3565b6040516108f29190613c35565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d91906133b7565b612177565b005b34801561093057600080fd5b5061094b6004803603810190610946919061369b565b61226f565b6040516109589190613e92565b60405180910390f35b34801561096d57600080fd5b506109886004803603810190610983919061369b565b612287565b005b34801561099657600080fd5b506109b160048036038101906109ac919061369b565b61232d565b6040516109be9190613e92565b60405180910390f35b60006109d282612345565b80610a215750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060008054610a37906141a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a63906141a8565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b5050505050905090565b6000610ac582612427565b610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90613dd2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4a82611157565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613e12565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bda612493565b73ffffffffffffffffffffffffffffffffffffffff161480610c095750610c0881610c03612493565b6120e3565b5b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90613d52565b60405180910390fd5b610c52838361249b565b505050565b60006001600954610c6891906140ac565b905090565b600c5481565b610c84610c7e612493565b82612554565b610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613e32565b60405180910390fd5b610cce838383612632565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060125485610d2a9190614052565b610d349190614021565b915091509250929050565b610d47612493565b73ffffffffffffffffffffffffffffffffffffffff16610d65611531565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613df2565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610de190613b6e565b60006040518083038185875af1925050503d8060008114610e1e576040519150601f19603f3d011682016040523d82523d6000602084013e610e23565b606091505b5050905080610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90613e52565b60405180910390fd5b50565b610e8583838360405180602001604052806000815250611cde565b505050565b60606000610e97836113eb565b905060008167ffffffffffffffff811115610edb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f095781602001602082028036833780820191505090505b509050600080600190505b610f1c610c57565b8111610fd3578573ffffffffffffffffffffffffffffffffffffffff16610f4282611157565b73ffffffffffffffffffffffffffffffffffffffff161415610fb35780838381518110610f98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610faf9061420b565b9250505b83821415610fc057610fd3565b8080610fcb9061420b565b915050610f14565b50819350505050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61100d612493565b73ffffffffffffffffffffffffffffffffffffffff1661102b611531565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890613df2565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110cd612493565b73ffffffffffffffffffffffffffffffffffffffff166110eb611531565b73ffffffffffffffffffffffffffffffffffffffff1614611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890613df2565b60405180910390fd5b818160079190611152929190613139565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790613d92565b60405180910390fd5b80915050919050565b611211612493565b73ffffffffffffffffffffffffffffffffffffffff1661122f611531565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613df2565b60405180910390fd5b80600a8190555050565b600b5481565b600780546112a2906141a8565b80601f01602080910402602001604051908101604052809291908181526020018280546112ce906141a8565b801561131b5780601f106112f05761010080835404028352916020019161131b565b820191906000526020600020905b8154815290600101906020018083116112fe57829003601f168201915b505050505081565b61132b612493565b73ffffffffffffffffffffffffffffffffffffffff16611349611531565b73ffffffffffffffffffffffffffffffffffffffff161461139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690613df2565b60405180910390fd5b81601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806012819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613d72565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ab612493565b73ffffffffffffffffffffffffffffffffffffffff166114c9611531565b73ffffffffffffffffffffffffffffffffffffffff161461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613df2565b60405180910390fd5b6115296000612899565b565b60095481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600181108061156a5750600281115b156115a1576040517f74dde5a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b544210806115b25750600c5442115b156115e9576040517f33e7584800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600281601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116369190613fcb565b111561166e576040517f7d98136700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806704a01e9587a340006116829190614052565b3410156116bb576040517f7ea94e2900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170a9190613fcb565b9250508190555060005b818110156117375761172461295f565b808061172f9061420b565b915050611714565b5050565b611743612493565b73ffffffffffffffffffffffffffffffffffffffff16611761611531565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613df2565b60405180910390fd5b8181600891906117c8929190613139565b505050565b6117d5612493565b73ffffffffffffffffffffffffffffffffffffffff166117f3611531565b73ffffffffffffffffffffffffffffffffffffffff1614611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090613df2565b60405180910390fd5b81600b8190555080600c819055505050565b60606001805461186a906141a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611896906141a8565b80156118e35780601f106118b8576101008083540402835291602001916118e3565b820191906000526020600020905b8154815290600101906020018083116118c657829003601f168201915b5050505050905090565b600a54421015611929576040517f33e7584800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805167031569b90517800061193e9190614052565b341015611977576040517f7ea94e2900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8151811015611cac5760011515600e60008484815181106119c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615151415611a22576040517fe1f3c53600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110611ab0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401611ad49190613e92565b60206040518083038186803b158015611aec57600080fd5b505afa158015611b00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2491906133e0565b73ffffffffffffffffffffffffffffffffffffffff1614611b71576040517f4dfb335a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e6000848481518110611bb0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600954600f6000848481518110611c1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002081905550818181518110611c70577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160106000600954815260200190815260200160002081905550611c9961295f565b8080611ca49061420b565b91505061197a565b5050565b611cc2611cbb612493565b83836129bb565b5050565b60116020528060005260406000206000915090505481565b611cef611ce9612493565b83612554565b611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590613e32565b60405180910390fd5b611d3a84848484612b28565b50505050565b611d48612493565b73ffffffffffffffffffffffffffffffffffffffff16611d66611531565b73ffffffffffffffffffffffffffffffffffffffff1614611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613df2565b60405180910390fd5b60016009541115611df9576040517fce2e7a4600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b6040811015611e2057611e0d61295f565b8080611e189061420b565b915050611dfc565b50565b6060611e2e82612427565b611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613e72565b60405180910390fd5b6007611e7883612b84565b604051602001611e89929190613b4a565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611f119190613e92565b60206040518083038186803b158015611f2957600080fd5b505afa158015611f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f6191906133e0565b73ffffffffffffffffffffffffffffffffffffffff1614611fae576040517f4dfb335a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611fce82611157565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f86fdf30b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f6000848152602001908152602001600020819055508160106000838152602001908152602001600020819055505050565b600a5481565b60088054612062906141a8565b80601f016020809104026020016040519081016040528092919081815260200182805461208e906141a8565b80156120db5780601f106120b0576101008083540402835291602001916120db565b820191906000526020600020905b8154815290600101906020018083116120be57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61217f612493565b73ffffffffffffffffffffffffffffffffffffffff1661219d611531565b73ffffffffffffffffffffffffffffffffffffffff16146121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90613df2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90613c92565b60405180910390fd5b61226c81612899565b50565b60106020528060005260406000206000915090505481565b61228f612493565b73ffffffffffffffffffffffffffffffffffffffff166122ad611531565b73ffffffffffffffffffffffffffffffffffffffff1614612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90613df2565b60405180910390fd5b60005b818110156123295761231661295f565b80806123219061420b565b915050612306565b5050565b600f6020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061241057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612420575061241f82612d31565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661250e83611157565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061255f82612427565b61259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590613d32565b60405180910390fd5b60006125a983611157565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061261857508373ffffffffffffffffffffffffffffffffffffffff1661260084610aba565b73ffffffffffffffffffffffffffffffffffffffff16145b80612629575061262881856120e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661265282611157565b73ffffffffffffffffffffffffffffffffffffffff16146126a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269f90613cb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270f90613cf2565b60405180910390fd5b612723838383612d9b565b61272e60008261249b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461277e91906140ac565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127d59190613fcb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612894838383612da0565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610457600954111561299d576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129a933600954612da5565b60096000815460010191905081905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190613d12565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b1b9190613c35565b60405180910390a3505050565b612b33848484612632565b612b3f84848484612f7f565b612b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7590613c72565b60405180910390fd5b50505050565b60606000821415612bcc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d2c565b600082905060005b60008214612bfe578080612be79061420b565b915050600a82612bf79190614021565b9150612bd4565b60008167ffffffffffffffff811115612c40577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c725781602001600182028036833780820191505090505b5090505b60008514612d2557600182612c8b91906140ac565b9150600a85612c9a9190614254565b6030612ca69190613fcb565b60f81b818381518110612ce2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1e9190614021565b9450612c76565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c90613db2565b60405180910390fd5b612e1e81612427565b15612e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5590613cd2565b60405180910390fd5b612e6a60008383612d9b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eba9190613fcb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f7b60008383612da0565b5050565b6000612fa08473ffffffffffffffffffffffffffffffffffffffff16613116565b15613109578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc9612493565b8786866040518563ffffffff1660e01b8152600401612feb9493929190613b9e565b602060405180830381600087803b15801561300557600080fd5b505af192505050801561303657506040513d601f19601f82011682018060405250810190613033919061362d565b60015b6130b9573d8060008114613066576040519150601f19603f3d011682016040523d82523d6000602084013e61306b565b606091505b506000815114156130b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a890613c72565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061310e565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613145906141a8565b90600052602060002090601f01602090048101928261316757600085556131ae565b82601f1061318057803560ff19168380011785556131ae565b828001600101855582156131ae579182015b828111156131ad578235825591602001919060010190613192565b5b5090506131bb91906131bf565b5090565b5b808211156131d85760008160009055506001016131c0565b5090565b60006131ef6131ea84613ed2565b613ead565b9050808382526020820190508285602086028201111561320e57600080fd5b60005b8581101561323e578161322488826133a2565b845260208401935060208301925050600181019050613211565b5050509392505050565b600061325b61325684613efe565b613ead565b90508281526020810184848401111561327357600080fd5b61327e848285614166565b509392505050565b600081359050613295816147b0565b92915050565b6000815190506132aa816147b0565b92915050565b6000813590506132bf816147c7565b92915050565b600082601f8301126132d657600080fd5b81356132e68482602086016131dc565b91505092915050565b6000813590506132fe816147de565b92915050565b600081359050613313816147f5565b92915050565b600081519050613328816147f5565b92915050565b600082601f83011261333f57600080fd5b813561334f848260208601613248565b91505092915050565b60008083601f84011261336a57600080fd5b8235905067ffffffffffffffff81111561338357600080fd5b60208301915083600182028301111561339b57600080fd5b9250929050565b6000813590506133b18161480c565b92915050565b6000602082840312156133c957600080fd5b60006133d784828501613286565b91505092915050565b6000602082840312156133f257600080fd5b60006134008482850161329b565b91505092915050565b6000806040838503121561341c57600080fd5b600061342a858286016132b0565b925050602061343b858286016133a2565b9150509250929050565b6000806040838503121561345857600080fd5b600061346685828601613286565b925050602061347785828601613286565b9150509250929050565b60008060006060848603121561349657600080fd5b60006134a486828701613286565b93505060206134b586828701613286565b92505060406134c6868287016133a2565b9150509250925092565b600080600080608085870312156134e657600080fd5b60006134f487828801613286565b945050602061350587828801613286565b9350506040613516878288016133a2565b925050606085013567ffffffffffffffff81111561353357600080fd5b61353f8782880161332e565b91505092959194509250565b6000806040838503121561355e57600080fd5b600061356c85828601613286565b925050602061357d858286016132ef565b9150509250929050565b6000806040838503121561359a57600080fd5b60006135a885828601613286565b92505060206135b9858286016133a2565b9150509250929050565b6000602082840312156135d557600080fd5b600082013567ffffffffffffffff8111156135ef57600080fd5b6135fb848285016132c5565b91505092915050565b60006020828403121561361657600080fd5b600061362484828501613304565b91505092915050565b60006020828403121561363f57600080fd5b600061364d84828501613319565b91505092915050565b6000806020838503121561366957600080fd5b600083013567ffffffffffffffff81111561368357600080fd5b61368f85828601613358565b92509250509250929050565b6000602082840312156136ad57600080fd5b60006136bb848285016133a2565b91505092915050565b600080604083850312156136d757600080fd5b60006136e5858286016133a2565b92505060206136f6858286016133a2565b9150509250929050565b600061370c8383613b2c565b60208301905092915050565b613721816140e0565b82525050565b600061373282613f54565b61373c8185613f82565b935061374783613f2f565b8060005b8381101561377857815161375f8882613700565b975061376a83613f75565b92505060018101905061374b565b5085935050505092915050565b61378e81614104565b82525050565b600061379f82613f5f565b6137a98185613f93565b93506137b9818560208601614175565b6137c281614341565b840191505092915050565b60006137d882613f6a565b6137e28185613faf565b93506137f2818560208601614175565b6137fb81614341565b840191505092915050565b600061381182613f6a565b61381b8185613fc0565b935061382b818560208601614175565b80840191505092915050565b60008154613844816141a8565b61384e8186613fc0565b94506001821660008114613869576001811461387a576138ad565b60ff198316865281860193506138ad565b61388385613f3f565b60005b838110156138a557815481890152600182019150602081019050613886565b838801955050505b50505092915050565b60006138c3603283613faf565b91506138ce82614352565b604082019050919050565b60006138e6602683613faf565b91506138f1826143a1565b604082019050919050565b6000613909602583613faf565b9150613914826143f0565b604082019050919050565b600061392c601c83613faf565b91506139378261443f565b602082019050919050565b600061394f602483613faf565b915061395a82614468565b604082019050919050565b6000613972601983613faf565b915061397d826144b7565b602082019050919050565b6000613995602c83613faf565b91506139a0826144e0565b604082019050919050565b60006139b8603883613faf565b91506139c38261452f565b604082019050919050565b60006139db602a83613faf565b91506139e68261457e565b604082019050919050565b60006139fe602983613faf565b9150613a09826145cd565b604082019050919050565b6000613a21602083613faf565b9150613a2c8261461c565b602082019050919050565b6000613a44602c83613faf565b9150613a4f82614645565b604082019050919050565b6000613a67602083613faf565b9150613a7282614694565b602082019050919050565b6000613a8a602183613faf565b9150613a95826146bd565b604082019050919050565b6000613aad600083613fa4565b9150613ab88261470c565b600082019050919050565b6000613ad0603183613faf565b9150613adb8261470f565b604082019050919050565b6000613af3600f83613faf565b9150613afe8261475e565b602082019050919050565b6000613b16601583613faf565b9150613b2182614787565b602082019050919050565b613b358161415c565b82525050565b613b448161415c565b82525050565b6000613b568285613837565b9150613b628284613806565b91508190509392505050565b6000613b7982613aa0565b9150819050919050565b6000602082019050613b986000830184613718565b92915050565b6000608082019050613bb36000830187613718565b613bc06020830186613718565b613bcd6040830185613b3b565b8181036060830152613bdf8184613794565b905095945050505050565b6000604082019050613bff6000830185613718565b613c0c6020830184613b3b565b9392505050565b60006020820190508181036000830152613c2d8184613727565b905092915050565b6000602082019050613c4a6000830184613785565b92915050565b60006020820190508181036000830152613c6a81846137cd565b905092915050565b60006020820190508181036000830152613c8b816138b6565b9050919050565b60006020820190508181036000830152613cab816138d9565b9050919050565b60006020820190508181036000830152613ccb816138fc565b9050919050565b60006020820190508181036000830152613ceb8161391f565b9050919050565b60006020820190508181036000830152613d0b81613942565b9050919050565b60006020820190508181036000830152613d2b81613965565b9050919050565b60006020820190508181036000830152613d4b81613988565b9050919050565b60006020820190508181036000830152613d6b816139ab565b9050919050565b60006020820190508181036000830152613d8b816139ce565b9050919050565b60006020820190508181036000830152613dab816139f1565b9050919050565b60006020820190508181036000830152613dcb81613a14565b9050919050565b60006020820190508181036000830152613deb81613a37565b9050919050565b60006020820190508181036000830152613e0b81613a5a565b9050919050565b60006020820190508181036000830152613e2b81613a7d565b9050919050565b60006020820190508181036000830152613e4b81613ac3565b9050919050565b60006020820190508181036000830152613e6b81613ae6565b9050919050565b60006020820190508181036000830152613e8b81613b09565b9050919050565b6000602082019050613ea76000830184613b3b565b92915050565b6000613eb7613ec8565b9050613ec382826141da565b919050565b6000604051905090565b600067ffffffffffffffff821115613eed57613eec614312565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f1957613f18614312565b5b613f2282614341565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fd68261415c565b9150613fe18361415c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561401657614015614285565b5b828201905092915050565b600061402c8261415c565b91506140378361415c565b925082614047576140466142b4565b5b828204905092915050565b600061405d8261415c565b91506140688361415c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140a1576140a0614285565b5b828202905092915050565b60006140b78261415c565b91506140c28361415c565b9250828210156140d5576140d4614285565b5b828203905092915050565b60006140eb8261413c565b9050919050565b60006140fd8261413c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614193578082015181840152602081019050614178565b838111156141a2576000848401525b50505050565b600060028204905060018216806141c057607f821691505b602082108114156141d4576141d36142e3565b5b50919050565b6141e382614341565b810181811067ffffffffffffffff8211171561420257614201614312565b5b80604052505050565b60006142168261415c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561424957614248614285565b5b600182019050919050565b600061425f8261415c565b915061426a8361415c565b92508261427a576142796142b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b6147b9816140e0565b81146147c457600080fd5b50565b6147d0816140f2565b81146147db57600080fd5b50565b6147e781614104565b81146147f257600080fd5b50565b6147fe81614110565b811461480957600080fd5b50565b6148158161415c565b811461482057600080fd5b5056fea264697066735822122015ae2a3f9650287800b470d9cafa5b8d2d7ecfa1fcb972a5a987c268bafb222b64736f6c6343000804003368747470733a2f2f6170692e6c6f73746368696c6472656e2e78797a2f63796e7175652d636f6e74726163742e6a736f6e4c6f7374204368696c6472656e206f6620416e64726f6d6564613a2043594e5155452050726f746f7479706568747470733a2f2f6170692e6c6f73746368696c6472656e2e78797a2f6170692f63796e717565732f
Deployed Bytecode
0x6080604052600436106102515760003560e01c8063715018a611610139578063b88d4fde116100b6578063e8a3d4851161007a578063e8a3d48514610893578063e985e9c5146108be578063f2fde38b146108fb578063f35ceb9014610924578063f670084a14610961578063fbc2b6271461098a57610251565b8063b88d4fde146107c2578063ba7a86b8146107eb578063c87b56dd14610802578063cb7f028d1461083f578063cf679dfc1461086857610251565b8063955e16af116100fd578063955e16af146106ec57806395d89b411461071557806399abc77514610740578063a22cb4651461075c578063b329ff691461078557610251565b8063715018a61461063a57806375794a3c146106515780638da5cb5b1461067c57806391096ce3146106a7578063938e3d7b146106c357610251565b806342842e0e116101d25780636352211e116101965780636352211e1461051857806369077a93146105555780636bb7b1d91461057e5780636c0360eb146105a95780636c2f5acd146105d457806370a08231146105fd57610251565b806342842e0e14610435578063438b63001461045e578063460f05221461049b5780634c5ff4f7146104c657806355f804b3146104ef57610251565b80631e4d185f116102195780631e4d185f1461034f57806323b872dd1461037a57806329f7617f146103a35780632a55205a146103e05780633ccfd60b1461041e57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613604565b6109c7565b60405161028a9190613c35565b60405180910390f35b34801561029f57600080fd5b506102a8610a28565b6040516102b59190613c50565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e0919061369b565b610aba565b6040516102f29190613b83565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613587565b610b3f565b005b34801561033057600080fd5b50610339610c57565b6040516103469190613e92565b60405180910390f35b34801561035b57600080fd5b50610364610c6d565b6040516103719190613e92565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613481565b610c73565b005b3480156103af57600080fd5b506103ca60048036038101906103c5919061369b565b610cd3565b6040516103d79190613c35565b60405180910390f35b3480156103ec57600080fd5b50610407600480360381019061040291906136c4565b610cf3565b604051610415929190613bea565b60405180910390f35b34801561042a57600080fd5b50610433610d3f565b005b34801561044157600080fd5b5061045c60048036038101906104579190613481565b610e6a565b005b34801561046a57600080fd5b50610485600480360381019061048091906133b7565b610e8a565b6040516104929190613c13565b60405180910390f35b3480156104a757600080fd5b506104b0610fdf565b6040516104bd9190613b83565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906133b7565b611005565b005b3480156104fb57600080fd5b5061051660048036038101906105119190613656565b6110c5565b005b34801561052457600080fd5b5061053f600480360381019061053a919061369b565b611157565b60405161054c9190613b83565b60405180910390f35b34801561056157600080fd5b5061057c6004803603810190610577919061369b565b611209565b005b34801561058a57600080fd5b5061059361128f565b6040516105a09190613e92565b60405180910390f35b3480156105b557600080fd5b506105be611295565b6040516105cb9190613c50565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f69190613409565b611323565b005b34801561060957600080fd5b50610624600480360381019061061f91906133b7565b6113eb565b6040516106319190613e92565b60405180910390f35b34801561064657600080fd5b5061064f6114a3565b005b34801561065d57600080fd5b5061066661152b565b6040516106739190613e92565b60405180910390f35b34801561068857600080fd5b50610691611531565b60405161069e9190613b83565b60405180910390f35b6106c160048036038101906106bc919061369b565b61155b565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613656565b61173b565b005b3480156106f857600080fd5b50610713600480360381019061070e91906136c4565b6117cd565b005b34801561072157600080fd5b5061072a61185b565b6040516107379190613c50565b60405180910390f35b61075a600480360381019061075591906135c3565b6118ed565b005b34801561076857600080fd5b50610783600480360381019061077e919061354b565b611cb0565b005b34801561079157600080fd5b506107ac60048036038101906107a791906133b7565b611cc6565b6040516107b99190613e92565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906134d0565b611cde565b005b3480156107f757600080fd5b50610800611d40565b005b34801561080e57600080fd5b506108296004803603810190610824919061369b565b611e23565b6040516108369190613c50565b60405180910390f35b34801561084b57600080fd5b50610866600480360381019061086191906136c4565b611e9f565b005b34801561087457600080fd5b5061087d61204f565b60405161088a9190613e92565b60405180910390f35b34801561089f57600080fd5b506108a8612055565b6040516108b59190613c50565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e09190613445565b6120e3565b6040516108f29190613c35565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d91906133b7565b612177565b005b34801561093057600080fd5b5061094b6004803603810190610946919061369b565b61226f565b6040516109589190613e92565b60405180910390f35b34801561096d57600080fd5b506109886004803603810190610983919061369b565b612287565b005b34801561099657600080fd5b506109b160048036038101906109ac919061369b565b61232d565b6040516109be9190613e92565b60405180910390f35b60006109d282612345565b80610a215750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060008054610a37906141a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a63906141a8565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b5050505050905090565b6000610ac582612427565b610b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afb90613dd2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4a82611157565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613e12565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bda612493565b73ffffffffffffffffffffffffffffffffffffffff161480610c095750610c0881610c03612493565b6120e3565b5b610c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3f90613d52565b60405180910390fd5b610c52838361249b565b505050565b60006001600954610c6891906140ac565b905090565b600c5481565b610c84610c7e612493565b82612554565b610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613e32565b60405180910390fd5b610cce838383612632565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060125485610d2a9190614052565b610d349190614021565b915091509250929050565b610d47612493565b73ffffffffffffffffffffffffffffffffffffffff16610d65611531565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613df2565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610de190613b6e565b60006040518083038185875af1925050503d8060008114610e1e576040519150601f19603f3d011682016040523d82523d6000602084013e610e23565b606091505b5050905080610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90613e52565b60405180910390fd5b50565b610e8583838360405180602001604052806000815250611cde565b505050565b60606000610e97836113eb565b905060008167ffffffffffffffff811115610edb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f095781602001602082028036833780820191505090505b509050600080600190505b610f1c610c57565b8111610fd3578573ffffffffffffffffffffffffffffffffffffffff16610f4282611157565b73ffffffffffffffffffffffffffffffffffffffff161415610fb35780838381518110610f98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610faf9061420b565b9250505b83821415610fc057610fd3565b8080610fcb9061420b565b915050610f14565b50819350505050919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61100d612493565b73ffffffffffffffffffffffffffffffffffffffff1661102b611531565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890613df2565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110cd612493565b73ffffffffffffffffffffffffffffffffffffffff166110eb611531565b73ffffffffffffffffffffffffffffffffffffffff1614611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890613df2565b60405180910390fd5b818160079190611152929190613139565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f790613d92565b60405180910390fd5b80915050919050565b611211612493565b73ffffffffffffffffffffffffffffffffffffffff1661122f611531565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613df2565b60405180910390fd5b80600a8190555050565b600b5481565b600780546112a2906141a8565b80601f01602080910402602001604051908101604052809291908181526020018280546112ce906141a8565b801561131b5780601f106112f05761010080835404028352916020019161131b565b820191906000526020600020905b8154815290600101906020018083116112fe57829003601f168201915b505050505081565b61132b612493565b73ffffffffffffffffffffffffffffffffffffffff16611349611531565b73ffffffffffffffffffffffffffffffffffffffff161461139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690613df2565b60405180910390fd5b81601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806012819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613d72565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114ab612493565b73ffffffffffffffffffffffffffffffffffffffff166114c9611531565b73ffffffffffffffffffffffffffffffffffffffff161461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613df2565b60405180910390fd5b6115296000612899565b565b60095481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600181108061156a5750600281115b156115a1576040517f74dde5a000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b544210806115b25750600c5442115b156115e9576040517f33e7584800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600281601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116369190613fcb565b111561166e576040517f7d98136700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806704a01e9587a340006116829190614052565b3410156116bb576040517f7ea94e2900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170a9190613fcb565b9250508190555060005b818110156117375761172461295f565b808061172f9061420b565b915050611714565b5050565b611743612493565b73ffffffffffffffffffffffffffffffffffffffff16611761611531565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613df2565b60405180910390fd5b8181600891906117c8929190613139565b505050565b6117d5612493565b73ffffffffffffffffffffffffffffffffffffffff166117f3611531565b73ffffffffffffffffffffffffffffffffffffffff1614611849576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184090613df2565b60405180910390fd5b81600b8190555080600c819055505050565b60606001805461186a906141a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611896906141a8565b80156118e35780601f106118b8576101008083540402835291602001916118e3565b820191906000526020600020905b8154815290600101906020018083116118c657829003601f168201915b5050505050905090565b600a54421015611929576040517f33e7584800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805167031569b90517800061193e9190614052565b341015611977576040517f7ea94e2900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8151811015611cac5760011515600e60008484815181106119c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff1615151415611a22576040517fe1f3c53600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110611ab0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b8152600401611ad49190613e92565b60206040518083038186803b158015611aec57600080fd5b505afa158015611b00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2491906133e0565b73ffffffffffffffffffffffffffffffffffffffff1614611b71576040517f4dfb335a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600e6000848481518110611bb0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600954600f6000848481518110611c1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002081905550818181518110611c70577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160106000600954815260200190815260200160002081905550611c9961295f565b8080611ca49061420b565b91505061197a565b5050565b611cc2611cbb612493565b83836129bb565b5050565b60116020528060005260406000206000915090505481565b611cef611ce9612493565b83612554565b611d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2590613e32565b60405180910390fd5b611d3a84848484612b28565b50505050565b611d48612493565b73ffffffffffffffffffffffffffffffffffffffff16611d66611531565b73ffffffffffffffffffffffffffffffffffffffff1614611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613df2565b60405180910390fd5b60016009541115611df9576040517fce2e7a4600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b6040811015611e2057611e0d61295f565b8080611e189061420b565b915050611dfc565b50565b6060611e2e82612427565b611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613e72565b60405180910390fd5b6007611e7883612b84565b604051602001611e89929190613b4a565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611f119190613e92565b60206040518083038186803b158015611f2957600080fd5b505afa158015611f3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f6191906133e0565b73ffffffffffffffffffffffffffffffffffffffff1614611fae576040517f4dfb335a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611fce82611157565b73ffffffffffffffffffffffffffffffffffffffff161461201b576040517f86fdf30b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f6000848152602001908152602001600020819055508160106000838152602001908152602001600020819055505050565b600a5481565b60088054612062906141a8565b80601f016020809104026020016040519081016040528092919081815260200182805461208e906141a8565b80156120db5780601f106120b0576101008083540402835291602001916120db565b820191906000526020600020905b8154815290600101906020018083116120be57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61217f612493565b73ffffffffffffffffffffffffffffffffffffffff1661219d611531565b73ffffffffffffffffffffffffffffffffffffffff16146121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90613df2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90613c92565b60405180910390fd5b61226c81612899565b50565b60106020528060005260406000206000915090505481565b61228f612493565b73ffffffffffffffffffffffffffffffffffffffff166122ad611531565b73ffffffffffffffffffffffffffffffffffffffff1614612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90613df2565b60405180910390fd5b60005b818110156123295761231661295f565b80806123219061420b565b915050612306565b5050565b600f6020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061241057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612420575061241f82612d31565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661250e83611157565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061255f82612427565b61259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590613d32565b60405180910390fd5b60006125a983611157565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061261857508373ffffffffffffffffffffffffffffffffffffffff1661260084610aba565b73ffffffffffffffffffffffffffffffffffffffff16145b80612629575061262881856120e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661265282611157565b73ffffffffffffffffffffffffffffffffffffffff16146126a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269f90613cb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270f90613cf2565b60405180910390fd5b612723838383612d9b565b61272e60008261249b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461277e91906140ac565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127d59190613fcb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612894838383612da0565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610457600954111561299d576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129a933600954612da5565b60096000815460010191905081905550565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190613d12565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b1b9190613c35565b60405180910390a3505050565b612b33848484612632565b612b3f84848484612f7f565b612b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7590613c72565b60405180910390fd5b50505050565b60606000821415612bcc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d2c565b600082905060005b60008214612bfe578080612be79061420b565b915050600a82612bf79190614021565b9150612bd4565b60008167ffffffffffffffff811115612c40577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c725781602001600182028036833780820191505090505b5090505b60008514612d2557600182612c8b91906140ac565b9150600a85612c9a9190614254565b6030612ca69190613fcb565b60f81b818381518110612ce2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d1e9190614021565b9450612c76565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c90613db2565b60405180910390fd5b612e1e81612427565b15612e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5590613cd2565b60405180910390fd5b612e6a60008383612d9b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eba9190613fcb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f7b60008383612da0565b5050565b6000612fa08473ffffffffffffffffffffffffffffffffffffffff16613116565b15613109578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc9612493565b8786866040518563ffffffff1660e01b8152600401612feb9493929190613b9e565b602060405180830381600087803b15801561300557600080fd5b505af192505050801561303657506040513d601f19601f82011682018060405250810190613033919061362d565b60015b6130b9573d8060008114613066576040519150601f19603f3d011682016040523d82523d6000602084013e61306b565b606091505b506000815114156130b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a890613c72565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061310e565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613145906141a8565b90600052602060002090601f01602090048101928261316757600085556131ae565b82601f1061318057803560ff19168380011785556131ae565b828001600101855582156131ae579182015b828111156131ad578235825591602001919060010190613192565b5b5090506131bb91906131bf565b5090565b5b808211156131d85760008160009055506001016131c0565b5090565b60006131ef6131ea84613ed2565b613ead565b9050808382526020820190508285602086028201111561320e57600080fd5b60005b8581101561323e578161322488826133a2565b845260208401935060208301925050600181019050613211565b5050509392505050565b600061325b61325684613efe565b613ead565b90508281526020810184848401111561327357600080fd5b61327e848285614166565b509392505050565b600081359050613295816147b0565b92915050565b6000815190506132aa816147b0565b92915050565b6000813590506132bf816147c7565b92915050565b600082601f8301126132d657600080fd5b81356132e68482602086016131dc565b91505092915050565b6000813590506132fe816147de565b92915050565b600081359050613313816147f5565b92915050565b600081519050613328816147f5565b92915050565b600082601f83011261333f57600080fd5b813561334f848260208601613248565b91505092915050565b60008083601f84011261336a57600080fd5b8235905067ffffffffffffffff81111561338357600080fd5b60208301915083600182028301111561339b57600080fd5b9250929050565b6000813590506133b18161480c565b92915050565b6000602082840312156133c957600080fd5b60006133d784828501613286565b91505092915050565b6000602082840312156133f257600080fd5b60006134008482850161329b565b91505092915050565b6000806040838503121561341c57600080fd5b600061342a858286016132b0565b925050602061343b858286016133a2565b9150509250929050565b6000806040838503121561345857600080fd5b600061346685828601613286565b925050602061347785828601613286565b9150509250929050565b60008060006060848603121561349657600080fd5b60006134a486828701613286565b93505060206134b586828701613286565b92505060406134c6868287016133a2565b9150509250925092565b600080600080608085870312156134e657600080fd5b60006134f487828801613286565b945050602061350587828801613286565b9350506040613516878288016133a2565b925050606085013567ffffffffffffffff81111561353357600080fd5b61353f8782880161332e565b91505092959194509250565b6000806040838503121561355e57600080fd5b600061356c85828601613286565b925050602061357d858286016132ef565b9150509250929050565b6000806040838503121561359a57600080fd5b60006135a885828601613286565b92505060206135b9858286016133a2565b9150509250929050565b6000602082840312156135d557600080fd5b600082013567ffffffffffffffff8111156135ef57600080fd5b6135fb848285016132c5565b91505092915050565b60006020828403121561361657600080fd5b600061362484828501613304565b91505092915050565b60006020828403121561363f57600080fd5b600061364d84828501613319565b91505092915050565b6000806020838503121561366957600080fd5b600083013567ffffffffffffffff81111561368357600080fd5b61368f85828601613358565b92509250509250929050565b6000602082840312156136ad57600080fd5b60006136bb848285016133a2565b91505092915050565b600080604083850312156136d757600080fd5b60006136e5858286016133a2565b92505060206136f6858286016133a2565b9150509250929050565b600061370c8383613b2c565b60208301905092915050565b613721816140e0565b82525050565b600061373282613f54565b61373c8185613f82565b935061374783613f2f565b8060005b8381101561377857815161375f8882613700565b975061376a83613f75565b92505060018101905061374b565b5085935050505092915050565b61378e81614104565b82525050565b600061379f82613f5f565b6137a98185613f93565b93506137b9818560208601614175565b6137c281614341565b840191505092915050565b60006137d882613f6a565b6137e28185613faf565b93506137f2818560208601614175565b6137fb81614341565b840191505092915050565b600061381182613f6a565b61381b8185613fc0565b935061382b818560208601614175565b80840191505092915050565b60008154613844816141a8565b61384e8186613fc0565b94506001821660008114613869576001811461387a576138ad565b60ff198316865281860193506138ad565b61388385613f3f565b60005b838110156138a557815481890152600182019150602081019050613886565b838801955050505b50505092915050565b60006138c3603283613faf565b91506138ce82614352565b604082019050919050565b60006138e6602683613faf565b91506138f1826143a1565b604082019050919050565b6000613909602583613faf565b9150613914826143f0565b604082019050919050565b600061392c601c83613faf565b91506139378261443f565b602082019050919050565b600061394f602483613faf565b915061395a82614468565b604082019050919050565b6000613972601983613faf565b915061397d826144b7565b602082019050919050565b6000613995602c83613faf565b91506139a0826144e0565b604082019050919050565b60006139b8603883613faf565b91506139c38261452f565b604082019050919050565b60006139db602a83613faf565b91506139e68261457e565b604082019050919050565b60006139fe602983613faf565b9150613a09826145cd565b604082019050919050565b6000613a21602083613faf565b9150613a2c8261461c565b602082019050919050565b6000613a44602c83613faf565b9150613a4f82614645565b604082019050919050565b6000613a67602083613faf565b9150613a7282614694565b602082019050919050565b6000613a8a602183613faf565b9150613a95826146bd565b604082019050919050565b6000613aad600083613fa4565b9150613ab88261470c565b600082019050919050565b6000613ad0603183613faf565b9150613adb8261470f565b604082019050919050565b6000613af3600f83613faf565b9150613afe8261475e565b602082019050919050565b6000613b16601583613faf565b9150613b2182614787565b602082019050919050565b613b358161415c565b82525050565b613b448161415c565b82525050565b6000613b568285613837565b9150613b628284613806565b91508190509392505050565b6000613b7982613aa0565b9150819050919050565b6000602082019050613b986000830184613718565b92915050565b6000608082019050613bb36000830187613718565b613bc06020830186613718565b613bcd6040830185613b3b565b8181036060830152613bdf8184613794565b905095945050505050565b6000604082019050613bff6000830185613718565b613c0c6020830184613b3b565b9392505050565b60006020820190508181036000830152613c2d8184613727565b905092915050565b6000602082019050613c4a6000830184613785565b92915050565b60006020820190508181036000830152613c6a81846137cd565b905092915050565b60006020820190508181036000830152613c8b816138b6565b9050919050565b60006020820190508181036000830152613cab816138d9565b9050919050565b60006020820190508181036000830152613ccb816138fc565b9050919050565b60006020820190508181036000830152613ceb8161391f565b9050919050565b60006020820190508181036000830152613d0b81613942565b9050919050565b60006020820190508181036000830152613d2b81613965565b9050919050565b60006020820190508181036000830152613d4b81613988565b9050919050565b60006020820190508181036000830152613d6b816139ab565b9050919050565b60006020820190508181036000830152613d8b816139ce565b9050919050565b60006020820190508181036000830152613dab816139f1565b9050919050565b60006020820190508181036000830152613dcb81613a14565b9050919050565b60006020820190508181036000830152613deb81613a37565b9050919050565b60006020820190508181036000830152613e0b81613a5a565b9050919050565b60006020820190508181036000830152613e2b81613a7d565b9050919050565b60006020820190508181036000830152613e4b81613ac3565b9050919050565b60006020820190508181036000830152613e6b81613ae6565b9050919050565b60006020820190508181036000830152613e8b81613b09565b9050919050565b6000602082019050613ea76000830184613b3b565b92915050565b6000613eb7613ec8565b9050613ec382826141da565b919050565b6000604051905090565b600067ffffffffffffffff821115613eed57613eec614312565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f1957613f18614312565b5b613f2282614341565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fd68261415c565b9150613fe18361415c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561401657614015614285565b5b828201905092915050565b600061402c8261415c565b91506140378361415c565b925082614047576140466142b4565b5b828204905092915050565b600061405d8261415c565b91506140688361415c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140a1576140a0614285565b5b828202905092915050565b60006140b78261415c565b91506140c28361415c565b9250828210156140d5576140d4614285565b5b828203905092915050565b60006140eb8261413c565b9050919050565b60006140fd8261413c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614193578082015181840152602081019050614178565b838111156141a2576000848401525b50505050565b600060028204905060018216806141c057607f821691505b602082108114156141d4576141d36142e3565b5b50919050565b6141e382614341565b810181811067ffffffffffffffff8211171561420257614201614312565b5b80604052505050565b60006142168261415c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561424957614248614285565b5b600182019050919050565b600061425f8261415c565b915061426a8361415c565b92508261427a576142796142b4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374210000000000000000000000600082015250565b6147b9816140e0565b81146147c457600080fd5b50565b6147d0816140f2565b81146147db57600080fd5b50565b6147e781614104565b81146147f257600080fd5b50565b6147fe81614110565b811461480957600080fd5b50565b6148158161415c565b811461482057600080fd5b5056fea264697066735822122015ae2a3f9650287800b470d9cafa5b8d2d7ecfa1fcb972a5a987c268bafb222b64736f6c63430008040033
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.