Address Details
contract
token

0x86bEF3d8Ad9d30435da8c111BB67c510B8311721

Token
CeloToadz (CTOADZ)
Creator
0xd258a6–c432ae at 0x616344–5baf01
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
1 Transactions
Transfers
0 Transfers
Gas Used
22,267
Last Balance Update
9708605
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
CeloToadzNFT




Optimization enabled
false
Compiler version
v0.8.7+commit.e28d00a7




EVM Version
london




Verified at
2021-11-05T13:28:26.924283Z

contracts/CeloToadzNFT.sol

// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract CeloToadzNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 2690000000 gwei;
  uint256 public maxSupply = 6969;
  uint256 public maxMintAmount = 15;
  bool public paused = false;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    mint(69);
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }
  
  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),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, 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(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}
        

/_openzeppelin/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
          

/_openzeppelin/contracts/token/ERC721/ERC721.sol

// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _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 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

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

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

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/IERC721Enumerable.sol

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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":"string","name":"_name","internalType":"string"},{"type":"string","name":"_symbol","internalType":"string"},{"type":"string","name":"_initBaseURI","internalType":"string"}]},{"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":"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":"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":"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":"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":"uint256","name":"_mintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","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":"bool","name":"_state","internalType":"bool"}]},{"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":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"walletOfOwner","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"withdraw","inputs":[]}]
              

Contract Creation Code

