ETH Price: $3,395.67 (-1.18%)
Gas: 1 Gwei

Token

Crypto Noun Punks (CNP)
 

Overview

Max Total Supply

3,333 CNP

Holders

1,141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 CNP
0xcc03c4ca24abab228b79fc6f98834a6e5638336a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CNP

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : CNP.sol
// SPDX-License-Identifier: None

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";



contract CNP is Ownable, ERC721 {
  using SafeMath for uint256;
  using Counters for Counters.Counter;

  uint256 public mintPrice = 10000000000000000;
  uint256 public mintLimit = 20;
  

  uint256 public maxSupply = 3333;
  Counters.Counter private _tokenIdCounter;

  bool public publicSaleState = false;

  string public baseURI;

  address private deployer;

  constructor() ERC721("Crypto Noun Punks", "CNP") { 
    deployer = msg.sender;
  }
  


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

  function setBaseURI(string calldata newBaseUri) external onlyOwner {
    baseURI = newBaseUri;
  }
  
  function changeStatePublicSale() public onlyOwner returns(bool) {
    publicSaleState = !publicSaleState;
    return publicSaleState;
  }
  

  function mint(uint numberOfTokens) external payable {
    require(publicSaleState, "Sale is not active");
    require(numberOfTokens <= mintLimit, "Too many tokens for one transaction");
    require(msg.value >= mintPrice.mul(numberOfTokens), "Insufficient payment");

    mintInternal(msg.sender, numberOfTokens);
  }


  function mintInternal(address wallet, uint amount) internal {

    uint currentTokenSupply = _tokenIdCounter.current();
    require(currentTokenSupply.add(amount) <= maxSupply, "Not enough tokens left");

    
    for(uint i = 0; i< amount; i++){
    currentTokenSupply++;
    _safeMint(wallet, currentTokenSupply);
    _tokenIdCounter.increment();
    }
    

}


  function reserve(uint256 numberOfTokens) external onlyOwner {
    mintInternal(msg.sender, numberOfTokens);
  }

  function totalSupply() public view returns (uint){
    return _tokenIdCounter.current();
}
  
  function withdraw() public onlyOwner {
    require(address(this).balance > 0, "No balance to withdraw");
    payable(deployer).transfer(address(this).balance); 
    }

}

File 2 of 13 : 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);
    }
}

File 3 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 13 : 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 {}
}

File 5 of 13 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 13 : 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;
    }
}

File 7 of 13 : 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;
}

File 8 of 13 : 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);
}

File 9 of 13 : 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);
}

File 10 of 13 : 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);
            }
        }
    }
}

File 11 of 13 : 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);
    }
}

File 12 of 13 : 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;
    }
}

