ETH Price: $3,354.77 (-1.81%)
Gas: 7 Gwei

Token

Bastard Penguins (BP)
 

Overview

Max Total Supply

0 BP

Holders

3,778

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
domaineart.eth
Balance
2 BP
0x3c41F73374eEa8ac6EA252cd44F808a400562B41
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bastard Penguins is a collection of 9,999 Deflationary Penguins who have chosen to move from their frozen land to support the Penguins' invasion of the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BastardPenguins

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : 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 2 of 11 : 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 3 of 11 : 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 4 of 11 : 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 5 of 11 : 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 6 of 11 : 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 7 of 11 : 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 8 of 11 : 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 9 of 11 : 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 10 of 11 : 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);
}

File 11 of 11 : BastardPenguins.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract BastardPenguins is ERC721, Ownable {
    using Strings for uint256;

    uint256 public itemPrice = 0.02 ether;

    bool public isSaleActive = false;
    uint256 public constant totalTokenToMint = 9999;
    uint256 public purchasedPenguins = 0;

    uint256 private startingIpfsId;

    uint256 private _lastIpfsId;

    uint256 public REVEAL_TIMESTAMP = block.timestamp + 30 days;

    // Optional mapping for token URIs
    mapping(uint256 => uint256) private _tokenURIs;

    // Base URI
    string public baseURI = "";

    constructor() ERC721("Bastard Penguins", "BP") {}

    /////////////////////////////////////////
    // Action methods: Write Contract Part //
    /////////////////////////////////////////

    //purchase multiple penguins at once
    function purchasePenguins(uint256 _howMany) external payable {
        require(_howMany > 0, "Minimum 1 tokens need to be minted");
        require(
            _howMany <= penguinsRemainingToBeMinted(),
            "Purchase amount is greater than the token available"
        );
        require(isSaleActive, "Sale is not active");
        require(_howMany <= 20, "max 20 penguins at once");
        require(itemPrice * _howMany == msg.value, "Insufficient ETH to mint");
        for (uint256 i = 0; i < _howMany; i++) {
            _mintPenguin(_msgSender());
        }
    }

    function setRevealTimestamp(uint256 revealTimeStamp) external onlyOwner {
        REVEAL_TIMESTAMP = revealTimeStamp;
    }

    function _mintPenguin(address _to) private {
        if (purchasedPenguins == 0) {
            _lastIpfsId = random(
                1,
                totalTokenToMint,
                uint256(uint160(address(_msgSender()))) + 1
            );
            startingIpfsId = _lastIpfsId;
        } else {
            _lastIpfsId = getIpfsIdToMint();
        }
        purchasedPenguins++;
        require(!_exists(purchasedPenguins), "Mint: Token already exist.");
        _mint(_to, purchasedPenguins);
        _tokenURIs[purchasedPenguins] = _lastIpfsId;
    }

    // Gift NFT to people
    function gift(address[] calldata to) external onlyOwner {
        require(
            to.length <= penguinsRemainingToBeMinted(),
            "gift amount is greater than the token available"
        );

        for (uint256 i = 0; i < to.length; i++) {
            _mintPenguin(to[i]);
        }
    }

    // Reserve NFT for owner
    function reserveNFT(uint256 _howMany, address _sendNftsTo)
        external
        onlyOwner
    {
        require(
            _howMany <= penguinsRemainingToBeMinted(),
            "reserve amount is greater than the token available"
        );

        for (uint256 i = 0; i < _howMany; i++) {
            _mintPenguin(_sendNftsTo);
        }
    }

    // Change Price in case of ETH price changes too much
    function setPrice(uint256 _newPrice) external onlyOwner {
        itemPrice = _newPrice;
    }

    function burn(uint256 _tokenId) external {
        require(_exists(_tokenId), "Burn: token does not exist.");
        require(
            ownerOf(_tokenId) == _msgSender(),
            "Burn: caller is not token owner."
        );
        _burn(_tokenId);
    }

    function stopSale() external onlyOwner {
        isSaleActive = false;
    }

    function startSale() external onlyOwner {
        isSaleActive = true;
    }

    function withdrawETH() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function setTokenURI(uint256 _tokenId, uint256 _uri) external onlyOwner {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[_tokenId] = _uri;
    }

    // Hide identity or show identity from here
    function setBaseURI(string memory _baseURI_) external onlyOwner {
        baseURI = _baseURI_;
    }

    function _beforeTokenTransfer(
        address _from,
        address _to,
        uint256 _tokenId
    ) internal virtual override(ERC721) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }

    ///////////////////////////////////////
    // Query methods: Read Contract Part //
    ///////////////////////////////////////

    function exists(uint256 _tokenId) external view returns (bool) {
        return _exists(_tokenId);
    }

    function penguinsRemainingToBeMinted() public view returns (uint256) {
        return totalTokenToMint - purchasedPenguins;
    }

    function isAllTokenMinted() public view returns (bool) {
        return purchasedPenguins == totalTokenToMint;
    }

    function getIpfsIdToMint() private view returns (uint256 _nextIpfsId) {
        require(!isAllTokenMinted(), "All tokens have been minted");
        if (
            _lastIpfsId == totalTokenToMint &&
            purchasedPenguins < totalTokenToMint
        ) {
            _nextIpfsId = 1;
        } else if (purchasedPenguins < totalTokenToMint) {
            _nextIpfsId = _lastIpfsId + 1;
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(baseURI, _tokenURIs[tokenId].toString())
                )
                : "";
    }

    function isApprovedOrOwner(address _spender, uint256 _tokenId)
        external
        view
        returns (bool)
    {
        return _isApprovedOrOwner(_spender, _tokenId);
    }

    //random number
    function random(
        uint256 from,
        uint256 to,
        uint256 salty
    ) private view returns (uint256) {
        uint256 seed = uint256(
            keccak256(
                abi.encodePacked(
                    block.timestamp +
                        block.difficulty +
                        ((
                            uint256(keccak256(abi.encodePacked(block.coinbase)))
                        ) / (block.timestamp)) +
                        block.gaslimit +
                        ((uint256(keccak256(abi.encodePacked(_msgSender())))) /
                            (block.timestamp)) +
                        block.number +
                        salty
                )
            )
        );
        return (seed % (to - from)) + from;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

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":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAllTokenMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPrice","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":"penguinsRemainingToBeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"purchasePenguins","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"purchasedPenguins","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"},{"internalType":"address","name":"_sendNftsTo","type":"address"}],"name":"reserveNFT","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":"_baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_uri","type":"uint256"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","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":"totalTokenToMint","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":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df8200006007556000600860006101000a81548160ff021916908315150217905550600060095562278d0042620000409190620002bd565b600c5560405180602001604052806000815250600e90805190602001906200006a9291906200020d565b503480156200007857600080fd5b506040518060400160405280601081526020017f426173746172642050656e6775696e73000000000000000000000000000000008152506040518060400160405280600281526020017f42500000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fd9291906200020d565b508060019080519060200190620001169291906200020d565b505050620001396200012d6200013f60201b60201c565b6200014760201b60201c565b620003b8565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b9062000324565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b6000620002ca826200031a565b9150620002d7836200031a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200030f576200030e6200035a565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200033d57607f821691505b6020821081141562000354576200035362000389565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147a980620003c86000396000f3fe60806040526004361061021a5760003560e01c80636c0360eb11610123578063b66a0e5d116100ab578063e086e5ec1161006f578063e086e5ec146107ae578063e36b0b37146107c5578063e985e9c5146107dc578063f2fde38b14610819578063fd15ec58146108425761021a565b8063b66a0e5d146106dd578063b88d4fde146106f4578063c87b56dd1461071d578063d78233601461075a578063dac6db1c146107835761021a565b806391b7f5ed116100f257806391b7f5ed1461060c57806395d89b4114610635578063a22cb46514610660578063a760a29f14610689578063acacdaf2146106b45761021a565b80636c0360eb1461056257806370a082311461058d578063715018a6146105ca5780638da5cb5b146105e15761021a565b8063257b88d3116101a6578063430c208111610175578063430c2081146104575780634f558e791461049457806355f804b3146104d1578063564566a8146104fa5780636352211e146105255761021a565b8063257b88d3146103af57806338e9b1a7146103da57806342842e0e1461040557806342966c681461042e5761021a565b8063081812fc116101ed578063081812fc146102cc578063095ea7b314610309578063163e1e611461033257806318e20a381461035b57806323b872dd146103865761021a565b8063018a2c371461021f57806301ffc9a71461024857806303e3b4a41461028557806306fdde03146102a1575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061304c565b61086d565b005b34801561025457600080fd5b5061026f600480360381019061026a9190612fa9565b6108f3565b60405161027c919061373d565b60405180910390f35b61029f600480360381019061029a919061304c565b6109d5565b005b3480156102ad57600080fd5b506102b6610b76565b6040516102c39190613758565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061304c565b610c08565b60405161030091906136d6565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612f1c565b610c8d565b005b34801561033e57600080fd5b5061035960048036038101906103549190612f5c565b610da5565b005b34801561036757600080fd5b50610370610ec4565b60405161037d9190613afa565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190612e06565b610eca565b005b3480156103bb57600080fd5b506103c4610f2a565b6040516103d19190613afa565b60405180910390f35b3480156103e657600080fd5b506103ef610f41565b6040516103fc9190613afa565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612e06565b610f47565b005b34801561043a57600080fd5b506104556004803603810190610450919061304c565b610f67565b005b34801561046357600080fd5b5061047e60048036038101906104799190612f1c565b611038565b60405161048b919061373d565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061304c565b61104c565b6040516104c8919061373d565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613003565b61105e565b005b34801561050657600080fd5b5061050f6110f4565b60405161051c919061373d565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061304c565b611107565b60405161055991906136d6565b60405180910390f35b34801561056e57600080fd5b506105776111b9565b6040516105849190613758565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190612d99565b611247565b6040516105c19190613afa565b60405180910390f35b3480156105d657600080fd5b506105df6112ff565b005b3480156105ed57600080fd5b506105f6611387565b60405161060391906136d6565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e919061304c565b6113b1565b005b34801561064157600080fd5b5061064a611437565b6040516106579190613758565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190612edc565b6114c9565b005b34801561069557600080fd5b5061069e61164a565b6040516106ab919061373d565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190613079565b611658565b005b3480156106e957600080fd5b506106f261174a565b005b34801561070057600080fd5b5061071b60048036038101906107169190612e59565b6117e3565b005b34801561072957600080fd5b50610744600480360381019061073f919061304c565b611845565b6040516107519190613758565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c91906130b9565b611900565b005b34801561078f57600080fd5b506107986119e0565b6040516107a59190613afa565b60405180910390f35b3480156107ba57600080fd5b506107c36119e6565b005b3480156107d157600080fd5b506107da611aab565b005b3480156107e857600080fd5b5061080360048036038101906107fe9190612dc6565b611b44565b604051610810919061373d565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190612d99565b611bd8565b005b34801561084e57600080fd5b50610857611cd0565b6040516108649190613afa565b60405180910390f35b610875611cd6565b73ffffffffffffffffffffffffffffffffffffffff16610893611387565b73ffffffffffffffffffffffffffffffffffffffff16146108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e09061399a565b60405180910390fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ce57506109cd82611cde565b5b9050919050565b60008111610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90613a1a565b60405180910390fd5b610a20610f2a565b811115610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a59906138fa565b60405180910390fd5b600860009054906101000a900460ff16610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa89061385a565b60405180910390fd5b6014811115610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec9061397a565b60405180910390fd5b3481600754610b049190613c7b565b14610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613aba565b60405180910390fd5b60005b81811015610b7257610b5f610b5a611cd6565b611d48565b8080610b6a90613e34565b915050610b47565b5050565b606060008054610b8590613dd1565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190613dd1565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b5050505050905090565b6000610c1382611e3b565b610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c499061393a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c9882611107565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d00906139fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d28611cd6565b73ffffffffffffffffffffffffffffffffffffffff161480610d575750610d5681610d51611cd6565b611b44565b5b610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d9061389a565b60405180910390fd5b610da08383611ea7565b505050565b610dad611cd6565b73ffffffffffffffffffffffffffffffffffffffff16610dcb611387565b73ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e189061399a565b60405180910390fd5b610e29610f2a565b828290501115610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590613ada565b60405180910390fd5b60005b82829050811015610ebf57610eac838383818110610e9257610e91613f7b565b5b9050602002016020810190610ea79190612d99565b611d48565b8080610eb790613e34565b915050610e71565b505050565b600c5481565b610edb610ed5611cd6565b82611f60565b610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190613a5a565b60405180910390fd5b610f2583838361203e565b505050565b600060095461270f610f3c9190613cd5565b905090565b60095481565b610f62838383604051806020016040528060008152506117e3565b505050565b610f7081611e3b565b610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613a7a565b60405180910390fd5b610fb7611cd6565b73ffffffffffffffffffffffffffffffffffffffff16610fd682611107565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390613a3a565b60405180910390fd5b6110358161229a565b50565b60006110448383611f60565b905092915050565b600061105782611e3b565b9050919050565b611066611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611084611387565b73ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d19061399a565b60405180910390fd5b80600e90805190602001906110f0929190612b57565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906138da565b60405180910390fd5b80915050919050565b600e80546111c690613dd1565b80601f01602080910402602001604051908101604052809291908181526020018280546111f290613dd1565b801561123f5780601f106112145761010080835404028352916020019161123f565b820191906000526020600020905b81548152906001019060200180831161122257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906138ba565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611307611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611325611387565b73ffffffffffffffffffffffffffffffffffffffff161461137b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113729061399a565b60405180910390fd5b61138560006123ab565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b9611cd6565b73ffffffffffffffffffffffffffffffffffffffff166113d7611387565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114249061399a565b60405180910390fd5b8060078190555050565b60606001805461144690613dd1565b80601f016020809104026020016040519081016040528092919081815260200182805461147290613dd1565b80156114bf5780601f10611494576101008083540402835291602001916114bf565b820191906000526020600020905b8154815290600101906020018083116114a257829003601f168201915b5050505050905090565b6114d1611cd6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115369061383a565b60405180910390fd5b806005600061154c611cd6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f9611cd6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163e919061373d565b60405180910390a35050565b600061270f60095414905090565b611660611cd6565b73ffffffffffffffffffffffffffffffffffffffff1661167e611387565b73ffffffffffffffffffffffffffffffffffffffff16146116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb9061399a565b60405180910390fd5b6116dc610f2a565b82111561171e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611715906137fa565b60405180910390fd5b60005b828110156117455761173282611d48565b808061173d90613e34565b915050611721565b505050565b611752611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611770611387565b73ffffffffffffffffffffffffffffffffffffffff16146117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd9061399a565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b6117f46117ee611cd6565b83611f60565b611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90613a5a565b60405180910390fd5b61183f84848484612471565b50505050565b606061185082611e3b565b61188f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611886906139da565b60405180910390fd5b6000600e805461189e90613dd1565b9050116118ba57604051806020016040528060008152506118f9565b600e6118d8600d6000858152602001908152602001600020546124cd565b6040516020016118e9929190613697565b6040516020818303038152906040525b9050919050565b611908611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611926611387565b73ffffffffffffffffffffffffffffffffffffffff161461197c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119739061399a565b60405180910390fd5b61198582611e3b565b6119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061395a565b60405180910390fd5b80600d6000848152602001908152602001600020819055505050565b60075481565b6119ee611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611387565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a599061399a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611aa8573d6000803e3d6000fd5b50565b611ab3611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611ad1611387565b73ffffffffffffffffffffffffffffffffffffffff1614611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e9061399a565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611be0611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611bfe611387565b73ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061399a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906137ba565b60405180910390fd5b611ccd816123ab565b50565b61270f81565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006009541415611d9e57611d8a600161270f6001611d65611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611d859190613bf4565b61262e565b600b81905550600b54600a81905550611dad565b611da661273a565b600b819055505b60096000815480929190611dc090613e34565b9190505550611dd0600954611e3b565b15611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e079061379a565b60405180910390fd5b611e1c816009546127ca565b600b54600d600060095481526020019081526020016000208190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1a83611107565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6b82611e3b565b611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa19061387a565b60405180910390fd5b6000611fb583611107565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202457508373ffffffffffffffffffffffffffffffffffffffff1661200c84610c08565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203557506120348185611b44565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205e82611107565b73ffffffffffffffffffffffffffffffffffffffff16146120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab906139ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b9061381a565b60405180910390fd5b61212f838383612998565b61213a600082611ea7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218a9190613cd5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e19190613bf4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006122a582611107565b90506122b381600084612998565b6122be600083611ea7565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461230e9190613cd5565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61247c84848461203e565b612488848484846129a8565b6124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be9061377a565b60405180910390fd5b50505050565b60606000821415612515576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612629565b600082905060005b6000821461254757808061253090613e34565b915050600a826125409190613c4a565b915061251d565b60008167ffffffffffffffff81111561256357612562613faa565b5b6040519080825280601f01601f1916602001820160405280156125955781602001600182028036833780820191505090505b5090505b60008514612622576001826125ae9190613cd5565b9150600a856125bd9190613ebd565b60306125c99190613bf4565b60f81b8183815181106125df576125de613f7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561261b9190613c4a565b9450612599565b8093505050505b919050565b60008082434261263c611cd6565b60405160200161264c9190613661565b6040516020818303038152906040528051906020012060001c61266f9190613c4a565b454241604051602001612682919061367c565b6040516020818303038152906040528051906020012060001c6126a59190613c4a565b44426126b19190613bf4565b6126bb9190613bf4565b6126c59190613bf4565b6126cf9190613bf4565b6126d99190613bf4565b6126e39190613bf4565b6040516020016126f391906136bb565b6040516020818303038152906040528051906020012060001c905084858561271b9190613cd5565b826127269190613ebd565b6127309190613bf4565b9150509392505050565b600061274461164a565b15612784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277b90613a9a565b60405180910390fd5b61270f600b5414801561279a575061270f600954105b156127a857600190506127c7565b61270f60095410156127c6576001600b546127c39190613bf4565b90505b5b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128319061391a565b60405180910390fd5b61284381611e3b565b15612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a906137da565b60405180910390fd5b61288f60008383612998565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128df9190613bf4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6129a3838383612b3f565b505050565b60006129c98473ffffffffffffffffffffffffffffffffffffffff16612b44565b15612b32578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129f2611cd6565b8786866040518563ffffffff1660e01b8152600401612a1494939291906136f1565b602060405180830381600087803b158015612a2e57600080fd5b505af1925050508015612a5f57506040513d601f19601f82011682018060405250810190612a5c9190612fd6565b60015b612ae2573d8060008114612a8f576040519150601f19603f3d011682016040523d82523d6000602084013e612a94565b606091505b50600081511415612ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad19061377a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b37565b600190505b949350505050565b505050565b600080823b905060008111915050919050565b828054612b6390613dd1565b90600052602060002090601f016020900481019282612b855760008555612bcc565b82601f10612b9e57805160ff1916838001178555612bcc565b82800160010185558215612bcc579182015b82811115612bcb578251825591602001919060010190612bb0565b5b509050612bd99190612bdd565b5090565b5b80821115612bf6576000816000905550600101612bde565b5090565b6000612c0d612c0884613b3a565b613b15565b905082815260208101848484011115612c2957612c28613fe8565b5b612c34848285613d8f565b509392505050565b6000612c4f612c4a84613b6b565b613b15565b905082815260208101848484011115612c6b57612c6a613fe8565b5b612c76848285613d8f565b509392505050565b600081359050612c8d81614717565b92915050565b60008083601f840112612ca957612ca8613fde565b5b8235905067ffffffffffffffff811115612cc657612cc5613fd9565b5b602083019150836020820283011115612ce257612ce1613fe3565b5b9250929050565b600081359050612cf88161472e565b92915050565b600081359050612d0d81614745565b92915050565b600081519050612d2281614745565b92915050565b600082601f830112612d3d57612d3c613fde565b5b8135612d4d848260208601612bfa565b91505092915050565b600082601f830112612d6b57612d6a613fde565b5b8135612d7b848260208601612c3c565b91505092915050565b600081359050612d938161475c565b92915050565b600060208284031215612daf57612dae613ff2565b5b6000612dbd84828501612c7e565b91505092915050565b60008060408385031215612ddd57612ddc613ff2565b5b6000612deb85828601612c7e565b9250506020612dfc85828601612c7e565b9150509250929050565b600080600060608486031215612e1f57612e1e613ff2565b5b6000612e2d86828701612c7e565b9350506020612e3e86828701612c7e565b9250506040612e4f86828701612d84565b9150509250925092565b60008060008060808587031215612e7357612e72613ff2565b5b6000612e8187828801612c7e565b9450506020612e9287828801612c7e565b9350506040612ea387828801612d84565b925050606085013567ffffffffffffffff811115612ec457612ec3613fed565b5b612ed087828801612d28565b91505092959194509250565b60008060408385031215612ef357612ef2613ff2565b5b6000612f0185828601612c7e565b9250506020612f1285828601612ce9565b9150509250929050565b60008060408385031215612f3357612f32613ff2565b5b6000612f4185828601612c7e565b9250506020612f5285828601612d84565b9150509250929050565b60008060208385031215612f7357612f72613ff2565b5b600083013567ffffffffffffffff811115612f9157612f90613fed565b5b612f9d85828601612c93565b92509250509250929050565b600060208284031215612fbf57612fbe613ff2565b5b6000612fcd84828501612cfe565b91505092915050565b600060208284031215612fec57612feb613ff2565b5b6000612ffa84828501612d13565b91505092915050565b60006020828403121561301957613018613ff2565b5b600082013567ffffffffffffffff81111561303757613036613fed565b5b61304384828501612d56565b91505092915050565b60006020828403121561306257613061613ff2565b5b600061307084828501612d84565b91505092915050565b600080604083850312156130905761308f613ff2565b5b600061309e85828601612d84565b92505060206130af85828601612c7e565b9150509250929050565b600080604083850312156130d0576130cf613ff2565b5b60006130de85828601612d84565b92505060206130ef85828601612d84565b9150509250929050565b61310a61310582613d1b565b613e8f565b82525050565b61311981613d09565b82525050565b61313061312b82613d09565b613e7d565b82525050565b61313f81613d2d565b82525050565b600061315082613bb1565b61315a8185613bc7565b935061316a818560208601613d9e565b61317381613ff7565b840191505092915050565b600061318982613bbc565b6131938185613bd8565b93506131a3818560208601613d9e565b6131ac81613ff7565b840191505092915050565b60006131c282613bbc565b6131cc8185613be9565b93506131dc818560208601613d9e565b80840191505092915050565b600081546131f581613dd1565b6131ff8186613be9565b9450600182166000811461321a576001811461322b5761325e565b60ff1983168652818601935061325e565b61323485613b9c565b60005b8381101561325657815481890152600182019150602081019050613237565b838801955050505b50505092915050565b6000613274603283613bd8565b915061327f82614015565b604082019050919050565b6000613297601a83613bd8565b91506132a282614064565b602082019050919050565b60006132ba602683613bd8565b91506132c58261408d565b604082019050919050565b60006132dd601c83613bd8565b91506132e8826140dc565b602082019050919050565b6000613300603283613bd8565b915061330b82614105565b604082019050919050565b6000613323602483613bd8565b915061332e82614154565b604082019050919050565b6000613346601983613bd8565b9150613351826141a3565b602082019050919050565b6000613369601283613bd8565b9150613374826141cc565b602082019050919050565b600061338c602c83613bd8565b9150613397826141f5565b604082019050919050565b60006133af603883613bd8565b91506133ba82614244565b604082019050919050565b60006133d2602a83613bd8565b91506133dd82614293565b604082019050919050565b60006133f5602983613bd8565b9150613400826142e2565b604082019050919050565b6000613418603383613bd8565b915061342382614331565b604082019050919050565b600061343b602083613bd8565b915061344682614380565b602082019050919050565b600061345e602c83613bd8565b9150613469826143a9565b604082019050919050565b6000613481602c83613bd8565b915061348c826143f8565b604082019050919050565b60006134a4601783613bd8565b91506134af82614447565b602082019050919050565b60006134c7602083613bd8565b91506134d282614470565b602082019050919050565b60006134ea602983613bd8565b91506134f582614499565b604082019050919050565b600061350d602f83613bd8565b9150613518826144e8565b604082019050919050565b6000613530602183613bd8565b915061353b82614537565b604082019050919050565b6000613553602283613bd8565b915061355e82614586565b604082019050919050565b6000613576602083613bd8565b9150613581826145d5565b602082019050919050565b6000613599603183613bd8565b91506135a4826145fe565b604082019050919050565b60006135bc601b83613bd8565b91506135c78261464d565b602082019050919050565b60006135df601b83613bd8565b91506135ea82614676565b602082019050919050565b6000613602601883613bd8565b915061360d8261469f565b602082019050919050565b6000613625602f83613bd8565b9150613630826146c8565b604082019050919050565b61364481613d85565b82525050565b61365b61365682613d85565b613eb3565b82525050565b600061366d828461311f565b60148201915081905092915050565b600061368882846130f9565b60148201915081905092915050565b60006136a382856131e8565b91506136af82846131b7565b91508190509392505050565b60006136c7828461364a565b60208201915081905092915050565b60006020820190506136eb6000830184613110565b92915050565b60006080820190506137066000830187613110565b6137136020830186613110565b613720604083018561363b565b81810360608301526137328184613145565b905095945050505050565b60006020820190506137526000830184613136565b92915050565b60006020820190508181036000830152613772818461317e565b905092915050565b6000602082019050818103600083015261379381613267565b9050919050565b600060208201905081810360008301526137b38161328a565b9050919050565b600060208201905081810360008301526137d3816132ad565b9050919050565b600060208201905081810360008301526137f3816132d0565b9050919050565b60006020820190508181036000830152613813816132f3565b9050919050565b6000602082019050818103600083015261383381613316565b9050919050565b6000602082019050818103600083015261385381613339565b9050919050565b600060208201905081810360008301526138738161335c565b9050919050565b600060208201905081810360008301526138938161337f565b9050919050565b600060208201905081810360008301526138b3816133a2565b9050919050565b600060208201905081810360008301526138d3816133c5565b9050919050565b600060208201905081810360008301526138f3816133e8565b9050919050565b600060208201905081810360008301526139138161340b565b9050919050565b600060208201905081810360008301526139338161342e565b9050919050565b6000602082019050818103600083015261395381613451565b9050919050565b6000602082019050818103600083015261397381613474565b9050919050565b6000602082019050818103600083015261399381613497565b9050919050565b600060208201905081810360008301526139b3816134ba565b9050919050565b600060208201905081810360008301526139d3816134dd565b9050919050565b600060208201905081810360008301526139f381613500565b9050919050565b60006020820190508181036000830152613a1381613523565b9050919050565b60006020820190508181036000830152613a3381613546565b9050919050565b60006020820190508181036000830152613a5381613569565b9050919050565b60006020820190508181036000830152613a738161358c565b9050919050565b60006020820190508181036000830152613a93816135af565b9050919050565b60006020820190508181036000830152613ab3816135d2565b9050919050565b60006020820190508181036000830152613ad3816135f5565b9050919050565b60006020820190508181036000830152613af381613618565b9050919050565b6000602082019050613b0f600083018461363b565b92915050565b6000613b1f613b30565b9050613b2b8282613e03565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5557613b54613faa565b5b613b5e82613ff7565b9050602081019050919050565b600067ffffffffffffffff821115613b8657613b85613faa565b5b613b8f82613ff7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bff82613d85565b9150613c0a83613d85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3f57613c3e613eee565b5b828201905092915050565b6000613c5582613d85565b9150613c6083613d85565b925082613c7057613c6f613f1d565b5b828204905092915050565b6000613c8682613d85565b9150613c9183613d85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cca57613cc9613eee565b5b828202905092915050565b6000613ce082613d85565b9150613ceb83613d85565b925082821015613cfe57613cfd613eee565b5b828203905092915050565b6000613d1482613d65565b9050919050565b6000613d2682613d65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dbc578082015181840152602081019050613da1565b83811115613dcb576000848401525b50505050565b60006002820490506001821680613de957607f821691505b60208210811415613dfd57613dfc613f4c565b5b50919050565b613e0c82613ff7565b810181811067ffffffffffffffff82111715613e2b57613e2a613faa565b5b80604052505050565b6000613e3f82613d85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7257613e71613eee565b5b600182019050919050565b6000613e8882613ea1565b9050919050565b6000613e9a82613ea1565b9050919050565b6000613eac82614008565b9050919050565b6000819050919050565b6000613ec882613d85565b9150613ed383613d85565b925082613ee357613ee2613f1d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e743a20546f6b656e20616c72656164792065786973742e000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7265736572766520616d6f756e742069732067726561746572207468616e207460008201527f686520746f6b656e20617661696c61626c650000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520616d6f756e742069732067726561746572207468616e2060008201527f74686520746f6b656e20617661696c61626c6500000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6d61782032302070656e6775696e73206174206f6e6365000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d203120746f6b656e73206e65656420746f206265206d696e7460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4275726e3a2063616c6c6572206973206e6f7420746f6b656e206f776e65722e600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4275726e3a20746f6b656e20646f6573206e6f742065786973742e0000000000600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f496e73756666696369656e742045544820746f206d696e740000000000000000600082015250565b7f6769667420616d6f756e742069732067726561746572207468616e207468652060008201527f746f6b656e20617661696c61626c650000000000000000000000000000000000602082015250565b61472081613d09565b811461472b57600080fd5b50565b61473781613d2d565b811461474257600080fd5b50565b61474e81613d39565b811461475957600080fd5b50565b61476581613d85565b811461477057600080fd5b5056fea264697066735822122003f0dbd1ef597a1893fc486d35f0a369bc79c8fa41e3cb50105d6b0d8797391464736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636c0360eb11610123578063b66a0e5d116100ab578063e086e5ec1161006f578063e086e5ec146107ae578063e36b0b37146107c5578063e985e9c5146107dc578063f2fde38b14610819578063fd15ec58146108425761021a565b8063b66a0e5d146106dd578063b88d4fde146106f4578063c87b56dd1461071d578063d78233601461075a578063dac6db1c146107835761021a565b806391b7f5ed116100f257806391b7f5ed1461060c57806395d89b4114610635578063a22cb46514610660578063a760a29f14610689578063acacdaf2146106b45761021a565b80636c0360eb1461056257806370a082311461058d578063715018a6146105ca5780638da5cb5b146105e15761021a565b8063257b88d3116101a6578063430c208111610175578063430c2081146104575780634f558e791461049457806355f804b3146104d1578063564566a8146104fa5780636352211e146105255761021a565b8063257b88d3146103af57806338e9b1a7146103da57806342842e0e1461040557806342966c681461042e5761021a565b8063081812fc116101ed578063081812fc146102cc578063095ea7b314610309578063163e1e611461033257806318e20a381461035b57806323b872dd146103865761021a565b8063018a2c371461021f57806301ffc9a71461024857806303e3b4a41461028557806306fdde03146102a1575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061304c565b61086d565b005b34801561025457600080fd5b5061026f600480360381019061026a9190612fa9565b6108f3565b60405161027c919061373d565b60405180910390f35b61029f600480360381019061029a919061304c565b6109d5565b005b3480156102ad57600080fd5b506102b6610b76565b6040516102c39190613758565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061304c565b610c08565b60405161030091906136d6565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612f1c565b610c8d565b005b34801561033e57600080fd5b5061035960048036038101906103549190612f5c565b610da5565b005b34801561036757600080fd5b50610370610ec4565b60405161037d9190613afa565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190612e06565b610eca565b005b3480156103bb57600080fd5b506103c4610f2a565b6040516103d19190613afa565b60405180910390f35b3480156103e657600080fd5b506103ef610f41565b6040516103fc9190613afa565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612e06565b610f47565b005b34801561043a57600080fd5b506104556004803603810190610450919061304c565b610f67565b005b34801561046357600080fd5b5061047e60048036038101906104799190612f1c565b611038565b60405161048b919061373d565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061304c565b61104c565b6040516104c8919061373d565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613003565b61105e565b005b34801561050657600080fd5b5061050f6110f4565b60405161051c919061373d565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061304c565b611107565b60405161055991906136d6565b60405180910390f35b34801561056e57600080fd5b506105776111b9565b6040516105849190613758565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190612d99565b611247565b6040516105c19190613afa565b60405180910390f35b3480156105d657600080fd5b506105df6112ff565b005b3480156105ed57600080fd5b506105f6611387565b60405161060391906136d6565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e919061304c565b6113b1565b005b34801561064157600080fd5b5061064a611437565b6040516106579190613758565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190612edc565b6114c9565b005b34801561069557600080fd5b5061069e61164a565b6040516106ab919061373d565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190613079565b611658565b005b3480156106e957600080fd5b506106f261174a565b005b34801561070057600080fd5b5061071b60048036038101906107169190612e59565b6117e3565b005b34801561072957600080fd5b50610744600480360381019061073f919061304c565b611845565b6040516107519190613758565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c91906130b9565b611900565b005b34801561078f57600080fd5b506107986119e0565b6040516107a59190613afa565b60405180910390f35b3480156107ba57600080fd5b506107c36119e6565b005b3480156107d157600080fd5b506107da611aab565b005b3480156107e857600080fd5b5061080360048036038101906107fe9190612dc6565b611b44565b604051610810919061373d565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190612d99565b611bd8565b005b34801561084e57600080fd5b50610857611cd0565b6040516108649190613afa565b60405180910390f35b610875611cd6565b73ffffffffffffffffffffffffffffffffffffffff16610893611387565b73ffffffffffffffffffffffffffffffffffffffff16146108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e09061399a565b60405180910390fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ce57506109cd82611cde565b5b9050919050565b60008111610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90613a1a565b60405180910390fd5b610a20610f2a565b811115610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a59906138fa565b60405180910390fd5b600860009054906101000a900460ff16610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa89061385a565b60405180910390fd5b6014811115610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec9061397a565b60405180910390fd5b3481600754610b049190613c7b565b14610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90613aba565b60405180910390fd5b60005b81811015610b7257610b5f610b5a611cd6565b611d48565b8080610b6a90613e34565b915050610b47565b5050565b606060008054610b8590613dd1565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190613dd1565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b5050505050905090565b6000610c1382611e3b565b610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c499061393a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c9882611107565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d00906139fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d28611cd6565b73ffffffffffffffffffffffffffffffffffffffff161480610d575750610d5681610d51611cd6565b611b44565b5b610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d9061389a565b60405180910390fd5b610da08383611ea7565b505050565b610dad611cd6565b73ffffffffffffffffffffffffffffffffffffffff16610dcb611387565b73ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e189061399a565b60405180910390fd5b610e29610f2a565b828290501115610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590613ada565b60405180910390fd5b60005b82829050811015610ebf57610eac838383818110610e9257610e91613f7b565b5b9050602002016020810190610ea79190612d99565b611d48565b8080610eb790613e34565b915050610e71565b505050565b600c5481565b610edb610ed5611cd6565b82611f60565b610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190613a5a565b60405180910390fd5b610f2583838361203e565b505050565b600060095461270f610f3c9190613cd5565b905090565b60095481565b610f62838383604051806020016040528060008152506117e3565b505050565b610f7081611e3b565b610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613a7a565b60405180910390fd5b610fb7611cd6565b73ffffffffffffffffffffffffffffffffffffffff16610fd682611107565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390613a3a565b60405180910390fd5b6110358161229a565b50565b60006110448383611f60565b905092915050565b600061105782611e3b565b9050919050565b611066611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611084611387565b73ffffffffffffffffffffffffffffffffffffffff16146110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d19061399a565b60405180910390fd5b80600e90805190602001906110f0929190612b57565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a7906138da565b60405180910390fd5b80915050919050565b600e80546111c690613dd1565b80601f01602080910402602001604051908101604052809291908181526020018280546111f290613dd1565b801561123f5780601f106112145761010080835404028352916020019161123f565b820191906000526020600020905b81548152906001019060200180831161122257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af906138ba565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611307611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611325611387565b73ffffffffffffffffffffffffffffffffffffffff161461137b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113729061399a565b60405180910390fd5b61138560006123ab565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113b9611cd6565b73ffffffffffffffffffffffffffffffffffffffff166113d7611387565b73ffffffffffffffffffffffffffffffffffffffff161461142d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114249061399a565b60405180910390fd5b8060078190555050565b60606001805461144690613dd1565b80601f016020809104026020016040519081016040528092919081815260200182805461147290613dd1565b80156114bf5780601f10611494576101008083540402835291602001916114bf565b820191906000526020600020905b8154815290600101906020018083116114a257829003601f168201915b5050505050905090565b6114d1611cd6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561153f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115369061383a565b60405180910390fd5b806005600061154c611cd6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f9611cd6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161163e919061373d565b60405180910390a35050565b600061270f60095414905090565b611660611cd6565b73ffffffffffffffffffffffffffffffffffffffff1661167e611387565b73ffffffffffffffffffffffffffffffffffffffff16146116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb9061399a565b60405180910390fd5b6116dc610f2a565b82111561171e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611715906137fa565b60405180910390fd5b60005b828110156117455761173282611d48565b808061173d90613e34565b915050611721565b505050565b611752611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611770611387565b73ffffffffffffffffffffffffffffffffffffffff16146117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd9061399a565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b6117f46117ee611cd6565b83611f60565b611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90613a5a565b60405180910390fd5b61183f84848484612471565b50505050565b606061185082611e3b565b61188f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611886906139da565b60405180910390fd5b6000600e805461189e90613dd1565b9050116118ba57604051806020016040528060008152506118f9565b600e6118d8600d6000858152602001908152602001600020546124cd565b6040516020016118e9929190613697565b6040516020818303038152906040525b9050919050565b611908611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611926611387565b73ffffffffffffffffffffffffffffffffffffffff161461197c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119739061399a565b60405180910390fd5b61198582611e3b565b6119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb9061395a565b60405180910390fd5b80600d6000848152602001908152602001600020819055505050565b60075481565b6119ee611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611387565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a599061399a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611aa8573d6000803e3d6000fd5b50565b611ab3611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611ad1611387565b73ffffffffffffffffffffffffffffffffffffffff1614611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e9061399a565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611be0611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611bfe611387565b73ffffffffffffffffffffffffffffffffffffffff1614611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b9061399a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbb906137ba565b60405180910390fd5b611ccd816123ab565b50565b61270f81565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006009541415611d9e57611d8a600161270f6001611d65611cd6565b73ffffffffffffffffffffffffffffffffffffffff16611d859190613bf4565b61262e565b600b81905550600b54600a81905550611dad565b611da661273a565b600b819055505b60096000815480929190611dc090613e34565b9190505550611dd0600954611e3b565b15611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e079061379a565b60405180910390fd5b611e1c816009546127ca565b600b54600d600060095481526020019081526020016000208190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1a83611107565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6b82611e3b565b611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa19061387a565b60405180910390fd5b6000611fb583611107565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202457508373ffffffffffffffffffffffffffffffffffffffff1661200c84610c08565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203557506120348185611b44565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205e82611107565b73ffffffffffffffffffffffffffffffffffffffff16146120b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ab906139ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b9061381a565b60405180910390fd5b61212f838383612998565b61213a600082611ea7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218a9190613cd5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e19190613bf4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006122a582611107565b90506122b381600084612998565b6122be600083611ea7565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461230e9190613cd5565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61247c84848461203e565b612488848484846129a8565b6124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be9061377a565b60405180910390fd5b50505050565b60606000821415612515576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612629565b600082905060005b6000821461254757808061253090613e34565b915050600a826125409190613c4a565b915061251d565b60008167ffffffffffffffff81111561256357612562613faa565b5b6040519080825280601f01601f1916602001820160405280156125955781602001600182028036833780820191505090505b5090505b60008514612622576001826125ae9190613cd5565b9150600a856125bd9190613ebd565b60306125c99190613bf4565b60f81b8183815181106125df576125de613f7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561261b9190613c4a565b9450612599565b8093505050505b919050565b60008082434261263c611cd6565b60405160200161264c9190613661565b6040516020818303038152906040528051906020012060001c61266f9190613c4a565b454241604051602001612682919061367c565b6040516020818303038152906040528051906020012060001c6126a59190613c4a565b44426126b19190613bf4565b6126bb9190613bf4565b6126c59190613bf4565b6126cf9190613bf4565b6126d99190613bf4565b6126e39190613bf4565b6040516020016126f391906136bb565b6040516020818303038152906040528051906020012060001c905084858561271b9190613cd5565b826127269190613ebd565b6127309190613bf4565b9150509392505050565b600061274461164a565b15612784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277b90613a9a565b60405180910390fd5b61270f600b5414801561279a575061270f600954105b156127a857600190506127c7565b61270f60095410156127c6576001600b546127c39190613bf4565b90505b5b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128319061391a565b60405180910390fd5b61284381611e3b565b15612883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287a906137da565b60405180910390fd5b61288f60008383612998565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128df9190613bf4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6129a3838383612b3f565b505050565b60006129c98473ffffffffffffffffffffffffffffffffffffffff16612b44565b15612b32578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129f2611cd6565b8786866040518563ffffffff1660e01b8152600401612a1494939291906136f1565b602060405180830381600087803b158015612a2e57600080fd5b505af1925050508015612a5f57506040513d601f19601f82011682018060405250810190612a5c9190612fd6565b60015b612ae2573d8060008114612a8f576040519150601f19603f3d011682016040523d82523d6000602084013e612a94565b606091505b50600081511415612ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad19061377a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b37565b600190505b949350505050565b505050565b600080823b905060008111915050919050565b828054612b6390613dd1565b90600052602060002090601f016020900481019282612b855760008555612bcc565b82601f10612b9e57805160ff1916838001178555612bcc565b82800160010185558215612bcc579182015b82811115612bcb578251825591602001919060010190612bb0565b5b509050612bd99190612bdd565b5090565b5b80821115612bf6576000816000905550600101612bde565b5090565b6000612c0d612c0884613b3a565b613b15565b905082815260208101848484011115612c2957612c28613fe8565b5b612c34848285613d8f565b509392505050565b6000612c4f612c4a84613b6b565b613b15565b905082815260208101848484011115612c6b57612c6a613fe8565b5b612c76848285613d8f565b509392505050565b600081359050612c8d81614717565b92915050565b60008083601f840112612ca957612ca8613fde565b5b8235905067ffffffffffffffff811115612cc657612cc5613fd9565b5b602083019150836020820283011115612ce257612ce1613fe3565b5b9250929050565b600081359050612cf88161472e565b92915050565b600081359050612d0d81614745565b92915050565b600081519050612d2281614745565b92915050565b600082601f830112612d3d57612d3c613fde565b5b8135612d4d848260208601612bfa565b91505092915050565b600082601f830112612d6b57612d6a613fde565b5b8135612d7b848260208601612c3c565b91505092915050565b600081359050612d938161475c565b92915050565b600060208284031215612daf57612dae613ff2565b5b6000612dbd84828501612c7e565b91505092915050565b60008060408385031215612ddd57612ddc613ff2565b5b6000612deb85828601612c7e565b9250506020612dfc85828601612c7e565b9150509250929050565b600080600060608486031215612e1f57612e1e613ff2565b5b6000612e2d86828701612c7e565b9350506020612e3e86828701612c7e565b9250506040612e4f86828701612d84565b9150509250925092565b60008060008060808587031215612e7357612e72613ff2565b5b6000612e8187828801612c7e565b9450506020612e9287828801612c7e565b9350506040612ea387828801612d84565b925050606085013567ffffffffffffffff811115612ec457612ec3613fed565b5b612ed087828801612d28565b91505092959194509250565b60008060408385031215612ef357612ef2613ff2565b5b6000612f0185828601612c7e565b9250506020612f1285828601612ce9565b9150509250929050565b60008060408385031215612f3357612f32613ff2565b5b6000612f4185828601612c7e565b9250506020612f5285828601612d84565b9150509250929050565b60008060208385031215612f7357612f72613ff2565b5b600083013567ffffffffffffffff811115612f9157612f90613fed565b5b612f9d85828601612c93565b92509250509250929050565b600060208284031215612fbf57612fbe613ff2565b5b6000612fcd84828501612cfe565b91505092915050565b600060208284031215612fec57612feb613ff2565b5b6000612ffa84828501612d13565b91505092915050565b60006020828403121561301957613018613ff2565b5b600082013567ffffffffffffffff81111561303757613036613fed565b5b61304384828501612d56565b91505092915050565b60006020828403121561306257613061613ff2565b5b600061307084828501612d84565b91505092915050565b600080604083850312156130905761308f613ff2565b5b600061309e85828601612d84565b92505060206130af85828601612c7e565b9150509250929050565b600080604083850312156130d0576130cf613ff2565b5b60006130de85828601612d84565b92505060206130ef85828601612d84565b9150509250929050565b61310a61310582613d1b565b613e8f565b82525050565b61311981613d09565b82525050565b61313061312b82613d09565b613e7d565b82525050565b61313f81613d2d565b82525050565b600061315082613bb1565b61315a8185613bc7565b935061316a818560208601613d9e565b61317381613ff7565b840191505092915050565b600061318982613bbc565b6131938185613bd8565b93506131a3818560208601613d9e565b6131ac81613ff7565b840191505092915050565b60006131c282613bbc565b6131cc8185613be9565b93506131dc818560208601613d9e565b80840191505092915050565b600081546131f581613dd1565b6131ff8186613be9565b9450600182166000811461321a576001811461322b5761325e565b60ff1983168652818601935061325e565b61323485613b9c565b60005b8381101561325657815481890152600182019150602081019050613237565b838801955050505b50505092915050565b6000613274603283613bd8565b915061327f82614015565b604082019050919050565b6000613297601a83613bd8565b91506132a282614064565b602082019050919050565b60006132ba602683613bd8565b91506132c58261408d565b604082019050919050565b60006132dd601c83613bd8565b91506132e8826140dc565b602082019050919050565b6000613300603283613bd8565b915061330b82614105565b604082019050919050565b6000613323602483613bd8565b915061332e82614154565b604082019050919050565b6000613346601983613bd8565b9150613351826141a3565b602082019050919050565b6000613369601283613bd8565b9150613374826141cc565b602082019050919050565b600061338c602c83613bd8565b9150613397826141f5565b604082019050919050565b60006133af603883613bd8565b91506133ba82614244565b604082019050919050565b60006133d2602a83613bd8565b91506133dd82614293565b604082019050919050565b60006133f5602983613bd8565b9150613400826142e2565b604082019050919050565b6000613418603383613bd8565b915061342382614331565b604082019050919050565b600061343b602083613bd8565b915061344682614380565b602082019050919050565b600061345e602c83613bd8565b9150613469826143a9565b604082019050919050565b6000613481602c83613bd8565b915061348c826143f8565b604082019050919050565b60006134a4601783613bd8565b91506134af82614447565b602082019050919050565b60006134c7602083613bd8565b91506134d282614470565b602082019050919050565b60006134ea602983613bd8565b91506134f582614499565b604082019050919050565b600061350d602f83613bd8565b9150613518826144e8565b604082019050919050565b6000613530602183613bd8565b915061353b82614537565b604082019050919050565b6000613553602283613bd8565b915061355e82614586565b604082019050919050565b6000613576602083613bd8565b9150613581826145d5565b602082019050919050565b6000613599603183613bd8565b91506135a4826145fe565b604082019050919050565b60006135bc601b83613bd8565b91506135c78261464d565b602082019050919050565b60006135df601b83613bd8565b91506135ea82614676565b602082019050919050565b6000613602601883613bd8565b915061360d8261469f565b602082019050919050565b6000613625602f83613bd8565b9150613630826146c8565b604082019050919050565b61364481613d85565b82525050565b61365b61365682613d85565b613eb3565b82525050565b600061366d828461311f565b60148201915081905092915050565b600061368882846130f9565b60148201915081905092915050565b60006136a382856131e8565b91506136af82846131b7565b91508190509392505050565b60006136c7828461364a565b60208201915081905092915050565b60006020820190506136eb6000830184613110565b92915050565b60006080820190506137066000830187613110565b6137136020830186613110565b613720604083018561363b565b81810360608301526137328184613145565b905095945050505050565b60006020820190506137526000830184613136565b92915050565b60006020820190508181036000830152613772818461317e565b905092915050565b6000602082019050818103600083015261379381613267565b9050919050565b600060208201905081810360008301526137b38161328a565b9050919050565b600060208201905081810360008301526137d3816132ad565b9050919050565b600060208201905081810360008301526137f3816132d0565b9050919050565b60006020820190508181036000830152613813816132f3565b9050919050565b6000602082019050818103600083015261383381613316565b9050919050565b6000602082019050818103600083015261385381613339565b9050919050565b600060208201905081810360008301526138738161335c565b9050919050565b600060208201905081810360008301526138938161337f565b9050919050565b600060208201905081810360008301526138b3816133a2565b9050919050565b600060208201905081810360008301526138d3816133c5565b9050919050565b600060208201905081810360008301526138f3816133e8565b9050919050565b600060208201905081810360008301526139138161340b565b9050919050565b600060208201905081810360008301526139338161342e565b9050919050565b6000602082019050818103600083015261395381613451565b9050919050565b6000602082019050818103600083015261397381613474565b9050919050565b6000602082019050818103600083015261399381613497565b9050919050565b600060208201905081810360008301526139b3816134ba565b9050919050565b600060208201905081810360008301526139d3816134dd565b9050919050565b600060208201905081810360008301526139f381613500565b9050919050565b60006020820190508181036000830152613a1381613523565b9050919050565b60006020820190508181036000830152613a3381613546565b9050919050565b60006020820190508181036000830152613a5381613569565b9050919050565b60006020820190508181036000830152613a738161358c565b9050919050565b60006020820190508181036000830152613a93816135af565b9050919050565b60006020820190508181036000830152613ab3816135d2565b9050919050565b60006020820190508181036000830152613ad3816135f5565b9050919050565b60006020820190508181036000830152613af381613618565b9050919050565b6000602082019050613b0f600083018461363b565b92915050565b6000613b1f613b30565b9050613b2b8282613e03565b919050565b6000604051905090565b600067ffffffffffffffff821115613b5557613b54613faa565b5b613b5e82613ff7565b9050602081019050919050565b600067ffffffffffffffff821115613b8657613b85613faa565b5b613b8f82613ff7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bff82613d85565b9150613c0a83613d85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3f57613c3e613eee565b5b828201905092915050565b6000613c5582613d85565b9150613c6083613d85565b925082613c7057613c6f613f1d565b5b828204905092915050565b6000613c8682613d85565b9150613c9183613d85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cca57613cc9613eee565b5b828202905092915050565b6000613ce082613d85565b9150613ceb83613d85565b925082821015613cfe57613cfd613eee565b5b828203905092915050565b6000613d1482613d65565b9050919050565b6000613d2682613d65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dbc578082015181840152602081019050613da1565b83811115613dcb576000848401525b50505050565b60006002820490506001821680613de957607f821691505b60208210811415613dfd57613dfc613f4c565b5b50919050565b613e0c82613ff7565b810181811067ffffffffffffffff82111715613e2b57613e2a613faa565b5b80604052505050565b6000613e3f82613d85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e7257613e71613eee565b5b600182019050919050565b6000613e8882613ea1565b9050919050565b6000613e9a82613ea1565b9050919050565b6000613eac82614008565b9050919050565b6000819050919050565b6000613ec882613d85565b9150613ed383613d85565b925082613ee357613ee2613f1d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e743a20546f6b656e20616c72656164792065786973742e000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7265736572766520616d6f756e742069732067726561746572207468616e207460008201527f686520746f6b656e20617661696c61626c650000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520616d6f756e742069732067726561746572207468616e2060008201527f74686520746f6b656e20617661696c61626c6500000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6d61782032302070656e6775696e73206174206f6e6365000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d203120746f6b656e73206e65656420746f206265206d696e7460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4275726e3a2063616c6c6572206973206e6f7420746f6b656e206f776e65722e600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4275726e3a20746f6b656e20646f6573206e6f742065786973742e0000000000600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f496e73756666696369656e742045544820746f206d696e740000000000000000600082015250565b7f6769667420616d6f756e742069732067726561746572207468616e207468652060008201527f746f6b656e20617661696c61626c650000000000000000000000000000000000602082015250565b61472081613d09565b811461472b57600080fd5b50565b61473781613d2d565b811461474257600080fd5b50565b61474e81613d39565b811461475957600080fd5b50565b61476581613d85565b811461477057600080fd5b5056fea264697066735822122003f0dbd1ef597a1893fc486d35f0a369bc79c8fa41e3cb50105d6b0d8797391464736f6c63430008070033

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.