0x60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000efc565b50672554ccbf6dcd0000600d55611b39600e55600f80556000601060006101000a81548160ff0219169083151502179055503480156200009057600080fd5b5060405162005fa038038062005fa08339818101604052810190620000b6919062001073565b82828160009080519060200190620000d092919062000efc565b508060019080519060200190620000e992919062000efc565b5050506200010c620001006200013860201b60201c565b6200014060201b60201c565b6200011d816200020660201b60201c565b6200012f6045620002b160201b60201c565b50505062001ad2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002166200013860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023c620004dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000295576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028c9062001435565b60405180910390fd5b80600b9080519060200190620002ad92919062000efc565b5050565b601060009054906101000a900460ff161562000304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fb9062001457565b60405180910390fd5b6000620003166200050760201b60201c565b9050600082116200035e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000355906200149b565b60405180910390fd5b600e5482826200036f919062001549565b1115620003b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003aa90620013cf565b60405180910390fd5b620003c3620004dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200049457600f548211156200043e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043590620013f1565b60405180910390fd5b81600d546200044e9190620015a6565b34101562000493576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048a9062001479565b60405180910390fd5b5b6000600190505b828111620004d857620004c2338284620004b6919062001549565b6200051460201b60201c565b8080620004cf906200174e565b9150506200049b565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b620005368282604051806020016040528060008152506200053a60201b60201c565b5050565b6200054c8383620005a860201b60201c565b6200056160008484846200078e60201b60201c565b620005a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059a9062001369565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200061b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006129062001413565b60405180910390fd5b6200062c816200094860201b60201c565b156200066f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000666906200138b565b60405180910390fd5b6200068360008383620009b460201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006d5919062001549565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007bc8473ffffffffffffffffffffffffffffffffffffffff1662000afb60201b62001a8f1760201c565b156200093b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007ee6200013860201b60201c565b8786866040518563ffffffff1660e01b815260040162000812949392919062001315565b602060405180830381600087803b1580156200082d57600080fd5b505af19250505080156200086157506040513d601f19601f820116820180604052508101906200085e919062001041565b60015b620008ea573d806000811462000894576040519150601f19603f3d011682016040523d82523d6000602084013e62000899565b606091505b50600081511415620008e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d99062001369565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000940565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620009cc83838362000b0e60201b62001aa21760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000a195762000a138162000b1360201b60201c565b62000a61565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a605762000a5f838262000b5c60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000aae5762000aa88162000cd960201b60201c565b62000af6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000af55762000af4828262000db560201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b768462000e4160201b620010d01760201c565b62000b82919062001607565b905060006007600084815260200190815260200160002054905081811462000c68576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000cef919062001607565b905060006009600084815260200190815260200160002054905060006008838154811062000d225762000d2162001829565b5b90600052602060002001549050806008838154811062000d475762000d4662001829565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d995762000d98620017fa565b5b6001900381819060005260206000200160009055905550505050565b600062000dcd8362000e4160201b620010d01760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000eb5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000eac90620013ad565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000f0a90620016e2565b90600052602060002090601f01602090048101928262000f2e576000855562000f7a565b82601f1062000f4957805160ff191683800117855562000f7a565b8280016001018555821562000f7a579182015b8281111562000f7957825182559160200191906001019062000f5c565b5b50905062000f89919062000f8d565b5090565b5b8082111562000fa857600081600090555060010162000f8e565b5090565b600062000fc362000fbd84620014e6565b620014bd565b90508281526020810184848401111562000fe25762000fe16200188c565b5b62000fef848285620016ac565b509392505050565b600081519050620010088162001ab8565b92915050565b600082601f83011262001026576200102562001887565b5b81516200103884826020860162000fac565b91505092915050565b6000602082840312156200105a576200105962001896565b5b60006200106a8482850162000ff7565b91505092915050565b6000806000606084860312156200108f576200108e62001896565b5b600084015167ffffffffffffffff811115620010b057620010af62001891565b5b620010be868287016200100e565b935050602084015167ffffffffffffffff811115620010e257620010e162001891565b5b620010f0868287016200100e565b925050604084015167ffffffffffffffff81111562001114576200111362001891565b5b62001122868287016200100e565b9150509250925092565b620011378162001642565b82525050565b60006200114a826200151c565b62001156818562001527565b935062001168818560208601620016ac565b62001173816200189b565b840191505092915050565b60006200118d60328362001538565b91506200119a82620018ac565b604082019050919050565b6000620011b4601c8362001538565b9150620011c182620018fb565b602082019050919050565b6000620011db602a8362001538565b9150620011e88262001924565b604082019050919050565b60006200120260168362001538565b91506200120f8262001973565b602082019050919050565b60006200122960248362001538565b915062001236826200199c565b604082019050919050565b60006200125060208362001538565b91506200125d82620019eb565b602082019050919050565b60006200127760208362001538565b9150620012848262001a14565b602082019050919050565b60006200129e60168362001538565b9150620012ab8262001a3d565b602082019050919050565b6000620012c560128362001538565b9150620012d28262001a66565b602082019050919050565b6000620012ec601b8362001538565b9150620012f98262001a8f565b602082019050919050565b6200130f81620016a2565b82525050565b60006080820190506200132c60008301876200112c565b6200133b60208301866200112c565b6200134a604083018562001304565b81810360608301526200135e81846200113d565b905095945050505050565b6000602082019050818103600083015262001384816200117e565b9050919050565b60006020820190508181036000830152620013a681620011a5565b9050919050565b60006020820190508181036000830152620013c881620011cc565b9050919050565b60006020820190508181036000830152620013ea81620011f3565b9050919050565b600060208201905081810360008301526200140c816200121a565b9050919050565b600060208201905081810360008301526200142e8162001241565b9050919050565b60006020820190508181036000830152620014508162001268565b9050919050565b6000602082019050818103600083015262001472816200128f565b9050919050565b600060208201905081810360008301526200149481620012b6565b9050919050565b60006020820190508181036000830152620014b681620012dd565b9050919050565b6000620014c9620014dc565b9050620014d7828262001718565b919050565b6000604051905090565b600067ffffffffffffffff82111562001504576200150362001858565b5b6200150f826200189b565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200155682620016a2565b91506200156383620016a2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200159b576200159a6200179c565b5b828201905092915050565b6000620015b382620016a2565b9150620015c083620016a2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620015fc57620015fb6200179c565b5b828202905092915050565b60006200161482620016a2565b91506200162183620016a2565b9250828210156200163757620016366200179c565b5b828203905092915050565b60006200164f8262001682565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620016cc578082015181840152602081019050620016af565b83811115620016dc576000848401525b50505050565b60006002820490506001821680620016fb57607f821691505b60208210811415620017125762001711620017cb565b5b50919050565b62001723826200189b565b810181811067ffffffffffffffff8211171562001745576200174462001858565b5b80604052505050565b60006200175b82620016a2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200179157620017906200179c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b62001ac38162001656565b811462001acf57600080fd5b50565b6144be8062001ae26000396000f3fe6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106cf578063d5abeb011461070c578063da3ef23f14610737578063e985e9c514610760578063f2fde38b1461079d576101ee565b8063a0712d6814610636578063a22cb46514610652578063b88d4fde1461067b578063c6682862146106a4576101ee565b8063715018a6116100dc578063715018a6146105a05780637f00c7a6146105b75780638da5cb5b146105e057806395d89b411461060b576101ee565b80635c975abb146104d05780636352211e146104fb5780636c0360eb1461053857806370a0823114610563576101ee565b806323b872dd11610185578063438b630011610154578063438b63001461040457806344a0d68a146104415780634f6ccce71461046a57806355f804b3146104a7576101ee565b806323b872dd1461036b5780632f745c59146103945780633ccfd60b146103d157806342842e0e146103db576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd14610315578063239c70ae14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f43565b6107c6565b60405161022791906135fe565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f16565b610840565b005b34801561026557600080fd5b5061026e6108d9565b60405161027b9190613619565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612fe6565b61096b565b6040516102b89190613575565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612ed6565b6109f0565b005b3480156102f657600080fd5b506102ff610b08565b60405161030c919061391b565b60405180910390f35b34801561032157600080fd5b5061032a610b0e565b604051610337919061391b565b60405180910390f35b34801561034c57600080fd5b50610355610b1b565b604051610362919061391b565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612dc0565b610b21565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612ed6565b610b81565b6040516103c8919061391b565b60405180910390f35b6103d9610c26565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612dc0565b610d22565b005b34801561041057600080fd5b5061042b60048036038101906104269190612d53565b610d42565b60405161043891906135dc565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612fe6565b610df0565b005b34801561047657600080fd5b50610491600480360381019061048c9190612fe6565b610e76565b60405161049e919061391b565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612f9d565b610ee7565b005b3480156104dc57600080fd5b506104e5610f7d565b6040516104f291906135fe565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612fe6565b610f90565b60405161052f9190613575565b60405180910390f35b34801561054457600080fd5b5061054d611042565b60405161055a9190613619565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612d53565b6110d0565b604051610597919061391b565b60405180910390f35b3480156105ac57600080fd5b506105b5611188565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612fe6565b611210565b005b3480156105ec57600080fd5b506105f5611296565b6040516106029190613575565b60405180910390f35b34801561061757600080fd5b506106206112c0565b60405161062d9190613619565b60405180910390f35b610650600480360381019061064b9190612fe6565b611352565b005b34801561065e57600080fd5b5061067960048036038101906106749190612e96565b61154c565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612e13565b6116cd565b005b3480156106b057600080fd5b506106b961172f565b6040516106c69190613619565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612fe6565b6117bd565b6040516107039190613619565b60405180910390f35b34801561071857600080fd5b50610721611867565b60405161072e919061391b565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612f9d565b61186d565b005b34801561076c57600080fd5b5061078760048036038101906107829190612d80565b611903565b60405161079491906135fe565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612d53565b611997565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610839575061083882611aa7565b5b9050919050565b610848611b89565b73ffffffffffffffffffffffffffffffffffffffff16610866611296565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b3906137fb565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108e890613c24565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613c24565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611b91565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906137db565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610f90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a639061387b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611b89565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611b89565b611903565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af09061371b565b60405180910390fd5b610b038383611bfd565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b32610b2c611b89565b82611cb6565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b68906138bb565b60405180910390fd5b610b7c838383611d94565b505050565b6000610b8c836110d0565b8210610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc49061363b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2e611b89565b73ffffffffffffffffffffffffffffffffffffffff16610c4c611296565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906137fb565b60405180910390fd5b6000610cac611296565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ccf90613560565b60006040518083038185875af1925050503d8060008114610d0c576040519150601f19603f3d011682016040523d82523d6000602084013e610d11565b606091505b5050905080610d1f57600080fd5b50565b610d3d838383604051806020016040528060008152506116cd565b505050565b60606000610d4f836110d0565b905060008167ffffffffffffffff811115610d6d57610d6c613dec565b5b604051908082528060200260200182016040528015610d9b5781602001602082028036833780820191505090505b50905060005b82811015610de557610db38582610b81565b828281518110610dc657610dc5613dbd565b5b6020026020010181815250508080610ddd90613c87565b915050610da1565b508092505050919050565b610df8611b89565b73ffffffffffffffffffffffffffffffffffffffff16610e16611296565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e63906137fb565b60405180910390fd5b80600d8190555050565b6000610e80610b0e565b8210610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906138db565b60405180910390fd5b60088281548110610ed557610ed4613dbd565b5b90600052602060002001549050919050565b610eef611b89565b73ffffffffffffffffffffffffffffffffffffffff16610f0d611296565b73ffffffffffffffffffffffffffffffffffffffff1614610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a906137fb565b60405180910390fd5b80600b9080519060200190610f79929190612b67565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611039576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110309061375b565b60405180910390fd5b80915050919050565b600b805461104f90613c24565b80601f016020809104026020016040519081016040528092919081815260200182805461107b90613c24565b80156110c85780601f1061109d576101008083540402835291602001916110c8565b820191906000526020600020905b8154815290600101906020018083116110ab57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111389061373b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611190611b89565b73ffffffffffffffffffffffffffffffffffffffff166111ae611296565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb906137fb565b60405180910390fd5b61120e6000611ff0565b565b611218611b89565b73ffffffffffffffffffffffffffffffffffffffff16611236611296565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611283906137fb565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112cf90613c24565b80601f01602080910402602001604051908101604052809291908181526020018280546112fb90613c24565b80156113485780601f1061131d57610100808354040283529160200191611348565b820191906000526020600020905b81548152906001019060200180831161132b57829003601f168201915b5050505050905090565b601060009054906101000a900460ff16156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061381b565b60405180910390fd5b60006113ac610b0e565b9050600082116113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e8906138fb565b60405180910390fd5b600e5482826114009190613a59565b1115611441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114389061377b565b60405180910390fd5b611449611296565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461151157600f548211156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b79061379b565b60405180910390fd5b81600d546114ce9190613ae0565b341015611510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115079061389b565b60405180910390fd5b5b6000600190505b8281116115475761153433828461152f9190613a59565b6120b6565b808061153f90613c87565b915050611518565b505050565b611554611b89565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b9906136db565b60405180910390fd5b80600560006115cf611b89565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167c611b89565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c191906135fe565b60405180910390a35050565b6116de6116d8611b89565b83611cb6565b61171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906138bb565b60405180910390fd5b611729848484846120d4565b50505050565b600c805461173c90613c24565b80601f016020809104026020016040519081016040528092919081815260200182805461176890613c24565b80156117b55780601f1061178a576101008083540402835291602001916117b5565b820191906000526020600020905b81548152906001019060200180831161179857829003601f168201915b505050505081565b60606117c882611b91565b611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe9061385b565b60405180910390fd5b6000611811612130565b90506000815111611831576040518060200160405280600081525061185f565b8061183b846121c2565b600c60405160200161184f9392919061352f565b6040516020818303038152906040525b915050919050565b600e5481565b611875611b89565b73ffffffffffffffffffffffffffffffffffffffff16611893611296565b73ffffffffffffffffffffffffffffffffffffffff16146118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906137fb565b60405180910390fd5b80600c90805190602001906118ff929190612b67565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199f611b89565b73ffffffffffffffffffffffffffffffffffffffff166119bd611296565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906137fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a9061367b565b60405180910390fd5b611a8c81611ff0565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b7257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b825750611b8182612323565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c7083610f90565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cc182611b91565b611d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf7906136fb565b60405180910390fd5b6000611d0b83610f90565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7a57508373ffffffffffffffffffffffffffffffffffffffff16611d628461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d8b5750611d8a8185611903565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611db482610f90565b73ffffffffffffffffffffffffffffffffffffffff1614611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e019061383b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906136bb565b60405180910390fd5b611e8583838361238d565b611e90600082611bfd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee09190613b3a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f379190613a59565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120d08282604051806020016040528060008152506124a1565b5050565b6120df848484611d94565b6120eb848484846124fc565b61212a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121219061365b565b60405180910390fd5b50505050565b6060600b805461213f90613c24565b80601f016020809104026020016040519081016040528092919081815260200182805461216b90613c24565b80156121b85780601f1061218d576101008083540402835291602001916121b8565b820191906000526020600020905b81548152906001019060200180831161219b57829003601f168201915b5050505050905090565b6060600082141561220a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061231e565b600082905060005b6000821461223c57808061222590613c87565b915050600a826122359190613aaf565b9150612212565b60008167ffffffffffffffff81111561225857612257613dec565b5b6040519080825280601f01601f19166020018201604052801561228a5781602001600182028036833780820191505090505b5090505b60008514612317576001826122a39190613b3a565b9150600a856122b29190613cd0565b60306122be9190613a59565b60f81b8183815181106122d4576122d3613dbd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123109190613aaf565b945061228e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612398838383611aa2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123db576123d681612693565b61241a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124195761241883826126dc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561245d5761245881612849565b61249c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461249b5761249a828261291a565b5b5b505050565b6124ab8383612999565b6124b860008484846124fc565b6124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee9061365b565b60405180910390fd5b505050565b600061251d8473ffffffffffffffffffffffffffffffffffffffff16611a8f565b15612686578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612546611b89565b8786866040518563ffffffff1660e01b81526004016125689493929190613590565b602060405180830381600087803b15801561258257600080fd5b505af19250505080156125b357506040513d601f19601f820116820180604052508101906125b09190612f70565b60015b612636573d80600081146125e3576040519150601f19603f3d011682016040523d82523d6000602084013e6125e8565b606091505b5060008151141561262e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126259061365b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061268b565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126e9846110d0565b6126f39190613b3a565b90506000600760008481526020019081526020016000205490508181146127d8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061285d9190613b3a565b905060006009600084815260200190815260200160002054905060006008838154811061288d5761288c613dbd565b5b9060005260206000200154905080600883815481106128af576128ae613dbd565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128fe576128fd613d8e565b5b6001900381819060005260206000200160009055905550505050565b6000612925836110d0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a00906137bb565b60405180910390fd5b612a1281611b91565b15612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a499061369b565b60405180910390fd5b612a5e6000838361238d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aae9190613a59565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b7390613c24565b90600052602060002090601f016020900481019282612b955760008555612bdc565b82601f10612bae57805160ff1916838001178555612bdc565b82800160010185558215612bdc579182015b82811115612bdb578251825591602001919060010190612bc0565b5b509050612be99190612bed565b5090565b5b80821115612c06576000816000905550600101612bee565b5090565b6000612c1d612c188461395b565b613936565b905082815260208101848484011115612c3957612c38613e20565b5b612c44848285613be2565b509392505050565b6000612c5f612c5a8461398c565b613936565b905082815260208101848484011115612c7b57612c7a613e20565b5b612c86848285613be2565b509392505050565b600081359050612c9d8161442c565b92915050565b600081359050612cb281614443565b92915050565b600081359050612cc78161445a565b92915050565b600081519050612cdc8161445a565b92915050565b600082601f830112612cf757612cf6613e1b565b5b8135612d07848260208601612c0a565b91505092915050565b600082601f830112612d2557612d24613e1b565b5b8135612d35848260208601612c4c565b91505092915050565b600081359050612d4d81614471565b92915050565b600060208284031215612d6957612d68613e2a565b5b6000612d7784828501612c8e565b91505092915050565b60008060408385031215612d9757612d96613e2a565b5b6000612da585828601612c8e565b9250506020612db685828601612c8e565b9150509250929050565b600080600060608486031215612dd957612dd8613e2a565b5b6000612de786828701612c8e565b9350506020612df886828701612c8e565b9250506040612e0986828701612d3e565b9150509250925092565b60008060008060808587031215612e2d57612e2c613e2a565b5b6000612e3b87828801612c8e565b9450506020612e4c87828801612c8e565b9350506040612e5d87828801612d3e565b925050606085013567ffffffffffffffff811115612e7e57612e7d613e25565b5b612e8a87828801612ce2565b91505092959194509250565b60008060408385031215612ead57612eac613e2a565b5b6000612ebb85828601612c8e565b9250506020612ecc85828601612ca3565b9150509250929050565b60008060408385031215612eed57612eec613e2a565b5b6000612efb85828601612c8e565b9250506020612f0c85828601612d3e565b9150509250929050565b600060208284031215612f2c57612f2b613e2a565b5b6000612f3a84828501612ca3565b91505092915050565b600060208284031215612f5957612f58613e2a565b5b6000612f6784828501612cb8565b91505092915050565b600060208284031215612f8657612f85613e2a565b5b6000612f9484828501612ccd565b91505092915050565b600060208284031215612fb357612fb2613e2a565b5b600082013567ffffffffffffffff811115612fd157612fd0613e25565b5b612fdd84828501612d10565b91505092915050565b600060208284031215612ffc57612ffb613e2a565b5b600061300a84828501612d3e565b91505092915050565b600061301f8383613511565b60208301905092915050565b61303481613b6e565b82525050565b6000613045826139e2565b61304f8185613a10565b935061305a836139bd565b8060005b8381101561308b5781516130728882613013565b975061307d83613a03565b92505060018101905061305e565b5085935050505092915050565b6130a181613b80565b82525050565b60006130b2826139ed565b6130bc8185613a21565b93506130cc818560208601613bf1565b6130d581613e2f565b840191505092915050565b60006130eb826139f8565b6130f58185613a3d565b9350613105818560208601613bf1565b61310e81613e2f565b840191505092915050565b6000613124826139f8565b61312e8185613a4e565b935061313e818560208601613bf1565b80840191505092915050565b6000815461315781613c24565b6131618186613a4e565b9450600182166000811461317c576001811461318d576131c0565b60ff198316865281860193506131c0565b613196856139cd565b60005b838110156131b857815481890152600182019150602081019050613199565b838801955050505b50505092915050565b60006131d6602b83613a3d565b91506131e182613e40565b604082019050919050565b60006131f9603283613a3d565b915061320482613e8f565b604082019050919050565b600061321c602683613a3d565b915061322782613ede565b604082019050919050565b600061323f601c83613a3d565b915061324a82613f2d565b602082019050919050565b6000613262602483613a3d565b915061326d82613f56565b604082019050919050565b6000613285601983613a3d565b915061329082613fa5565b602082019050919050565b60006132a8602c83613a3d565b91506132b382613fce565b604082019050919050565b60006132cb603883613a3d565b91506132d68261401d565b604082019050919050565b60006132ee602a83613a3d565b91506132f98261406c565b604082019050919050565b6000613311602983613a3d565b915061331c826140bb565b604082019050919050565b6000613334601683613a3d565b915061333f8261410a565b602082019050919050565b6000613357602483613a3d565b915061336282614133565b604082019050919050565b600061337a602083613a3d565b915061338582614182565b602082019050919050565b600061339d602c83613a3d565b91506133a8826141ab565b604082019050919050565b60006133c0602083613a3d565b91506133cb826141fa565b602082019050919050565b60006133e3601683613a3d565b91506133ee82614223565b602082019050919050565b6000613406602983613a3d565b91506134118261424c565b604082019050919050565b6000613429602f83613a3d565b91506134348261429b565b604082019050919050565b600061344c602183613a3d565b9150613457826142ea565b604082019050919050565b600061346f600083613a32565b915061347a82614339565b600082019050919050565b6000613492601283613a3d565b915061349d8261433c565b602082019050919050565b60006134b5603183613a3d565b91506134c082614365565b604082019050919050565b60006134d8602c83613a3d565b91506134e3826143b4565b604082019050919050565b60006134fb601b83613a3d565b915061350682614403565b602082019050919050565b61351a81613bd8565b82525050565b61352981613bd8565b82525050565b600061353b8286613119565b91506135478285613119565b9150613553828461314a565b9150819050949350505050565b600061356b82613462565b9150819050919050565b600060208201905061358a600083018461302b565b92915050565b60006080820190506135a5600083018761302b565b6135b2602083018661302b565b6135bf6040830185613520565b81810360608301526135d181846130a7565b905095945050505050565b600060208201905081810360008301526135f6818461303a565b905092915050565b60006020820190506136136000830184613098565b92915050565b6000602082019050818103600083015261363381846130e0565b905092915050565b60006020820190508181036000830152613654816131c9565b9050919050565b60006020820190508181036000830152613674816131ec565b9050919050565b600060208201905081810360008301526136948161320f565b9050919050565b600060208201905081810360008301526136b481613232565b9050919050565b600060208201905081810360008301526136d481613255565b9050919050565b600060208201905081810360008301526136f481613278565b9050919050565b600060208201905081810360008301526137148161329b565b9050919050565b60006020820190508181036000830152613734816132be565b9050919050565b60006020820190508181036000830152613754816132e1565b9050919050565b6000602082019050818103600083015261377481613304565b9050919050565b6000602082019050818103600083015261379481613327565b9050919050565b600060208201905081810360008301526137b48161334a565b9050919050565b600060208201905081810360008301526137d48161336d565b9050919050565b600060208201905081810360008301526137f481613390565b9050919050565b60006020820190508181036000830152613814816133b3565b9050919050565b60006020820190508181036000830152613834816133d6565b9050919050565b60006020820190508181036000830152613854816133f9565b9050919050565b600060208201905081810360008301526138748161341c565b9050919050565b600060208201905081810360008301526138948161343f565b9050919050565b600060208201905081810360008301526138b481613485565b9050919050565b600060208201905081810360008301526138d4816134a8565b9050919050565b600060208201905081810360008301526138f4816134cb565b9050919050565b60006020820190508181036000830152613914816134ee565b9050919050565b60006020820190506139306000830184613520565b92915050565b6000613940613951565b905061394c8282613c56565b919050565b6000604051905090565b600067ffffffffffffffff82111561397657613975613dec565b5b61397f82613e2f565b9050602081019050919050565b600067ffffffffffffffff8211156139a7576139a6613dec565b5b6139b082613e2f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6482613bd8565b9150613a6f83613bd8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa457613aa3613d01565b5b828201905092915050565b6000613aba82613bd8565b9150613ac583613bd8565b925082613ad557613ad4613d30565b5b828204905092915050565b6000613aeb82613bd8565b9150613af683613bd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2f57613b2e613d01565b5b828202905092915050565b6000613b4582613bd8565b9150613b5083613bd8565b925082821015613b6357613b62613d01565b5b828203905092915050565b6000613b7982613bb8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c0f578082015181840152602081019050613bf4565b83811115613c1e576000848401525b50505050565b60006002820490506001821680613c3c57607f821691505b60208210811415613c5057613c4f613d5f565b5b50919050565b613c5f82613e2f565b810181811067ffffffffffffffff82111715613c7e57613c7d613dec565b5b80604052505050565b6000613c9282613bd8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc557613cc4613d01565b5b600182019050919050565b6000613cdb82613bd8565b9150613ce683613bd8565b925082613cf657613cf5613d30565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61443581613b6e565b811461444057600080fd5b50565b61444c81613b80565b811461445757600080fd5b50565b61446381613b8c565b811461446e57600080fd5b50565b61447a81613bd8565b811461448557600080fd5b5056fea2646970667358221220582af58637d00c335331b65f1fdad04d41d29172008e61c8fc031a654501addf64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000943656c6f546f61647a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000643544f41445a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d6367616138755148593174376742706f725a5766464b3544333345746979614b6172754c73384442694b656a2f00000000000000000000000000000000000000000000000000000000

