ETH Price: $3,354.21 (-0.83%)
Gas: 9 Gwei

Token

Weirdo Ghost Gang (GHOST)
 

Overview

Max Total Supply

5,556 GHOST

Holders

1,376

Market

Volume (24H)

0.19 ETH

Min Price (24H)

$637.13 @ 0.189950 ETH

Max Price (24H)

$637.13 @ 0.189950 ETH
Balance
1 GHOST
0xbfa3f52d271883e11c0210b1bfd2fa061bf49d8a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

We are the ghost, your nightmare, your daydream.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WeirdoGhostGang

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : WeirdoGhostGang.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

import "./ERC721A.sol";

contract WeirdoGhostGang is ERC721A, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;

    enum Status {
        Pending,
        PreSale,
        PublicSale,
        Finished
    }

    Status public status;

    uint256 public PRICE = 0.05 ether;

    string private _uri;
    mapping(address => uint256) private _signerOfNum;
    mapping(address => uint256) private _publicNumberMinted;

    uint256 public immutable maxTotalSupply;
    uint256 public immutable PreMaxMint;
    uint256 public immutable PublicMaxMint;

    event PaymentReleased(address to, uint256 amount);

    constructor(string memory initURI, address signer1, address signer2) ERC721A("Weirdo Ghost Gang", "GHOST", 3) {
        _uri = initURI;
        maxTotalSupply = 5556;
        PreMaxMint = 2;
        PublicMaxMint = 1;
        _signerOfNum[signer1] = 1;
        _signerOfNum[signer2] = 2;
    }

    function _hash(string calldata salt, address _address) internal view returns (bytes32)
    {
        return keccak256(abi.encode(salt, address(this), _address));
    }

    function _verify(bytes32 hash, bytes memory token) internal view returns (uint256)
    {
        return _signerOfNum[_recover(hash, token)] ;
    }

    function _recover(bytes32 hash, bytes memory token) internal pure returns (address)
    {
        return hash.toEthSignedMessageHash().recover(token);
    }

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

    function setURI(string memory newuri) public virtual onlyOwner{
        _uri = newuri;
    }

    function mint(uint256 num, string calldata salt, bytes calldata token) external payable {
        require(status == Status.PublicSale, "WGGE006");
        require(_verify(_hash(salt, msg.sender), token) >= num, "WGGE001");
        require(publicNumberMinted(msg.sender) + num <= PublicMaxMint, "WGGE008");
        verified(num);
        _safeMint(msg.sender,num);
        _publicNumberMinted[msg.sender] = _publicNumberMinted[msg.sender] + 1;
    }

    function preSaleMint(
        uint256 amount,
        string calldata salt,
        bytes calldata token
    ) external payable {
        require(status == Status.PreSale, "WGGE006");
        uint256 preMaxMint = _verify(_hash(salt, msg.sender), token);
        require(preMaxMint >= amount, "WGGE001");
        require(numberMinted(msg.sender) + amount <= preMaxMint, "WGGE008");
        verified(amount);
        _safeMint(msg.sender, amount);
    }

    function setStatus(Status _status, address signer1, address signer2, address signer3) external onlyOwner {
        status = _status;
        if(status == Status.PublicSale){
            delete _signerOfNum[signer1];
            delete _signerOfNum[signer2];
            _signerOfNum[signer3] = 1;
        }
    }

    function verified(uint256 num) private {
        require(num > 0, 'WGGE011');
        require(msg.value >= PRICE * num, 'WGGE002');
        if (msg.value > PRICE * num) {
            payable(msg.sender).transfer(msg.value - PRICE * num);
        }
        require(totalSupply() + num <= maxTotalSupply, "WGGE003");
        require(tx.origin == msg.sender, "WGGE007");
    }

    function setSignerOfNum(address signer, uint256 num) external onlyOwner {
        _signerOfNum[signer] = num;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function publicNumberMinted(address owner) public view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return _publicNumberMinted[owner];
    }

    function release() public virtual nonReentrant onlyOwner{
        require(address(this).balance > 0, "WGGE005");
        Address.sendValue(payable(owner()), address(this).balance);
        emit PaymentReleased(owner(), address(this).balance);
    }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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 making 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 4 of 14 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
        interfaceId == type(IERC721Enumerable).interfaceId ||
        super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
        getApproved(tokenId) == _msgSender() ||
        isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 6 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 7 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 9 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 11 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initURI","type":"string"},{"internalType":"address","name":"signer1","type":"address"},{"internalType":"address","name":"signer2","type":"address"}],"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":"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"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicMaxMint","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"token","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"token","type":"bytes"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"publicNumberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"release","outputs":[],"stateMutability":"nonpayable","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":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setSignerOfNum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum WeirdoGhostGang.Status","name":"_status","type":"uint8"},{"internalType":"address","name":"signer1","type":"address"},{"internalType":"address","name":"signer2","type":"address"},{"internalType":"address","name":"signer3","type":"address"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum WeirdoGhostGang.Status","name":"","type":"uint8"}],"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":[{"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":"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"}]

61010060405260008055600060075566b1a2bc2ec50000600b553480156200002657600080fd5b50604051620064ec380380620064ec83398181016040528101906200004c919062000434565b6040518060400160405280601181526020017f57656972646f2047686f73742047616e670000000000000000000000000000008152506040518060400160405280600581526020017f47484f535400000000000000000000000000000000000000000000000000000081525060036000811162000100576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000f790620004ca565b60405180910390fd5b826001908051906020019062000118929190620002fb565b50816002908051906020019062000131929190620002fb565b5080608081815250505050506200015d620001516200022d60201b60201c565b6200023560201b60201c565b600160098190555082600c90805190602001906200017d929190620002fb565b506115b460a08181525050600260c08181525050600160e081815250506001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050506200070a565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200030990620005c6565b90600052602060002090601f0160209004810192826200032d576000855562000379565b82601f106200034857805160ff191683800117855562000379565b8280016001018555821562000379579182015b82811115620003785782518255916020019190600101906200035b565b5b5090506200038891906200038c565b5090565b5b80821115620003a75760008160009055506001016200038d565b5090565b6000620003c2620003bc8462000515565b620004ec565b905082815260208101848484011115620003db57600080fd5b620003e884828562000590565b509392505050565b6000815190506200040181620006f0565b92915050565b600082601f8301126200041957600080fd5b81516200042b848260208601620003ab565b91505092915050565b6000806000606084860312156200044a57600080fd5b600084015167ffffffffffffffff8111156200046557600080fd5b620004738682870162000407565b93505060206200048686828701620003f0565b92505060406200049986828701620003f0565b9150509250925092565b6000620004b26027836200054b565b9150620004bf82620006a1565b604082019050919050565b60006020820190508181036000830152620004e581620004a3565b9050919050565b6000620004f86200050b565b9050620005068282620005fc565b919050565b6000604051905090565b600067ffffffffffffffff82111562000533576200053262000661565b5b6200053e8262000690565b9050602081019050919050565b600082825260208201905092915050565b6000620005698262000570565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005b057808201518184015260208101905062000593565b83811115620005c0576000848401525b50505050565b60006002820490506001821680620005df57607f821691505b60208210811415620005f657620005f562000632565b5b50919050565b620006078262000690565b810181811067ffffffffffffffff8211171562000629576200062862000661565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b620006fb816200055c565b81146200070757600080fd5b50565b60805160a05160c05160e051615d8c620007606000396000818161164c0152611cd101526000611d0d01526000818161101001526120cf015260008181612890015281816128b9015261319e0152615d8c6000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba0146106e1578063dc33e6811461070c578063e31768e514610749578063e985e9c514610774578063f2fde38b146107b1576101ee565b8063b88d4fde14610613578063c87b56dd1461063c578063ced8d70014610679578063d2ce364f146106b6576101ee565b80638d859f3e116100dc5780638d859f3e146105695780638da5cb5b1461059457806395d89b41146105bf578063a22cb465146105ea576101ee565b806370a08231146104e2578063715018a61461051f578063785cc9971461053657806386d1a69f14610552576101ee565b8063237fb187116101855780633c0c8c07116101545780633c0c8c071461041657806342842e0e1461043f5780634f6ccce7146104685780636352211e146104a5576101ee565b8063237fb1871461035c57806323b872dd146103855780632ab4d052146103ae5780632f745c59146103d9576101ee565b806308460042116101c157806308460042146102c1578063095ea7b3146102dd57806318160ddd14610306578063200d2ed214610331576101ee565b806301ffc9a7146101f357806302fe53051461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613fc7565b6107da565b60405161022791906148d1565b60405180910390f35b34801561023c57600080fd5b506102576004803603810190610252919061407c565b610924565b005b34801561026557600080fd5b5061026e6109ba565b60405161027b919061498c565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906140bd565b610a4c565b6040516102b89190614841565b60405180910390f35b6102db60048036038101906102d691906140e6565b610ad1565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190613f8b565b610ca3565b005b34801561031257600080fd5b5061031b610dbc565b6040516103289190614e2e565b60405180910390f35b34801561033d57600080fd5b50610346610dc5565b6040516103539190614931565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190614019565b610dd8565b005b34801561039157600080fd5b506103ac60048036038101906103a79190613e85565b610ffe565b005b3480156103ba57600080fd5b506103c361100e565b6040516103d09190614e2e565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613f8b565b611032565b60405161040d9190614e2e565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613f8b565b611230565b005b34801561044b57600080fd5b5061046660048036038101906104619190613e85565b6112f4565b005b34801561047457600080fd5b5061048f600480360381019061048a91906140bd565b611314565b60405161049c9190614e2e565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906140bd565b611367565b6040516104d99190614841565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190613e20565b61137d565b6040516105169190614e2e565b60405180910390f35b34801561052b57600080fd5b50610534611466565b005b610550600480360381019061054b91906140e6565b6114ee565b005b34801561055e57600080fd5b50610567611769565b005b34801561057557600080fd5b5061057e6118d1565b60405161058b9190614e2e565b60405180910390f35b3480156105a057600080fd5b506105a96118d7565b6040516105b69190614841565b60405180910390f35b3480156105cb57600080fd5b506105d4611901565b6040516105e1919061498c565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190613f4f565b611993565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613ed4565b611b14565b005b34801561064857600080fd5b50610663600480360381019061065e91906140bd565b611b70565b604051610670919061498c565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613e20565b611c17565b6040516106ad9190614e2e565b60405180910390f35b3480156106c257600080fd5b506106cb611ccf565b6040516106d89190614e2e565b60405180910390f35b3480156106ed57600080fd5b506106f6611cf3565b6040516107039190614e2e565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613e20565b611cf9565b6040516107409190614e2e565b60405180910390f35b34801561075557600080fd5b5061075e611d0b565b60405161076b9190614e2e565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613e49565b611d2f565b6040516107a891906148d1565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613e20565b611dc3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091d575061091c82611ebb565b5b9050919050565b61092c611f25565b73ffffffffffffffffffffffffffffffffffffffff1661094a6118d7565b73ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790614bee565b60405180910390fd5b80600c90805190602001906109b6929190613b61565b5050565b6060600180546109c9906151e5565b80601f01602080910402602001604051908101604052809291908181526020018280546109f5906151e5565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b6000610a5782611f2d565b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90614dee565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60016003811115610b0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166003811115610b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90614c0e565b60405180910390fd5b6000610bed610ba3868633611f3a565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611f72565b905085811015610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990614a6e565b60405180910390fd5b8086610c3d33611cf9565b610c479190614f64565b1115610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90614d6e565b60405180910390fd5b610c9186611fc5565b610c9b33876121b3565b505050505050565b6000610cae82611367565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690614cce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3e611f25565b73ffffffffffffffffffffffffffffffffffffffff161480610d6d5750610d6c81610d67611f25565b611d2f565b5b610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390614b4e565b60405180910390fd5b610db78383836121d1565b505050565b60008054905090565b600a60009054906101000a900460ff1681565b610de0611f25565b73ffffffffffffffffffffffffffffffffffffffff16610dfe6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90614bee565b60405180910390fd5b83600a60006101000a81548160ff02191690836003811115610e9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060026003811115610ede577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166003811115610f26577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610ff857600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009055600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090556001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505050565b611009838383612283565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600061103d8361137d565b821061107e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611075906149ce565b60405180910390fd5b6000611088610dbc565b905060008060005b838110156111ee576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461118257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111da57868414156111cb57819550505050505061122a565b83806111d690615248565b9450505b5080806111e690615248565b915050611090565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190614d8e565b60405180910390fd5b92915050565b611238611f25565b73ffffffffffffffffffffffffffffffffffffffff166112566118d7565b73ffffffffffffffffffffffffffffffffffffffff16146112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614bee565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b61130f83838360405180602001604052806000815250611b14565b505050565b600061131e610dbc565b821061135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614a8e565b60405180910390fd5b819050919050565b60006113728261283c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590614b8e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61146e611f25565b73ffffffffffffffffffffffffffffffffffffffff1661148c6118d7565b73ffffffffffffffffffffffffffffffffffffffff16146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990614bee565b60405180910390fd5b6114ec6000612a3f565b565b60026003811115611528577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166003811115611570577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790614c0e565b60405180910390fd5b846116096115bf868633611f3a565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611f72565b101561164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190614a6e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008561167533611c17565b61167f9190614f64565b11156116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790614d6e565b60405180910390fd5b6116c985611fc5565b6116d333866121b3565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461171f9190614f64565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b600260095414156117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690614dae565b60405180910390fd5b60026009819055506117bf611f25565b73ffffffffffffffffffffffffffffffffffffffff166117dd6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614bee565b60405180910390fd5b60004711611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90614d4e565b60405180910390fd5b6118876118816118d7565b47612b05565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0566118b06118d7565b476040516118bf9291906148a8565b60405180910390a16001600981905550565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611910906151e5565b80601f016020809104026020016040519081016040528092919081815260200182805461193c906151e5565b80156119895780601f1061195e57610100808354040283529160200191611989565b820191906000526020600020905b81548152906001019060200180831161196c57829003601f168201915b5050505050905090565b61199b611f25565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614c4e565b60405180910390fd5b8060066000611a16611f25565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac3611f25565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0891906148d1565b60405180910390a35050565b611b1f848484612283565b611b2b84848484612bf9565b611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614cee565b60405180910390fd5b50505050565b6060611b7b82611f2d565b611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190614c2e565b60405180910390fd5b6000611bc4612d90565b90506000815111611be45760405180602001604052806000815250611c0f565b80611bee84612e22565b604051602001611bff9291906147e2565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90614ace565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60075481565b6000611d0482612fcf565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dcb611f25565b73ffffffffffffffffffffffffffffffffffffffff16611de96118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690614bee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690614a0e565b60405180910390fd5b611eb881612a3f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b600083833084604051602001611f53949392919061494c565b6040516020818303038152906040528051906020012090509392505050565b6000600d6000611f8285856130b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008111612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90614b6e565b60405180910390fd5b80600b546120169190614feb565b341015612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90614c8e565b60405180910390fd5b80600b546120669190614feb565b3411156120cd573373ffffffffffffffffffffffffffffffffffffffff166108fc82600b546120959190614feb565b346120a09190615079565b9081150290604051600060405180830381858888f193505050501580156120cb573d6000803e3d6000fd5b505b7f0000000000000000000000000000000000000000000000000000000000000000816120f7610dbc565b6121019190614f64565b1115612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614cae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146121b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a790614a4e565b60405180910390fd5b50565b6121cd8282604051806020016040528060008152506130dd565b5050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061228e8261283c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122b5611f25565b73ffffffffffffffffffffffffffffffffffffffff16148061231157506122da611f25565b73ffffffffffffffffffffffffffffffffffffffff166122f984610a4c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061232d575061232c8260000151612327611f25565b611d2f565b5b90508061236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236690614c6e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d890614bce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890614aae565b60405180910390fd5b61245e85858560016135bc565b61246e60008484600001516121d1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124dc9190615045565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125809190614f1e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126869190614f64565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127cc576126fc81611f2d565b156127cb576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461283486868660016135c2565b505050505050565b612844613be7565b61284d82611f2d565b61288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390614a2e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106128f05760017f0000000000000000000000000000000000000000000000000000000000000000846128e39190615079565b6128ed9190614f64565b90505b60008390505b8181106129fe576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129ea57809350505050612a3a565b5080806129f6906151bb565b9150506128f6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3190614dce565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90614b2e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612b6e9061482c565b60006040518083038185875af1925050503d8060008114612bab576040519150601f19603f3d011682016040523d82523d6000602084013e612bb0565b606091505b5050905080612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb90614aee565b60405180910390fd5b505050565b6000612c1a8473ffffffffffffffffffffffffffffffffffffffff166135c8565b15612d83578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c43611f25565b8786866040518563ffffffff1660e01b8152600401612c65949392919061485c565b602060405180830381600087803b158015612c7f57600080fd5b505af1925050508015612cb057506040513d601f19601f82011682018060405250810190612cad9190613ff0565b60015b612d33573d8060008114612ce0576040519150601f19603f3d011682016040523d82523d6000602084013e612ce5565b606091505b50600081511415612d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2290614cee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d88565b600190505b949350505050565b6060600c8054612d9f906151e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612dcb906151e5565b8015612e185780601f10612ded57610100808354040283529160200191612e18565b820191906000526020600020905b815481529060010190602001808311612dfb57829003601f168201915b5050505050905090565b60606000821415612e6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fca565b600082905060005b60008214612e9c578080612e8590615248565b915050600a82612e959190614fba565b9150612e72565b60008167ffffffffffffffff811115612ede577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f105781602001600182028036833780820191505090505b5090505b60008514612fc357600182612f299190615079565b9150600a85612f38919061529b565b6030612f449190614f64565b60f81b818381518110612f80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fbc9190614fba565b9450612f14565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303790614ace565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006130d5826130c7856135db565b61360b90919063ffffffff16565b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314a90614d2e565b60405180910390fd5b61315c81611f2d565b1561319c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319390614d0e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f690614e0e565b60405180910390fd5b61320c60008583866135bc565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516133099190614f1e565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133309190614f1e565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561359f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461353f6000888488612bf9565b61357e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357590614cee565b60405180910390fd5b818061358990615248565b925050808061359790615248565b9150506134ce565b50806000819055506135b460008785886135c2565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b6000816040516020016135ee9190614806565b604051602081830303815290604052805190602001209050919050565b600080600061361a8585613632565b91509150613627816136b5565b819250505092915050565b6000806041835114156136745760008060006020860151925060408601519150606086015160001a905061366887828585613a06565b945094505050506136ae565b6040835114156136a557600080602085015191506040850151905061369a868383613b13565b9350935050506136ae565b60006002915091505b9250929050565b600060048111156136ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613728577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561373357613a03565b6001600481111561376d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156137a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156137e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137de906149ae565b60405180910390fd5b60026004811115613821577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561385a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561389b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613892906149ee565b60405180910390fd5b600360048111156138d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561390e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561394f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394690614b0e565b60405180910390fd5b600480811115613988577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156139c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f990614bae565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a41576000600391509150613b0a565b601b8560ff1614158015613a595750601c8560ff1614155b15613a6b576000600491509150613b0a565b600060018787878760405160008152602001604052604051613a9094939291906148ec565b6020604051602081039080840390855afa158015613ab2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b0157600060019250925050613b0a565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613b5387828885613a06565b935093505050935093915050565b828054613b6d906151e5565b90600052602060002090601f016020900481019282613b8f5760008555613bd6565b82601f10613ba857805160ff1916838001178555613bd6565b82800160010185558215613bd6579182015b82811115613bd5578251825591602001919060010190613bba565b5b509050613be39190613c21565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c3a576000816000905550600101613c22565b5090565b6000613c51613c4c84614e6e565b614e49565b905082815260208101848484011115613c6957600080fd5b613c74848285615179565b509392505050565b6000613c8f613c8a84614e9f565b614e49565b905082815260208101848484011115613ca757600080fd5b613cb2848285615179565b509392505050565b600081359050613cc981615cea565b92915050565b600081359050613cde81615d01565b92915050565b600081359050613cf381615d18565b92915050565b600081519050613d0881615d18565b92915050565b60008083601f840112613d2057600080fd5b8235905067ffffffffffffffff811115613d3957600080fd5b602083019150836001820283011115613d5157600080fd5b9250929050565b600082601f830112613d6957600080fd5b8135613d79848260208601613c3e565b91505092915050565b600081359050613d9181615d2f565b92915050565b60008083601f840112613da957600080fd5b8235905067ffffffffffffffff811115613dc257600080fd5b602083019150836001820283011115613dda57600080fd5b9250929050565b600082601f830112613df257600080fd5b8135613e02848260208601613c7c565b91505092915050565b600081359050613e1a81615d3f565b92915050565b600060208284031215613e3257600080fd5b6000613e4084828501613cba565b91505092915050565b60008060408385031215613e5c57600080fd5b6000613e6a85828601613cba565b9250506020613e7b85828601613cba565b9150509250929050565b600080600060608486031215613e9a57600080fd5b6000613ea886828701613cba565b9350506020613eb986828701613cba565b9250506040613eca86828701613e0b565b9150509250925092565b60008060008060808587031215613eea57600080fd5b6000613ef887828801613cba565b9450506020613f0987828801613cba565b9350506040613f1a87828801613e0b565b925050606085013567ffffffffffffffff811115613f3757600080fd5b613f4387828801613d58565b91505092959194509250565b60008060408385031215613f6257600080fd5b6000613f7085828601613cba565b9250506020613f8185828601613ccf565b9150509250929050565b60008060408385031215613f9e57600080fd5b6000613fac85828601613cba565b9250506020613fbd85828601613e0b565b9150509250929050565b600060208284031215613fd957600080fd5b6000613fe784828501613ce4565b91505092915050565b60006020828403121561400257600080fd5b600061401084828501613cf9565b91505092915050565b6000806000806080858703121561402f57600080fd5b600061403d87828801613d82565b945050602061404e87828801613cba565b935050604061405f87828801613cba565b925050606061407087828801613cba565b91505092959194509250565b60006020828403121561408e57600080fd5b600082013567ffffffffffffffff8111156140a857600080fd5b6140b484828501613de1565b91505092915050565b6000602082840312156140cf57600080fd5b60006140dd84828501613e0b565b91505092915050565b6000806000806000606086880312156140fe57600080fd5b600061410c88828901613e0b565b955050602086013567ffffffffffffffff81111561412957600080fd5b61413588828901613d97565b9450945050604086013567ffffffffffffffff81111561415457600080fd5b61416088828901613d0e565b92509250509295509295909350565b614178816150ad565b82525050565b614187816150bf565b82525050565b614196816150cb565b82525050565b6141ad6141a8826150cb565b615291565b82525050565b60006141be82614ed0565b6141c88185614ee6565b93506141d8818560208601615188565b6141e1816153b7565b840191505092915050565b6141f581615167565b82525050565b60006142078385614f02565b9350614214838584615179565b61421d836153b7565b840190509392505050565b600061423382614edb565b61423d8185614f02565b935061424d818560208601615188565b614256816153b7565b840191505092915050565b600061426c82614edb565b6142768185614f13565b9350614286818560208601615188565b80840191505092915050565b600061429f601883614f02565b91506142aa826153c8565b602082019050919050565b60006142c2602283614f02565b91506142cd826153f1565b604082019050919050565b60006142e5601f83614f02565b91506142f082615440565b602082019050919050565b6000614308601c83614f13565b915061431382615469565b601c82019050919050565b600061432b602683614f02565b915061433682615492565b604082019050919050565b600061434e602a83614f02565b9150614359826154e1565b604082019050919050565b6000614371600783614f02565b915061437c82615530565b602082019050919050565b6000614394600783614f02565b915061439f82615559565b602082019050919050565b60006143b7602383614f02565b91506143c282615582565b604082019050919050565b60006143da602583614f02565b91506143e5826155d1565b604082019050919050565b60006143fd603183614f02565b915061440882615620565b604082019050919050565b6000614420603a83614f02565b915061442b8261566f565b604082019050919050565b6000614443602283614f02565b915061444e826156be565b604082019050919050565b6000614466601d83614f02565b91506144718261570d565b602082019050919050565b6000614489603983614f02565b915061449482615736565b604082019050919050565b60006144ac600783614f02565b91506144b782615785565b602082019050919050565b60006144cf602b83614f02565b91506144da826157ae565b604082019050919050565b60006144f2602283614f02565b91506144fd826157fd565b604082019050919050565b6000614515602683614f02565b91506145208261584c565b604082019050919050565b6000614538602083614f02565b91506145438261589b565b602082019050919050565b600061455b600783614f02565b9150614566826158c4565b602082019050919050565b600061457e602f83614f02565b9150614589826158ed565b604082019050919050565b60006145a1601a83614f02565b91506145ac8261593c565b602082019050919050565b60006145c4603283614f02565b91506145cf82615965565b604082019050919050565b60006145e7600783614f02565b91506145f2826159b4565b602082019050919050565b600061460a600783614f02565b9150614615826159dd565b602082019050919050565b600061462d602283614f02565b915061463882615a06565b604082019050919050565b6000614650600083614ef7565b915061465b82615a55565b600082019050919050565b6000614673603383614f02565b915061467e82615a58565b604082019050919050565b6000614696601d83614f02565b91506146a182615aa7565b602082019050919050565b60006146b9602183614f02565b91506146c482615ad0565b604082019050919050565b60006146dc600783614f02565b91506146e782615b1f565b602082019050919050565b60006146ff600783614f02565b915061470a82615b48565b602082019050919050565b6000614722602e83614f02565b915061472d82615b71565b604082019050919050565b6000614745601f83614f02565b915061475082615bc0565b602082019050919050565b6000614768602f83614f02565b915061477382615be9565b604082019050919050565b600061478b602d83614f02565b915061479682615c38565b604082019050919050565b60006147ae602283614f02565b91506147b982615c87565b604082019050919050565b6147cd81615150565b82525050565b6147dc8161515a565b82525050565b60006147ee8285614261565b91506147fa8284614261565b91508190509392505050565b6000614811826142fb565b915061481d828461419c565b60208201915081905092915050565b600061483782614643565b9150819050919050565b6000602082019050614856600083018461416f565b92915050565b6000608082019050614871600083018761416f565b61487e602083018661416f565b61488b60408301856147c4565b818103606083015261489d81846141b3565b905095945050505050565b60006040820190506148bd600083018561416f565b6148ca60208301846147c4565b9392505050565b60006020820190506148e6600083018461417e565b92915050565b6000608082019050614901600083018761418d565b61490e60208301866147d3565b61491b604083018561418d565b614928606083018461418d565b95945050505050565b600060208201905061494660008301846141ec565b92915050565b600060608201905081810360008301526149678186886141fb565b9050614976602083018561416f565b614983604083018461416f565b95945050505050565b600060208201905081810360008301526149a68184614228565b905092915050565b600060208201905081810360008301526149c781614292565b9050919050565b600060208201905081810360008301526149e7816142b5565b9050919050565b60006020820190508181036000830152614a07816142d8565b9050919050565b60006020820190508181036000830152614a278161431e565b9050919050565b60006020820190508181036000830152614a4781614341565b9050919050565b60006020820190508181036000830152614a6781614364565b9050919050565b60006020820190508181036000830152614a8781614387565b9050919050565b60006020820190508181036000830152614aa7816143aa565b9050919050565b60006020820190508181036000830152614ac7816143cd565b9050919050565b60006020820190508181036000830152614ae7816143f0565b9050919050565b60006020820190508181036000830152614b0781614413565b9050919050565b60006020820190508181036000830152614b2781614436565b9050919050565b60006020820190508181036000830152614b4781614459565b9050919050565b60006020820190508181036000830152614b678161447c565b9050919050565b60006020820190508181036000830152614b878161449f565b9050919050565b60006020820190508181036000830152614ba7816144c2565b9050919050565b60006020820190508181036000830152614bc7816144e5565b9050919050565b60006020820190508181036000830152614be781614508565b9050919050565b60006020820190508181036000830152614c078161452b565b9050919050565b60006020820190508181036000830152614c278161454e565b9050919050565b60006020820190508181036000830152614c4781614571565b9050919050565b60006020820190508181036000830152614c6781614594565b9050919050565b60006020820190508181036000830152614c87816145b7565b9050919050565b60006020820190508181036000830152614ca7816145da565b9050919050565b60006020820190508181036000830152614cc7816145fd565b9050919050565b60006020820190508181036000830152614ce781614620565b9050919050565b60006020820190508181036000830152614d0781614666565b9050919050565b60006020820190508181036000830152614d2781614689565b9050919050565b60006020820190508181036000830152614d47816146ac565b9050919050565b60006020820190508181036000830152614d67816146cf565b9050919050565b60006020820190508181036000830152614d87816146f2565b9050919050565b60006020820190508181036000830152614da781614715565b9050919050565b60006020820190508181036000830152614dc781614738565b9050919050565b60006020820190508181036000830152614de78161475b565b9050919050565b60006020820190508181036000830152614e078161477e565b9050919050565b60006020820190508181036000830152614e27816147a1565b9050919050565b6000602082019050614e4360008301846147c4565b92915050565b6000614e53614e64565b9050614e5f8282615217565b919050565b6000604051905090565b600067ffffffffffffffff821115614e8957614e88615388565b5b614e92826153b7565b9050602081019050919050565b600067ffffffffffffffff821115614eba57614eb9615388565b5b614ec3826153b7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f2982615114565b9150614f3483615114565b9250826fffffffffffffffffffffffffffffffff03821115614f5957614f586152cc565b5b828201905092915050565b6000614f6f82615150565b9150614f7a83615150565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614faf57614fae6152cc565b5b828201905092915050565b6000614fc582615150565b9150614fd083615150565b925082614fe057614fdf6152fb565b5b828204905092915050565b6000614ff682615150565b915061500183615150565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561503a576150396152cc565b5b828202905092915050565b600061505082615114565b915061505b83615114565b92508282101561506e5761506d6152cc565b5b828203905092915050565b600061508482615150565b915061508f83615150565b9250828210156150a2576150a16152cc565b5b828203905092915050565b60006150b882615130565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061510f82615cd6565b919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061517282615101565b9050919050565b82818337600083830152505050565b60005b838110156151a657808201518184015260208101905061518b565b838111156151b5576000848401525b50505050565b60006151c682615150565b915060008214156151da576151d96152cc565b5b600182039050919050565b600060028204905060018216806151fd57607f821691505b6020821081141561521157615210615359565b5b50919050565b615220826153b7565b810181811067ffffffffffffffff8211171561523f5761523e615388565b5b80604052505050565b600061525382615150565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615286576152856152cc565b5b600182019050919050565b6000819050919050565b60006152a682615150565b91506152b183615150565b9250826152c1576152c06152fb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5747474530303700000000000000000000000000000000000000000000000000600082015250565b7f5747474530303100000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f5747474530313100000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5747474530303600000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5747474530303200000000000000000000000000000000000000000000000000600082015250565b7f5747474530303300000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5747474530303500000000000000000000000000000000000000000000000000600082015250565b7f5747474530303800000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60048110615ce757615ce661532a565b5b50565b615cf3816150ad565b8114615cfe57600080fd5b50565b615d0a816150bf565b8114615d1557600080fd5b50565b615d21816150d5565b8114615d2c57600080fd5b50565b60048110615d3c57600080fd5b50565b615d4881615150565b8114615d5357600080fd5b5056fea2646970667358221220a4c1f0fe108e8833c78c132749273ceb9c5aa5e2773b1fcf6f1dd13c657668a864736f6c634300080400330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000ba06a39d1457a7ffc783663b92f83d77d3d9ae6000000000000000000000000093f9de72126a7acab03cd2e5b6eb30cba3d0f08d000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5a67327a6f5242736a52315037436a6941743770433561544332316275586234635531746f63533962516b6d2f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba0146106e1578063dc33e6811461070c578063e31768e514610749578063e985e9c514610774578063f2fde38b146107b1576101ee565b8063b88d4fde14610613578063c87b56dd1461063c578063ced8d70014610679578063d2ce364f146106b6576101ee565b80638d859f3e116100dc5780638d859f3e146105695780638da5cb5b1461059457806395d89b41146105bf578063a22cb465146105ea576101ee565b806370a08231146104e2578063715018a61461051f578063785cc9971461053657806386d1a69f14610552576101ee565b8063237fb187116101855780633c0c8c07116101545780633c0c8c071461041657806342842e0e1461043f5780634f6ccce7146104685780636352211e146104a5576101ee565b8063237fb1871461035c57806323b872dd146103855780632ab4d052146103ae5780632f745c59146103d9576101ee565b806308460042116101c157806308460042146102c1578063095ea7b3146102dd57806318160ddd14610306578063200d2ed214610331576101ee565b806301ffc9a7146101f357806302fe53051461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613fc7565b6107da565b60405161022791906148d1565b60405180910390f35b34801561023c57600080fd5b506102576004803603810190610252919061407c565b610924565b005b34801561026557600080fd5b5061026e6109ba565b60405161027b919061498c565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a691906140bd565b610a4c565b6040516102b89190614841565b60405180910390f35b6102db60048036038101906102d691906140e6565b610ad1565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190613f8b565b610ca3565b005b34801561031257600080fd5b5061031b610dbc565b6040516103289190614e2e565b60405180910390f35b34801561033d57600080fd5b50610346610dc5565b6040516103539190614931565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190614019565b610dd8565b005b34801561039157600080fd5b506103ac60048036038101906103a79190613e85565b610ffe565b005b3480156103ba57600080fd5b506103c361100e565b6040516103d09190614e2e565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb9190613f8b565b611032565b60405161040d9190614e2e565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613f8b565b611230565b005b34801561044b57600080fd5b5061046660048036038101906104619190613e85565b6112f4565b005b34801561047457600080fd5b5061048f600480360381019061048a91906140bd565b611314565b60405161049c9190614e2e565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906140bd565b611367565b6040516104d99190614841565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190613e20565b61137d565b6040516105169190614e2e565b60405180910390f35b34801561052b57600080fd5b50610534611466565b005b610550600480360381019061054b91906140e6565b6114ee565b005b34801561055e57600080fd5b50610567611769565b005b34801561057557600080fd5b5061057e6118d1565b60405161058b9190614e2e565b60405180910390f35b3480156105a057600080fd5b506105a96118d7565b6040516105b69190614841565b60405180910390f35b3480156105cb57600080fd5b506105d4611901565b6040516105e1919061498c565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190613f4f565b611993565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613ed4565b611b14565b005b34801561064857600080fd5b50610663600480360381019061065e91906140bd565b611b70565b604051610670919061498c565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613e20565b611c17565b6040516106ad9190614e2e565b60405180910390f35b3480156106c257600080fd5b506106cb611ccf565b6040516106d89190614e2e565b60405180910390f35b3480156106ed57600080fd5b506106f6611cf3565b6040516107039190614e2e565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613e20565b611cf9565b6040516107409190614e2e565b60405180910390f35b34801561075557600080fd5b5061075e611d0b565b60405161076b9190614e2e565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613e49565b611d2f565b6040516107a891906148d1565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d39190613e20565b611dc3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061091d575061091c82611ebb565b5b9050919050565b61092c611f25565b73ffffffffffffffffffffffffffffffffffffffff1661094a6118d7565b73ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790614bee565b60405180910390fd5b80600c90805190602001906109b6929190613b61565b5050565b6060600180546109c9906151e5565b80601f01602080910402602001604051908101604052809291908181526020018280546109f5906151e5565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b6000610a5782611f2d565b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90614dee565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60016003811115610b0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166003811115610b53577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90614c0e565b60405180910390fd5b6000610bed610ba3868633611f3a565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611f72565b905085811015610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990614a6e565b60405180910390fd5b8086610c3d33611cf9565b610c479190614f64565b1115610c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7f90614d6e565b60405180910390fd5b610c9186611fc5565b610c9b33876121b3565b505050505050565b6000610cae82611367565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1690614cce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3e611f25565b73ffffffffffffffffffffffffffffffffffffffff161480610d6d5750610d6c81610d67611f25565b611d2f565b5b610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da390614b4e565b60405180910390fd5b610db78383836121d1565b505050565b60008054905090565b600a60009054906101000a900460ff1681565b610de0611f25565b73ffffffffffffffffffffffffffffffffffffffff16610dfe6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90614bee565b60405180910390fd5b83600a60006101000a81548160ff02191690836003811115610e9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b021790555060026003811115610ede577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166003811115610f26577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610ff857600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009055600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090556001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505050565b611009838383612283565b505050565b7f00000000000000000000000000000000000000000000000000000000000015b481565b600061103d8361137d565b821061107e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611075906149ce565b60405180910390fd5b6000611088610dbc565b905060008060005b838110156111ee576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461118257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111da57868414156111cb57819550505050505061122a565b83806111d690615248565b9450505b5080806111e690615248565b915050611090565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190614d8e565b60405180910390fd5b92915050565b611238611f25565b73ffffffffffffffffffffffffffffffffffffffff166112566118d7565b73ffffffffffffffffffffffffffffffffffffffff16146112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614bee565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b61130f83838360405180602001604052806000815250611b14565b505050565b600061131e610dbc565b821061135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614a8e565b60405180910390fd5b819050919050565b60006113728261283c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590614b8e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61146e611f25565b73ffffffffffffffffffffffffffffffffffffffff1661148c6118d7565b73ffffffffffffffffffffffffffffffffffffffff16146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990614bee565b60405180910390fd5b6114ec6000612a3f565b565b60026003811115611528577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600a60009054906101000a900460ff166003811115611570577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790614c0e565b60405180910390fd5b846116096115bf868633611f3a565b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611f72565b101561164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190614a6e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000018561167533611c17565b61167f9190614f64565b11156116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790614d6e565b60405180910390fd5b6116c985611fc5565b6116d333866121b3565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461171f9190614f64565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050505050565b600260095414156117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690614dae565b60405180910390fd5b60026009819055506117bf611f25565b73ffffffffffffffffffffffffffffffffffffffff166117dd6118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182a90614bee565b60405180910390fd5b60004711611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90614d4e565b60405180910390fd5b6118876118816118d7565b47612b05565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0566118b06118d7565b476040516118bf9291906148a8565b60405180910390a16001600981905550565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611910906151e5565b80601f016020809104026020016040519081016040528092919081815260200182805461193c906151e5565b80156119895780601f1061195e57610100808354040283529160200191611989565b820191906000526020600020905b81548152906001019060200180831161196c57829003601f168201915b5050505050905090565b61199b611f25565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614c4e565b60405180910390fd5b8060066000611a16611f25565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac3611f25565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0891906148d1565b60405180910390a35050565b611b1f848484612283565b611b2b84848484612bf9565b611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614cee565b60405180910390fd5b50505050565b6060611b7b82611f2d565b611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190614c2e565b60405180910390fd5b6000611bc4612d90565b90506000815111611be45760405180602001604052806000815250611c0f565b80611bee84612e22565b604051602001611bff9291906147e2565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90614ace565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f000000000000000000000000000000000000000000000000000000000000000181565b60075481565b6000611d0482612fcf565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000281565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dcb611f25565b73ffffffffffffffffffffffffffffffffffffffff16611de96118d7565b73ffffffffffffffffffffffffffffffffffffffff1614611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690614bee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690614a0e565b60405180910390fd5b611eb881612a3f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b600083833084604051602001611f53949392919061494c565b6040516020818303038152906040528051906020012090509392505050565b6000600d6000611f8285856130b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008111612008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fff90614b6e565b60405180910390fd5b80600b546120169190614feb565b341015612058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204f90614c8e565b60405180910390fd5b80600b546120669190614feb565b3411156120cd573373ffffffffffffffffffffffffffffffffffffffff166108fc82600b546120959190614feb565b346120a09190615079565b9081150290604051600060405180830381858888f193505050501580156120cb573d6000803e3d6000fd5b505b7f00000000000000000000000000000000000000000000000000000000000015b4816120f7610dbc565b6121019190614f64565b1115612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614cae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146121b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a790614a4e565b60405180910390fd5b50565b6121cd8282604051806020016040528060008152506130dd565b5050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061228e8261283c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122b5611f25565b73ffffffffffffffffffffffffffffffffffffffff16148061231157506122da611f25565b73ffffffffffffffffffffffffffffffffffffffff166122f984610a4c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061232d575061232c8260000151612327611f25565b611d2f565b5b90508061236f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236690614c6e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d890614bce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890614aae565b60405180910390fd5b61245e85858560016135bc565b61246e60008484600001516121d1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124dc9190615045565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125809190614f1e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846126869190614f64565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127cc576126fc81611f2d565b156127cb576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461283486868660016135c2565b505050505050565b612844613be7565b61284d82611f2d565b61288c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288390614a2e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000383106128f05760017f0000000000000000000000000000000000000000000000000000000000000003846128e39190615079565b6128ed9190614f64565b90505b60008390505b8181106129fe576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129ea57809350505050612a3a565b5080806129f6906151bb565b9150506128f6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3190614dce565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015612b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3f90614b2e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612b6e9061482c565b60006040518083038185875af1925050503d8060008114612bab576040519150601f19603f3d011682016040523d82523d6000602084013e612bb0565b606091505b5050905080612bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612beb90614aee565b60405180910390fd5b505050565b6000612c1a8473ffffffffffffffffffffffffffffffffffffffff166135c8565b15612d83578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c43611f25565b8786866040518563ffffffff1660e01b8152600401612c65949392919061485c565b602060405180830381600087803b158015612c7f57600080fd5b505af1925050508015612cb057506040513d601f19601f82011682018060405250810190612cad9190613ff0565b60015b612d33573d8060008114612ce0576040519150601f19603f3d011682016040523d82523d6000602084013e612ce5565b606091505b50600081511415612d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2290614cee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d88565b600190505b949350505050565b6060600c8054612d9f906151e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612dcb906151e5565b8015612e185780601f10612ded57610100808354040283529160200191612e18565b820191906000526020600020905b815481529060010190602001808311612dfb57829003601f168201915b5050505050905090565b60606000821415612e6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fca565b600082905060005b60008214612e9c578080612e8590615248565b915050600a82612e959190614fba565b9150612e72565b60008167ffffffffffffffff811115612ede577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f105781602001600182028036833780820191505090505b5090505b60008514612fc357600182612f299190615079565b9150600a85612f38919061529b565b6030612f449190614f64565b60f81b818381518110612f80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fbc9190614fba565b9450612f14565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303790614ace565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60006130d5826130c7856135db565b61360b90919063ffffffff16565b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314a90614d2e565b60405180910390fd5b61315c81611f2d565b1561319c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319390614d0e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000038311156131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f690614e0e565b60405180910390fd5b61320c60008583866135bc565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516133099190614f1e565b6fffffffffffffffffffffffffffffffff1681526020018583602001516133309190614f1e565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561359f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461353f6000888488612bf9565b61357e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357590614cee565b60405180910390fd5b818061358990615248565b925050808061359790615248565b9150506134ce565b50806000819055506135b460008785886135c2565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b6000816040516020016135ee9190614806565b604051602081830303815290604052805190602001209050919050565b600080600061361a8585613632565b91509150613627816136b5565b819250505092915050565b6000806041835114156136745760008060006020860151925060408601519150606086015160001a905061366887828585613a06565b945094505050506136ae565b6040835114156136a557600080602085015191506040850151905061369a868383613b13565b9350935050506136ae565b60006002915091505b9250929050565b600060048111156136ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613728577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561373357613a03565b6001600481111561376d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156137a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156137e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137de906149ae565b60405180910390fd5b60026004811115613821577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561385a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561389b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613892906149ee565b60405180910390fd5b600360048111156138d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561390e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561394f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394690614b0e565b60405180910390fd5b600480811115613988577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156139c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139f990614bae565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a41576000600391509150613b0a565b601b8560ff1614158015613a595750601c8560ff1614155b15613a6b576000600491509150613b0a565b600060018787878760405160008152602001604052604051613a9094939291906148ec565b6020604051602081039080840390855afa158015613ab2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b0157600060019250925050613b0a565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613b5387828885613a06565b935093505050935093915050565b828054613b6d906151e5565b90600052602060002090601f016020900481019282613b8f5760008555613bd6565b82601f10613ba857805160ff1916838001178555613bd6565b82800160010185558215613bd6579182015b82811115613bd5578251825591602001919060010190613bba565b5b509050613be39190613c21565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613c3a576000816000905550600101613c22565b5090565b6000613c51613c4c84614e6e565b614e49565b905082815260208101848484011115613c6957600080fd5b613c74848285615179565b509392505050565b6000613c8f613c8a84614e9f565b614e49565b905082815260208101848484011115613ca757600080fd5b613cb2848285615179565b509392505050565b600081359050613cc981615cea565b92915050565b600081359050613cde81615d01565b92915050565b600081359050613cf381615d18565b92915050565b600081519050613d0881615d18565b92915050565b60008083601f840112613d2057600080fd5b8235905067ffffffffffffffff811115613d3957600080fd5b602083019150836001820283011115613d5157600080fd5b9250929050565b600082601f830112613d6957600080fd5b8135613d79848260208601613c3e565b91505092915050565b600081359050613d9181615d2f565b92915050565b60008083601f840112613da957600080fd5b8235905067ffffffffffffffff811115613dc257600080fd5b602083019150836001820283011115613dda57600080fd5b9250929050565b600082601f830112613df257600080fd5b8135613e02848260208601613c7c565b91505092915050565b600081359050613e1a81615d3f565b92915050565b600060208284031215613e3257600080fd5b6000613e4084828501613cba565b91505092915050565b60008060408385031215613e5c57600080fd5b6000613e6a85828601613cba565b9250506020613e7b85828601613cba565b9150509250929050565b600080600060608486031215613e9a57600080fd5b6000613ea886828701613cba565b9350506020613eb986828701613cba565b9250506040613eca86828701613e0b565b9150509250925092565b60008060008060808587031215613eea57600080fd5b6000613ef887828801613cba565b9450506020613f0987828801613cba565b9350506040613f1a87828801613e0b565b925050606085013567ffffffffffffffff811115613f3757600080fd5b613f4387828801613d58565b91505092959194509250565b60008060408385031215613f6257600080fd5b6000613f7085828601613cba565b9250506020613f8185828601613ccf565b9150509250929050565b60008060408385031215613f9e57600080fd5b6000613fac85828601613cba565b9250506020613fbd85828601613e0b565b9150509250929050565b600060208284031215613fd957600080fd5b6000613fe784828501613ce4565b91505092915050565b60006020828403121561400257600080fd5b600061401084828501613cf9565b91505092915050565b6000806000806080858703121561402f57600080fd5b600061403d87828801613d82565b945050602061404e87828801613cba565b935050604061405f87828801613cba565b925050606061407087828801613cba565b91505092959194509250565b60006020828403121561408e57600080fd5b600082013567ffffffffffffffff8111156140a857600080fd5b6140b484828501613de1565b91505092915050565b6000602082840312156140cf57600080fd5b60006140dd84828501613e0b565b91505092915050565b6000806000806000606086880312156140fe57600080fd5b600061410c88828901613e0b565b955050602086013567ffffffffffffffff81111561412957600080fd5b61413588828901613d97565b9450945050604086013567ffffffffffffffff81111561415457600080fd5b61416088828901613d0e565b92509250509295509295909350565b614178816150ad565b82525050565b614187816150bf565b82525050565b614196816150cb565b82525050565b6141ad6141a8826150cb565b615291565b82525050565b60006141be82614ed0565b6141c88185614ee6565b93506141d8818560208601615188565b6141e1816153b7565b840191505092915050565b6141f581615167565b82525050565b60006142078385614f02565b9350614214838584615179565b61421d836153b7565b840190509392505050565b600061423382614edb565b61423d8185614f02565b935061424d818560208601615188565b614256816153b7565b840191505092915050565b600061426c82614edb565b6142768185614f13565b9350614286818560208601615188565b80840191505092915050565b600061429f601883614f02565b91506142aa826153c8565b602082019050919050565b60006142c2602283614f02565b91506142cd826153f1565b604082019050919050565b60006142e5601f83614f02565b91506142f082615440565b602082019050919050565b6000614308601c83614f13565b915061431382615469565b601c82019050919050565b600061432b602683614f02565b915061433682615492565b604082019050919050565b600061434e602a83614f02565b9150614359826154e1565b604082019050919050565b6000614371600783614f02565b915061437c82615530565b602082019050919050565b6000614394600783614f02565b915061439f82615559565b602082019050919050565b60006143b7602383614f02565b91506143c282615582565b604082019050919050565b60006143da602583614f02565b91506143e5826155d1565b604082019050919050565b60006143fd603183614f02565b915061440882615620565b604082019050919050565b6000614420603a83614f02565b915061442b8261566f565b604082019050919050565b6000614443602283614f02565b915061444e826156be565b604082019050919050565b6000614466601d83614f02565b91506144718261570d565b602082019050919050565b6000614489603983614f02565b915061449482615736565b604082019050919050565b60006144ac600783614f02565b91506144b782615785565b602082019050919050565b60006144cf602b83614f02565b91506144da826157ae565b604082019050919050565b60006144f2602283614f02565b91506144fd826157fd565b604082019050919050565b6000614515602683614f02565b91506145208261584c565b604082019050919050565b6000614538602083614f02565b91506145438261589b565b602082019050919050565b600061455b600783614f02565b9150614566826158c4565b602082019050919050565b600061457e602f83614f02565b9150614589826158ed565b604082019050919050565b60006145a1601a83614f02565b91506145ac8261593c565b602082019050919050565b60006145c4603283614f02565b91506145cf82615965565b604082019050919050565b60006145e7600783614f02565b91506145f2826159b4565b602082019050919050565b600061460a600783614f02565b9150614615826159dd565b602082019050919050565b600061462d602283614f02565b915061463882615a06565b604082019050919050565b6000614650600083614ef7565b915061465b82615a55565b600082019050919050565b6000614673603383614f02565b915061467e82615a58565b604082019050919050565b6000614696601d83614f02565b91506146a182615aa7565b602082019050919050565b60006146b9602183614f02565b91506146c482615ad0565b604082019050919050565b60006146dc600783614f02565b91506146e782615b1f565b602082019050919050565b60006146ff600783614f02565b915061470a82615b48565b602082019050919050565b6000614722602e83614f02565b915061472d82615b71565b604082019050919050565b6000614745601f83614f02565b915061475082615bc0565b602082019050919050565b6000614768602f83614f02565b915061477382615be9565b604082019050919050565b600061478b602d83614f02565b915061479682615c38565b604082019050919050565b60006147ae602283614f02565b91506147b982615c87565b604082019050919050565b6147cd81615150565b82525050565b6147dc8161515a565b82525050565b60006147ee8285614261565b91506147fa8284614261565b91508190509392505050565b6000614811826142fb565b915061481d828461419c565b60208201915081905092915050565b600061483782614643565b9150819050919050565b6000602082019050614856600083018461416f565b92915050565b6000608082019050614871600083018761416f565b61487e602083018661416f565b61488b60408301856147c4565b818103606083015261489d81846141b3565b905095945050505050565b60006040820190506148bd600083018561416f565b6148ca60208301846147c4565b9392505050565b60006020820190506148e6600083018461417e565b92915050565b6000608082019050614901600083018761418d565b61490e60208301866147d3565b61491b604083018561418d565b614928606083018461418d565b95945050505050565b600060208201905061494660008301846141ec565b92915050565b600060608201905081810360008301526149678186886141fb565b9050614976602083018561416f565b614983604083018461416f565b95945050505050565b600060208201905081810360008301526149a68184614228565b905092915050565b600060208201905081810360008301526149c781614292565b9050919050565b600060208201905081810360008301526149e7816142b5565b9050919050565b60006020820190508181036000830152614a07816142d8565b9050919050565b60006020820190508181036000830152614a278161431e565b9050919050565b60006020820190508181036000830152614a4781614341565b9050919050565b60006020820190508181036000830152614a6781614364565b9050919050565b60006020820190508181036000830152614a8781614387565b9050919050565b60006020820190508181036000830152614aa7816143aa565b9050919050565b60006020820190508181036000830152614ac7816143cd565b9050919050565b60006020820190508181036000830152614ae7816143f0565b9050919050565b60006020820190508181036000830152614b0781614413565b9050919050565b60006020820190508181036000830152614b2781614436565b9050919050565b60006020820190508181036000830152614b4781614459565b9050919050565b60006020820190508181036000830152614b678161447c565b9050919050565b60006020820190508181036000830152614b878161449f565b9050919050565b60006020820190508181036000830152614ba7816144c2565b9050919050565b60006020820190508181036000830152614bc7816144e5565b9050919050565b60006020820190508181036000830152614be781614508565b9050919050565b60006020820190508181036000830152614c078161452b565b9050919050565b60006020820190508181036000830152614c278161454e565b9050919050565b60006020820190508181036000830152614c4781614571565b9050919050565b60006020820190508181036000830152614c6781614594565b9050919050565b60006020820190508181036000830152614c87816145b7565b9050919050565b60006020820190508181036000830152614ca7816145da565b9050919050565b60006020820190508181036000830152614cc7816145fd565b9050919050565b60006020820190508181036000830152614ce781614620565b9050919050565b60006020820190508181036000830152614d0781614666565b9050919050565b60006020820190508181036000830152614d2781614689565b9050919050565b60006020820190508181036000830152614d47816146ac565b9050919050565b60006020820190508181036000830152614d67816146cf565b9050919050565b60006020820190508181036000830152614d87816146f2565b9050919050565b60006020820190508181036000830152614da781614715565b9050919050565b60006020820190508181036000830152614dc781614738565b9050919050565b60006020820190508181036000830152614de78161475b565b9050919050565b60006020820190508181036000830152614e078161477e565b9050919050565b60006020820190508181036000830152614e27816147a1565b9050919050565b6000602082019050614e4360008301846147c4565b92915050565b6000614e53614e64565b9050614e5f8282615217565b919050565b6000604051905090565b600067ffffffffffffffff821115614e8957614e88615388565b5b614e92826153b7565b9050602081019050919050565b600067ffffffffffffffff821115614eba57614eb9615388565b5b614ec3826153b7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f2982615114565b9150614f3483615114565b9250826fffffffffffffffffffffffffffffffff03821115614f5957614f586152cc565b5b828201905092915050565b6000614f6f82615150565b9150614f7a83615150565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614faf57614fae6152cc565b5b828201905092915050565b6000614fc582615150565b9150614fd083615150565b925082614fe057614fdf6152fb565b5b828204905092915050565b6000614ff682615150565b915061500183615150565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561503a576150396152cc565b5b828202905092915050565b600061505082615114565b915061505b83615114565b92508282101561506e5761506d6152cc565b5b828203905092915050565b600061508482615150565b915061508f83615150565b9250828210156150a2576150a16152cc565b5b828203905092915050565b60006150b882615130565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061510f82615cd6565b919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061517282615101565b9050919050565b82818337600083830152505050565b60005b838110156151a657808201518184015260208101905061518b565b838111156151b5576000848401525b50505050565b60006151c682615150565b915060008214156151da576151d96152cc565b5b600182039050919050565b600060028204905060018216806151fd57607f821691505b6020821081141561521157615210615359565b5b50919050565b615220826153b7565b810181811067ffffffffffffffff8211171561523f5761523e615388565b5b80604052505050565b600061525382615150565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615286576152856152cc565b5b600182019050919050565b6000819050919050565b60006152a682615150565b91506152b183615150565b9250826152c1576152c06152fb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5747474530303700000000000000000000000000000000000000000000000000600082015250565b7f5747474530303100000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f5747474530313100000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5747474530303600000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5747474530303200000000000000000000000000000000000000000000000000600082015250565b7f5747474530303300000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5747474530303500000000000000000000000000000000000000000000000000600082015250565b7f5747474530303800000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60048110615ce757615ce661532a565b5b50565b615cf3816150ad565b8114615cfe57600080fd5b50565b615d0a816150bf565b8114615d1557600080fd5b50565b615d21816150d5565b8114615d2c57600080fd5b50565b60048110615d3c57600080fd5b50565b615d4881615150565b8114615d5357600080fd5b5056fea2646970667358221220a4c1f0fe108e8833c78c132749273ceb9c5aa5e2773b1fcf6f1dd13c657668a864736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000ba06a39d1457a7ffc783663b92f83d77d3d9ae6000000000000000000000000093f9de72126a7acab03cd2e5b6eb30cba3d0f08d000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5a67327a6f5242736a52315037436a6941743770433561544332316275586234635531746f63533962516b6d2f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initURI (string): https://ipfs.io/ipfs/QmZg2zoRBsjR1P7CjiAt7pC5aTC21buXb4cU1tocS9bQkm/
Arg [1] : signer1 (address): 0xBA06a39d1457a7ffc783663b92F83D77D3d9AE60
Arg [2] : signer2 (address): 0x93f9DE72126A7aCaB03cd2E5B6Eb30Cba3D0F08D

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000ba06a39d1457a7ffc783663b92f83d77d3d9ae60
Arg [2] : 00000000000000000000000093f9de72126a7acab03cd2e5b6eb30cba3d0f08d
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [4] : 68747470733a2f2f697066732e696f2f697066732f516d5a67327a6f5242736a
Arg [5] : 52315037436a6941743770433561544332316275586234635531746f63533962
Arg [6] : 516b6d2f00000000000000000000000000000000000000000000000000000000


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.