Address Details
contract
token
0xAc80c3c8b122DB4DcC3C351ca93aC7E0927C605d
- Token
- Celostrials (NFET)
- Creator
- 0x5ac1cf–67fbfd at 0xa1cb59–7740ae
- Balance
- 141 CELO ( )
- Locked CELO Balance
- 0.00 CELO
- Voting CELO Balance
- 0.00 CELO
- Pending Unlocked Gold
- 0.00 CELO
- Tokens
-
Fetching tokens...
- Transactions
- 6,448 Transactions
- Transfers
- 3,071 Transfers
- Gas Used
- 1,058,474,803
- Last Balance Update
- 22709615
Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
This contract has been verified via Sourcify.
View contract in Sourcify repository
- Contract name:
- Celostrials
- Optimization enabled
- false
- Compiler version
- v0.8.7+commit.e28d00a7
- EVM Version
- london
- Verified at
- 2022-02-13T20:12:04.922082Z
contracts/Celostrials.sol
// SPDX-License-Identifier: MIT // Celostrials | Aliens are now on Celo pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract Celostrials is Ownable, Pausable, ERC721Enumerable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public maxSupply = 10000; uint256 private batchSize = 50; uint256 private currentBatch = 1; uint256 public maxMintAmount = 10; uint256 public cost = 3 ether; bool public onlyWhitelist = false; mapping(uint256 => bool) private isMinted; mapping(address => uint256) whiteList; modifier isWhitelisted(address _address) { require(whiteList[_address] > 0, "Celostrials: Minting is only open to whitelisted wallets currently"); _; } constructor() ERC721("Celostrials", "NFET") { setBaseURI("https://ipfs.io/ipfs/QmTn1W5CpTdqrkvdSLb7nXGWVYYmoTWMv8N2ripQthXw2v/"); for (uint16 i = 1; i <= 51; i++) { _safeMint(msg.sender, i); isMinted[i] = true; } } function _baseURI() internal view override returns (string memory) { return baseURI; } function mint(address _to, uint16 _mintAmount) public payable whenNotPaused { require(_mintAmount > 0, "Celostrials: mintAmount should be greater than 0"); require(_mintAmount <= maxMintAmount, "Celostrials: mintAmount should be less than max mint"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "Celostrials: Supply not available"); if (onlyWhitelist) { require(_mintAmount <= whiteList[msg.sender], "Celostrails: Maximum whitelist mint is 4"); require(whiteList[msg.sender] > 0, "Celostrials: Minting is only open to whitelisted wallets currently"); whiteList[msg.sender] -= _mintAmount; } if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount, "Celostrials: Insuffcient Celo"); } for (uint16 i = 1; i <= _mintAmount; i++) { mintRandom(_to); } } function mintRandom(address _to) internal { uint256 supply = totalSupply(); if (supply % batchSize == 0) { currentBatch++; } uint256 index = getRandomInBatch(supply); bool minted = false; while (!minted) { if (!isMinted[index]) { _safeMint(_to, index); isMinted[index] = true; minted = true; } else { if (index == batchSize * (currentBatch + 1)) { index = (batchSize * currentBatch) + 1; } else { index++; } } } } function getRandomInBatch(uint256 supply) internal view returns (uint256) { uint256 offset = (batchSize * currentBatch); uint256 randomnumber = uint(keccak256(abi.encodePacked(block.timestamp, msg.sender, supply))) % (batchSize + 1); randomnumber = randomnumber + offset; return randomnumber; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Celostrials: URI query for nonexistent token"); string memory curretBaseURI = _baseURI(); return bytes(curretBaseURI).length > 0 ? string(abi.encodePacked(curretBaseURI, tokenId.toString(), baseExtension)) : ""; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance), "Transfer Failed"); } function withdrawERC20(IERC20 token) public onlyOwner { require(token.transfer(msg.sender, token.balanceOf(address(this))), "Transfer failed"); } function addUser(address _addressToWhitelist) public onlyOwner { whiteList[_addressToWhitelist] = 4; } function openWhitelist() public onlyOwner { onlyWhitelist = true; } function closeWhitelist() public onlyOwner { onlyWhitelist = false; } function isWhitelist() external view returns(bool) { return whiteList[msg.sender] > 0; } }
/_openzeppelin/contracts/access/Ownable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
/_openzeppelin/contracts/security/Pausable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
/_openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
/_openzeppelin/contracts/token/ERC721/ERC721.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
/_openzeppelin/contracts/token/ERC721/IERC721.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
/_openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
/_openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
/_openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Pausable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } }
/_openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
/_openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
/_openzeppelin/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
/_openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
/_openzeppelin/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
/_openzeppelin/contracts/utils/introspection/ERC165.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
/_openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addUser","inputs":[{"type":"address","name":"_addressToWhitelist","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseExtension","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseURI","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"closeWhitelist","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cost","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isWhitelist","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxMintAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupply","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"uint16","name":"_mintAmount","internalType":"uint16"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"onlyWhitelist","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"openWhitelist","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseExtension","inputs":[{"type":"string","name":"_newBaseExtension","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseURI","inputs":[{"type":"string","name":"_newBaseURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCost","inputs":[{"type":"uint256","name":"_newCost","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxMintAmount","inputs":[{"type":"uint256","name":"_newmaxMintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenByIndex","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenOfOwnerByIndex","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"walletOfOwner","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"withdraw","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawERC20","inputs":[{"type":"address","name":"token","internalType":"contract IERC20"}]}]
Contract Creation Code
0x60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000d9f565b50612710600d556032600e556001600f55600a6010556729a2241af62c00006011556000601260006101000a81548160ff0219169083151502179055503480156200009b57600080fd5b506040518060400160405280600b81526020017f43656c6f73747269616c730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e46455400000000000000000000000000000000000000000000000000000000815250620001286200011c6200021760201b60201c565b6200021f60201b60201c565b60008060146101000a81548160ff02191690831515021790555081600190805190602001906200015a92919062000d9f565b5080600290805190602001906200017392919062000d9f565b505050620001a06040518060800160405280604481526020016200683860449139620002e360201b60201c565b6000600190505b60338161ffff16116200021057620001ca338261ffff166200038e60201b60201c565b6001601360008361ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620002079062001265565b915050620001a7565b506200149a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002f36200021760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000319620003b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000369906200109a565b60405180910390fd5b80600b90805190602001906200038a92919062000d9f565b5050565b620003b0828260405180602001604052806000815250620003dd60201b60201c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003ef83836200044b60201b60201c565b6200040460008484846200063160201b60201c565b62000446576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043d9062001012565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b59062001078565b60405180910390fd5b620004cf81620007eb60201b60201c565b1562000512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005099062001034565b60405180910390fd5b62000526600083836200085760201b60201c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005789190620010e9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006200065f8473ffffffffffffffffffffffffffffffffffffffff166200099e60201b620020591760201c565b15620007de578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006916200021760201b60201c565b8786866040518563ffffffff1660e01b8152600401620006b5949392919062000fbe565b602060405180830381600087803b158015620006d057600080fd5b505af19250505080156200070457506040513d601f19601f8201168201806040525081019062000701919062000e66565b60015b6200078d573d806000811462000737576040519150601f19603f3d011682016040523d82523d6000602084013e6200073c565b606091505b5060008151141562000785576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077c9062001012565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007e3565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200086f838383620009b160201b6200206c1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620008bc57620008b681620009b660201b60201c565b62000904565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200090357620009028382620009ff60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000951576200094b8162000b7c60201b60201c565b62000999565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620009985762000997828262000c5860201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a198462000ce460201b620014a31760201c565b62000a25919062001146565b905060006008600084815260200190815260200160002054905081811462000b0b576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905062000b92919062001146565b90506000600a600084815260200190815260200160002054905060006009838154811062000bc55762000bc462001322565b5b90600052602060002001549050806009838154811062000bea5762000be962001322565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548062000c3c5762000c3b620012f3565b5b6001900381819060005260206000200160009055905550505050565b600062000c708362000ce460201b620014a31760201c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000d58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d4f9062001056565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000dad906200122f565b90600052602060002090601f01602090048101928262000dd1576000855562000e1d565b82601f1062000dec57805160ff191683800117855562000e1d565b8280016001018555821562000e1d579182015b8281111562000e1c57825182559160200191906001019062000dff565b5b50905062000e2c919062000e30565b5090565b5b8082111562000e4b57600081600090555060010162000e31565b5090565b60008151905062000e608162001480565b92915050565b60006020828403121562000e7f5762000e7e62001351565b5b600062000e8f8482850162000e4f565b91505092915050565b62000ea38162001181565b82525050565b600062000eb682620010bc565b62000ec28185620010c7565b935062000ed4818560208601620011f9565b62000edf8162001356565b840191505092915050565b600062000ef9603283620010d8565b915062000f068262001367565b604082019050919050565b600062000f20601c83620010d8565b915062000f2d82620013b6565b602082019050919050565b600062000f47602a83620010d8565b915062000f5482620013df565b604082019050919050565b600062000f6e602083620010d8565b915062000f7b826200142e565b602082019050919050565b600062000f95602083620010d8565b915062000fa28262001457565b602082019050919050565b62000fb881620011ef565b82525050565b600060808201905062000fd5600083018762000e98565b62000fe4602083018662000e98565b62000ff3604083018562000fad565b818103606083015262001007818462000ea9565b905095945050505050565b600060208201905081810360008301526200102d8162000eea565b9050919050565b600060208201905081810360008301526200104f8162000f11565b9050919050565b60006020820190508181036000830152620010718162000f38565b9050919050565b60006020820190508181036000830152620010938162000f5f565b9050919050565b60006020820190508181036000830152620010b58162000f86565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620010f682620011ef565b91506200110383620011ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200113b576200113a62001295565b5b828201905092915050565b60006200115382620011ef565b91506200116083620011ef565b92508282101562001176576200117562001295565b5b828203905092915050565b60006200118e82620011cf565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562001219578082015181840152602081019050620011fc565b8381111562001229576000848401525b50505050565b600060028204905060018216806200124857607f821691505b602082108114156200125f576200125e620012c4565b5b50919050565b60006200127282620011c1565b915061ffff8214156200128a576200128962001295565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200148b8162001195565b81146200149757600080fd5b50565b61538e80620014aa6000396000f3fe60806040526004361061023b5760003560e01c8063586b9a7c1161012e578063a88e0996116100ab578063d5abeb011161006f578063d5abeb011461080b578063da3ef23f14610836578063e985e9c51461085f578063f2fde38b1461089c578063f4f3b200146108c55761023b565b8063a88e099614610733578063ad0be4bd1461075e578063b88d4fde1461077a578063c6682862146107a3578063c87b56dd146107ce5761023b565b8063715018a6116100f2578063715018a6146106865780638456cb591461069d5780638da5cb5b146106b457806395d89b41146106df578063a22cb4651461070a5761023b565b8063586b9a7c1461059f5780635c975abb146105b65780636352211e146105e15780636c0360eb1461061e57806370a08231146106495761023b565b80632f745c59116101bc57806342842e0e1161018057806342842e0e146104aa578063438b6300146104d357806344a0d68a146105105780634f6ccce71461053957806355f804b3146105765761023b565b80632f745c59146103f85780633ccfd60b146104355780633f4ba83a1461043f5780634146ed0a14610456578063421b2d8b146104815761023b565b8063095ea7b311610203578063095ea7b31461032557806313faede61461034e57806318160ddd14610379578063239c70ae146103a457806323b872dd146103cf5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063083bbe7f146102e5578063088a4ed0146102fc575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906139dd565b6108ee565b60405161027491906141fd565b60405180910390f35b34801561028957600080fd5b50610292610968565b60405161029f9190614218565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613aad565b6109fa565b6040516102dc919061414b565b60405180910390f35b3480156102f157600080fd5b506102fa610a7f565b005b34801561030857600080fd5b50610323600480360381019061031e9190613aad565b610b18565b005b34801561033157600080fd5b5061034c60048036038101906103479190613970565b610b9e565b005b34801561035a57600080fd5b50610363610cb6565b60405161037091906145ba565b60405180910390f35b34801561038557600080fd5b5061038e610cbc565b60405161039b91906145ba565b60405180910390f35b3480156103b057600080fd5b506103b9610cc9565b6040516103c691906145ba565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061381a565b610ccf565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613970565b610d2f565b60405161042c91906145ba565b60405180910390f35b61043d610dd4565b005b34801561044b57600080fd5b50610454610ec6565b005b34801561046257600080fd5b5061046b610f4c565b60405161047891906141fd565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a391906137ad565b610f95565b005b3480156104b657600080fd5b506104d160048036038101906104cc919061381a565b611059565b005b3480156104df57600080fd5b506104fa60048036038101906104f591906137ad565b611079565b60405161050791906141db565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613aad565b611127565b005b34801561054557600080fd5b50610560600480360381019061055b9190613aad565b6111ad565b60405161056d91906145ba565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613a64565b61121e565b005b3480156105ab57600080fd5b506105b46112b4565b005b3480156105c257600080fd5b506105cb61134d565b6040516105d891906141fd565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190613aad565b611363565b604051610615919061414b565b60405180910390f35b34801561062a57600080fd5b50610633611415565b6040516106409190614218565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906137ad565b6114a3565b60405161067d91906145ba565b60405180910390f35b34801561069257600080fd5b5061069b61155b565b005b3480156106a957600080fd5b506106b26115e3565b005b3480156106c057600080fd5b506106c9611669565b6040516106d6919061414b565b60405180910390f35b3480156106eb57600080fd5b506106f4611692565b6040516107019190614218565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906138f0565b611724565b005b34801561073f57600080fd5b5061074861173a565b60405161075591906141fd565b60405180910390f35b61077860048036038101906107739190613930565b61174d565b005b34801561078657600080fd5b506107a1600480360381019061079c919061386d565b611ac4565b005b3480156107af57600080fd5b506107b8611b26565b6040516107c59190614218565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190613aad565b611bb4565b6040516108029190614218565b60405180910390f35b34801561081757600080fd5b50610820611c5e565b60405161082d91906145ba565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190613a64565b611c64565b005b34801561086b57600080fd5b50610886600480360381019061088191906137da565b611cfa565b60405161089391906141fd565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be91906137ad565b611d8e565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190613a37565b611e86565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610961575061096082612071565b5b9050919050565b606060018054610977906148d8565b80601f01602080910402602001604051908101604052809291908181526020018280546109a3906148d8565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582612153565b610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b9061447a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a876121bf565b73ffffffffffffffffffffffffffffffffffffffff16610aa5611669565b73ffffffffffffffffffffffffffffffffffffffff1614610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af29061449a565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b610b206121bf565b73ffffffffffffffffffffffffffffffffffffffff16610b3e611669565b73ffffffffffffffffffffffffffffffffffffffff1614610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b9061449a565b60405180910390fd5b8060108190555050565b6000610ba982611363565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906144da565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c396121bf565b73ffffffffffffffffffffffffffffffffffffffff161480610c685750610c6781610c626121bf565b611cfa565b5b610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906143da565b60405180910390fd5b610cb183836121c7565b505050565b60115481565b6000600980549050905090565b60105481565b610ce0610cda6121bf565b82612280565b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d169061455a565b60405180910390fd5b610d2a83838361235e565b505050565b6000610d3a836114a3565b8210610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d729061427a565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ddc6121bf565b73ffffffffffffffffffffffffffffffffffffffff16610dfa611669565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e479061449a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb9061453a565b60405180910390fd5b565b610ece6121bf565b73ffffffffffffffffffffffffffffffffffffffff16610eec611669565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f399061449a565b60405180910390fd5b610f4a6125ba565b565b600080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905090565b610f9d6121bf565b73ffffffffffffffffffffffffffffffffffffffff16610fbb611669565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110089061449a565b60405180910390fd5b6004601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b61107483838360405180602001604052806000815250611ac4565b505050565b60606000611086836114a3565b905060008167ffffffffffffffff8111156110a4576110a3614af9565b5b6040519080825280602002602001820160405280156110d25781602001602082028036833780820191505090505b50905060005b8281101561111c576110ea8582610d2f565b8282815181106110fd576110fc614aca565b5b602002602001018181525050808061111490614966565b9150506110d8565b508092505050919050565b61112f6121bf565b73ffffffffffffffffffffffffffffffffffffffff1661114d611669565b73ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061449a565b60405180910390fd5b8060118190555050565b60006111b7610cbc565b82106111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef9061457a565b60405180910390fd5b6009828154811061120c5761120b614aca565b5b90600052602060002001549050919050565b6112266121bf565b73ffffffffffffffffffffffffffffffffffffffff16611244611669565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112919061449a565b60405180910390fd5b80600b90805190602001906112b092919061356d565b5050565b6112bc6121bf565b73ffffffffffffffffffffffffffffffffffffffff166112da611669565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113279061449a565b60405180910390fd5b6000601260006101000a81548160ff021916908315150217905550565b60008060149054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061441a565b60405180910390fd5b80915050919050565b600b8054611422906148d8565b80601f016020809104026020016040519081016040528092919081815260200182805461144e906148d8565b801561149b5780601f106114705761010080835404028352916020019161149b565b820191906000526020600020905b81548152906001019060200180831161147e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906143fa565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115636121bf565b73ffffffffffffffffffffffffffffffffffffffff16611581611669565b73ffffffffffffffffffffffffffffffffffffffff16146115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce9061449a565b60405180910390fd5b6115e1600061265b565b565b6115eb6121bf565b73ffffffffffffffffffffffffffffffffffffffff16611609611669565b73ffffffffffffffffffffffffffffffffffffffff161461165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061449a565b60405180910390fd5b61166761271f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116a1906148d8565b80601f01602080910402602001604051908101604052809291908181526020018280546116cd906148d8565b801561171a5780601f106116ef5761010080835404028352916020019161171a565b820191906000526020600020905b8154815290600101906020018083116116fd57829003601f168201915b5050505050905090565b61173661172f6121bf565b83836127c2565b5050565b601260009054906101000a900460ff1681565b61175561134d565b15611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c906143ba565b60405180910390fd5b60008161ffff16116117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d39061423a565b60405180910390fd5b6010548161ffff161115611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c9061437a565b60405180910390fd5b600061182f610cbc565b9050600d548261ffff168261184491906146ed565b1115611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c9061451a565b60405180910390fd5b601260009054906101000a900460ff16156119fd57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261ffff161115611920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119179061431a565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611999906144fa565b60405180910390fd5b8161ffff16601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f591906147ce565b925050819055505b611a05611669565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a8c578161ffff16601154611a499190614774565b341015611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a829061443a565b60405180910390fd5b5b6000600190505b8261ffff168161ffff1611611abe57611aab8461292f565b8080611ab69061493b565b915050611a93565b50505050565b611ad5611acf6121bf565b83612280565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b9061455a565b60405180910390fd5b611b2084848484612a44565b50505050565b600c8054611b33906148d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5f906148d8565b8015611bac5780601f10611b8157610100808354040283529160200191611bac565b820191906000526020600020905b815481529060010190602001808311611b8f57829003601f168201915b505050505081565b6060611bbf82612153565b611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf59061459a565b60405180910390fd5b6000611c08612aa0565b90506000815111611c285760405180602001604052806000815250611c56565b80611c3284612b32565b600c604051602001611c46939291906140dd565b6040516020818303038152906040525b915050919050565b600d5481565b611c6c6121bf565b73ffffffffffffffffffffffffffffffffffffffff16611c8a611669565b73ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd79061449a565b60405180910390fd5b80600c9080519060200190611cf692919061356d565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d966121bf565b73ffffffffffffffffffffffffffffffffffffffff16611db4611669565b73ffffffffffffffffffffffffffffffffffffffff1614611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e019061449a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906142ba565b60405180910390fd5b611e838161265b565b50565b611e8e6121bf565b73ffffffffffffffffffffffffffffffffffffffff16611eac611669565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef99061449a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f58919061414b565b60206040518083038186803b158015611f7057600080fd5b505afa158015611f84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa89190613ada565b6040518363ffffffff1660e01b8152600401611fc59291906141b2565b602060405180830381600087803b158015611fdf57600080fd5b505af1158015611ff3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201791906139b0565b612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d906142da565b60405180910390fd5b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061214c575061214b82612c93565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223a83611363565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228b82612153565b6122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c19061439a565b60405180910390fd5b60006122d583611363565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234457508373ffffffffffffffffffffffffffffffffffffffff1661232c846109fa565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235557506123548185611cfa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661237e82611363565b73ffffffffffffffffffffffffffffffffffffffff16146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb906144ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b9061433a565b60405180910390fd5b61244f838383612cfd565b61245a6000826121c7565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124aa91906147ce565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461250191906146ed565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125c261134d565b612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f89061425a565b60405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126446121bf565b604051612651919061414b565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61272761134d565b15612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e906143ba565b60405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127ab6121bf565b6040516127b8919061414b565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128289061435a565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161292291906141fd565b60405180910390a3505050565b6000612939610cbc565b90506000600e548261294b91906149dd565b141561296a57600f600081548092919061296490614966565b91905055505b600061297582612e11565b905060005b80612a3e576013600083815260200190815260200160002060009054906101000a900460ff166129e3576129ae8483612e89565b60016013600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050612a39565b6001600f546129f291906146ed565b600e546129ff9190614774565b821415612a29576001600f54600e54612a189190614774565b612a2291906146ed565b9150612a38565b8180612a3490614966565b9250505b5b61297a565b50505050565b612a4f84848461235e565b612a5b84848484612ea7565b612a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a919061429a565b60405180910390fd5b50505050565b6060600b8054612aaf906148d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612adb906148d8565b8015612b285780601f10612afd57610100808354040283529160200191612b28565b820191906000526020600020905b815481529060010190602001808311612b0b57829003601f168201915b5050505050905090565b60606000821415612b7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c8e565b600082905060005b60008214612bac578080612b9590614966565b915050600a82612ba59190614743565b9150612b82565b60008167ffffffffffffffff811115612bc857612bc7614af9565b5b6040519080825280601f01601f191660200182016040528015612bfa5781602001600182028036833780820191505090505b5090505b60008514612c8757600182612c1391906147ce565b9150600a85612c2291906149dd565b6030612c2e91906146ed565b60f81b818381518110612c4457612c43614aca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c809190614743565b9450612bfe565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d0883838361206c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d4b57612d468161303e565b612d8a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d8957612d888382613087565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dcd57612dc8816131f4565b612e0c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e0b57612e0a82826132c5565b5b5b505050565b600080600f54600e54612e249190614774565b905060006001600e54612e3791906146ed565b423386604051602001612e4c9392919061410e565b6040516020818303038152906040528051906020012060001c612e6f91906149dd565b90508181612e7d91906146ed565b90508092505050919050565b612ea3828260405180602001604052806000815250613344565b5050565b6000612ec88473ffffffffffffffffffffffffffffffffffffffff16612059565b15613031578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ef16121bf565b8786866040518563ffffffff1660e01b8152600401612f139493929190614166565b602060405180830381600087803b158015612f2d57600080fd5b505af1925050508015612f5e57506040513d601f19601f82011682018060405250810190612f5b9190613a0a565b60015b612fe1573d8060008114612f8e576040519150601f19603f3d011682016040523d82523d6000602084013e612f93565b606091505b50600081511415612fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd09061429a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613036565b600190505b949350505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613094846114a3565b61309e91906147ce565b9050600060086000848152602001908152602001600020549050818114613183576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061320891906147ce565b90506000600a600084815260200190815260200160002054905060006009838154811061323857613237614aca565b5b90600052602060002001549050806009838154811061325a57613259614aca565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806132a9576132a8614a9b565b5b6001900381819060005260206000200160009055905550505050565b60006132d0836114a3565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b61334e838361339f565b61335b6000848484612ea7565b61339a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133919061429a565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561340f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134069061445a565b60405180910390fd5b61341881612153565b15613458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344f906142fa565b60405180910390fd5b61346460008383612cfd565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134b491906146ed565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613579906148d8565b90600052602060002090601f01602090048101928261359b57600085556135e2565b82601f106135b457805160ff19168380011785556135e2565b828001600101855582156135e2579182015b828111156135e15782518255916020019190600101906135c6565b5b5090506135ef91906135f3565b5090565b5b8082111561360c5760008160009055506001016135f4565b5090565b600061362361361e846145fa565b6145d5565b90508281526020810184848401111561363f5761363e614b2d565b5b61364a848285614896565b509392505050565b60006136656136608461462b565b6145d5565b90508281526020810184848401111561368157613680614b2d565b5b61368c848285614896565b509392505050565b6000813590506136a3816152ce565b92915050565b6000813590506136b8816152e5565b92915050565b6000815190506136cd816152e5565b92915050565b6000813590506136e2816152fc565b92915050565b6000815190506136f7816152fc565b92915050565b600082601f83011261371257613711614b28565b5b8135613722848260208601613610565b91505092915050565b60008135905061373a81615313565b92915050565b600082601f83011261375557613754614b28565b5b8135613765848260208601613652565b91505092915050565b60008135905061377d8161532a565b92915050565b60008135905061379281615341565b92915050565b6000815190506137a781615341565b92915050565b6000602082840312156137c3576137c2614b37565b5b60006137d184828501613694565b91505092915050565b600080604083850312156137f1576137f0614b37565b5b60006137ff85828601613694565b925050602061381085828601613694565b9150509250929050565b60008060006060848603121561383357613832614b37565b5b600061384186828701613694565b935050602061385286828701613694565b925050604061386386828701613783565b9150509250925092565b6000806000806080858703121561388757613886614b37565b5b600061389587828801613694565b94505060206138a687828801613694565b93505060406138b787828801613783565b925050606085013567ffffffffffffffff8111156138d8576138d7614b32565b5b6138e4878288016136fd565b91505092959194509250565b6000806040838503121561390757613906614b37565b5b600061391585828601613694565b9250506020613926858286016136a9565b9150509250929050565b6000806040838503121561394757613946614b37565b5b600061395585828601613694565b92505060206139668582860161376e565b9150509250929050565b6000806040838503121561398757613986614b37565b5b600061399585828601613694565b92505060206139a685828601613783565b9150509250929050565b6000602082840312156139c6576139c5614b37565b5b60006139d4848285016136be565b91505092915050565b6000602082840312156139f3576139f2614b37565b5b6000613a01848285016136d3565b91505092915050565b600060208284031215613a2057613a1f614b37565b5b6000613a2e848285016136e8565b91505092915050565b600060208284031215613a4d57613a4c614b37565b5b6000613a5b8482850161372b565b91505092915050565b600060208284031215613a7a57613a79614b37565b5b600082013567ffffffffffffffff811115613a9857613a97614b32565b5b613aa484828501613740565b91505092915050565b600060208284031215613ac357613ac2614b37565b5b6000613ad184828501613783565b91505092915050565b600060208284031215613af057613aef614b37565b5b6000613afe84828501613798565b91505092915050565b6000613b1383836140a8565b60208301905092915050565b613b2881614802565b82525050565b613b3f613b3a82614802565b6149af565b82525050565b6000613b5082614681565b613b5a81856146af565b9350613b658361465c565b8060005b83811015613b96578151613b7d8882613b07565b9750613b88836146a2565b925050600181019050613b69565b5085935050505092915050565b613bac81614814565b82525050565b6000613bbd8261468c565b613bc781856146c0565b9350613bd78185602086016148a5565b613be081614b3c565b840191505092915050565b6000613bf682614697565b613c0081856146d1565b9350613c108185602086016148a5565b613c1981614b3c565b840191505092915050565b6000613c2f82614697565b613c3981856146e2565b9350613c498185602086016148a5565b80840191505092915050565b60008154613c62816148d8565b613c6c81866146e2565b94506001821660008114613c875760018114613c9857613ccb565b60ff19831686528186019350613ccb565b613ca18561466c565b60005b83811015613cc357815481890152600182019150602081019050613ca4565b838801955050505b50505092915050565b6000613ce16030836146d1565b9150613cec82614b5a565b604082019050919050565b6000613d046014836146d1565b9150613d0f82614ba9565b602082019050919050565b6000613d27602b836146d1565b9150613d3282614bd2565b604082019050919050565b6000613d4a6032836146d1565b9150613d5582614c21565b604082019050919050565b6000613d6d6026836146d1565b9150613d7882614c70565b604082019050919050565b6000613d90600f836146d1565b9150613d9b82614cbf565b602082019050919050565b6000613db3601c836146d1565b9150613dbe82614ce8565b602082019050919050565b6000613dd66028836146d1565b9150613de182614d11565b604082019050919050565b6000613df96024836146d1565b9150613e0482614d60565b604082019050919050565b6000613e1c6019836146d1565b9150613e2782614daf565b602082019050919050565b6000613e3f6034836146d1565b9150613e4a82614dd8565b604082019050919050565b6000613e62602c836146d1565b9150613e6d82614e27565b604082019050919050565b6000613e856010836146d1565b9150613e9082614e76565b602082019050919050565b6000613ea86038836146d1565b9150613eb382614e9f565b604082019050919050565b6000613ecb602a836146d1565b9150613ed682614eee565b604082019050919050565b6000613eee6029836146d1565b9150613ef982614f3d565b604082019050919050565b6000613f11601d836146d1565b9150613f1c82614f8c565b602082019050919050565b6000613f346020836146d1565b9150613f3f82614fb5565b602082019050919050565b6000613f57602c836146d1565b9150613f6282614fde565b604082019050919050565b6000613f7a6020836146d1565b9150613f858261502d565b602082019050919050565b6000613f9d6029836146d1565b9150613fa882615056565b604082019050919050565b6000613fc06021836146d1565b9150613fcb826150a5565b604082019050919050565b6000613fe36042836146d1565b9150613fee826150f4565b606082019050919050565b60006140066021836146d1565b915061401182615169565b604082019050919050565b6000614029600f836146d1565b9150614034826151b8565b602082019050919050565b600061404c6031836146d1565b9150614057826151e1565b604082019050919050565b600061406f602c836146d1565b915061407a82615230565b604082019050919050565b6000614092602c836146d1565b915061409d8261527f565b604082019050919050565b6140b18161488c565b82525050565b6140c08161488c565b82525050565b6140d76140d28261488c565b6149d3565b82525050565b60006140e98286613c24565b91506140f58285613c24565b91506141018284613c55565b9150819050949350505050565b600061411a82866140c6565b60208201915061412a8285613b2e565b60148201915061413a82846140c6565b602082019150819050949350505050565b60006020820190506141606000830184613b1f565b92915050565b600060808201905061417b6000830187613b1f565b6141886020830186613b1f565b61419560408301856140b7565b81810360608301526141a78184613bb2565b905095945050505050565b60006040820190506141c76000830185613b1f565b6141d460208301846140b7565b9392505050565b600060208201905081810360008301526141f58184613b45565b905092915050565b60006020820190506142126000830184613ba3565b92915050565b600060208201905081810360008301526142328184613beb565b905092915050565b6000602082019050818103600083015261425381613cd4565b9050919050565b6000602082019050818103600083015261427381613cf7565b9050919050565b6000602082019050818103600083015261429381613d1a565b9050919050565b600060208201905081810360008301526142b381613d3d565b9050919050565b600060208201905081810360008301526142d381613d60565b9050919050565b600060208201905081810360008301526142f381613d83565b9050919050565b6000602082019050818103600083015261431381613da6565b9050919050565b6000602082019050818103600083015261433381613dc9565b9050919050565b6000602082019050818103600083015261435381613dec565b9050919050565b6000602082019050818103600083015261437381613e0f565b9050919050565b6000602082019050818103600083015261439381613e32565b9050919050565b600060208201905081810360008301526143b381613e55565b9050919050565b600060208201905081810360008301526143d381613e78565b9050919050565b600060208201905081810360008301526143f381613e9b565b9050919050565b6000602082019050818103600083015261441381613ebe565b9050919050565b6000602082019050818103600083015261443381613ee1565b9050919050565b6000602082019050818103600083015261445381613f04565b9050919050565b6000602082019050818103600083015261447381613f27565b9050919050565b6000602082019050818103600083015261449381613f4a565b9050919050565b600060208201905081810360008301526144b381613f6d565b9050919050565b600060208201905081810360008301526144d381613f90565b9050919050565b600060208201905081810360008301526144f381613fb3565b9050919050565b6000602082019050818103600083015261451381613fd6565b9050919050565b6000602082019050818103600083015261453381613ff9565b9050919050565b600060208201905081810360008301526145538161401c565b9050919050565b600060208201905081810360008301526145738161403f565b9050919050565b6000602082019050818103600083015261459381614062565b9050919050565b600060208201905081810360008301526145b381614085565b9050919050565b60006020820190506145cf60008301846140b7565b92915050565b60006145df6145f0565b90506145eb828261490a565b919050565b6000604051905090565b600067ffffffffffffffff82111561461557614614614af9565b5b61461e82614b3c565b9050602081019050919050565b600067ffffffffffffffff82111561464657614645614af9565b5b61464f82614b3c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146f88261488c565b91506147038361488c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561473857614737614a0e565b5b828201905092915050565b600061474e8261488c565b91506147598361488c565b92508261476957614768614a3d565b5b828204905092915050565b600061477f8261488c565b915061478a8361488c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147c3576147c2614a0e565b5b828202905092915050565b60006147d98261488c565b91506147e48361488c565b9250828210156147f7576147f6614a0e565b5b828203905092915050565b600061480d8261486c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061485782614802565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148c35780820151818401526020810190506148a8565b838111156148d2576000848401525b50505050565b600060028204905060018216806148f057607f821691505b6020821081141561490457614903614a6c565b5b50919050565b61491382614b3c565b810181811067ffffffffffffffff8211171561493257614931614af9565b5b80604052505050565b60006149468261485e565b915061ffff82141561495b5761495a614a0e565b5b600182019050919050565b60006149718261488c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149a4576149a3614a0e565b5b600182019050919050565b60006149ba826149c1565b9050919050565b60006149cc82614b4d565b9050919050565b6000819050919050565b60006149e88261488c565b91506149f38361488c565b925082614a0357614a02614a3d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f43656c6f73747269616c733a206d696e74416d6f756e742073686f756c64206260008201527f652067726561746572207468616e203000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43656c6f73747261696c733a204d6178696d756d2077686974656c697374206d60008201527f696e742069732034000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43656c6f73747269616c733a206d696e74416d6f756e742073686f756c64206260008201527f65206c657373207468616e206d6178206d696e74000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43656c6f73747269616c733a20496e737566666369656e742043656c6f000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43656c6f73747269616c733a204d696e74696e67206973206f6e6c79206f706560008201527f6e20746f2077686974656c69737465642077616c6c6574732063757272656e7460208201527f6c79000000000000000000000000000000000000000000000000000000000000604082015250565b7f43656c6f73747269616c733a20537570706c79206e6f7420617661696c61626c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43656c6f73747269616c733a2055524920717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6152d781614802565b81146152e257600080fd5b50565b6152ee81614814565b81146152f957600080fd5b50565b61530581614820565b811461531057600080fd5b50565b61531c8161484c565b811461532757600080fd5b50565b6153338161485e565b811461533e57600080fd5b50565b61534a8161488c565b811461535557600080fd5b5056fea264697066735822122011d085ffd0fcf937e01ddd3e1ccca9cf23cb1b2d69d7c84ab5353380ba43947864736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d546e3157354370546471726b7664534c62376e5847575659596d6f54574d76384e32726970517468587732762f
Deployed ByteCode
0x60806040526004361061023b5760003560e01c8063586b9a7c1161012e578063a88e0996116100ab578063d5abeb011161006f578063d5abeb011461080b578063da3ef23f14610836578063e985e9c51461085f578063f2fde38b1461089c578063f4f3b200146108c55761023b565b8063a88e099614610733578063ad0be4bd1461075e578063b88d4fde1461077a578063c6682862146107a3578063c87b56dd146107ce5761023b565b8063715018a6116100f2578063715018a6146106865780638456cb591461069d5780638da5cb5b146106b457806395d89b41146106df578063a22cb4651461070a5761023b565b8063586b9a7c1461059f5780635c975abb146105b65780636352211e146105e15780636c0360eb1461061e57806370a08231146106495761023b565b80632f745c59116101bc57806342842e0e1161018057806342842e0e146104aa578063438b6300146104d357806344a0d68a146105105780634f6ccce71461053957806355f804b3146105765761023b565b80632f745c59146103f85780633ccfd60b146104355780633f4ba83a1461043f5780634146ed0a14610456578063421b2d8b146104815761023b565b8063095ea7b311610203578063095ea7b31461032557806313faede61461034e57806318160ddd14610379578063239c70ae146103a457806323b872dd146103cf5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063083bbe7f146102e5578063088a4ed0146102fc575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906139dd565b6108ee565b60405161027491906141fd565b60405180910390f35b34801561028957600080fd5b50610292610968565b60405161029f9190614218565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613aad565b6109fa565b6040516102dc919061414b565b60405180910390f35b3480156102f157600080fd5b506102fa610a7f565b005b34801561030857600080fd5b50610323600480360381019061031e9190613aad565b610b18565b005b34801561033157600080fd5b5061034c60048036038101906103479190613970565b610b9e565b005b34801561035a57600080fd5b50610363610cb6565b60405161037091906145ba565b60405180910390f35b34801561038557600080fd5b5061038e610cbc565b60405161039b91906145ba565b60405180910390f35b3480156103b057600080fd5b506103b9610cc9565b6040516103c691906145ba565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061381a565b610ccf565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613970565b610d2f565b60405161042c91906145ba565b60405180910390f35b61043d610dd4565b005b34801561044b57600080fd5b50610454610ec6565b005b34801561046257600080fd5b5061046b610f4c565b60405161047891906141fd565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a391906137ad565b610f95565b005b3480156104b657600080fd5b506104d160048036038101906104cc919061381a565b611059565b005b3480156104df57600080fd5b506104fa60048036038101906104f591906137ad565b611079565b60405161050791906141db565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613aad565b611127565b005b34801561054557600080fd5b50610560600480360381019061055b9190613aad565b6111ad565b60405161056d91906145ba565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613a64565b61121e565b005b3480156105ab57600080fd5b506105b46112b4565b005b3480156105c257600080fd5b506105cb61134d565b6040516105d891906141fd565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190613aad565b611363565b604051610615919061414b565b60405180910390f35b34801561062a57600080fd5b50610633611415565b6040516106409190614218565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b91906137ad565b6114a3565b60405161067d91906145ba565b60405180910390f35b34801561069257600080fd5b5061069b61155b565b005b3480156106a957600080fd5b506106b26115e3565b005b3480156106c057600080fd5b506106c9611669565b6040516106d6919061414b565b60405180910390f35b3480156106eb57600080fd5b506106f4611692565b6040516107019190614218565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906138f0565b611724565b005b34801561073f57600080fd5b5061074861173a565b60405161075591906141fd565b60405180910390f35b61077860048036038101906107739190613930565b61174d565b005b34801561078657600080fd5b506107a1600480360381019061079c919061386d565b611ac4565b005b3480156107af57600080fd5b506107b8611b26565b6040516107c59190614218565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190613aad565b611bb4565b6040516108029190614218565b60405180910390f35b34801561081757600080fd5b50610820611c5e565b60405161082d91906145ba565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190613a64565b611c64565b005b34801561086b57600080fd5b50610886600480360381019061088191906137da565b611cfa565b60405161089391906141fd565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be91906137ad565b611d8e565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190613a37565b611e86565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610961575061096082612071565b5b9050919050565b606060018054610977906148d8565b80601f01602080910402602001604051908101604052809291908181526020018280546109a3906148d8565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b5050505050905090565b6000610a0582612153565b610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b9061447a565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a876121bf565b73ffffffffffffffffffffffffffffffffffffffff16610aa5611669565b73ffffffffffffffffffffffffffffffffffffffff1614610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af29061449a565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b610b206121bf565b73ffffffffffffffffffffffffffffffffffffffff16610b3e611669565b73ffffffffffffffffffffffffffffffffffffffff1614610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b9061449a565b60405180910390fd5b8060108190555050565b6000610ba982611363565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906144da565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c396121bf565b73ffffffffffffffffffffffffffffffffffffffff161480610c685750610c6781610c626121bf565b611cfa565b5b610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906143da565b60405180910390fd5b610cb183836121c7565b505050565b60115481565b6000600980549050905090565b60105481565b610ce0610cda6121bf565b82612280565b610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d169061455a565b60405180910390fd5b610d2a83838361235e565b505050565b6000610d3a836114a3565b8210610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d729061427a565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ddc6121bf565b73ffffffffffffffffffffffffffffffffffffffff16610dfa611669565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e479061449a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb9061453a565b60405180910390fd5b565b610ece6121bf565b73ffffffffffffffffffffffffffffffffffffffff16610eec611669565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f399061449a565b60405180910390fd5b610f4a6125ba565b565b600080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905090565b610f9d6121bf565b73ffffffffffffffffffffffffffffffffffffffff16610fbb611669565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110089061449a565b60405180910390fd5b6004601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b61107483838360405180602001604052806000815250611ac4565b505050565b60606000611086836114a3565b905060008167ffffffffffffffff8111156110a4576110a3614af9565b5b6040519080825280602002602001820160405280156110d25781602001602082028036833780820191505090505b50905060005b8281101561111c576110ea8582610d2f565b8282815181106110fd576110fc614aca565b5b602002602001018181525050808061111490614966565b9150506110d8565b508092505050919050565b61112f6121bf565b73ffffffffffffffffffffffffffffffffffffffff1661114d611669565b73ffffffffffffffffffffffffffffffffffffffff16146111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a9061449a565b60405180910390fd5b8060118190555050565b60006111b7610cbc565b82106111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef9061457a565b60405180910390fd5b6009828154811061120c5761120b614aca565b5b90600052602060002001549050919050565b6112266121bf565b73ffffffffffffffffffffffffffffffffffffffff16611244611669565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112919061449a565b60405180910390fd5b80600b90805190602001906112b092919061356d565b5050565b6112bc6121bf565b73ffffffffffffffffffffffffffffffffffffffff166112da611669565b73ffffffffffffffffffffffffffffffffffffffff1614611330576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113279061449a565b60405180910390fd5b6000601260006101000a81548160ff021916908315150217905550565b60008060149054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561140c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114039061441a565b60405180910390fd5b80915050919050565b600b8054611422906148d8565b80601f016020809104026020016040519081016040528092919081815260200182805461144e906148d8565b801561149b5780601f106114705761010080835404028352916020019161149b565b820191906000526020600020905b81548152906001019060200180831161147e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906143fa565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115636121bf565b73ffffffffffffffffffffffffffffffffffffffff16611581611669565b73ffffffffffffffffffffffffffffffffffffffff16146115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce9061449a565b60405180910390fd5b6115e1600061265b565b565b6115eb6121bf565b73ffffffffffffffffffffffffffffffffffffffff16611609611669565b73ffffffffffffffffffffffffffffffffffffffff161461165f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116569061449a565b60405180910390fd5b61166761271f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116a1906148d8565b80601f01602080910402602001604051908101604052809291908181526020018280546116cd906148d8565b801561171a5780601f106116ef5761010080835404028352916020019161171a565b820191906000526020600020905b8154815290600101906020018083116116fd57829003601f168201915b5050505050905090565b61173661172f6121bf565b83836127c2565b5050565b601260009054906101000a900460ff1681565b61175561134d565b15611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c906143ba565b60405180910390fd5b60008161ffff16116117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d39061423a565b60405180910390fd5b6010548161ffff161115611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c9061437a565b60405180910390fd5b600061182f610cbc565b9050600d548261ffff168261184491906146ed565b1115611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c9061451a565b60405180910390fd5b601260009054906101000a900460ff16156119fd57601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548261ffff161115611920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119179061431a565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611999906144fa565b60405180910390fd5b8161ffff16601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f591906147ce565b925050819055505b611a05611669565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a8c578161ffff16601154611a499190614774565b341015611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a829061443a565b60405180910390fd5b5b6000600190505b8261ffff168161ffff1611611abe57611aab8461292f565b8080611ab69061493b565b915050611a93565b50505050565b611ad5611acf6121bf565b83612280565b611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b9061455a565b60405180910390fd5b611b2084848484612a44565b50505050565b600c8054611b33906148d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5f906148d8565b8015611bac5780601f10611b8157610100808354040283529160200191611bac565b820191906000526020600020905b815481529060010190602001808311611b8f57829003601f168201915b505050505081565b6060611bbf82612153565b611bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf59061459a565b60405180910390fd5b6000611c08612aa0565b90506000815111611c285760405180602001604052806000815250611c56565b80611c3284612b32565b600c604051602001611c46939291906140dd565b6040516020818303038152906040525b915050919050565b600d5481565b611c6c6121bf565b73ffffffffffffffffffffffffffffffffffffffff16611c8a611669565b73ffffffffffffffffffffffffffffffffffffffff1614611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd79061449a565b60405180910390fd5b80600c9080519060200190611cf692919061356d565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d966121bf565b73ffffffffffffffffffffffffffffffffffffffff16611db4611669565b73ffffffffffffffffffffffffffffffffffffffff1614611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e019061449a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906142ba565b60405180910390fd5b611e838161265b565b50565b611e8e6121bf565b73ffffffffffffffffffffffffffffffffffffffff16611eac611669565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef99061449a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f58919061414b565b60206040518083038186803b158015611f7057600080fd5b505afa158015611f84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa89190613ada565b6040518363ffffffff1660e01b8152600401611fc59291906141b2565b602060405180830381600087803b158015611fdf57600080fd5b505af1158015611ff3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201791906139b0565b612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d906142da565b60405180910390fd5b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061214c575061214b82612c93565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223a83611363565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228b82612153565b6122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c19061439a565b60405180910390fd5b60006122d583611363565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234457508373ffffffffffffffffffffffffffffffffffffffff1661232c846109fa565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235557506123548185611cfa565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661237e82611363565b73ffffffffffffffffffffffffffffffffffffffff16146123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb906144ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b9061433a565b60405180910390fd5b61244f838383612cfd565b61245a6000826121c7565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124aa91906147ce565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461250191906146ed565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125c261134d565b612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f89061425a565b60405180910390fd5b60008060146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126446121bf565b604051612651919061414b565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61272761134d565b15612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e906143ba565b60405180910390fd5b6001600060146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127ab6121bf565b6040516127b8919061414b565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128289061435a565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161292291906141fd565b60405180910390a3505050565b6000612939610cbc565b90506000600e548261294b91906149dd565b141561296a57600f600081548092919061296490614966565b91905055505b600061297582612e11565b905060005b80612a3e576013600083815260200190815260200160002060009054906101000a900460ff166129e3576129ae8483612e89565b60016013600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050612a39565b6001600f546129f291906146ed565b600e546129ff9190614774565b821415612a29576001600f54600e54612a189190614774565b612a2291906146ed565b9150612a38565b8180612a3490614966565b9250505b5b61297a565b50505050565b612a4f84848461235e565b612a5b84848484612ea7565b612a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a919061429a565b60405180910390fd5b50505050565b6060600b8054612aaf906148d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612adb906148d8565b8015612b285780601f10612afd57610100808354040283529160200191612b28565b820191906000526020600020905b815481529060010190602001808311612b0b57829003601f168201915b5050505050905090565b60606000821415612b7a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c8e565b600082905060005b60008214612bac578080612b9590614966565b915050600a82612ba59190614743565b9150612b82565b60008167ffffffffffffffff811115612bc857612bc7614af9565b5b6040519080825280601f01601f191660200182016040528015612bfa5781602001600182028036833780820191505090505b5090505b60008514612c8757600182612c1391906147ce565b9150600a85612c2291906149dd565b6030612c2e91906146ed565b60f81b818381518110612c4457612c43614aca565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c809190614743565b9450612bfe565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d0883838361206c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d4b57612d468161303e565b612d8a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d8957612d888382613087565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dcd57612dc8816131f4565b612e0c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e0b57612e0a82826132c5565b5b5b505050565b600080600f54600e54612e249190614774565b905060006001600e54612e3791906146ed565b423386604051602001612e4c9392919061410e565b6040516020818303038152906040528051906020012060001c612e6f91906149dd565b90508181612e7d91906146ed565b90508092505050919050565b612ea3828260405180602001604052806000815250613344565b5050565b6000612ec88473ffffffffffffffffffffffffffffffffffffffff16612059565b15613031578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ef16121bf565b8786866040518563ffffffff1660e01b8152600401612f139493929190614166565b602060405180830381600087803b158015612f2d57600080fd5b505af1925050508015612f5e57506040513d601f19601f82011682018060405250810190612f5b9190613a0a565b60015b612fe1573d8060008114612f8e576040519150601f19603f3d011682016040523d82523d6000602084013e612f93565b606091505b50600081511415612fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd09061429a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613036565b600190505b949350505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613094846114a3565b61309e91906147ce565b9050600060086000848152602001908152602001600020549050818114613183576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061320891906147ce565b90506000600a600084815260200190815260200160002054905060006009838154811061323857613237614aca565b5b90600052602060002001549050806009838154811061325a57613259614aca565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806132a9576132a8614a9b565b5b6001900381819060005260206000200160009055905550505050565b60006132d0836114a3565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b61334e838361339f565b61335b6000848484612ea7565b61339a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133919061429a565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561340f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134069061445a565b60405180910390fd5b61341881612153565b15613458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344f906142fa565b60405180910390fd5b61346460008383612cfd565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134b491906146ed565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613579906148d8565b90600052602060002090601f01602090048101928261359b57600085556135e2565b82601f106135b457805160ff19168380011785556135e2565b828001600101855582156135e2579182015b828111156135e15782518255916020019190600101906135c6565b5b5090506135ef91906135f3565b5090565b5b8082111561360c5760008160009055506001016135f4565b5090565b600061362361361e846145fa565b6145d5565b90508281526020810184848401111561363f5761363e614b2d565b5b61364a848285614896565b509392505050565b60006136656136608461462b565b6145d5565b90508281526020810184848401111561368157613680614b2d565b5b61368c848285614896565b509392505050565b6000813590506136a3816152ce565b92915050565b6000813590506136b8816152e5565b92915050565b6000815190506136cd816152e5565b92915050565b6000813590506136e2816152fc565b92915050565b6000815190506136f7816152fc565b92915050565b600082601f83011261371257613711614b28565b5b8135613722848260208601613610565b91505092915050565b60008135905061373a81615313565b92915050565b600082601f83011261375557613754614b28565b5b8135613765848260208601613652565b91505092915050565b60008135905061377d8161532a565b92915050565b60008135905061379281615341565b92915050565b6000815190506137a781615341565b92915050565b6000602082840312156137c3576137c2614b37565b5b60006137d184828501613694565b91505092915050565b600080604083850312156137f1576137f0614b37565b5b60006137ff85828601613694565b925050602061381085828601613694565b9150509250929050565b60008060006060848603121561383357613832614b37565b5b600061384186828701613694565b935050602061385286828701613694565b925050604061386386828701613783565b9150509250925092565b6000806000806080858703121561388757613886614b37565b5b600061389587828801613694565b94505060206138a687828801613694565b93505060406138b787828801613783565b925050606085013567ffffffffffffffff8111156138d8576138d7614b32565b5b6138e4878288016136fd565b91505092959194509250565b6000806040838503121561390757613906614b37565b5b600061391585828601613694565b9250506020613926858286016136a9565b9150509250929050565b6000806040838503121561394757613946614b37565b5b600061395585828601613694565b92505060206139668582860161376e565b9150509250929050565b6000806040838503121561398757613986614b37565b5b600061399585828601613694565b92505060206139a685828601613783565b9150509250929050565b6000602082840312156139c6576139c5614b37565b5b60006139d4848285016136be565b91505092915050565b6000602082840312156139f3576139f2614b37565b5b6000613a01848285016136d3565b91505092915050565b600060208284031215613a2057613a1f614b37565b5b6000613a2e848285016136e8565b91505092915050565b600060208284031215613a4d57613a4c614b37565b5b6000613a5b8482850161372b565b91505092915050565b600060208284031215613a7a57613a79614b37565b5b600082013567ffffffffffffffff811115613a9857613a97614b32565b5b613aa484828501613740565b91505092915050565b600060208284031215613ac357613ac2614b37565b5b6000613ad184828501613783565b91505092915050565b600060208284031215613af057613aef614b37565b5b6000613afe84828501613798565b91505092915050565b6000613b1383836140a8565b60208301905092915050565b613b2881614802565b82525050565b613b3f613b3a82614802565b6149af565b82525050565b6000613b5082614681565b613b5a81856146af565b9350613b658361465c565b8060005b83811015613b96578151613b7d8882613b07565b9750613b88836146a2565b925050600181019050613b69565b5085935050505092915050565b613bac81614814565b82525050565b6000613bbd8261468c565b613bc781856146c0565b9350613bd78185602086016148a5565b613be081614b3c565b840191505092915050565b6000613bf682614697565b613c0081856146d1565b9350613c108185602086016148a5565b613c1981614b3c565b840191505092915050565b6000613c2f82614697565b613c3981856146e2565b9350613c498185602086016148a5565b80840191505092915050565b60008154613c62816148d8565b613c6c81866146e2565b94506001821660008114613c875760018114613c9857613ccb565b60ff19831686528186019350613ccb565b613ca18561466c565b60005b83811015613cc357815481890152600182019150602081019050613ca4565b838801955050505b50505092915050565b6000613ce16030836146d1565b9150613cec82614b5a565b604082019050919050565b6000613d046014836146d1565b9150613d0f82614ba9565b602082019050919050565b6000613d27602b836146d1565b9150613d3282614bd2565b604082019050919050565b6000613d4a6032836146d1565b9150613d5582614c21565b604082019050919050565b6000613d6d6026836146d1565b9150613d7882614c70565b604082019050919050565b6000613d90600f836146d1565b9150613d9b82614cbf565b602082019050919050565b6000613db3601c836146d1565b9150613dbe82614ce8565b602082019050919050565b6000613dd66028836146d1565b9150613de182614d11565b604082019050919050565b6000613df96024836146d1565b9150613e0482614d60565b604082019050919050565b6000613e1c6019836146d1565b9150613e2782614daf565b602082019050919050565b6000613e3f6034836146d1565b9150613e4a82614dd8565b604082019050919050565b6000613e62602c836146d1565b9150613e6d82614e27565b604082019050919050565b6000613e856010836146d1565b9150613e9082614e76565b602082019050919050565b6000613ea86038836146d1565b9150613eb382614e9f565b604082019050919050565b6000613ecb602a836146d1565b9150613ed682614eee565b604082019050919050565b6000613eee6029836146d1565b9150613ef982614f3d565b604082019050919050565b6000613f11601d836146d1565b9150613f1c82614f8c565b602082019050919050565b6000613f346020836146d1565b9150613f3f82614fb5565b602082019050919050565b6000613f57602c836146d1565b9150613f6282614fde565b604082019050919050565b6000613f7a6020836146d1565b9150613f858261502d565b602082019050919050565b6000613f9d6029836146d1565b9150613fa882615056565b604082019050919050565b6000613fc06021836146d1565b9150613fcb826150a5565b604082019050919050565b6000613fe36042836146d1565b9150613fee826150f4565b606082019050919050565b60006140066021836146d1565b915061401182615169565b604082019050919050565b6000614029600f836146d1565b9150614034826151b8565b602082019050919050565b600061404c6031836146d1565b9150614057826151e1565b604082019050919050565b600061406f602c836146d1565b915061407a82615230565b604082019050919050565b6000614092602c836146d1565b915061409d8261527f565b604082019050919050565b6140b18161488c565b82525050565b6140c08161488c565b82525050565b6140d76140d28261488c565b6149d3565b82525050565b60006140e98286613c24565b91506140f58285613c24565b91506141018284613c55565b9150819050949350505050565b600061411a82866140c6565b60208201915061412a8285613b2e565b60148201915061413a82846140c6565b602082019150819050949350505050565b60006020820190506141606000830184613b1f565b92915050565b600060808201905061417b6000830187613b1f565b6141886020830186613b1f565b61419560408301856140b7565b81810360608301526141a78184613bb2565b905095945050505050565b60006040820190506141c76000830185613b1f565b6141d460208301846140b7565b9392505050565b600060208201905081810360008301526141f58184613b45565b905092915050565b60006020820190506142126000830184613ba3565b92915050565b600060208201905081810360008301526142328184613beb565b905092915050565b6000602082019050818103600083015261425381613cd4565b9050919050565b6000602082019050818103600083015261427381613cf7565b9050919050565b6000602082019050818103600083015261429381613d1a565b9050919050565b600060208201905081810360008301526142b381613d3d565b9050919050565b600060208201905081810360008301526142d381613d60565b9050919050565b600060208201905081810360008301526142f381613d83565b9050919050565b6000602082019050818103600083015261431381613da6565b9050919050565b6000602082019050818103600083015261433381613dc9565b9050919050565b6000602082019050818103600083015261435381613dec565b9050919050565b6000602082019050818103600083015261437381613e0f565b9050919050565b6000602082019050818103600083015261439381613e32565b9050919050565b600060208201905081810360008301526143b381613e55565b9050919050565b600060208201905081810360008301526143d381613e78565b9050919050565b600060208201905081810360008301526143f381613e9b565b9050919050565b6000602082019050818103600083015261441381613ebe565b9050919050565b6000602082019050818103600083015261443381613ee1565b9050919050565b6000602082019050818103600083015261445381613f04565b9050919050565b6000602082019050818103600083015261447381613f27565b9050919050565b6000602082019050818103600083015261449381613f4a565b9050919050565b600060208201905081810360008301526144b381613f6d565b9050919050565b600060208201905081810360008301526144d381613f90565b9050919050565b600060208201905081810360008301526144f381613fb3565b9050919050565b6000602082019050818103600083015261451381613fd6565b9050919050565b6000602082019050818103600083015261453381613ff9565b9050919050565b600060208201905081810360008301526145538161401c565b9050919050565b600060208201905081810360008301526145738161403f565b9050919050565b6000602082019050818103600083015261459381614062565b9050919050565b600060208201905081810360008301526145b381614085565b9050919050565b60006020820190506145cf60008301846140b7565b92915050565b60006145df6145f0565b90506145eb828261490a565b919050565b6000604051905090565b600067ffffffffffffffff82111561461557614614614af9565b5b61461e82614b3c565b9050602081019050919050565b600067ffffffffffffffff82111561464657614645614af9565b5b61464f82614b3c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146f88261488c565b91506147038361488c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561473857614737614a0e565b5b828201905092915050565b600061474e8261488c565b91506147598361488c565b92508261476957614768614a3d565b5b828204905092915050565b600061477f8261488c565b915061478a8361488c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147c3576147c2614a0e565b5b828202905092915050565b60006147d98261488c565b91506147e48361488c565b9250828210156147f7576147f6614a0e565b5b828203905092915050565b600061480d8261486c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061485782614802565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148c35780820151818401526020810190506148a8565b838111156148d2576000848401525b50505050565b600060028204905060018216806148f057607f821691505b6020821081141561490457614903614a6c565b5b50919050565b61491382614b3c565b810181811067ffffffffffffffff8211171561493257614931614af9565b5b80604052505050565b60006149468261485e565b915061ffff82141561495b5761495a614a0e565b5b600182019050919050565b60006149718261488c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149a4576149a3614a0e565b5b600182019050919050565b60006149ba826149c1565b9050919050565b60006149cc82614b4d565b9050919050565b6000819050919050565b60006149e88261488c565b91506149f38361488c565b925082614a0357614a02614a3d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f43656c6f73747269616c733a206d696e74416d6f756e742073686f756c64206260008201527f652067726561746572207468616e203000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43656c6f73747261696c733a204d6178696d756d2077686974656c697374206d60008201527f696e742069732034000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43656c6f73747269616c733a206d696e74416d6f756e742073686f756c64206260008201527f65206c657373207468616e206d6178206d696e74000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f43656c6f73747269616c733a20496e737566666369656e742043656c6f000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43656c6f73747269616c733a204d696e74696e67206973206f6e6c79206f706560008201527f6e20746f2077686974656c69737465642077616c6c6574732063757272656e7460208201527f6c79000000000000000000000000000000000000000000000000000000000000604082015250565b7f43656c6f73747269616c733a20537570706c79206e6f7420617661696c61626c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43656c6f73747269616c733a2055524920717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6152d781614802565b81146152e257600080fd5b50565b6152ee81614814565b81146152f957600080fd5b50565b61530581614820565b811461531057600080fd5b50565b61531c8161484c565b811461532757600080fd5b50565b6153338161485e565b811461533e57600080fd5b50565b61534a8161488c565b811461535557600080fd5b5056fea264697066735822122011d085ffd0fcf937e01ddd3e1ccca9cf23cb1b2d69d7c84ab5353380ba43947864736f6c63430008070033