Deployed ByteCode

0x6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106cf578063d5abeb011461070c578063da3ef23f14610737578063e985e9c514610760578063f2fde38b1461079d576101ee565b8063a0712d6814610636578063a22cb46514610652578063b88d4fde1461067b578063c6682862146106a4576101ee565b8063715018a6116100dc578063715018a6146105a05780637f00c7a6146105b75780638da5cb5b146105e057806395d89b411461060b576101ee565b80635c975abb146104d05780636352211e146104fb5780636c0360eb1461053857806370a0823114610563576101ee565b806323b872dd11610185578063438b630011610154578063438b63001461040457806344a0d68a146104415780634f6ccce71461046a57806355f804b3146104a7576101ee565b806323b872dd1461036b5780632f745c59146103945780633ccfd60b146103d157806342842e0e146103db576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd14610315578063239c70ae14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f43565b6107c6565b60405161022791906135fe565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f16565b610840565b005b34801561026557600080fd5b5061026e6108d9565b60405161027b9190613619565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612fe6565b61096b565b6040516102b89190613575565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612ed6565b6109f0565b005b3480156102f657600080fd5b506102ff610b08565b60405161030c919061391b565b60405180910390f35b34801561032157600080fd5b5061032a610b0e565b604051610337919061391b565b60405180910390f35b34801561034c57600080fd5b50610355610b1b565b604051610362919061391b565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612dc0565b610b21565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612ed6565b610b81565b6040516103c8919061391b565b60405180910390f35b6103d9610c26565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612dc0565b610d22565b005b34801561041057600080fd5b5061042b60048036038101906104269190612d53565b610d42565b60405161043891906135dc565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612fe6565b610df0565b005b34801561047657600080fd5b50610491600480360381019061048c9190612fe6565b610e76565b60405161049e919061391b565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612f9d565b610ee7565b005b3480156104dc57600080fd5b506104e5610f7d565b6040516104f291906135fe565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612fe6565b610f90565b60405161052f9190613575565b60405180910390f35b34801561054457600080fd5b5061054d611042565b60405161055a9190613619565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612d53565b6110d0565b604051610597919061391b565b60405180910390f35b3480156105ac57600080fd5b506105b5611188565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612fe6565b611210565b005b3480156105ec57600080fd5b506105f5611296565b6040516106029190613575565b60405180910390f35b34801561061757600080fd5b506106206112c0565b60405161062d9190613619565b60405180910390f35b610650600480360381019061064b9190612fe6565b611352565b005b34801561065e57600080fd5b5061067960048036038101906106749190612e96565b61154c565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612e13565b6116cd565b005b3480156106b057600080fd5b506106b961172f565b6040516106c69190613619565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190612fe6565b6117bd565b6040516107039190613619565b60405180910390f35b34801561071857600080fd5b50610721611867565b60405161072e919061391b565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190612f9d565b61186d565b005b34801561076c57600080fd5b5061078760048036038101906107829190612d80565b611903565b60405161079491906135fe565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612d53565b611997565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610839575061083882611aa7565b5b9050919050565b610848611b89565b73ffffffffffffffffffffffffffffffffffffffff16610866611296565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b3906137fb565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108e890613c24565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613c24565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611b91565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac906137db565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610f90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a639061387b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611b89565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611b89565b611903565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af09061371b565b60405180910390fd5b610b038383611bfd565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b32610b2c611b89565b82611cb6565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b68906138bb565b60405180910390fd5b610b7c838383611d94565b505050565b6000610b8c836110d0565b8210610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc49061363b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2e611b89565b73ffffffffffffffffffffffffffffffffffffffff16610c4c611296565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906137fb565b60405180910390fd5b6000610cac611296565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ccf90613560565b60006040518083038185875af1925050503d8060008114610d0c576040519150601f19603f3d011682016040523d82523d6000602084013e610d11565b606091505b5050905080610d1f57600080fd5b50565b610d3d838383604051806020016040528060008152506116cd565b505050565b60606000610d4f836110d0565b905060008167ffffffffffffffff811115610d6d57610d6c613dec565b5b604051908082528060200260200182016040528015610d9b5781602001602082028036833780820191505090505b50905060005b82811015610de557610db38582610b81565b828281518110610dc657610dc5613dbd565b5b6020026020010181815250508080610ddd90613c87565b915050610da1565b508092505050919050565b610df8611b89565b73ffffffffffffffffffffffffffffffffffffffff16610e16611296565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e63906137fb565b60405180910390fd5b80600d8190555050565b6000610e80610b0e565b8210610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906138db565b60405180910390fd5b60088281548110610ed557610ed4613dbd565b5b90600052602060002001549050919050565b610eef611b89565b73ffffffffffffffffffffffffffffffffffffffff16610f0d611296565b73ffffffffffffffffffffffffffffffffffffffff1614610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a906137fb565b60405180910390fd5b80600b9080519060200190610f79929190612b67565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611039576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110309061375b565b60405180910390fd5b80915050919050565b600b805461104f90613c24565b80601f016020809104026020016040519081016040528092919081815260200182805461107b90613c24565b80156110c85780601f1061109d576101008083540402835291602001916110c8565b820191906000526020600020905b8154815290600101906020018083116110ab57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111389061373b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611190611b89565b73ffffffffffffffffffffffffffffffffffffffff166111ae611296565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb906137fb565b60405180910390fd5b61120e6000611ff0565b565b611218611b89565b73ffffffffffffffffffffffffffffffffffffffff16611236611296565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611283906137fb565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112cf90613c24565b80601f01602080910402602001604051908101604052809291908181526020018280546112fb90613c24565b80156113485780601f1061131d57610100808354040283529160200191611348565b820191906000526020600020905b81548152906001019060200180831161132b57829003601f168201915b5050505050905090565b601060009054906101000a900460ff16156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061381b565b60405180910390fd5b60006113ac610b0e565b9050600082116113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e8906138fb565b60405180910390fd5b600e5482826114009190613a59565b1115611441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114389061377b565b60405180910390fd5b611449611296565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461151157600f548211156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b79061379b565b60405180910390fd5b81600d546114ce9190613ae0565b341015611510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115079061389b565b60405180910390fd5b5b6000600190505b8281116115475761153433828461152f9190613a59565b6120b6565b808061153f90613c87565b915050611518565b505050565b611554611b89565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b9906136db565b60405180910390fd5b80600560006115cf611b89565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167c611b89565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c191906135fe565b60405180910390a35050565b6116de6116d8611b89565b83611cb6565b61171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906138bb565b60405180910390fd5b611729848484846120d4565b50505050565b600c805461173c90613c24565b80601f016020809104026020016040519081016040528092919081815260200182805461176890613c24565b80156117b55780601f1061178a576101008083540402835291602001916117b5565b820191906000526020600020905b81548152906001019060200180831161179857829003601f168201915b505050505081565b60606117c882611b91565b611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe9061385b565b60405180910390fd5b6000611811612130565b90506000815111611831576040518060200160405280600081525061185f565b8061183b846121c2565b600c60405160200161184f9392919061352f565b6040516020818303038152906040525b915050919050565b600e5481565b611875611b89565b73ffffffffffffffffffffffffffffffffffffffff16611893611296565b73ffffffffffffffffffffffffffffffffffffffff16146118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906137fb565b60405180910390fd5b80600c90805190602001906118ff929190612b67565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199f611b89565b73ffffffffffffffffffffffffffffffffffffffff166119bd611296565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906137fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a9061367b565b60405180910390fd5b611a8c81611ff0565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b7257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b825750611b8182612323565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c7083610f90565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cc182611b91565b611d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf7906136fb565b60405180910390fd5b6000611d0b83610f90565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d7a57508373ffffffffffffffffffffffffffffffffffffffff16611d628461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d8b5750611d8a8185611903565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611db482610f90565b73ffffffffffffffffffffffffffffffffffffffff1614611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e019061383b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e71906136bb565b60405180910390fd5b611e8583838361238d565b611e90600082611bfd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee09190613b3a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f379190613a59565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120d08282604051806020016040528060008152506124a1565b5050565b6120df848484611d94565b6120eb848484846124fc565b61212a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121219061365b565b60405180910390fd5b50505050565b6060600b805461213f90613c24565b80601f016020809104026020016040519081016040528092919081815260200182805461216b90613c24565b80156121b85780601f1061218d576101008083540402835291602001916121b8565b820191906000526020600020905b81548152906001019060200180831161219b57829003601f168201915b5050505050905090565b6060600082141561220a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061231e565b600082905060005b6000821461223c57808061222590613c87565b915050600a826122359190613aaf565b9150612212565b60008167ffffffffffffffff81111561225857612257613dec565b5b6040519080825280601f01601f19166020018201604052801561228a5781602001600182028036833780820191505090505b5090505b60008514612317576001826122a39190613b3a565b9150600a856122b29190613cd0565b60306122be9190613a59565b60f81b8183815181106122d4576122d3613dbd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123109190613aaf565b945061228e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612398838383611aa2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123db576123d681612693565b61241a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124195761241883826126dc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561245d5761245881612849565b61249c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461249b5761249a828261291a565b5b5b505050565b6124ab8383612999565b6124b860008484846124fc565b6124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee9061365b565b60405180910390fd5b505050565b600061251d8473ffffffffffffffffffffffffffffffffffffffff16611a8f565b15612686578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612546611b89565b8786866040518563ffffffff1660e01b81526004016125689493929190613590565b602060405180830381600087803b15801561258257600080fd5b505af19250505080156125b357506040513d601f19601f820116820180604052508101906125b09190612f70565b60015b612636573d80600081146125e3576040519150601f19603f3d011682016040523d82523d6000602084013e6125e8565b606091505b5060008151141561262e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126259061365b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061268b565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126e9846110d0565b6126f39190613b3a565b90506000600760008481526020019081526020016000205490508181146127d8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061285d9190613b3a565b905060006009600084815260200190815260200160002054905060006008838154811061288d5761288c613dbd565b5b9060005260206000200154905080600883815481106128af576128ae613dbd565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128fe576128fd613d8e565b5b6001900381819060005260206000200160009055905550505050565b6000612925836110d0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a00906137bb565b60405180910390fd5b612a1281611b91565b15612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a499061369b565b60405180910390fd5b612a5e6000838361238d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aae9190613a59565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b7390613c24565b90600052602060002090601f016020900481019282612b955760008555612bdc565b82601f10612bae57805160ff1916838001178555612bdc565b82800160010185558215612bdc579182015b82811115612bdb578251825591602001919060010190612bc0565b5b509050612be99190612bed565b5090565b5b80821115612c06576000816000905550600101612bee565b5090565b6000612c1d612c188461395b565b613936565b905082815260208101848484011115612c3957612c38613e20565b5b612c44848285613be2565b509392505050565b6000612c5f612c5a8461398c565b613936565b905082815260208101848484011115612c7b57612c7a613e20565b5b612c86848285613be2565b509392505050565b600081359050612c9d8161442c565b92915050565b600081359050612cb281614443565b92915050565b600081359050612cc78161445a565b92915050565b600081519050612cdc8161445a565b92915050565b600082601f830112612cf757612cf6613e1b565b5b8135612d07848260208601612c0a565b91505092915050565b600082601f830112612d2557612d24613e1b565b5b8135612d35848260208601612c4c565b91505092915050565b600081359050612d4d81614471565b92915050565b600060208284031215612d6957612d68613e2a565b5b6000612d7784828501612c8e565b91505092915050565b60008060408385031215612d9757612d96613e2a565b5b6000612da585828601612c8e565b9250506020612db685828601612c8e565b9150509250929050565b600080600060608486031215612dd957612dd8613e2a565b5b6000612de786828701612c8e565b9350506020612df886828701612c8e565b9250506040612e0986828701612d3e565b9150509250925092565b60008060008060808587031215612e2d57612e2c613e2a565b5b6000612e3b87828801612c8e565b9450506020612e4c87828801612c8e565b9350506040612e5d87828801612d3e565b925050606085013567ffffffffffffffff811115612e7e57612e7d613e25565b5b612e8a87828801612ce2565b91505092959194509250565b60008060408385031215612ead57612eac613e2a565b5b6000612ebb85828601612c8e565b9250506020612ecc85828601612ca3565b9150509250929050565b60008060408385031215612eed57612eec613e2a565b5b6000612efb85828601612c8e565b9250506020612f0c85828601612d3e565b9150509250929050565b600060208284031215612f2c57612f2b613e2a565b5b6000612f3a84828501612ca3565b91505092915050565b600060208284031215612f5957612f58613e2a565b5b6000612f6784828501612cb8565b91505092915050565b600060208284031215612f8657612f85613e2a565b5b6000612f9484828501612ccd565b91505092915050565b600060208284031215612fb357612fb2613e2a565b5b600082013567ffffffffffffffff811115612fd157612fd0613e25565b5b612fdd84828501612d10565b91505092915050565b600060208284031215612ffc57612ffb613e2a565b5b600061300a84828501612d3e565b91505092915050565b600061301f8383613511565b60208301905092915050565b61303481613b6e565b82525050565b6000613045826139e2565b61304f8185613a10565b935061305a836139bd565b8060005b8381101561308b5781516130728882613013565b975061307d83613a03565b92505060018101905061305e565b5085935050505092915050565b6130a181613b80565b82525050565b60006130b2826139ed565b6130bc8185613a21565b93506130cc818560208601613bf1565b6130d581613e2f565b840191505092915050565b60006130eb826139f8565b6130f58185613a3d565b9350613105818560208601613bf1565b61310e81613e2f565b840191505092915050565b6000613124826139f8565b61312e8185613a4e565b935061313e818560208601613bf1565b80840191505092915050565b6000815461315781613c24565b6131618186613a4e565b9450600182166000811461317c576001811461318d576131c0565b60ff198316865281860193506131c0565b613196856139cd565b60005b838110156131b857815481890152600182019150602081019050613199565b838801955050505b50505092915050565b60006131d6602b83613a3d565b91506131e182613e40565b604082019050919050565b60006131f9603283613a3d565b915061320482613e8f565b604082019050919050565b600061321c602683613a3d565b915061322782613ede565b604082019050919050565b600061323f601c83613a3d565b915061324a82613f2d565b602082019050919050565b6000613262602483613a3d565b915061326d82613f56565b604082019050919050565b6000613285601983613a3d565b915061329082613fa5565b602082019050919050565b60006132a8602c83613a3d565b91506132b382613fce565b604082019050919050565b60006132cb603883613a3d565b91506132d68261401d565b604082019050919050565b60006132ee602a83613a3d565b91506132f98261406c565b604082019050919050565b6000613311602983613a3d565b915061331c826140bb565b604082019050919050565b6000613334601683613a3d565b915061333f8261410a565b602082019050919050565b6000613357602483613a3d565b915061336282614133565b604082019050919050565b600061337a602083613a3d565b915061338582614182565b602082019050919050565b600061339d602c83613a3d565b91506133a8826141ab565b604082019050919050565b60006133c0602083613a3d565b91506133cb826141fa565b602082019050919050565b60006133e3601683613a3d565b91506133ee82614223565b602082019050919050565b6000613406602983613a3d565b91506134118261424c565b604082019050919050565b6000613429602f83613a3d565b91506134348261429b565b604082019050919050565b600061344c602183613a3d565b9150613457826142ea565b604082019050919050565b600061346f600083613a32565b915061347a82614339565b600082019050919050565b6000613492601283613a3d565b915061349d8261433c565b602082019050919050565b60006134b5603183613a3d565b91506134c082614365565b604082019050919050565b60006134d8602c83613a3d565b91506134e3826143b4565b604082019050919050565b60006134fb601b83613a3d565b915061350682614403565b602082019050919050565b61351a81613bd8565b82525050565b61352981613bd8565b82525050565b600061353b8286613119565b91506135478285613119565b9150613553828461314a565b9150819050949350505050565b600061356b82613462565b9150819050919050565b600060208201905061358a600083018461302b565b92915050565b60006080820190506135a5600083018761302b565b6135b2602083018661302b565b6135bf6040830185613520565b81810360608301526135d181846130a7565b905095945050505050565b600060208201905081810360008301526135f6818461303a565b905092915050565b60006020820190506136136000830184613098565b92915050565b6000602082019050818103600083015261363381846130e0565b905092915050565b60006020820190508181036000830152613654816131c9565b9050919050565b60006020820190508181036000830152613674816131ec565b9050919050565b600060208201905081810360008301526136948161320f565b9050919050565b600060208201905081810360008301526136b481613232565b9050919050565b600060208201905081810360008301526136d481613255565b9050919050565b600060208201905081810360008301526136f481613278565b9050919050565b600060208201905081810360008301526137148161329b565b9050919050565b60006020820190508181036000830152613734816132be565b9050919050565b60006020820190508181036000830152613754816132e1565b9050919050565b6000602082019050818103600083015261377481613304565b9050919050565b6000602082019050818103600083015261379481613327565b9050919050565b600060208201905081810360008301526137b48161334a565b9050919050565b600060208201905081810360008301526137d48161336d565b9050919050565b600060208201905081810360008301526137f481613390565b9050919050565b60006020820190508181036000830152613814816133b3565b9050919050565b60006020820190508181036000830152613834816133d6565b9050919050565b60006020820190508181036000830152613854816133f9565b9050919050565b600060208201905081810360008301526138748161341c565b9050919050565b600060208201905081810360008301526138948161343f565b9050919050565b600060208201905081810360008301526138b481613485565b9050919050565b600060208201905081810360008301526138d4816134a8565b9050919050565b600060208201905081810360008301526138f4816134cb565b9050919050565b60006020820190508181036000830152613914816134ee565b9050919050565b60006020820190506139306000830184613520565b92915050565b6000613940613951565b905061394c8282613c56565b919050565b6000604051905090565b600067ffffffffffffffff82111561397657613975613dec565b5b61397f82613e2f565b9050602081019050919050565b600067ffffffffffffffff8211156139a7576139a6613dec565b5b6139b082613e2f565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a6482613bd8565b9150613a6f83613bd8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa457613aa3613d01565b5b828201905092915050565b6000613aba82613bd8565b9150613ac583613bd8565b925082613ad557613ad4613d30565b5b828204905092915050565b6000613aeb82613bd8565b9150613af683613bd8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2f57613b2e613d01565b5b828202905092915050565b6000613b4582613bd8565b9150613b5083613bd8565b925082821015613b6357613b62613d01565b5b828203905092915050565b6000613b7982613bb8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c0f578082015181840152602081019050613bf4565b83811115613c1e576000848401525b50505050565b60006002820490506001821680613c3c57607f821691505b60208210811415613c5057613c4f613d5f565b5b50919050565b613c5f82613e2f565b810181811067ffffffffffffffff82111715613c7e57613c7d613dec565b5b80604052505050565b6000613c9282613bd8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc557613cc4613d01565b5b600182019050919050565b6000613cdb82613bd8565b9150613ce683613bd8565b925082613cf657613cf5613d30565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61443581613b6e565b811461444057600080fd5b50565b61444c81613b80565b811461445757600080fd5b50565b61446381613b8c565b811461446e57600080fd5b50565b61447a81613bd8565b811461448557600080fd5b5056fea2646970667358221220582af58637d00c335331b65f1fdad04d41d29172008e61c8fc031a654501addf64736f6c63430008070033