ETH Price: $3,416.14 (-0.70%)
Gas: 9 Gwei

Token

Flipped Penguins (FPG)
 

Overview

Max Total Supply

1,852 FPG

Holders

548

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 FPG
0x6cdf0ae0edea7b7b0f5f57576fe1ee6fe50f9dde
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FlippedPenguinsToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : 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 18 : PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 3 of 18 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 18 : 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 6 of 18 : 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 7 of 18 : 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 8 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 9 of 18 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 10 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 18 : 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 12 of 18 : 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 13 of 18 : 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 14 of 18 : 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 15 of 18 : 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 16 of 18 : 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 17 of 18 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 18 of 18 : FlippedPenguinsToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract FlippedPenguinsToken is ERC721, ERC721URIStorage, ERC721Enumerable, Ownable, Pausable, PaymentSplitter, ReentrancyGuard {
  using SafeMath for uint256;

  uint256 public constant TOKEN_LIMIT = 8888;
  uint internal nonce = 0;
  uint[TOKEN_LIMIT] internal indices;

  uint256 private _tokenPrice;
  uint256 private _maxTokensAtOnce = 50;

  uint256[] private _teamShares = [50, 50];
  address[] private _team = [
    0xCE81fdDfdEF44EA5d56944c9CCF2D0EA0f7B604C, // M
    0xF67D0DE7fC3642f78FD2d5B4e50c46E0279C7BBA  // B
  ];

  constructor()
    PaymentSplitter(_team, _teamShares)
    ERC721("Flipped Penguins", "FPG")
  {
    setTokenPrice(10000000000000000);
  }

  function _baseURI() internal override pure returns (string memory) {
    return "https://api.flippedpenguins.io/penguin/";
  }

  function getTokenPrice() public view returns(uint256) {
    return _tokenPrice;
  }

  function setTokenPrice(uint256 _price) public onlyOwner {
    _tokenPrice = _price;
  }

  function togglePaused() public onlyOwner {
    if (paused()) { _unpause(); } else { _pause(); }
  }

  function _newTokenIndex() internal returns (uint256) {
    uint256 totalSize = TOKEN_LIMIT - totalSupply();
    uint256 index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize;
    uint256 value = 0;
    if (indices[index] != 0) { value = indices[index]; } else { value = index; }
    if (indices[totalSize-1] == 0) { indices[index] = totalSize-1; } else { indices[index] = indices[totalSize-1]; }
    nonce++;
    return value.add(1);
  }

  function _mintRandom(address _to) private {
    uint _tokenID = _newTokenIndex();
    _safeMint(_to, _tokenID);
  }

  function mintMultipleTokens(uint256 _amount) public payable nonReentrant whenNotPaused {
    require(totalSupply().add(_amount) <= TOKEN_LIMIT, "Exceeds max supply of tokens");
    require(_amount <= _maxTokensAtOnce, "Too many tokens");
    require(getTokenPrice().mul(_amount) == msg.value, "Insufficient funds");

    for(uint256 i = 0; i < _amount; i++) {
      _mintRandom(msg.sender);
    }
  }

  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) {
    return string(super.tokenURI(tokenId));
  }

  function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
    super._burn(tokenId);
  }

  function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
    return super.supportsInterface(interfaceId);
  }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"TOKEN_LIMIT","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMultipleTokens","outputs":[],"stateMutability":"payable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600060125560326122cc556040518060400160405280603260ff168152602001603260ff168152506122cd9060026200003f929190620007a2565b50604051806040016040528073ce81fddfdef44ea5d56944c9ccf2d0ea0f7b604c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173f67d0de7fc3642f78fd2d5b4e50c46e0279c7bba73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152506122ce906002620000e8929190620007f9565b50348015620000f657600080fd5b506122ce8054806020026020016040519081016040528092919081815260200182805480156200017c57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831162000131575b50505050506122cd805480602002602001604051908101604052809291908181526020018280548015620001d057602002820191906000526020600020905b815481526020019060010190808311620001bb575b50505050506040518060400160405280601081526020017f466c69707065642050656e6775696e73000000000000000000000000000000008152506040518060400160405280600381526020017f465047000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200025992919062000888565b5080600190805190602001906200027292919062000888565b5050506200029562000289620003d660201b60201c565b620003de60201b60201c565b6000600b60146101000a81548160ff0219169083151502179055508051825114620002f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ee9062000ab5565b60405180910390fd5b60008251116200033e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003359062000af9565b60405180910390fd5b60005b8251811015620003ad576200039783828151811062000365576200036462000ccb565b5b602002602001015183838151811062000383576200038262000ccb565b5b6020026020010151620004a460201b60201c565b8080620003a49062000c1f565b91505062000341565b5050506001601181905550620003d0662386f26fc10000620006de60201b60201c565b62000e62565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000517576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050e9062000a71565b60405180910390fd5b600081116200055d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005549062000b1b565b60405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414620005e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d99062000ad7565b60405180910390fd5b6010829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c5462000699919062000b4e565b600c819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620006d292919062000a44565b60405180910390a15050565b620006ee620003d660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007146200077860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007649062000a93565b60405180910390fd5b806122cb8190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054828255906000526020600020908101928215620007e6579160200282015b82811115620007e5578251829060ff16905591602001919060010190620007c3565b5b509050620007f5919062000919565b5090565b82805482825590600052602060002090810192821562000875579160200282015b82811115620008745782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200081a565b5b50905062000884919062000919565b5090565b828054620008969062000be9565b90600052602060002090601f016020900481019282620008ba576000855562000906565b82601f10620008d557805160ff191683800117855562000906565b8280016001018555821562000906579182015b8281111562000905578251825591602001919060010190620008e8565b5b50905062000915919062000919565b5090565b5b80821115620009345760008160009055506001016200091a565b5090565b620009438162000bab565b82525050565b600062000958602c8362000b3d565b9150620009658262000cfa565b604082019050919050565b60006200097f60208362000b3d565b91506200098c8262000d49565b602082019050919050565b6000620009a660328362000b3d565b9150620009b38262000d72565b604082019050919050565b6000620009cd602b8362000b3d565b9150620009da8262000dc1565b604082019050919050565b6000620009f4601a8362000b3d565b915062000a018262000e10565b602082019050919050565b600062000a1b601d8362000b3d565b915062000a288262000e39565b602082019050919050565b62000a3e8162000bdf565b82525050565b600060408201905062000a5b600083018562000938565b62000a6a602083018462000a33565b9392505050565b6000602082019050818103600083015262000a8c8162000949565b9050919050565b6000602082019050818103600083015262000aae8162000970565b9050919050565b6000602082019050818103600083015262000ad08162000997565b9050919050565b6000602082019050818103600083015262000af281620009be565b9050919050565b6000602082019050818103600083015262000b1481620009e5565b9050919050565b6000602082019050818103600083015262000b368162000a0c565b9050919050565b600082825260208201905092915050565b600062000b5b8262000bdf565b915062000b688362000bdf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ba05762000b9f62000c6d565b5b828201905092915050565b600062000bb88262000bbf565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c0257607f821691505b6020821081141562000c195762000c1862000c9c565b5b50919050565b600062000c2c8262000bdf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000c625762000c6162000c6d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b614a208062000e726000396000f3fe6080604052600436106101dc5760003560e01c80636352211e11610102578063a22cb46511610095578063e1dffcb911610064578063e1dffcb91461072f578063e33b7de31461074b578063e985e9c514610776578063f2fde38b146107b357610223565b8063a22cb46514610663578063b88d4fde1461068c578063c87b56dd146106b5578063ce7c2ac2146106f257610223565b80638b83209b116100d15780638b83209b146105935780638da5cb5b146105d057806395d89b41146105fb5780639852595c1461062657610223565b80636352211e146104d95780636a61e5fc1461051657806370a082311461053f578063715018a61461057c57610223565b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461041d5780634b94f50e146104465780634f6ccce7146104715780635c975abb146104ae57610223565b806323b872dd146103755780632f745c591461039e57806336566f06146103db5780633a98ef39146103f257610223565b8063081812fc116101b6578063081812fc146102bb578063095ea7b3146102f857806318160ddd14610321578063191655871461034c57610223565b806301ffc9a714610228578063031bd4c41461026557806306fdde031461029057610223565b36610223577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061020a6107dc565b346040516102199291906138cd565b60405180910390a1005b600080fd5b34801561023457600080fd5b5061024f600480360381019061024a9190613208565b6107e4565b60405161025c91906138f6565b60405180910390f35b34801561027157600080fd5b5061027a6107f6565b6040516102879190613cd3565b60405180910390f35b34801561029c57600080fd5b506102a56107fc565b6040516102b29190613911565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613262565b61088e565b6040516102ef919061383d565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906131c8565b610913565b005b34801561032d57600080fd5b50610336610a2b565b6040516103439190613cd3565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613045565b610a38565b005b34801561038157600080fd5b5061039c600480360381019061039791906130b2565b610ca0565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906131c8565b610d00565b6040516103d29190613cd3565b60405180910390f35b3480156103e757600080fd5b506103f0610da5565b005b3480156103fe57600080fd5b50610407610e46565b6040516104149190613cd3565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906130b2565b610e50565b005b34801561045257600080fd5b5061045b610e70565b6040516104689190613cd3565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613262565b610e7b565b6040516104a59190613cd3565b60405180910390f35b3480156104ba57600080fd5b506104c3610eec565b6040516104d091906138f6565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190613262565b610f03565b60405161050d919061383d565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613262565b610fb5565b005b34801561054b57600080fd5b5061056660048036038101906105619190613018565b61103c565b6040516105739190613cd3565b60405180910390f35b34801561058857600080fd5b506105916110f4565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190613262565b61117c565b6040516105c7919061383d565b60405180910390f35b3480156105dc57600080fd5b506105e56111c4565b6040516105f2919061383d565b60405180910390f35b34801561060757600080fd5b506106106111ee565b60405161061d9190613911565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613018565b611280565b60405161065a9190613cd3565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190613188565b6112c9565b005b34801561069857600080fd5b506106b360048036038101906106ae9190613105565b61144a565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613262565b6114ac565b6040516106e99190613911565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613018565b6114be565b6040516107269190613cd3565b60405180910390f35b61074960048036038101906107449190613262565b611507565b005b34801561075757600080fd5b506107606116cf565b60405161076d9190613cd3565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613072565b6116d9565b6040516107aa91906138f6565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613018565b61176d565b005b600033905090565b60006107ef82611865565b9050919050565b6122b881565b60606000805461080b90613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461083790613fa5565b80156108845780601f1061085957610100808354040283529160200191610884565b820191906000526020600020905b81548152906001019060200180831161086757829003601f168201915b5050505050905090565b6000610899826118df565b6108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90613bd3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091e82610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613c53565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ae6107dc565b73ffffffffffffffffffffffffffffffffffffffff1614806109dd57506109dc816109d76107dc565b6116d9565b5b610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613b33565b60405180910390fd5b610a26838361194b565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613a13565b60405180910390fd5b6000600d5447610aca9190613d92565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610b5c9190613e19565b610b669190613de8565b610b709190613e73565b90506000811415610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90613ad3565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c019190613d92565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610c529190613d92565b600d81905550610c628382611a04565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610c93929190613858565b60405180910390a1505050565b610cb1610cab6107dc565b82611af8565b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790613c73565b60405180910390fd5b610cfb838383611bd6565b505050565b6000610d0b8361103c565b8210610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390613953565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dad6107dc565b73ffffffffffffffffffffffffffffffffffffffff16610dcb6111c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890613bf3565b60405180910390fd5b610e29610eec565b15610e3b57610e36611e32565b610e44565b610e43611ed4565b5b565b6000600c54905090565b610e6b8383836040518060200160405280600081525061144a565b505050565b60006122cb54905090565b6000610e85610a2b565b8210610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90613c93565b60405180910390fd5b60098281548110610eda57610ed961416c565b5b90600052602060002001549050919050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390613b73565b60405180910390fd5b80915050919050565b610fbd6107dc565b73ffffffffffffffffffffffffffffffffffffffff16610fdb6111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890613bf3565b60405180910390fd5b806122cb8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490613b53565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fc6107dc565b73ffffffffffffffffffffffffffffffffffffffff1661111a6111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790613bf3565b60405180910390fd5b61117a6000611f77565b565b6000601082815481106111925761119161416c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111fd90613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461122990613fa5565b80156112765780601f1061124b57610100808354040283529160200191611276565b820191906000526020600020905b81548152906001019060200180831161125957829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d16107dc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613a53565b60405180910390fd5b806005600061134c6107dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f96107dc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143e91906138f6565b60405180910390a35050565b61145b6114556107dc565b83611af8565b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613c73565b60405180910390fd5b6114a68484848461203d565b50505050565b60606114b782612099565b9050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6002601154141561154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490613cb3565b60405180910390fd5b600260118190555061155d610eec565b1561159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490613b13565b60405180910390fd5b6122b86115ba826115ac610a2b565b6121eb90919063ffffffff16565b11156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906139b3565b60405180910390fd5b6122cc54811115611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906139d3565b60405180910390fd5b3461165c8261164e610e70565b61220190919063ffffffff16565b1461169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613af3565b60405180910390fd5b60005b818110156116c3576116b033612217565b80806116bb90614008565b91505061169f565b50600160118190555050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117756107dc565b73ffffffffffffffffffffffffffffffffffffffff166117936111c4565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090613bf3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613993565b60405180910390fd5b61186281611f77565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118d857506118d782612231565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119be83610f03565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90613a93565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a6d906137da565b60006040518083038185875af1925050503d8060008114611aaa576040519150601f19603f3d011682016040523d82523d6000602084013e611aaf565b606091505b5050905080611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90613a73565b60405180910390fd5b505050565b6000611b03826118df565b611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613ab3565b60405180910390fd5b6000611b4d83610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bbc57508373ffffffffffffffffffffffffffffffffffffffff16611ba48461088e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bcd5750611bcc81856116d9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bf682610f03565b73ffffffffffffffffffffffffffffffffffffffff1614611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4390613c13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390613a33565b60405180910390fd5b611cc7838383612313565b611cd260008261194b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d229190613e73565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d799190613d92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e3a610eec565b611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090613933565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ebd6107dc565b604051611eca919061383d565b60405180910390a1565b611edc610eec565b15611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613b13565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f606107dc565b604051611f6d919061383d565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612048848484611bd6565b61205484848484612323565b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613973565b60405180910390fd5b50505050565b60606120a4826118df565b6120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613bb3565b60405180910390fd5b600060066000848152602001908152602001600020805461210390613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461212f90613fa5565b801561217c5780601f106121515761010080835404028352916020019161217c565b820191906000526020600020905b81548152906001019060200180831161215f57829003601f168201915b50505050509050600061218d6124ba565b90506000815114156121a35781925050506121e6565b6000825111156121d85780826040516020016121c09291906137b6565b604051602081830303815290604052925050506121e6565b6121e1846124da565b925050505b919050565b600081836121f99190613d92565b905092915050565b6000818361220f9190613e19565b905092915050565b6000612221612581565b905061222d82826126e6565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061230c575061230b82612704565b5b9050919050565b61231e83838361276e565b505050565b60006123448473ffffffffffffffffffffffffffffffffffffffff16612882565b156124ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236d6107dc565b8786866040518563ffffffff1660e01b815260040161238f9493929190613881565b602060405180830381600087803b1580156123a957600080fd5b505af19250505080156123da57506040513d601f19601f820116820180604052508101906123d79190613235565b60015b61245d573d806000811461240a576040519150601f19603f3d011682016040523d82523d6000602084013e61240f565b606091505b50600081511415612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90613973565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124b2565b600190505b949350505050565b60606040518060600160405280602781526020016149c460279139905090565b60606124e5826118df565b612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b90613c33565b60405180910390fd5b600061252e6124ba565b9050600081511161254e5760405180602001604052806000815250612579565b8061255884612895565b6040516020016125699291906137b6565b6040516020818303038152906040525b915050919050565b60008061258c610a2b565b6122b86125999190613e73565b90506000816012543344426040516020016125b794939291906137ef565b6040516020818303038152906040528051906020012060001c6125da919061407f565b90506000806013836122b881106125f4576125f361416c565b5b015414612619576013826122b881106126105761260f61416c565b5b0154905061261d565b8190505b6000601360018561262e9190613e73565b6122b881106126405761263f61416c565b5b01541415612674576001836126559190613e73565b6013836122b8811061266a5761266961416c565b5b01819055506126b2565b60136001846126839190613e73565b6122b881106126955761269461416c565b5b01546013836122b881106126ac576126ab61416c565b5b01819055505b601260008154809291906126c590614008565b91905055506126de6001826121eb90919063ffffffff16565b935050505090565b6127008282604051806020016040528060008152506129f6565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612779838383612a51565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bc576127b781612a56565b6127fb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127fa576127f98382612a9f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283e5761283981612c0c565b61287d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461287c5761287b8282612cdd565b5b5b505050565b600080823b905060008111915050919050565b606060008214156128dd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129f1565b600082905060005b6000821461290f5780806128f890614008565b915050600a826129089190613de8565b91506128e5565b60008167ffffffffffffffff81111561292b5761292a61419b565b5b6040519080825280601f01601f19166020018201604052801561295d5781602001600182028036833780820191505090505b5090505b600085146129ea576001826129769190613e73565b9150600a85612985919061407f565b60306129919190613d92565b60f81b8183815181106129a7576129a661416c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129e39190613de8565b9450612961565b8093505050505b919050565b612a008383612d5c565b612a0d6000848484612323565b612a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4390613973565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aac8461103c565b612ab69190613e73565b9050600060086000848152602001908152602001600020549050818114612b9b576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c209190613e73565b90506000600a6000848152602001908152602001600020549050600060098381548110612c5057612c4f61416c565b5b906000526020600020015490508060098381548110612c7257612c7161416c565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612cc157612cc061413d565b5b6001900381819060005260206000200160009055905550505050565b6000612ce88361103c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc390613b93565b60405180910390fd5b612dd5816118df565b15612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c906139f3565b60405180910390fd5b612e2160008383612313565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e719190613d92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612f3d612f3884613d13565b613cee565b905082815260208101848484011115612f5957612f586141cf565b5b612f64848285613f63565b509392505050565b600081359050612f7b81614950565b92915050565b600081359050612f9081614967565b92915050565b600081359050612fa58161497e565b92915050565b600081359050612fba81614995565b92915050565b600081519050612fcf81614995565b92915050565b600082601f830112612fea57612fe96141ca565b5b8135612ffa848260208601612f2a565b91505092915050565b600081359050613012816149ac565b92915050565b60006020828403121561302e5761302d6141d9565b5b600061303c84828501612f6c565b91505092915050565b60006020828403121561305b5761305a6141d9565b5b600061306984828501612f81565b91505092915050565b60008060408385031215613089576130886141d9565b5b600061309785828601612f6c565b92505060206130a885828601612f6c565b9150509250929050565b6000806000606084860312156130cb576130ca6141d9565b5b60006130d986828701612f6c565b93505060206130ea86828701612f6c565b92505060406130fb86828701613003565b9150509250925092565b6000806000806080858703121561311f5761311e6141d9565b5b600061312d87828801612f6c565b945050602061313e87828801612f6c565b935050604061314f87828801613003565b925050606085013567ffffffffffffffff8111156131705761316f6141d4565b5b61317c87828801612fd5565b91505092959194509250565b6000806040838503121561319f5761319e6141d9565b5b60006131ad85828601612f6c565b92505060206131be85828601612f96565b9150509250929050565b600080604083850312156131df576131de6141d9565b5b60006131ed85828601612f6c565b92505060206131fe85828601613003565b9150509250929050565b60006020828403121561321e5761321d6141d9565b5b600061322c84828501612fab565b91505092915050565b60006020828403121561324b5761324a6141d9565b5b600061325984828501612fc0565b91505092915050565b600060208284031215613278576132776141d9565b5b600061328684828501613003565b91505092915050565b61329881613f2d565b82525050565b6132a781613ea7565b82525050565b6132be6132b982613ea7565b614051565b82525050565b6132cd81613ecb565b82525050565b60006132de82613d44565b6132e88185613d5a565b93506132f8818560208601613f72565b613301816141de565b840191505092915050565b600061331782613d4f565b6133218185613d76565b9350613331818560208601613f72565b61333a816141de565b840191505092915050565b600061335082613d4f565b61335a8185613d87565b935061336a818560208601613f72565b80840191505092915050565b6000613383601483613d76565b915061338e826141fc565b602082019050919050565b60006133a6602b83613d76565b91506133b182614225565b604082019050919050565b60006133c9603283613d76565b91506133d482614274565b604082019050919050565b60006133ec602683613d76565b91506133f7826142c3565b604082019050919050565b600061340f601c83613d76565b915061341a82614312565b602082019050919050565b6000613432600f83613d76565b915061343d8261433b565b602082019050919050565b6000613455601c83613d76565b915061346082614364565b602082019050919050565b6000613478602683613d76565b91506134838261438d565b604082019050919050565b600061349b602483613d76565b91506134a6826143dc565b604082019050919050565b60006134be601983613d76565b91506134c98261442b565b602082019050919050565b60006134e1603a83613d76565b91506134ec82614454565b604082019050919050565b6000613504601d83613d76565b915061350f826144a3565b602082019050919050565b6000613527602c83613d76565b9150613532826144cc565b604082019050919050565b600061354a602b83613d76565b91506135558261451b565b604082019050919050565b600061356d601283613d76565b91506135788261456a565b602082019050919050565b6000613590601083613d76565b915061359b82614593565b602082019050919050565b60006135b3603883613d76565b91506135be826145bc565b604082019050919050565b60006135d6602a83613d76565b91506135e18261460b565b604082019050919050565b60006135f9602983613d76565b91506136048261465a565b604082019050919050565b600061361c602083613d76565b9150613627826146a9565b602082019050919050565b600061363f603183613d76565b915061364a826146d2565b604082019050919050565b6000613662602c83613d76565b915061366d82614721565b604082019050919050565b6000613685602083613d76565b915061369082614770565b602082019050919050565b60006136a8602983613d76565b91506136b382614799565b604082019050919050565b60006136cb602f83613d76565b91506136d6826147e8565b604082019050919050565b60006136ee602183613d76565b91506136f982614837565b604082019050919050565b6000613711600083613d6b565b915061371c82614886565b600082019050919050565b6000613734603183613d76565b915061373f82614889565b604082019050919050565b6000613757602c83613d76565b9150613762826148d8565b604082019050919050565b600061377a601f83613d76565b915061378582614927565b602082019050919050565b61379981613f23565b82525050565b6137b06137ab82613f23565b614075565b82525050565b60006137c28285613345565b91506137ce8284613345565b91508190509392505050565b60006137e582613704565b9150819050919050565b60006137fb828761379f565b60208201915061380b82866132ad565b60148201915061381b828561379f565b60208201915061382b828461379f565b60208201915081905095945050505050565b6000602082019050613852600083018461329e565b92915050565b600060408201905061386d600083018561328f565b61387a6020830184613790565b9392505050565b6000608082019050613896600083018761329e565b6138a3602083018661329e565b6138b06040830185613790565b81810360608301526138c281846132d3565b905095945050505050565b60006040820190506138e2600083018561329e565b6138ef6020830184613790565b9392505050565b600060208201905061390b60008301846132c4565b92915050565b6000602082019050818103600083015261392b818461330c565b905092915050565b6000602082019050818103600083015261394c81613376565b9050919050565b6000602082019050818103600083015261396c81613399565b9050919050565b6000602082019050818103600083015261398c816133bc565b9050919050565b600060208201905081810360008301526139ac816133df565b9050919050565b600060208201905081810360008301526139cc81613402565b9050919050565b600060208201905081810360008301526139ec81613425565b9050919050565b60006020820190508181036000830152613a0c81613448565b9050919050565b60006020820190508181036000830152613a2c8161346b565b9050919050565b60006020820190508181036000830152613a4c8161348e565b9050919050565b60006020820190508181036000830152613a6c816134b1565b9050919050565b60006020820190508181036000830152613a8c816134d4565b9050919050565b60006020820190508181036000830152613aac816134f7565b9050919050565b60006020820190508181036000830152613acc8161351a565b9050919050565b60006020820190508181036000830152613aec8161353d565b9050919050565b60006020820190508181036000830152613b0c81613560565b9050919050565b60006020820190508181036000830152613b2c81613583565b9050919050565b60006020820190508181036000830152613b4c816135a6565b9050919050565b60006020820190508181036000830152613b6c816135c9565b9050919050565b60006020820190508181036000830152613b8c816135ec565b9050919050565b60006020820190508181036000830152613bac8161360f565b9050919050565b60006020820190508181036000830152613bcc81613632565b9050919050565b60006020820190508181036000830152613bec81613655565b9050919050565b60006020820190508181036000830152613c0c81613678565b9050919050565b60006020820190508181036000830152613c2c8161369b565b9050919050565b60006020820190508181036000830152613c4c816136be565b9050919050565b60006020820190508181036000830152613c6c816136e1565b9050919050565b60006020820190508181036000830152613c8c81613727565b9050919050565b60006020820190508181036000830152613cac8161374a565b9050919050565b60006020820190508181036000830152613ccc8161376d565b9050919050565b6000602082019050613ce86000830184613790565b92915050565b6000613cf8613d09565b9050613d048282613fd7565b919050565b6000604051905090565b600067ffffffffffffffff821115613d2e57613d2d61419b565b5b613d37826141de565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9d82613f23565b9150613da883613f23565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddd57613ddc6140b0565b5b828201905092915050565b6000613df382613f23565b9150613dfe83613f23565b925082613e0e57613e0d6140df565b5b828204905092915050565b6000613e2482613f23565b9150613e2f83613f23565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6857613e676140b0565b5b828202905092915050565b6000613e7e82613f23565b9150613e8983613f23565b925082821015613e9c57613e9b6140b0565b5b828203905092915050565b6000613eb282613f03565b9050919050565b6000613ec482613f03565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613f3882613f3f565b9050919050565b6000613f4a82613f51565b9050919050565b6000613f5c82613f03565b9050919050565b82818337600083830152505050565b60005b83811015613f90578082015181840152602081019050613f75565b83811115613f9f576000848401525b50505050565b60006002820490506001821680613fbd57607f821691505b60208210811415613fd157613fd061410e565b5b50919050565b613fe0826141de565b810181811067ffffffffffffffff82111715613fff57613ffe61419b565b5b80604052505050565b600061401382613f23565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614046576140456140b0565b5b600182019050919050565b600061405c82614063565b9050919050565b600061406e826141ef565b9050919050565b6000819050919050565b600061408a82613f23565b915061409583613f23565b9250826140a5576140a46140df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c79206f6620746f6b656e7300000000600082015250565b7f546f6f206d616e7920746f6b656e730000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61495981613ea7565b811461496457600080fd5b50565b61497081613eb9565b811461497b57600080fd5b50565b61498781613ecb565b811461499257600080fd5b50565b61499e81613ed7565b81146149a957600080fd5b50565b6149b581613f23565b81146149c057600080fd5b5056fe68747470733a2f2f6170692e666c697070656470656e6775696e732e696f2f70656e6775696e2fa2646970667358221220ee69be25b95030b11181a6859b02212682115b79ccae4b68fbd878ae59d04a5164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c80636352211e11610102578063a22cb46511610095578063e1dffcb911610064578063e1dffcb91461072f578063e33b7de31461074b578063e985e9c514610776578063f2fde38b146107b357610223565b8063a22cb46514610663578063b88d4fde1461068c578063c87b56dd146106b5578063ce7c2ac2146106f257610223565b80638b83209b116100d15780638b83209b146105935780638da5cb5b146105d057806395d89b41146105fb5780639852595c1461062657610223565b80636352211e146104d95780636a61e5fc1461051657806370a082311461053f578063715018a61461057c57610223565b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461041d5780634b94f50e146104465780634f6ccce7146104715780635c975abb146104ae57610223565b806323b872dd146103755780632f745c591461039e57806336566f06146103db5780633a98ef39146103f257610223565b8063081812fc116101b6578063081812fc146102bb578063095ea7b3146102f857806318160ddd14610321578063191655871461034c57610223565b806301ffc9a714610228578063031bd4c41461026557806306fdde031461029057610223565b36610223577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061020a6107dc565b346040516102199291906138cd565b60405180910390a1005b600080fd5b34801561023457600080fd5b5061024f600480360381019061024a9190613208565b6107e4565b60405161025c91906138f6565b60405180910390f35b34801561027157600080fd5b5061027a6107f6565b6040516102879190613cd3565b60405180910390f35b34801561029c57600080fd5b506102a56107fc565b6040516102b29190613911565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd9190613262565b61088e565b6040516102ef919061383d565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906131c8565b610913565b005b34801561032d57600080fd5b50610336610a2b565b6040516103439190613cd3565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613045565b610a38565b005b34801561038157600080fd5b5061039c600480360381019061039791906130b2565b610ca0565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906131c8565b610d00565b6040516103d29190613cd3565b60405180910390f35b3480156103e757600080fd5b506103f0610da5565b005b3480156103fe57600080fd5b50610407610e46565b6040516104149190613cd3565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906130b2565b610e50565b005b34801561045257600080fd5b5061045b610e70565b6040516104689190613cd3565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613262565b610e7b565b6040516104a59190613cd3565b60405180910390f35b3480156104ba57600080fd5b506104c3610eec565b6040516104d091906138f6565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190613262565b610f03565b60405161050d919061383d565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613262565b610fb5565b005b34801561054b57600080fd5b5061056660048036038101906105619190613018565b61103c565b6040516105739190613cd3565b60405180910390f35b34801561058857600080fd5b506105916110f4565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190613262565b61117c565b6040516105c7919061383d565b60405180910390f35b3480156105dc57600080fd5b506105e56111c4565b6040516105f2919061383d565b60405180910390f35b34801561060757600080fd5b506106106111ee565b60405161061d9190613911565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613018565b611280565b60405161065a9190613cd3565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190613188565b6112c9565b005b34801561069857600080fd5b506106b360048036038101906106ae9190613105565b61144a565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613262565b6114ac565b6040516106e99190613911565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613018565b6114be565b6040516107269190613cd3565b60405180910390f35b61074960048036038101906107449190613262565b611507565b005b34801561075757600080fd5b506107606116cf565b60405161076d9190613cd3565b60405180910390f35b34801561078257600080fd5b5061079d60048036038101906107989190613072565b6116d9565b6040516107aa91906138f6565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613018565b61176d565b005b600033905090565b60006107ef82611865565b9050919050565b6122b881565b60606000805461080b90613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461083790613fa5565b80156108845780601f1061085957610100808354040283529160200191610884565b820191906000526020600020905b81548152906001019060200180831161086757829003601f168201915b5050505050905090565b6000610899826118df565b6108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90613bd3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091e82610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690613c53565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ae6107dc565b73ffffffffffffffffffffffffffffffffffffffff1614806109dd57506109dc816109d76107dc565b6116d9565b5b610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613b33565b60405180910390fd5b610a26838361194b565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613a13565b60405180910390fd5b6000600d5447610aca9190613d92565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610b5c9190613e19565b610b669190613de8565b610b709190613e73565b90506000811415610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad90613ad3565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c019190613d92565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610c529190613d92565b600d81905550610c628382611a04565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610c93929190613858565b60405180910390a1505050565b610cb1610cab6107dc565b82611af8565b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790613c73565b60405180910390fd5b610cfb838383611bd6565b505050565b6000610d0b8361103c565b8210610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390613953565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dad6107dc565b73ffffffffffffffffffffffffffffffffffffffff16610dcb6111c4565b73ffffffffffffffffffffffffffffffffffffffff1614610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890613bf3565b60405180910390fd5b610e29610eec565b15610e3b57610e36611e32565b610e44565b610e43611ed4565b5b565b6000600c54905090565b610e6b8383836040518060200160405280600081525061144a565b505050565b60006122cb54905090565b6000610e85610a2b565b8210610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90613c93565b60405180910390fd5b60098281548110610eda57610ed961416c565b5b90600052602060002001549050919050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390613b73565b60405180910390fd5b80915050919050565b610fbd6107dc565b73ffffffffffffffffffffffffffffffffffffffff16610fdb6111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890613bf3565b60405180910390fd5b806122cb8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490613b53565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110fc6107dc565b73ffffffffffffffffffffffffffffffffffffffff1661111a6111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790613bf3565b60405180910390fd5b61117a6000611f77565b565b6000601082815481106111925761119161416c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111fd90613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461122990613fa5565b80156112765780601f1061124b57610100808354040283529160200191611276565b820191906000526020600020905b81548152906001019060200180831161125957829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112d16107dc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613a53565b60405180910390fd5b806005600061134c6107dc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f96107dc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143e91906138f6565b60405180910390a35050565b61145b6114556107dc565b83611af8565b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190613c73565b60405180910390fd5b6114a68484848461203d565b50505050565b60606114b782612099565b9050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6002601154141561154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490613cb3565b60405180910390fd5b600260118190555061155d610eec565b1561159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490613b13565b60405180910390fd5b6122b86115ba826115ac610a2b565b6121eb90919063ffffffff16565b11156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906139b3565b60405180910390fd5b6122cc54811115611641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611638906139d3565b60405180910390fd5b3461165c8261164e610e70565b61220190919063ffffffff16565b1461169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390613af3565b60405180910390fd5b60005b818110156116c3576116b033612217565b80806116bb90614008565b91505061169f565b50600160118190555050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117756107dc565b73ffffffffffffffffffffffffffffffffffffffff166117936111c4565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090613bf3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613993565b60405180910390fd5b61186281611f77565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118d857506118d782612231565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119be83610f03565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90613a93565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a6d906137da565b60006040518083038185875af1925050503d8060008114611aaa576040519150601f19603f3d011682016040523d82523d6000602084013e611aaf565b606091505b5050905080611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90613a73565b60405180910390fd5b505050565b6000611b03826118df565b611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3990613ab3565b60405180910390fd5b6000611b4d83610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bbc57508373ffffffffffffffffffffffffffffffffffffffff16611ba48461088e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bcd5750611bcc81856116d9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bf682610f03565b73ffffffffffffffffffffffffffffffffffffffff1614611c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4390613c13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb390613a33565b60405180910390fd5b611cc7838383612313565b611cd260008261194b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d229190613e73565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d799190613d92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e3a610eec565b611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090613933565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611ebd6107dc565b604051611eca919061383d565b60405180910390a1565b611edc610eec565b15611f1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1390613b13565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f606107dc565b604051611f6d919061383d565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612048848484611bd6565b61205484848484612323565b612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a90613973565b60405180910390fd5b50505050565b60606120a4826118df565b6120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613bb3565b60405180910390fd5b600060066000848152602001908152602001600020805461210390613fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461212f90613fa5565b801561217c5780601f106121515761010080835404028352916020019161217c565b820191906000526020600020905b81548152906001019060200180831161215f57829003601f168201915b50505050509050600061218d6124ba565b90506000815114156121a35781925050506121e6565b6000825111156121d85780826040516020016121c09291906137b6565b604051602081830303815290604052925050506121e6565b6121e1846124da565b925050505b919050565b600081836121f99190613d92565b905092915050565b6000818361220f9190613e19565b905092915050565b6000612221612581565b905061222d82826126e6565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061230c575061230b82612704565b5b9050919050565b61231e83838361276e565b505050565b60006123448473ffffffffffffffffffffffffffffffffffffffff16612882565b156124ad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236d6107dc565b8786866040518563ffffffff1660e01b815260040161238f9493929190613881565b602060405180830381600087803b1580156123a957600080fd5b505af19250505080156123da57506040513d601f19601f820116820180604052508101906123d79190613235565b60015b61245d573d806000811461240a576040519150601f19603f3d011682016040523d82523d6000602084013e61240f565b606091505b50600081511415612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90613973565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124b2565b600190505b949350505050565b60606040518060600160405280602781526020016149c460279139905090565b60606124e5826118df565b612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b90613c33565b60405180910390fd5b600061252e6124ba565b9050600081511161254e5760405180602001604052806000815250612579565b8061255884612895565b6040516020016125699291906137b6565b6040516020818303038152906040525b915050919050565b60008061258c610a2b565b6122b86125999190613e73565b90506000816012543344426040516020016125b794939291906137ef565b6040516020818303038152906040528051906020012060001c6125da919061407f565b90506000806013836122b881106125f4576125f361416c565b5b015414612619576013826122b881106126105761260f61416c565b5b0154905061261d565b8190505b6000601360018561262e9190613e73565b6122b881106126405761263f61416c565b5b01541415612674576001836126559190613e73565b6013836122b8811061266a5761266961416c565b5b01819055506126b2565b60136001846126839190613e73565b6122b881106126955761269461416c565b5b01546013836122b881106126ac576126ab61416c565b5b01819055505b601260008154809291906126c590614008565b91905055506126de6001826121eb90919063ffffffff16565b935050505090565b6127008282604051806020016040528060008152506129f6565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612779838383612a51565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bc576127b781612a56565b6127fb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127fa576127f98382612a9f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561283e5761283981612c0c565b61287d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461287c5761287b8282612cdd565b5b5b505050565b600080823b905060008111915050919050565b606060008214156128dd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129f1565b600082905060005b6000821461290f5780806128f890614008565b915050600a826129089190613de8565b91506128e5565b60008167ffffffffffffffff81111561292b5761292a61419b565b5b6040519080825280601f01601f19166020018201604052801561295d5781602001600182028036833780820191505090505b5090505b600085146129ea576001826129769190613e73565b9150600a85612985919061407f565b60306129919190613d92565b60f81b8183815181106129a7576129a661416c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129e39190613de8565b9450612961565b8093505050505b919050565b612a008383612d5c565b612a0d6000848484612323565b612a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4390613973565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aac8461103c565b612ab69190613e73565b9050600060086000848152602001908152602001600020549050818114612b9b576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612c209190613e73565b90506000600a6000848152602001908152602001600020549050600060098381548110612c5057612c4f61416c565b5b906000526020600020015490508060098381548110612c7257612c7161416c565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612cc157612cc061413d565b5b6001900381819060005260206000200160009055905550505050565b6000612ce88361103c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc390613b93565b60405180910390fd5b612dd5816118df565b15612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c906139f3565b60405180910390fd5b612e2160008383612313565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e719190613d92565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612f3d612f3884613d13565b613cee565b905082815260208101848484011115612f5957612f586141cf565b5b612f64848285613f63565b509392505050565b600081359050612f7b81614950565b92915050565b600081359050612f9081614967565b92915050565b600081359050612fa58161497e565b92915050565b600081359050612fba81614995565b92915050565b600081519050612fcf81614995565b92915050565b600082601f830112612fea57612fe96141ca565b5b8135612ffa848260208601612f2a565b91505092915050565b600081359050613012816149ac565b92915050565b60006020828403121561302e5761302d6141d9565b5b600061303c84828501612f6c565b91505092915050565b60006020828403121561305b5761305a6141d9565b5b600061306984828501612f81565b91505092915050565b60008060408385031215613089576130886141d9565b5b600061309785828601612f6c565b92505060206130a885828601612f6c565b9150509250929050565b6000806000606084860312156130cb576130ca6141d9565b5b60006130d986828701612f6c565b93505060206130ea86828701612f6c565b92505060406130fb86828701613003565b9150509250925092565b6000806000806080858703121561311f5761311e6141d9565b5b600061312d87828801612f6c565b945050602061313e87828801612f6c565b935050604061314f87828801613003565b925050606085013567ffffffffffffffff8111156131705761316f6141d4565b5b61317c87828801612fd5565b91505092959194509250565b6000806040838503121561319f5761319e6141d9565b5b60006131ad85828601612f6c565b92505060206131be85828601612f96565b9150509250929050565b600080604083850312156131df576131de6141d9565b5b60006131ed85828601612f6c565b92505060206131fe85828601613003565b9150509250929050565b60006020828403121561321e5761321d6141d9565b5b600061322c84828501612fab565b91505092915050565b60006020828403121561324b5761324a6141d9565b5b600061325984828501612fc0565b91505092915050565b600060208284031215613278576132776141d9565b5b600061328684828501613003565b91505092915050565b61329881613f2d565b82525050565b6132a781613ea7565b82525050565b6132be6132b982613ea7565b614051565b82525050565b6132cd81613ecb565b82525050565b60006132de82613d44565b6132e88185613d5a565b93506132f8818560208601613f72565b613301816141de565b840191505092915050565b600061331782613d4f565b6133218185613d76565b9350613331818560208601613f72565b61333a816141de565b840191505092915050565b600061335082613d4f565b61335a8185613d87565b935061336a818560208601613f72565b80840191505092915050565b6000613383601483613d76565b915061338e826141fc565b602082019050919050565b60006133a6602b83613d76565b91506133b182614225565b604082019050919050565b60006133c9603283613d76565b91506133d482614274565b604082019050919050565b60006133ec602683613d76565b91506133f7826142c3565b604082019050919050565b600061340f601c83613d76565b915061341a82614312565b602082019050919050565b6000613432600f83613d76565b915061343d8261433b565b602082019050919050565b6000613455601c83613d76565b915061346082614364565b602082019050919050565b6000613478602683613d76565b91506134838261438d565b604082019050919050565b600061349b602483613d76565b91506134a6826143dc565b604082019050919050565b60006134be601983613d76565b91506134c98261442b565b602082019050919050565b60006134e1603a83613d76565b91506134ec82614454565b604082019050919050565b6000613504601d83613d76565b915061350f826144a3565b602082019050919050565b6000613527602c83613d76565b9150613532826144cc565b604082019050919050565b600061354a602b83613d76565b91506135558261451b565b604082019050919050565b600061356d601283613d76565b91506135788261456a565b602082019050919050565b6000613590601083613d76565b915061359b82614593565b602082019050919050565b60006135b3603883613d76565b91506135be826145bc565b604082019050919050565b60006135d6602a83613d76565b91506135e18261460b565b604082019050919050565b60006135f9602983613d76565b91506136048261465a565b604082019050919050565b600061361c602083613d76565b9150613627826146a9565b602082019050919050565b600061363f603183613d76565b915061364a826146d2565b604082019050919050565b6000613662602c83613d76565b915061366d82614721565b604082019050919050565b6000613685602083613d76565b915061369082614770565b602082019050919050565b60006136a8602983613d76565b91506136b382614799565b604082019050919050565b60006136cb602f83613d76565b91506136d6826147e8565b604082019050919050565b60006136ee602183613d76565b91506136f982614837565b604082019050919050565b6000613711600083613d6b565b915061371c82614886565b600082019050919050565b6000613734603183613d76565b915061373f82614889565b604082019050919050565b6000613757602c83613d76565b9150613762826148d8565b604082019050919050565b600061377a601f83613d76565b915061378582614927565b602082019050919050565b61379981613f23565b82525050565b6137b06137ab82613f23565b614075565b82525050565b60006137c28285613345565b91506137ce8284613345565b91508190509392505050565b60006137e582613704565b9150819050919050565b60006137fb828761379f565b60208201915061380b82866132ad565b60148201915061381b828561379f565b60208201915061382b828461379f565b60208201915081905095945050505050565b6000602082019050613852600083018461329e565b92915050565b600060408201905061386d600083018561328f565b61387a6020830184613790565b9392505050565b6000608082019050613896600083018761329e565b6138a3602083018661329e565b6138b06040830185613790565b81810360608301526138c281846132d3565b905095945050505050565b60006040820190506138e2600083018561329e565b6138ef6020830184613790565b9392505050565b600060208201905061390b60008301846132c4565b92915050565b6000602082019050818103600083015261392b818461330c565b905092915050565b6000602082019050818103600083015261394c81613376565b9050919050565b6000602082019050818103600083015261396c81613399565b9050919050565b6000602082019050818103600083015261398c816133bc565b9050919050565b600060208201905081810360008301526139ac816133df565b9050919050565b600060208201905081810360008301526139cc81613402565b9050919050565b600060208201905081810360008301526139ec81613425565b9050919050565b60006020820190508181036000830152613a0c81613448565b9050919050565b60006020820190508181036000830152613a2c8161346b565b9050919050565b60006020820190508181036000830152613a4c8161348e565b9050919050565b60006020820190508181036000830152613a6c816134b1565b9050919050565b60006020820190508181036000830152613a8c816134d4565b9050919050565b60006020820190508181036000830152613aac816134f7565b9050919050565b60006020820190508181036000830152613acc8161351a565b9050919050565b60006020820190508181036000830152613aec8161353d565b9050919050565b60006020820190508181036000830152613b0c81613560565b9050919050565b60006020820190508181036000830152613b2c81613583565b9050919050565b60006020820190508181036000830152613b4c816135a6565b9050919050565b60006020820190508181036000830152613b6c816135c9565b9050919050565b60006020820190508181036000830152613b8c816135ec565b9050919050565b60006020820190508181036000830152613bac8161360f565b9050919050565b60006020820190508181036000830152613bcc81613632565b9050919050565b60006020820190508181036000830152613bec81613655565b9050919050565b60006020820190508181036000830152613c0c81613678565b9050919050565b60006020820190508181036000830152613c2c8161369b565b9050919050565b60006020820190508181036000830152613c4c816136be565b9050919050565b60006020820190508181036000830152613c6c816136e1565b9050919050565b60006020820190508181036000830152613c8c81613727565b9050919050565b60006020820190508181036000830152613cac8161374a565b9050919050565b60006020820190508181036000830152613ccc8161376d565b9050919050565b6000602082019050613ce86000830184613790565b92915050565b6000613cf8613d09565b9050613d048282613fd7565b919050565b6000604051905090565b600067ffffffffffffffff821115613d2e57613d2d61419b565b5b613d37826141de565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9d82613f23565b9150613da883613f23565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddd57613ddc6140b0565b5b828201905092915050565b6000613df382613f23565b9150613dfe83613f23565b925082613e0e57613e0d6140df565b5b828204905092915050565b6000613e2482613f23565b9150613e2f83613f23565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6857613e676140b0565b5b828202905092915050565b6000613e7e82613f23565b9150613e8983613f23565b925082821015613e9c57613e9b6140b0565b5b828203905092915050565b6000613eb282613f03565b9050919050565b6000613ec482613f03565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613f3882613f3f565b9050919050565b6000613f4a82613f51565b9050919050565b6000613f5c82613f03565b9050919050565b82818337600083830152505050565b60005b83811015613f90578082015181840152602081019050613f75565b83811115613f9f576000848401525b50505050565b60006002820490506001821680613fbd57607f821691505b60208210811415613fd157613fd061410e565b5b50919050565b613fe0826141de565b810181811067ffffffffffffffff82111715613fff57613ffe61419b565b5b80604052505050565b600061401382613f23565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614046576140456140b0565b5b600182019050919050565b600061405c82614063565b9050919050565b600061406e826141ef565b9050919050565b6000819050919050565b600061408a82613f23565b915061409583613f23565b9250826140a5576140a46140df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c79206f6620746f6b656e7300000000600082015250565b7f546f6f206d616e7920746f6b656e730000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61495981613ea7565b811461496457600080fd5b50565b61497081613eb9565b811461497b57600080fd5b50565b61498781613ecb565b811461499257600080fd5b50565b61499e81613ed7565b81146149a957600080fd5b50565b6149b581613f23565b81146149c057600080fd5b5056fe68747470733a2f2f6170692e666c697070656470656e6775696e732e696f2f70656e6775696e2fa2646970667358221220ee69be25b95030b11181a6859b02212682115b79ccae4b68fbd878ae59d04a5164736f6c63430008070033

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.