File 13 of 13 : 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeStatePublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc100006007556014600855610d056009556000600b60006101000a81548160ff0219169083151502179055503480156200004257600080fd5b506040518060400160405280601181526020017f43727970746f204e6f756e2050756e6b730000000000000000000000000000008152506040518060400160405280600381526020017f434e500000000000000000000000000000000000000000000000000000000000815250620000cf620000c36200014a60201b60201c565b6200015260201b60201c565b8160019080519060200190620000e792919062000216565b5080600290805190602001906200010092919062000216565b50505033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200032b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022490620002c6565b90600052602060002090601f01602090048101928262000248576000855562000294565b82601f106200026357805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029357825182559160200191906001019062000276565b5b509050620002a39190620002a7565b5090565b5b80821115620002c2576000816000905550600101620002a8565b5090565b60006002820490506001821680620002df57607f821691505b60208210811415620002f657620002f5620002fc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6137c4806200033b6000396000f3fe60806040526004361061019c5760003560e01c8063715018a6116100ec578063a22cb4651161008a578063d1cbf17d11610064578063d1cbf17d14610593578063d5abeb01146105be578063e985e9c5146105e9578063f2fde38b146106265761019c565b8063a22cb46514610504578063b88d4fde1461052d578063c87b56dd146105565761019c565b80638da5cb5b116100c65780638da5cb5b1461046757806395d89b4114610492578063996517cf146104bd578063a0712d68146104e85761019c565b8063715018a6146103fc57806371adc02a14610413578063819b25ba1461043e5761019c565b80633ccfd60b116101595780636352211e116101335780636352211e1461032c5780636817c76c146103695780636c0360eb1461039457806370a08231146103bf5761019c565b80633ccfd60b146102c357806342842e0e146102da57806355f804b3146103035761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906125e7565b61064f565b6040516101d59190612ae1565b60405180910390f35b3480156101ea57600080fd5b506101f3610731565b6040516102009190612afc565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061267e565b6107c3565b60405161023d9190612a7a565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906125ab565b610848565b005b34801561027b57600080fd5b50610284610960565b6040516102919190612dbe565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906124a5565b610971565b005b3480156102cf57600080fd5b506102d86109d1565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906124a5565b610afb565b005b34801561030f57600080fd5b5061032a60048036038101906103259190612639565b610b1b565b005b34801561033857600080fd5b50610353600480360381019061034e919061267e565b610bad565b6040516103609190612a7a565b60405180910390f35b34801561037557600080fd5b5061037e610c5f565b60405161038b9190612dbe565b60405180910390f35b3480156103a057600080fd5b506103a9610c65565b6040516103b69190612afc565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190612440565b610cf3565b6040516103f39190612dbe565b60405180910390f35b34801561040857600080fd5b50610411610dab565b005b34801561041f57600080fd5b50610428610e33565b6040516104359190612ae1565b60405180910390f35b34801561044a57600080fd5b506104656004803603810190610460919061267e565b610e46565b005b34801561047357600080fd5b5061047c610ecf565b6040516104899190612a7a565b60405180910390f35b34801561049e57600080fd5b506104a7610ef8565b6040516104b49190612afc565b60405180910390f35b3480156104c957600080fd5b506104d2610f8a565b6040516104df9190612dbe565b60405180910390f35b61050260048036038101906104fd919061267e565b610f90565b005b34801561051057600080fd5b5061052b6004803603810190610526919061256f565b611088565b005b34801561053957600080fd5b50610554600480360381019061054f91906124f4565b611209565b005b34801561056257600080fd5b5061057d6004803603810190610578919061267e565b61126b565b60405161058a9190612afc565b60405180910390f35b34801561059f57600080fd5b506105a8611312565b6040516105b59190612ae1565b60405180910390f35b3480156105ca57600080fd5b506105d36113cf565b6040516105e09190612dbe565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190612469565b6113d5565b60405161061d9190612ae1565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612440565b611469565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072a575061072982611561565b5b9050919050565b6060600180546107409061303d565b80601f016020809104026020016040519081016040528092919081815260200182805461076c9061303d565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b60006107ce826115cb565b61080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080490612cde565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085382610bad565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90612d7e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e3611637565b73ffffffffffffffffffffffffffffffffffffffff16148061091257506109118161090c611637565b6113d5565b5b610951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094890612c1e565b60405180910390fd5b61095b838361163f565b505050565b600061096c600a6116f8565b905090565b61098261097c611637565b82611706565b6109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890612d9e565b60405180910390fd5b6109cc8383836117e4565b505050565b6109d9611637565b73ffffffffffffffffffffffffffffffffffffffff166109f7610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490612cfe565b60405180910390fd5b60004711610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612d5e565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610af8573d6000803e3d6000fd5b50565b610b1683838360405180602001604052806000815250611209565b505050565b610b23611637565b73ffffffffffffffffffffffffffffffffffffffff16610b41610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90612cfe565b60405180910390fd5b8181600c9190610ba8929190612282565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90612c5e565b60405180910390fd5b80915050919050565b60075481565b600c8054610c729061303d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9e9061303d565b8015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90612c3e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610db3611637565b73ffffffffffffffffffffffffffffffffffffffff16610dd1610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90612cfe565b60405180910390fd5b610e316000611a40565b565b600b60009054906101000a900460ff1681565b610e4e611637565b73ffffffffffffffffffffffffffffffffffffffff16610e6c610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990612cfe565b60405180910390fd5b610ecc3382611b04565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610f079061303d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f339061303d565b8015610f805780601f10610f5557610100808354040283529160200191610f80565b820191906000526020600020905b815481529060010190602001808311610f6357829003601f168201915b5050505050905090565b60085481565b600b60009054906101000a900460ff16610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690612bde565b60405180910390fd5b600854811115611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90612b1e565b60405180910390fd5b61103981600754611baf90919063ffffffff16565b34101561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290612cbe565b60405180910390fd5b6110853382611b04565b50565b611090611637565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590612bbe565b60405180910390fd5b806006600061110b611637565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111b8611637565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111fd9190612ae1565b60405180910390a35050565b61121a611214611637565b83611706565b611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090612d9e565b60405180910390fd5b61126584848484611bc5565b50505050565b6060611276826115cb565b6112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90612d3e565b60405180910390fd5b60006112bf611c21565b905060008151116112df576040518060200160405280600081525061130a565b806112e984611cb3565b6040516020016112fa929190612a56565b6040516020818303038152906040525b915050919050565b600061131c611637565b73ffffffffffffffffffffffffffffffffffffffff1661133a610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790612cfe565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550600b60009054906101000a900460ff16905090565b60095481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611471611637565b73ffffffffffffffffffffffffffffffffffffffff1661148f610ecf565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90612cfe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612b5e565b60405180910390fd5b61155e81611a40565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116b283610bad565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611711826115cb565b611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790612bfe565b60405180910390fd5b600061175b83610bad565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117ca57508373ffffffffffffffffffffffffffffffffffffffff166117b2846107c3565b73ffffffffffffffffffffffffffffffffffffffff16145b806117db57506117da81856113d5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180482610bad565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612d1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190612b9e565b60405180910390fd5b6118d5838383611e60565b6118e060008261163f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119309190612f53565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119879190612e72565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b10600a6116f8565b9050600954611b288383611e6590919063ffffffff16565b1115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090612c7e565b60405180910390fd5b60005b82811015611ba9578180611b7f906130a0565b925050611b8c8483611e7b565b611b96600a611e99565b8080611ba1906130a0565b915050611b6c565b50505050565b60008183611bbd9190612ef9565b905092915050565b611bd08484846117e4565b611bdc84848484611eaf565b611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1290612b3e565b60405180910390fd5b50505050565b6060600c8054611c309061303d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5c9061303d565b8015611ca95780601f10611c7e57610100808354040283529160200191611ca9565b820191906000526020600020905b815481529060010190602001808311611c8c57829003601f168201915b5050505050905090565b60606000821415611cfb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e5b565b600082905060005b60008214611d2d578080611d16906130a0565b915050600a82611d269190612ec8565b9150611d03565b60008167ffffffffffffffff811115611d6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611da15781602001600182028036833780820191505090505b5090505b60008514611e5457600182611dba9190612f53565b9150600a85611dc991906130e9565b6030611dd59190612e72565b60f81b818381518110611e11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e4d9190612ec8565b9450611da5565b8093505050505b919050565b505050565b60008183611e739190612e72565b905092915050565b611e95828260405180602001604052806000815250612046565b5050565b6001816000016000828254019250508190555050565b6000611ed08473ffffffffffffffffffffffffffffffffffffffff166120a1565b15612039578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ef9611637565b8786866040518563ffffffff1660e01b8152600401611f1b9493929190612a95565b602060405180830381600087803b158015611f3557600080fd5b505af1925050508015611f6657506040513d601f19601f82011682018060405250810190611f639190612610565b60015b611fe9573d8060008114611f96576040519150601f19603f3d011682016040523d82523d6000602084013e611f9b565b606091505b50600081511415611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890612b3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061203e565b600190505b949350505050565b61205083836120b4565b61205d6000848484611eaf565b61209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209390612b3e565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90612c9e565b60405180910390fd5b61212d816115cb565b1561216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490612b7e565b60405180910390fd5b61217960008383611e60565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121c99190612e72565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461228e9061303d565b90600052602060002090601f0160209004810192826122b057600085556122f7565b82601f106122c957803560ff19168380011785556122f7565b828001600101855582156122f7579182015b828111156122f65782358255916020019190600101906122db565b5b5090506123049190612308565b5090565b5b80821115612321576000816000905550600101612309565b5090565b600061233861233384612dfe565b612dd9565b90508281526020810184848401111561235057600080fd5b61235b848285612ffb565b509392505050565b60008135905061237281613732565b92915050565b60008135905061238781613749565b92915050565b60008135905061239c81613760565b92915050565b6000815190506123b181613760565b92915050565b600082601f8301126123c857600080fd5b81356123d8848260208601612325565b91505092915050565b60008083601f8401126123f357600080fd5b8235905067ffffffffffffffff81111561240c57600080fd5b60208301915083600182028301111561242457600080fd5b9250929050565b60008135905061243a81613777565b92915050565b60006020828403121561245257600080fd5b600061246084828501612363565b91505092915050565b6000806040838503121561247c57600080fd5b600061248a85828601612363565b925050602061249b85828601612363565b9150509250929050565b6000806000606084860312156124ba57600080fd5b60006124c886828701612363565b93505060206124d986828701612363565b92505060406124ea8682870161242b565b9150509250925092565b6000806000806080858703121561250a57600080fd5b600061251887828801612363565b945050602061252987828801612363565b935050604061253a8782880161242b565b925050606085013567ffffffffffffffff81111561255757600080fd5b612563878288016123b7565b91505092959194509250565b6000806040838503121561258257600080fd5b600061259085828601612363565b92505060206125a185828601612378565b9150509250929050565b600080604083850312156125be57600080fd5b60006125cc85828601612363565b92505060206125dd8582860161242b565b9150509250929050565b6000602082840312156125f957600080fd5b60006126078482850161238d565b91505092915050565b60006020828403121561262257600080fd5b6000612630848285016123a2565b91505092915050565b6000806020838503121561264c57600080fd5b600083013567ffffffffffffffff81111561266657600080fd5b612672858286016123e1565b92509250509250929050565b60006020828403121561269057600080fd5b600061269e8482850161242b565b91505092915050565b6126b081612f87565b82525050565b6126bf81612f99565b82525050565b60006126d082612e2f565b6126da8185612e45565b93506126ea81856020860161300a565b6126f3816131d6565b840191505092915050565b600061270982612e3a565b6127138185612e56565b935061272381856020860161300a565b61272c816131d6565b840191505092915050565b600061274282612e3a565b61274c8185612e67565b935061275c81856020860161300a565b80840191505092915050565b6000612775602383612e56565b9150612780826131e7565b604082019050919050565b6000612798603283612e56565b91506127a382613236565b604082019050919050565b60006127bb602683612e56565b91506127c682613285565b604082019050919050565b60006127de601c83612e56565b91506127e9826132d4565b602082019050919050565b6000612801602483612e56565b915061280c826132fd565b604082019050919050565b6000612824601983612e56565b915061282f8261334c565b602082019050919050565b6000612847601283612e56565b915061285282613375565b602082019050919050565b600061286a602c83612e56565b91506128758261339e565b604082019050919050565b600061288d603883612e56565b9150612898826133ed565b604082019050919050565b60006128b0602a83612e56565b91506128bb8261343c565b604082019050919050565b60006128d3602983612e56565b91506128de8261348b565b604082019050919050565b60006128f6601683612e56565b9150612901826134da565b602082019050919050565b6000612919602083612e56565b915061292482613503565b602082019050919050565b600061293c601483612e56565b91506129478261352c565b602082019050919050565b600061295f602c83612e56565b915061296a82613555565b604082019050919050565b6000612982602083612e56565b915061298d826135a4565b602082019050919050565b60006129a5602983612e56565b91506129b0826135cd565b604082019050919050565b60006129c8602f83612e56565b91506129d38261361c565b604082019050919050565b60006129eb601683612e56565b91506129f68261366b565b602082019050919050565b6000612a0e602183612e56565b9150612a1982613694565b604082019050919050565b6000612a31603183612e56565b9150612a3c826136e3565b604082019050919050565b612a5081612ff1565b82525050565b6000612a628285612737565b9150612a6e8284612737565b91508190509392505050565b6000602082019050612a8f60008301846126a7565b92915050565b6000608082019050612aaa60008301876126a7565b612ab760208301866126a7565b612ac46040830185612a47565b8181036060830152612ad681846126c5565b905095945050505050565b6000602082019050612af660008301846126b6565b92915050565b60006020820190508181036000830152612b1681846126fe565b905092915050565b60006020820190508181036000830152612b3781612768565b9050919050565b60006020820190508181036000830152612b578161278b565b9050919050565b60006020820190508181036000830152612b77816127ae565b9050919050565b60006020820190508181036000830152612b97816127d1565b9050919050565b60006020820190508181036000830152612bb7816127f4565b9050919050565b60006020820190508181036000830152612bd781612817565b9050919050565b60006020820190508181036000830152612bf78161283a565b9050919050565b60006020820190508181036000830152612c178161285d565b9050919050565b60006020820190508181036000830152612c3781612880565b9050919050565b60006020820190508181036000830152612c57816128a3565b9050919050565b60006020820190508181036000830152612c77816128c6565b9050919050565b60006020820190508181036000830152612c97816128e9565b9050919050565b60006020820190508181036000830152612cb78161290c565b9050919050565b60006020820190508181036000830152612cd78161292f565b9050919050565b60006020820190508181036000830152612cf781612952565b9050919050565b60006020820190508181036000830152612d1781612975565b9050919050565b60006020820190508181036000830152612d3781612998565b9050919050565b60006020820190508181036000830152612d57816129bb565b9050919050565b60006020820190508181036000830152612d77816129de565b9050919050565b60006020820190508181036000830152612d9781612a01565b9050919050565b60006020820190508181036000830152612db781612a24565b9050919050565b6000602082019050612dd36000830184612a47565b92915050565b6000612de3612df4565b9050612def828261306f565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1957612e186131a7565b5b612e22826131d6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e7d82612ff1565b9150612e8883612ff1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ebd57612ebc61311a565b5b828201905092915050565b6000612ed382612ff1565b9150612ede83612ff1565b925082612eee57612eed613149565b5b828204905092915050565b6000612f0482612ff1565b9150612f0f83612ff1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f4857612f4761311a565b5b828202905092915050565b6000612f5e82612ff1565b9150612f6983612ff1565b925082821015612f7c57612f7b61311a565b5b828203905092915050565b6000612f9282612fd1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561302857808201518184015260208101905061300d565b83811115613037576000848401525b50505050565b6000600282049050600182168061305557607f821691505b6020821081141561306957613068613178565b5b50919050565b613078826131d6565b810181811067ffffffffffffffff82111715613097576130966131a7565b5b80604052505050565b60006130ab82612ff1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130de576130dd61311a565b5b600182019050919050565b60006130f482612ff1565b91506130ff83612ff1565b92508261310f5761310e613149565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61373b81612f87565b811461374657600080fd5b50565b61375281612f99565b811461375d57600080fd5b50565b61376981612fa5565b811461377457600080fd5b50565b61378081612ff1565b811461378b57600080fd5b5056fea2646970667358221220ee0f2e549c482efdcfa68971be8884fb5943ef6681ce650a6fc30b398f805d1364736f6c63430008040033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063715018a6116100ec578063a22cb4651161008a578063d1cbf17d11610064578063d1cbf17d14610593578063d5abeb01146105be578063e985e9c5146105e9578063f2fde38b146106265761019c565b8063a22cb46514610504578063b88d4fde1461052d578063c87b56dd146105565761019c565b80638da5cb5b116100c65780638da5cb5b1461046757806395d89b4114610492578063996517cf146104bd578063a0712d68146104e85761019c565b8063715018a6146103fc57806371adc02a14610413578063819b25ba1461043e5761019c565b80633ccfd60b116101595780636352211e116101335780636352211e1461032c5780636817c76c146103695780636c0360eb1461039457806370a08231146103bf5761019c565b80633ccfd60b146102c357806342842e0e146102da57806355f804b3146103035761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906125e7565b61064f565b6040516101d59190612ae1565b60405180910390f35b3480156101ea57600080fd5b506101f3610731565b6040516102009190612afc565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061267e565b6107c3565b60405161023d9190612a7a565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906125ab565b610848565b005b34801561027b57600080fd5b50610284610960565b6040516102919190612dbe565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906124a5565b610971565b005b3480156102cf57600080fd5b506102d86109d1565b005b3480156102e657600080fd5b5061030160048036038101906102fc91906124a5565b610afb565b005b34801561030f57600080fd5b5061032a60048036038101906103259190612639565b610b1b565b005b34801561033857600080fd5b50610353600480360381019061034e919061267e565b610bad565b6040516103609190612a7a565b60405180910390f35b34801561037557600080fd5b5061037e610c5f565b60405161038b9190612dbe565b60405180910390f35b3480156103a057600080fd5b506103a9610c65565b6040516103b69190612afc565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190612440565b610cf3565b6040516103f39190612dbe565b60405180910390f35b34801561040857600080fd5b50610411610dab565b005b34801561041f57600080fd5b50610428610e33565b6040516104359190612ae1565b60405180910390f35b34801561044a57600080fd5b506104656004803603810190610460919061267e565b610e46565b005b34801561047357600080fd5b5061047c610ecf565b6040516104899190612a7a565b60405180910390f35b34801561049e57600080fd5b506104a7610ef8565b6040516104b49190612afc565b60405180910390f35b3480156104c957600080fd5b506104d2610f8a565b6040516104df9190612dbe565b60405180910390f35b61050260048036038101906104fd919061267e565b610f90565b005b34801561051057600080fd5b5061052b6004803603810190610526919061256f565b611088565b005b34801561053957600080fd5b50610554600480360381019061054f91906124f4565b611209565b005b34801561056257600080fd5b5061057d6004803603810190610578919061267e565b61126b565b60405161058a9190612afc565b60405180910390f35b34801561059f57600080fd5b506105a8611312565b6040516105b59190612ae1565b60405180910390f35b3480156105ca57600080fd5b506105d36113cf565b6040516105e09190612dbe565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190612469565b6113d5565b60405161061d9190612ae1565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612440565b611469565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072a575061072982611561565b5b9050919050565b6060600180546107409061303d565b80601f016020809104026020016040519081016040528092919081815260200182805461076c9061303d565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b60006107ce826115cb565b61080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080490612cde565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085382610bad565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb90612d7e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e3611637565b73ffffffffffffffffffffffffffffffffffffffff16148061091257506109118161090c611637565b6113d5565b5b610951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094890612c1e565b60405180910390fd5b61095b838361163f565b505050565b600061096c600a6116f8565b905090565b61098261097c611637565b82611706565b6109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890612d9e565b60405180910390fd5b6109cc8383836117e4565b505050565b6109d9611637565b73ffffffffffffffffffffffffffffffffffffffff166109f7610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4490612cfe565b60405180910390fd5b60004711610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612d5e565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610af8573d6000803e3d6000fd5b50565b610b1683838360405180602001604052806000815250611209565b505050565b610b23611637565b73ffffffffffffffffffffffffffffffffffffffff16610b41610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90612cfe565b60405180910390fd5b8181600c9190610ba8929190612282565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90612c5e565b60405180910390fd5b80915050919050565b60075481565b600c8054610c729061303d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9e9061303d565b8015610ceb5780601f10610cc057610100808354040283529160200191610ceb565b820191906000526020600020905b815481529060010190602001808311610cce57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b90612c3e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610db3611637565b73ffffffffffffffffffffffffffffffffffffffff16610dd1610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90612cfe565b60405180910390fd5b610e316000611a40565b565b600b60009054906101000a900460ff1681565b610e4e611637565b73ffffffffffffffffffffffffffffffffffffffff16610e6c610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990612cfe565b60405180910390fd5b610ecc3382611b04565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610f079061303d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f339061303d565b8015610f805780601f10610f5557610100808354040283529160200191610f80565b820191906000526020600020905b815481529060010190602001808311610f6357829003601f168201915b5050505050905090565b60085481565b600b60009054906101000a900460ff16610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690612bde565b60405180910390fd5b600854811115611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90612b1e565b60405180910390fd5b61103981600754611baf90919063ffffffff16565b34101561107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290612cbe565b60405180910390fd5b6110853382611b04565b50565b611090611637565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590612bbe565b60405180910390fd5b806006600061110b611637565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111b8611637565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111fd9190612ae1565b60405180910390a35050565b61121a611214611637565b83611706565b611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090612d9e565b60405180910390fd5b61126584848484611bc5565b50505050565b6060611276826115cb565b6112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90612d3e565b60405180910390fd5b60006112bf611c21565b905060008151116112df576040518060200160405280600081525061130a565b806112e984611cb3565b6040516020016112fa929190612a56565b6040516020818303038152906040525b915050919050565b600061131c611637565b73ffffffffffffffffffffffffffffffffffffffff1661133a610ecf565b73ffffffffffffffffffffffffffffffffffffffff1614611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790612cfe565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550600b60009054906101000a900460ff16905090565b60095481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611471611637565b73ffffffffffffffffffffffffffffffffffffffff1661148f610ecf565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90612cfe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612b5e565b60405180910390fd5b61155e81611a40565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116b283610bad565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611711826115cb565b611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790612bfe565b60405180910390fd5b600061175b83610bad565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117ca57508373ffffffffffffffffffffffffffffffffffffffff166117b2846107c3565b73ffffffffffffffffffffffffffffffffffffffff16145b806117db57506117da81856113d5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180482610bad565b73ffffffffffffffffffffffffffffffffffffffff161461185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190612d1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c190612b9e565b60405180910390fd5b6118d5838383611e60565b6118e060008261163f565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119309190612f53565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119879190612e72565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b10600a6116f8565b9050600954611b288383611e6590919063ffffffff16565b1115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090612c7e565b60405180910390fd5b60005b82811015611ba9578180611b7f906130a0565b925050611b8c8483611e7b565b611b96600a611e99565b8080611ba1906130a0565b915050611b6c565b50505050565b60008183611bbd9190612ef9565b905092915050565b611bd08484846117e4565b611bdc84848484611eaf565b611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1290612b3e565b60405180910390fd5b50505050565b6060600c8054611c309061303d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5c9061303d565b8015611ca95780601f10611c7e57610100808354040283529160200191611ca9565b820191906000526020600020905b815481529060010190602001808311611c8c57829003601f168201915b5050505050905090565b60606000821415611cfb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e5b565b600082905060005b60008214611d2d578080611d16906130a0565b915050600a82611d269190612ec8565b9150611d03565b60008167ffffffffffffffff811115611d6f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611da15781602001600182028036833780820191505090505b5090505b60008514611e5457600182611dba9190612f53565b9150600a85611dc991906130e9565b6030611dd59190612e72565b60f81b818381518110611e11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e4d9190612ec8565b9450611da5565b8093505050505b919050565b505050565b60008183611e739190612e72565b905092915050565b611e95828260405180602001604052806000815250612046565b5050565b6001816000016000828254019250508190555050565b6000611ed08473ffffffffffffffffffffffffffffffffffffffff166120a1565b15612039578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ef9611637565b8786866040518563ffffffff1660e01b8152600401611f1b9493929190612a95565b602060405180830381600087803b158015611f3557600080fd5b505af1925050508015611f6657506040513d601f19601f82011682018060405250810190611f639190612610565b60015b611fe9573d8060008114611f96576040519150601f19603f3d011682016040523d82523d6000602084013e611f9b565b606091505b50600081511415611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890612b3e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061203e565b600190505b949350505050565b61205083836120b4565b61205d6000848484611eaf565b61209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209390612b3e565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b90612c9e565b60405180910390fd5b61212d816115cb565b1561216d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216490612b7e565b60405180910390fd5b61217960008383611e60565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121c99190612e72565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461228e9061303d565b90600052602060002090601f0160209004810192826122b057600085556122f7565b82601f106122c957803560ff19168380011785556122f7565b828001600101855582156122f7579182015b828111156122f65782358255916020019190600101906122db565b5b5090506123049190612308565b5090565b5b80821115612321576000816000905550600101612309565b5090565b600061233861233384612dfe565b612dd9565b90508281526020810184848401111561235057600080fd5b61235b848285612ffb565b509392505050565b60008135905061237281613732565b92915050565b60008135905061238781613749565b92915050565b60008135905061239c81613760565b92915050565b6000815190506123b181613760565b92915050565b600082601f8301126123c857600080fd5b81356123d8848260208601612325565b91505092915050565b60008083601f8401126123f357600080fd5b8235905067ffffffffffffffff81111561240c57600080fd5b60208301915083600182028301111561242457600080fd5b9250929050565b60008135905061243a81613777565b92915050565b60006020828403121561245257600080fd5b600061246084828501612363565b91505092915050565b6000806040838503121561247c57600080fd5b600061248a85828601612363565b925050602061249b85828601612363565b9150509250929050565b6000806000606084860312156124ba57600080fd5b60006124c886828701612363565b93505060206124d986828701612363565b92505060406124ea8682870161242b565b9150509250925092565b6000806000806080858703121561250a57600080fd5b600061251887828801612363565b945050602061252987828801612363565b935050604061253a8782880161242b565b925050606085013567ffffffffffffffff81111561255757600080fd5b612563878288016123b7565b91505092959194509250565b6000806040838503121561258257600080fd5b600061259085828601612363565b92505060206125a185828601612378565b9150509250929050565b600080604083850312156125be57600080fd5b60006125cc85828601612363565b92505060206125dd8582860161242b565b9150509250929050565b6000602082840312156125f957600080fd5b60006126078482850161238d565b91505092915050565b60006020828403121561262257600080fd5b6000612630848285016123a2565b91505092915050565b6000806020838503121561264c57600080fd5b600083013567ffffffffffffffff81111561266657600080fd5b612672858286016123e1565b92509250509250929050565b60006020828403121561269057600080fd5b600061269e8482850161242b565b91505092915050565b6126b081612f87565b82525050565b6126bf81612f99565b82525050565b60006126d082612e2f565b6126da8185612e45565b93506126ea81856020860161300a565b6126f3816131d6565b840191505092915050565b600061270982612e3a565b6127138185612e56565b935061272381856020860161300a565b61272c816131d6565b840191505092915050565b600061274282612e3a565b61274c8185612e67565b935061275c81856020860161300a565b80840191505092915050565b6000612775602383612e56565b9150612780826131e7565b604082019050919050565b6000612798603283612e56565b91506127a382613236565b604082019050919050565b60006127bb602683612e56565b91506127c682613285565b604082019050919050565b60006127de601c83612e56565b91506127e9826132d4565b602082019050919050565b6000612801602483612e56565b915061280c826132fd565b604082019050919050565b6000612824601983612e56565b915061282f8261334c565b602082019050919050565b6000612847601283612e56565b915061285282613375565b602082019050919050565b600061286a602c83612e56565b91506128758261339e565b604082019050919050565b600061288d603883612e56565b9150612898826133ed565b604082019050919050565b60006128b0602a83612e56565b91506128bb8261343c565b604082019050919050565b60006128d3602983612e56565b91506128de8261348b565b604082019050919050565b60006128f6601683612e56565b9150612901826134da565b602082019050919050565b6000612919602083612e56565b915061292482613503565b602082019050919050565b600061293c601483612e56565b91506129478261352c565b602082019050919050565b600061295f602c83612e56565b915061296a82613555565b604082019050919050565b6000612982602083612e56565b915061298d826135a4565b602082019050919050565b60006129a5602983612e56565b91506129b0826135cd565b604082019050919050565b60006129c8602f83612e56565b91506129d38261361c565b604082019050919050565b60006129eb601683612e56565b91506129f68261366b565b602082019050919050565b6000612a0e602183612e56565b9150612a1982613694565b604082019050919050565b6000612a31603183612e56565b9150612a3c826136e3565b604082019050919050565b612a5081612ff1565b82525050565b6000612a628285612737565b9150612a6e8284612737565b91508190509392505050565b6000602082019050612a8f60008301846126a7565b92915050565b6000608082019050612aaa60008301876126a7565b612ab760208301866126a7565b612ac46040830185612a47565b8181036060830152612ad681846126c5565b905095945050505050565b6000602082019050612af660008301846126b6565b92915050565b60006020820190508181036000830152612b1681846126fe565b905092915050565b60006020820190508181036000830152612b3781612768565b9050919050565b60006020820190508181036000830152612b578161278b565b9050919050565b60006020820190508181036000830152612b77816127ae565b9050919050565b60006020820190508181036000830152612b97816127d1565b9050919050565b60006020820190508181036000830152612bb7816127f4565b9050919050565b60006020820190508181036000830152612bd781612817565b9050919050565b60006020820190508181036000830152612bf78161283a565b9050919050565b60006020820190508181036000830152612c178161285d565b9050919050565b60006020820190508181036000830152612c3781612880565b9050919050565b60006020820190508181036000830152612c57816128a3565b9050919050565b60006020820190508181036000830152612c77816128c6565b9050919050565b60006020820190508181036000830152612c97816128e9565b9050919050565b60006020820190508181036000830152612cb78161290c565b9050919050565b60006020820190508181036000830152612cd78161292f565b9050919050565b60006020820190508181036000830152612cf781612952565b9050919050565b60006020820190508181036000830152612d1781612975565b9050919050565b60006020820190508181036000830152612d3781612998565b9050919050565b60006020820190508181036000830152612d57816129bb565b9050919050565b60006020820190508181036000830152612d77816129de565b9050919050565b60006020820190508181036000830152612d9781612a01565b9050919050565b60006020820190508181036000830152612db781612a24565b9050919050565b6000602082019050612dd36000830184612a47565b92915050565b6000612de3612df4565b9050612def828261306f565b919050565b6000604051905090565b600067ffffffffffffffff821115612e1957612e186131a7565b5b612e22826131d6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e7d82612ff1565b9150612e8883612ff1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ebd57612ebc61311a565b5b828201905092915050565b6000612ed382612ff1565b9150612ede83612ff1565b925082612eee57612eed613149565b5b828204905092915050565b6000612f0482612ff1565b9150612f0f83612ff1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f4857612f4761311a565b5b828202905092915050565b6000612f5e82612ff1565b9150612f6983612ff1565b925082821015612f7c57612f7b61311a565b5b828203905092915050565b6000612f9282612fd1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561302857808201518184015260208101905061300d565b83811115613037576000848401525b50505050565b6000600282049050600182168061305557607f821691505b6020821081141561306957613068613178565b5b50919050565b613078826131d6565b810181811067ffffffffffffffff82111715613097576130966131a7565b5b80604052505050565b60006130ab82612ff1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130de576130dd61311a565b5b600182019050919050565b60006130f482612ff1565b91506130ff83612ff1565b92508261310f5761310e613149565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61373b81612f87565b811461374657600080fd5b50565b61375281612f99565b811461375d57600080fd5b50565b61376981612fa5565b811461377457600080fd5b50565b61378081612ff1565b811461378b57600080fd5b5056fea2646970667358221220ee0f2e549c482efdcfa68971be8884fb5943ef6681ce650a6fc30b398f805d1364736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.